super.c 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081
  1. /*
  2. * linux/fs/ext3/super.c
  3. *
  4. * Copyright (C) 1992, 1993, 1994, 1995
  5. * Remy Card (card@masi.ibp.fr)
  6. * Laboratoire MASI - Institut Blaise Pascal
  7. * Universite Pierre et Marie Curie (Paris VI)
  8. *
  9. * from
  10. *
  11. * linux/fs/minix/inode.c
  12. *
  13. * Copyright (C) 1991, 1992 Linus Torvalds
  14. *
  15. * Big-endian to little-endian byte-swapping/bitmaps by
  16. * David S. Miller (davem@caip.rutgers.edu), 1995
  17. */
  18. #include <linux/module.h>
  19. #include <linux/string.h>
  20. #include <linux/fs.h>
  21. #include <linux/time.h>
  22. #include <linux/jbd.h>
  23. #include <linux/ext3_fs.h>
  24. #include <linux/ext3_jbd.h>
  25. #include <linux/slab.h>
  26. #include <linux/init.h>
  27. #include <linux/blkdev.h>
  28. #include <linux/parser.h>
  29. #include <linux/smp_lock.h>
  30. #include <linux/buffer_head.h>
  31. #include <linux/exportfs.h>
  32. #include <linux/vfs.h>
  33. #include <linux/random.h>
  34. #include <linux/mount.h>
  35. #include <linux/namei.h>
  36. #include <linux/quotaops.h>
  37. #include <linux/seq_file.h>
  38. #include <linux/log2.h>
  39. #include <asm/uaccess.h>
  40. #include "xattr.h"
  41. #include "acl.h"
  42. #include "namei.h"
  43. #ifdef CONFIG_EXT3_DEFAULTS_TO_ORDERED
  44. #define EXT3_MOUNT_DEFAULT_DATA_MODE EXT3_MOUNT_ORDERED_DATA
  45. #else
  46. #define EXT3_MOUNT_DEFAULT_DATA_MODE EXT3_MOUNT_WRITEBACK_DATA
  47. #endif
  48. static int ext3_load_journal(struct super_block *, struct ext3_super_block *,
  49. unsigned long journal_devnum);
  50. static int ext3_create_journal(struct super_block *, struct ext3_super_block *,
  51. unsigned int);
  52. static int ext3_commit_super(struct super_block *sb,
  53. struct ext3_super_block *es,
  54. int sync);
  55. static void ext3_mark_recovery_complete(struct super_block * sb,
  56. struct ext3_super_block * es);
  57. static void ext3_clear_journal_err(struct super_block * sb,
  58. struct ext3_super_block * es);
  59. static int ext3_sync_fs(struct super_block *sb, int wait);
  60. static const char *ext3_decode_error(struct super_block * sb, int errno,
  61. char nbuf[16]);
  62. static int ext3_remount (struct super_block * sb, int * flags, char * data);
  63. static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf);
  64. static int ext3_unfreeze(struct super_block *sb);
  65. static int ext3_freeze(struct super_block *sb);
  66. /*
  67. * Wrappers for journal_start/end.
  68. *
  69. * The only special thing we need to do here is to make sure that all
  70. * journal_end calls result in the superblock being marked dirty, so
  71. * that sync() will call the filesystem's write_super callback if
  72. * appropriate.
  73. */
  74. handle_t *ext3_journal_start_sb(struct super_block *sb, int nblocks)
  75. {
  76. journal_t *journal;
  77. if (sb->s_flags & MS_RDONLY)
  78. return ERR_PTR(-EROFS);
  79. /* Special case here: if the journal has aborted behind our
  80. * backs (eg. EIO in the commit thread), then we still need to
  81. * take the FS itself readonly cleanly. */
  82. journal = EXT3_SB(sb)->s_journal;
  83. if (is_journal_aborted(journal)) {
  84. ext3_abort(sb, __func__,
  85. "Detected aborted journal");
  86. return ERR_PTR(-EROFS);
  87. }
  88. return journal_start(journal, nblocks);
  89. }
  90. /*
  91. * The only special thing we need to do here is to make sure that all
  92. * journal_stop calls result in the superblock being marked dirty, so
  93. * that sync() will call the filesystem's write_super callback if
  94. * appropriate.
  95. */
  96. int __ext3_journal_stop(const char *where, handle_t *handle)
  97. {
  98. struct super_block *sb;
  99. int err;
  100. int rc;
  101. sb = handle->h_transaction->t_journal->j_private;
  102. err = handle->h_err;
  103. rc = journal_stop(handle);
  104. if (!err)
  105. err = rc;
  106. if (err)
  107. __ext3_std_error(sb, where, err);
  108. return err;
  109. }
  110. void ext3_journal_abort_handle(const char *caller, const char *err_fn,
  111. struct buffer_head *bh, handle_t *handle, int err)
  112. {
  113. char nbuf[16];
  114. const char *errstr = ext3_decode_error(NULL, err, nbuf);
  115. if (bh)
  116. BUFFER_TRACE(bh, "abort");
  117. if (!handle->h_err)
  118. handle->h_err = err;
  119. if (is_handle_aborted(handle))
  120. return;
  121. printk(KERN_ERR "EXT3-fs: %s: aborting transaction: %s in %s\n",
  122. caller, errstr, err_fn);
  123. journal_abort_handle(handle);
  124. }
  125. void ext3_msg(struct super_block *sb, const char *prefix,
  126. const char *fmt, ...)
  127. {
  128. va_list args;
  129. va_start(args, fmt);
  130. printk("%sEXT3-fs (%s): ", prefix, sb->s_id);
  131. vprintk(fmt, args);
  132. printk("\n");
  133. va_end(args);
  134. }
  135. /* Deal with the reporting of failure conditions on a filesystem such as
  136. * inconsistencies detected or read IO failures.
  137. *
  138. * On ext2, we can store the error state of the filesystem in the
  139. * superblock. That is not possible on ext3, because we may have other
  140. * write ordering constraints on the superblock which prevent us from
  141. * writing it out straight away; and given that the journal is about to
  142. * be aborted, we can't rely on the current, or future, transactions to
  143. * write out the superblock safely.
  144. *
  145. * We'll just use the journal_abort() error code to record an error in
  146. * the journal instead. On recovery, the journal will complain about
  147. * that error until we've noted it down and cleared it.
  148. */
  149. static void ext3_handle_error(struct super_block *sb)
  150. {
  151. struct ext3_super_block *es = EXT3_SB(sb)->s_es;
  152. EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
  153. es->s_state |= cpu_to_le16(EXT3_ERROR_FS);
  154. if (sb->s_flags & MS_RDONLY)
  155. return;
  156. if (!test_opt (sb, ERRORS_CONT)) {
  157. journal_t *journal = EXT3_SB(sb)->s_journal;
  158. set_opt(EXT3_SB(sb)->s_mount_opt, ABORT);
  159. if (journal)
  160. journal_abort(journal, -EIO);
  161. }
  162. if (test_opt (sb, ERRORS_RO)) {
  163. ext3_msg(sb, KERN_CRIT,
  164. "error: remounting filesystem read-only");
  165. sb->s_flags |= MS_RDONLY;
  166. }
  167. ext3_commit_super(sb, es, 1);
  168. if (test_opt(sb, ERRORS_PANIC))
  169. panic("EXT3-fs (%s): panic forced after error\n",
  170. sb->s_id);
  171. }
  172. void ext3_error (struct super_block * sb, const char * function,
  173. const char * fmt, ...)
  174. {
  175. va_list args;
  176. va_start(args, fmt);
  177. printk(KERN_CRIT "EXT3-fs error (device %s): %s: ",sb->s_id, function);
  178. vprintk(fmt, args);
  179. printk("\n");
  180. va_end(args);
  181. ext3_handle_error(sb);
  182. }
  183. static const char *ext3_decode_error(struct super_block * sb, int errno,
  184. char nbuf[16])
  185. {
  186. char *errstr = NULL;
  187. switch (errno) {
  188. case -EIO:
  189. errstr = "IO failure";
  190. break;
  191. case -ENOMEM:
  192. errstr = "Out of memory";
  193. break;
  194. case -EROFS:
  195. if (!sb || EXT3_SB(sb)->s_journal->j_flags & JFS_ABORT)
  196. errstr = "Journal has aborted";
  197. else
  198. errstr = "Readonly filesystem";
  199. break;
  200. default:
  201. /* If the caller passed in an extra buffer for unknown
  202. * errors, textualise them now. Else we just return
  203. * NULL. */
  204. if (nbuf) {
  205. /* Check for truncated error codes... */
  206. if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
  207. errstr = nbuf;
  208. }
  209. break;
  210. }
  211. return errstr;
  212. }
  213. /* __ext3_std_error decodes expected errors from journaling functions
  214. * automatically and invokes the appropriate error response. */
  215. void __ext3_std_error (struct super_block * sb, const char * function,
  216. int errno)
  217. {
  218. char nbuf[16];
  219. const char *errstr;
  220. /* Special case: if the error is EROFS, and we're not already
  221. * inside a transaction, then there's really no point in logging
  222. * an error. */
  223. if (errno == -EROFS && journal_current_handle() == NULL &&
  224. (sb->s_flags & MS_RDONLY))
  225. return;
  226. errstr = ext3_decode_error(sb, errno, nbuf);
  227. ext3_msg(sb, KERN_CRIT, "error in %s: %s", function, errstr);
  228. ext3_handle_error(sb);
  229. }
  230. /*
  231. * ext3_abort is a much stronger failure handler than ext3_error. The
  232. * abort function may be used to deal with unrecoverable failures such
  233. * as journal IO errors or ENOMEM at a critical moment in log management.
  234. *
  235. * We unconditionally force the filesystem into an ABORT|READONLY state,
  236. * unless the error response on the fs has been set to panic in which
  237. * case we take the easy way out and panic immediately.
  238. */
  239. void ext3_abort (struct super_block * sb, const char * function,
  240. const char * fmt, ...)
  241. {
  242. va_list args;
  243. va_start(args, fmt);
  244. printk(KERN_CRIT "EXT3-fs (%s): error: %s: ", sb->s_id, function);
  245. vprintk(fmt, args);
  246. printk("\n");
  247. va_end(args);
  248. if (test_opt(sb, ERRORS_PANIC))
  249. panic("EXT3-fs: panic from previous error\n");
  250. if (sb->s_flags & MS_RDONLY)
  251. return;
  252. ext3_msg(sb, KERN_CRIT,
  253. "error: remounting filesystem read-only");
  254. EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
  255. sb->s_flags |= MS_RDONLY;
  256. set_opt(EXT3_SB(sb)->s_mount_opt, ABORT);
  257. if (EXT3_SB(sb)->s_journal)
  258. journal_abort(EXT3_SB(sb)->s_journal, -EIO);
  259. }
  260. void ext3_warning (struct super_block * sb, const char * function,
  261. const char * fmt, ...)
  262. {
  263. va_list args;
  264. va_start(args, fmt);
  265. printk(KERN_WARNING "EXT3-fs (%s): warning: %s: ",
  266. sb->s_id, function);
  267. vprintk(fmt, args);
  268. printk("\n");
  269. va_end(args);
  270. }
  271. void ext3_update_dynamic_rev(struct super_block *sb)
  272. {
  273. struct ext3_super_block *es = EXT3_SB(sb)->s_es;
  274. if (le32_to_cpu(es->s_rev_level) > EXT3_GOOD_OLD_REV)
  275. return;
  276. ext3_msg(sb, KERN_WARNING,
  277. "warning: updating to rev %d because of "
  278. "new feature flag, running e2fsck is recommended",
  279. EXT3_DYNAMIC_REV);
  280. es->s_first_ino = cpu_to_le32(EXT3_GOOD_OLD_FIRST_INO);
  281. es->s_inode_size = cpu_to_le16(EXT3_GOOD_OLD_INODE_SIZE);
  282. es->s_rev_level = cpu_to_le32(EXT3_DYNAMIC_REV);
  283. /* leave es->s_feature_*compat flags alone */
  284. /* es->s_uuid will be set by e2fsck if empty */
  285. /*
  286. * The rest of the superblock fields should be zero, and if not it
  287. * means they are likely already in use, so leave them alone. We
  288. * can leave it up to e2fsck to clean up any inconsistencies there.
  289. */
  290. }
  291. /*
  292. * Open the external journal device
  293. */
  294. static struct block_device *ext3_blkdev_get(dev_t dev, struct super_block *sb)
  295. {
  296. struct block_device *bdev;
  297. char b[BDEVNAME_SIZE];
  298. bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
  299. if (IS_ERR(bdev))
  300. goto fail;
  301. return bdev;
  302. fail:
  303. ext3_msg(sb, "error: failed to open journal device %s: %ld",
  304. __bdevname(dev, b), PTR_ERR(bdev));
  305. return NULL;
  306. }
  307. /*
  308. * Release the journal device
  309. */
  310. static int ext3_blkdev_put(struct block_device *bdev)
  311. {
  312. bd_release(bdev);
  313. return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
  314. }
  315. static int ext3_blkdev_remove(struct ext3_sb_info *sbi)
  316. {
  317. struct block_device *bdev;
  318. int ret = -ENODEV;
  319. bdev = sbi->journal_bdev;
  320. if (bdev) {
  321. ret = ext3_blkdev_put(bdev);
  322. sbi->journal_bdev = NULL;
  323. }
  324. return ret;
  325. }
  326. static inline struct inode *orphan_list_entry(struct list_head *l)
  327. {
  328. return &list_entry(l, struct ext3_inode_info, i_orphan)->vfs_inode;
  329. }
  330. static void dump_orphan_list(struct super_block *sb, struct ext3_sb_info *sbi)
  331. {
  332. struct list_head *l;
  333. ext3_msg(sb, KERN_ERR, "error: sb orphan head is %d",
  334. le32_to_cpu(sbi->s_es->s_last_orphan));
  335. ext3_msg(sb, KERN_ERR, "sb_info orphan list:");
  336. list_for_each(l, &sbi->s_orphan) {
  337. struct inode *inode = orphan_list_entry(l);
  338. ext3_msg(sb, KERN_ERR, " "
  339. "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
  340. inode->i_sb->s_id, inode->i_ino, inode,
  341. inode->i_mode, inode->i_nlink,
  342. NEXT_ORPHAN(inode));
  343. }
  344. }
  345. static void ext3_put_super (struct super_block * sb)
  346. {
  347. struct ext3_sb_info *sbi = EXT3_SB(sb);
  348. struct ext3_super_block *es = sbi->s_es;
  349. int i, err;
  350. dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
  351. lock_kernel();
  352. ext3_xattr_put_super(sb);
  353. err = journal_destroy(sbi->s_journal);
  354. sbi->s_journal = NULL;
  355. if (err < 0)
  356. ext3_abort(sb, __func__, "Couldn't clean up the journal");
  357. if (!(sb->s_flags & MS_RDONLY)) {
  358. EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
  359. es->s_state = cpu_to_le16(sbi->s_mount_state);
  360. BUFFER_TRACE(sbi->s_sbh, "marking dirty");
  361. mark_buffer_dirty(sbi->s_sbh);
  362. ext3_commit_super(sb, es, 1);
  363. }
  364. for (i = 0; i < sbi->s_gdb_count; i++)
  365. brelse(sbi->s_group_desc[i]);
  366. kfree(sbi->s_group_desc);
  367. percpu_counter_destroy(&sbi->s_freeblocks_counter);
  368. percpu_counter_destroy(&sbi->s_freeinodes_counter);
  369. percpu_counter_destroy(&sbi->s_dirs_counter);
  370. brelse(sbi->s_sbh);
  371. #ifdef CONFIG_QUOTA
  372. for (i = 0; i < MAXQUOTAS; i++)
  373. kfree(sbi->s_qf_names[i]);
  374. #endif
  375. /* Debugging code just in case the in-memory inode orphan list
  376. * isn't empty. The on-disk one can be non-empty if we've
  377. * detected an error and taken the fs readonly, but the
  378. * in-memory list had better be clean by this point. */
  379. if (!list_empty(&sbi->s_orphan))
  380. dump_orphan_list(sb, sbi);
  381. J_ASSERT(list_empty(&sbi->s_orphan));
  382. invalidate_bdev(sb->s_bdev);
  383. if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
  384. /*
  385. * Invalidate the journal device's buffers. We don't want them
  386. * floating about in memory - the physical journal device may
  387. * hotswapped, and it breaks the `ro-after' testing code.
  388. */
  389. sync_blockdev(sbi->journal_bdev);
  390. invalidate_bdev(sbi->journal_bdev);
  391. ext3_blkdev_remove(sbi);
  392. }
  393. sb->s_fs_info = NULL;
  394. kfree(sbi->s_blockgroup_lock);
  395. kfree(sbi);
  396. unlock_kernel();
  397. }
  398. static struct kmem_cache *ext3_inode_cachep;
  399. /*
  400. * Called inside transaction, so use GFP_NOFS
  401. */
  402. static struct inode *ext3_alloc_inode(struct super_block *sb)
  403. {
  404. struct ext3_inode_info *ei;
  405. ei = kmem_cache_alloc(ext3_inode_cachep, GFP_NOFS);
  406. if (!ei)
  407. return NULL;
  408. ei->i_block_alloc_info = NULL;
  409. ei->vfs_inode.i_version = 1;
  410. atomic_set(&ei->i_datasync_tid, 0);
  411. atomic_set(&ei->i_sync_tid, 0);
  412. return &ei->vfs_inode;
  413. }
  414. static void ext3_destroy_inode(struct inode *inode)
  415. {
  416. if (!list_empty(&(EXT3_I(inode)->i_orphan))) {
  417. printk("EXT3 Inode %p: orphan list check failed!\n",
  418. EXT3_I(inode));
  419. print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
  420. EXT3_I(inode), sizeof(struct ext3_inode_info),
  421. false);
  422. dump_stack();
  423. }
  424. kmem_cache_free(ext3_inode_cachep, EXT3_I(inode));
  425. }
  426. static void init_once(void *foo)
  427. {
  428. struct ext3_inode_info *ei = (struct ext3_inode_info *) foo;
  429. INIT_LIST_HEAD(&ei->i_orphan);
  430. #ifdef CONFIG_EXT3_FS_XATTR
  431. init_rwsem(&ei->xattr_sem);
  432. #endif
  433. mutex_init(&ei->truncate_mutex);
  434. inode_init_once(&ei->vfs_inode);
  435. }
  436. static int init_inodecache(void)
  437. {
  438. ext3_inode_cachep = kmem_cache_create("ext3_inode_cache",
  439. sizeof(struct ext3_inode_info),
  440. 0, (SLAB_RECLAIM_ACCOUNT|
  441. SLAB_MEM_SPREAD),
  442. init_once);
  443. if (ext3_inode_cachep == NULL)
  444. return -ENOMEM;
  445. return 0;
  446. }
  447. static void destroy_inodecache(void)
  448. {
  449. kmem_cache_destroy(ext3_inode_cachep);
  450. }
  451. static inline void ext3_show_quota_options(struct seq_file *seq, struct super_block *sb)
  452. {
  453. #if defined(CONFIG_QUOTA)
  454. struct ext3_sb_info *sbi = EXT3_SB(sb);
  455. if (sbi->s_jquota_fmt) {
  456. char *fmtname = "";
  457. switch (sbi->s_jquota_fmt) {
  458. case QFMT_VFS_OLD:
  459. fmtname = "vfsold";
  460. break;
  461. case QFMT_VFS_V0:
  462. fmtname = "vfsv0";
  463. break;
  464. case QFMT_VFS_V1:
  465. fmtname = "vfsv1";
  466. break;
  467. }
  468. seq_printf(seq, ",jqfmt=%s", fmtname);
  469. }
  470. if (sbi->s_qf_names[USRQUOTA])
  471. seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
  472. if (sbi->s_qf_names[GRPQUOTA])
  473. seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
  474. if (test_opt(sb, USRQUOTA))
  475. seq_puts(seq, ",usrquota");
  476. if (test_opt(sb, GRPQUOTA))
  477. seq_puts(seq, ",grpquota");
  478. #endif
  479. }
  480. static char *data_mode_string(unsigned long mode)
  481. {
  482. switch (mode) {
  483. case EXT3_MOUNT_JOURNAL_DATA:
  484. return "journal";
  485. case EXT3_MOUNT_ORDERED_DATA:
  486. return "ordered";
  487. case EXT3_MOUNT_WRITEBACK_DATA:
  488. return "writeback";
  489. }
  490. return "unknown";
  491. }
  492. /*
  493. * Show an option if
  494. * - it's set to a non-default value OR
  495. * - if the per-sb default is different from the global default
  496. */
  497. static int ext3_show_options(struct seq_file *seq, struct vfsmount *vfs)
  498. {
  499. struct super_block *sb = vfs->mnt_sb;
  500. struct ext3_sb_info *sbi = EXT3_SB(sb);
  501. struct ext3_super_block *es = sbi->s_es;
  502. unsigned long def_mount_opts;
  503. def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
  504. if (sbi->s_sb_block != 1)
  505. seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
  506. if (test_opt(sb, MINIX_DF))
  507. seq_puts(seq, ",minixdf");
  508. if (test_opt(sb, GRPID))
  509. seq_puts(seq, ",grpid");
  510. if (!test_opt(sb, GRPID) && (def_mount_opts & EXT3_DEFM_BSDGROUPS))
  511. seq_puts(seq, ",nogrpid");
  512. if (sbi->s_resuid != EXT3_DEF_RESUID ||
  513. le16_to_cpu(es->s_def_resuid) != EXT3_DEF_RESUID) {
  514. seq_printf(seq, ",resuid=%u", sbi->s_resuid);
  515. }
  516. if (sbi->s_resgid != EXT3_DEF_RESGID ||
  517. le16_to_cpu(es->s_def_resgid) != EXT3_DEF_RESGID) {
  518. seq_printf(seq, ",resgid=%u", sbi->s_resgid);
  519. }
  520. if (test_opt(sb, ERRORS_RO)) {
  521. int def_errors = le16_to_cpu(es->s_errors);
  522. if (def_errors == EXT3_ERRORS_PANIC ||
  523. def_errors == EXT3_ERRORS_CONTINUE) {
  524. seq_puts(seq, ",errors=remount-ro");
  525. }
  526. }
  527. if (test_opt(sb, ERRORS_CONT))
  528. seq_puts(seq, ",errors=continue");
  529. if (test_opt(sb, ERRORS_PANIC))
  530. seq_puts(seq, ",errors=panic");
  531. if (test_opt(sb, NO_UID32))
  532. seq_puts(seq, ",nouid32");
  533. if (test_opt(sb, DEBUG))
  534. seq_puts(seq, ",debug");
  535. if (test_opt(sb, OLDALLOC))
  536. seq_puts(seq, ",oldalloc");
  537. #ifdef CONFIG_EXT3_FS_XATTR
  538. if (test_opt(sb, XATTR_USER))
  539. seq_puts(seq, ",user_xattr");
  540. if (!test_opt(sb, XATTR_USER) &&
  541. (def_mount_opts & EXT3_DEFM_XATTR_USER)) {
  542. seq_puts(seq, ",nouser_xattr");
  543. }
  544. #endif
  545. #ifdef CONFIG_EXT3_FS_POSIX_ACL
  546. if (test_opt(sb, POSIX_ACL))
  547. seq_puts(seq, ",acl");
  548. if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT3_DEFM_ACL))
  549. seq_puts(seq, ",noacl");
  550. #endif
  551. if (!test_opt(sb, RESERVATION))
  552. seq_puts(seq, ",noreservation");
  553. if (sbi->s_commit_interval) {
  554. seq_printf(seq, ",commit=%u",
  555. (unsigned) (sbi->s_commit_interval / HZ));
  556. }
  557. /*
  558. * Always display barrier state so it's clear what the status is.
  559. */
  560. seq_puts(seq, ",barrier=");
  561. seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
  562. seq_printf(seq, ",data=%s", data_mode_string(test_opt(sb, DATA_FLAGS)));
  563. if (test_opt(sb, DATA_ERR_ABORT))
  564. seq_puts(seq, ",data_err=abort");
  565. if (test_opt(sb, NOLOAD))
  566. seq_puts(seq, ",norecovery");
  567. ext3_show_quota_options(seq, sb);
  568. return 0;
  569. }
  570. static struct inode *ext3_nfs_get_inode(struct super_block *sb,
  571. u64 ino, u32 generation)
  572. {
  573. struct inode *inode;
  574. if (ino < EXT3_FIRST_INO(sb) && ino != EXT3_ROOT_INO)
  575. return ERR_PTR(-ESTALE);
  576. if (ino > le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count))
  577. return ERR_PTR(-ESTALE);
  578. /* iget isn't really right if the inode is currently unallocated!!
  579. *
  580. * ext3_read_inode will return a bad_inode if the inode had been
  581. * deleted, so we should be safe.
  582. *
  583. * Currently we don't know the generation for parent directory, so
  584. * a generation of 0 means "accept any"
  585. */
  586. inode = ext3_iget(sb, ino);
  587. if (IS_ERR(inode))
  588. return ERR_CAST(inode);
  589. if (generation && inode->i_generation != generation) {
  590. iput(inode);
  591. return ERR_PTR(-ESTALE);
  592. }
  593. return inode;
  594. }
  595. static struct dentry *ext3_fh_to_dentry(struct super_block *sb, struct fid *fid,
  596. int fh_len, int fh_type)
  597. {
  598. return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
  599. ext3_nfs_get_inode);
  600. }
  601. static struct dentry *ext3_fh_to_parent(struct super_block *sb, struct fid *fid,
  602. int fh_len, int fh_type)
  603. {
  604. return generic_fh_to_parent(sb, fid, fh_len, fh_type,
  605. ext3_nfs_get_inode);
  606. }
  607. /*
  608. * Try to release metadata pages (indirect blocks, directories) which are
  609. * mapped via the block device. Since these pages could have journal heads
  610. * which would prevent try_to_free_buffers() from freeing them, we must use
  611. * jbd layer's try_to_free_buffers() function to release them.
  612. */
  613. static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
  614. gfp_t wait)
  615. {
  616. journal_t *journal = EXT3_SB(sb)->s_journal;
  617. WARN_ON(PageChecked(page));
  618. if (!page_has_buffers(page))
  619. return 0;
  620. if (journal)
  621. return journal_try_to_free_buffers(journal, page,
  622. wait & ~__GFP_WAIT);
  623. return try_to_free_buffers(page);
  624. }
  625. #ifdef CONFIG_QUOTA
  626. #define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group")
  627. #define QTYPE2MOPT(on, t) ((t)==USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
  628. static int ext3_write_dquot(struct dquot *dquot);
  629. static int ext3_acquire_dquot(struct dquot *dquot);
  630. static int ext3_release_dquot(struct dquot *dquot);
  631. static int ext3_mark_dquot_dirty(struct dquot *dquot);
  632. static int ext3_write_info(struct super_block *sb, int type);
  633. static int ext3_quota_on(struct super_block *sb, int type, int format_id,
  634. char *path);
  635. static int ext3_quota_on_mount(struct super_block *sb, int type);
  636. static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
  637. size_t len, loff_t off);
  638. static ssize_t ext3_quota_write(struct super_block *sb, int type,
  639. const char *data, size_t len, loff_t off);
  640. static const struct dquot_operations ext3_quota_operations = {
  641. .write_dquot = ext3_write_dquot,
  642. .acquire_dquot = ext3_acquire_dquot,
  643. .release_dquot = ext3_release_dquot,
  644. .mark_dirty = ext3_mark_dquot_dirty,
  645. .write_info = ext3_write_info,
  646. .alloc_dquot = dquot_alloc,
  647. .destroy_dquot = dquot_destroy,
  648. };
  649. static const struct quotactl_ops ext3_qctl_operations = {
  650. .quota_on = ext3_quota_on,
  651. .quota_off = dquot_quota_off,
  652. .quota_sync = dquot_quota_sync,
  653. .get_info = dquot_get_dqinfo,
  654. .set_info = dquot_set_dqinfo,
  655. .get_dqblk = dquot_get_dqblk,
  656. .set_dqblk = dquot_set_dqblk
  657. };
  658. #endif
  659. static const struct super_operations ext3_sops = {
  660. .alloc_inode = ext3_alloc_inode,
  661. .destroy_inode = ext3_destroy_inode,
  662. .write_inode = ext3_write_inode,
  663. .dirty_inode = ext3_dirty_inode,
  664. .evict_inode = ext3_evict_inode,
  665. .put_super = ext3_put_super,
  666. .sync_fs = ext3_sync_fs,
  667. .freeze_fs = ext3_freeze,
  668. .unfreeze_fs = ext3_unfreeze,
  669. .statfs = ext3_statfs,
  670. .remount_fs = ext3_remount,
  671. .show_options = ext3_show_options,
  672. #ifdef CONFIG_QUOTA
  673. .quota_read = ext3_quota_read,
  674. .quota_write = ext3_quota_write,
  675. #endif
  676. .bdev_try_to_free_page = bdev_try_to_free_page,
  677. };
  678. static const struct export_operations ext3_export_ops = {
  679. .fh_to_dentry = ext3_fh_to_dentry,
  680. .fh_to_parent = ext3_fh_to_parent,
  681. .get_parent = ext3_get_parent,
  682. };
  683. enum {
  684. Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
  685. Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
  686. Opt_nouid32, Opt_nocheck, Opt_debug, Opt_oldalloc, Opt_orlov,
  687. Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
  688. Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
  689. Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
  690. Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
  691. Opt_data_err_abort, Opt_data_err_ignore,
  692. Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
  693. Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
  694. Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
  695. Opt_resize, Opt_usrquota, Opt_grpquota
  696. };
  697. static const match_table_t tokens = {
  698. {Opt_bsd_df, "bsddf"},
  699. {Opt_minix_df, "minixdf"},
  700. {Opt_grpid, "grpid"},
  701. {Opt_grpid, "bsdgroups"},
  702. {Opt_nogrpid, "nogrpid"},
  703. {Opt_nogrpid, "sysvgroups"},
  704. {Opt_resgid, "resgid=%u"},
  705. {Opt_resuid, "resuid=%u"},
  706. {Opt_sb, "sb=%u"},
  707. {Opt_err_cont, "errors=continue"},
  708. {Opt_err_panic, "errors=panic"},
  709. {Opt_err_ro, "errors=remount-ro"},
  710. {Opt_nouid32, "nouid32"},
  711. {Opt_nocheck, "nocheck"},
  712. {Opt_nocheck, "check=none"},
  713. {Opt_debug, "debug"},
  714. {Opt_oldalloc, "oldalloc"},
  715. {Opt_orlov, "orlov"},
  716. {Opt_user_xattr, "user_xattr"},
  717. {Opt_nouser_xattr, "nouser_xattr"},
  718. {Opt_acl, "acl"},
  719. {Opt_noacl, "noacl"},
  720. {Opt_reservation, "reservation"},
  721. {Opt_noreservation, "noreservation"},
  722. {Opt_noload, "noload"},
  723. {Opt_noload, "norecovery"},
  724. {Opt_nobh, "nobh"},
  725. {Opt_bh, "bh"},
  726. {Opt_commit, "commit=%u"},
  727. {Opt_journal_update, "journal=update"},
  728. {Opt_journal_inum, "journal=%u"},
  729. {Opt_journal_dev, "journal_dev=%u"},
  730. {Opt_abort, "abort"},
  731. {Opt_data_journal, "data=journal"},
  732. {Opt_data_ordered, "data=ordered"},
  733. {Opt_data_writeback, "data=writeback"},
  734. {Opt_data_err_abort, "data_err=abort"},
  735. {Opt_data_err_ignore, "data_err=ignore"},
  736. {Opt_offusrjquota, "usrjquota="},
  737. {Opt_usrjquota, "usrjquota=%s"},
  738. {Opt_offgrpjquota, "grpjquota="},
  739. {Opt_grpjquota, "grpjquota=%s"},
  740. {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
  741. {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
  742. {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
  743. {Opt_grpquota, "grpquota"},
  744. {Opt_noquota, "noquota"},
  745. {Opt_quota, "quota"},
  746. {Opt_usrquota, "usrquota"},
  747. {Opt_barrier, "barrier=%u"},
  748. {Opt_barrier, "barrier"},
  749. {Opt_nobarrier, "nobarrier"},
  750. {Opt_resize, "resize"},
  751. {Opt_err, NULL},
  752. };
  753. static ext3_fsblk_t get_sb_block(void **data, struct super_block *sb)
  754. {
  755. ext3_fsblk_t sb_block;
  756. char *options = (char *) *data;
  757. if (!options || strncmp(options, "sb=", 3) != 0)
  758. return 1; /* Default location */
  759. options += 3;
  760. /*todo: use simple_strtoll with >32bit ext3 */
  761. sb_block = simple_strtoul(options, &options, 0);
  762. if (*options && *options != ',') {
  763. ext3_msg(sb, "error: invalid sb specification: %s",
  764. (char *) *data);
  765. return 1;
  766. }
  767. if (*options == ',')
  768. options++;
  769. *data = (void *) options;
  770. return sb_block;
  771. }
  772. #ifdef CONFIG_QUOTA
  773. static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
  774. {
  775. struct ext3_sb_info *sbi = EXT3_SB(sb);
  776. char *qname;
  777. if (sb_any_quota_loaded(sb) &&
  778. !sbi->s_qf_names[qtype]) {
  779. ext3_msg(sb, KERN_ERR,
  780. "Cannot change journaled "
  781. "quota options when quota turned on");
  782. return 0;
  783. }
  784. qname = match_strdup(args);
  785. if (!qname) {
  786. ext3_msg(sb, KERN_ERR,
  787. "Not enough memory for storing quotafile name");
  788. return 0;
  789. }
  790. if (sbi->s_qf_names[qtype] &&
  791. strcmp(sbi->s_qf_names[qtype], qname)) {
  792. ext3_msg(sb, KERN_ERR,
  793. "%s quota file already specified", QTYPE2NAME(qtype));
  794. kfree(qname);
  795. return 0;
  796. }
  797. sbi->s_qf_names[qtype] = qname;
  798. if (strchr(sbi->s_qf_names[qtype], '/')) {
  799. ext3_msg(sb, KERN_ERR,
  800. "quotafile must be on filesystem root");
  801. kfree(sbi->s_qf_names[qtype]);
  802. sbi->s_qf_names[qtype] = NULL;
  803. return 0;
  804. }
  805. set_opt(sbi->s_mount_opt, QUOTA);
  806. return 1;
  807. }
  808. static int clear_qf_name(struct super_block *sb, int qtype) {
  809. struct ext3_sb_info *sbi = EXT3_SB(sb);
  810. if (sb_any_quota_loaded(sb) &&
  811. sbi->s_qf_names[qtype]) {
  812. ext3_msg(sb, KERN_ERR, "Cannot change journaled quota options"
  813. " when quota turned on");
  814. return 0;
  815. }
  816. /*
  817. * The space will be released later when all options are confirmed
  818. * to be correct
  819. */
  820. sbi->s_qf_names[qtype] = NULL;
  821. return 1;
  822. }
  823. #endif
  824. static int parse_options (char *options, struct super_block *sb,
  825. unsigned int *inum, unsigned long *journal_devnum,
  826. ext3_fsblk_t *n_blocks_count, int is_remount)
  827. {
  828. struct ext3_sb_info *sbi = EXT3_SB(sb);
  829. char * p;
  830. substring_t args[MAX_OPT_ARGS];
  831. int data_opt = 0;
  832. int option;
  833. #ifdef CONFIG_QUOTA
  834. int qfmt;
  835. #endif
  836. if (!options)
  837. return 1;
  838. while ((p = strsep (&options, ",")) != NULL) {
  839. int token;
  840. if (!*p)
  841. continue;
  842. /*
  843. * Initialize args struct so we know whether arg was
  844. * found; some options take optional arguments.
  845. */
  846. args[0].to = args[0].from = 0;
  847. token = match_token(p, tokens, args);
  848. switch (token) {
  849. case Opt_bsd_df:
  850. clear_opt (sbi->s_mount_opt, MINIX_DF);
  851. break;
  852. case Opt_minix_df:
  853. set_opt (sbi->s_mount_opt, MINIX_DF);
  854. break;
  855. case Opt_grpid:
  856. set_opt (sbi->s_mount_opt, GRPID);
  857. break;
  858. case Opt_nogrpid:
  859. clear_opt (sbi->s_mount_opt, GRPID);
  860. break;
  861. case Opt_resuid:
  862. if (match_int(&args[0], &option))
  863. return 0;
  864. sbi->s_resuid = option;
  865. break;
  866. case Opt_resgid:
  867. if (match_int(&args[0], &option))
  868. return 0;
  869. sbi->s_resgid = option;
  870. break;
  871. case Opt_sb:
  872. /* handled by get_sb_block() instead of here */
  873. /* *sb_block = match_int(&args[0]); */
  874. break;
  875. case Opt_err_panic:
  876. clear_opt (sbi->s_mount_opt, ERRORS_CONT);
  877. clear_opt (sbi->s_mount_opt, ERRORS_RO);
  878. set_opt (sbi->s_mount_opt, ERRORS_PANIC);
  879. break;
  880. case Opt_err_ro:
  881. clear_opt (sbi->s_mount_opt, ERRORS_CONT);
  882. clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
  883. set_opt (sbi->s_mount_opt, ERRORS_RO);
  884. break;
  885. case Opt_err_cont:
  886. clear_opt (sbi->s_mount_opt, ERRORS_RO);
  887. clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
  888. set_opt (sbi->s_mount_opt, ERRORS_CONT);
  889. break;
  890. case Opt_nouid32:
  891. set_opt (sbi->s_mount_opt, NO_UID32);
  892. break;
  893. case Opt_nocheck:
  894. clear_opt (sbi->s_mount_opt, CHECK);
  895. break;
  896. case Opt_debug:
  897. set_opt (sbi->s_mount_opt, DEBUG);
  898. break;
  899. case Opt_oldalloc:
  900. set_opt (sbi->s_mount_opt, OLDALLOC);
  901. break;
  902. case Opt_orlov:
  903. clear_opt (sbi->s_mount_opt, OLDALLOC);
  904. break;
  905. #ifdef CONFIG_EXT3_FS_XATTR
  906. case Opt_user_xattr:
  907. set_opt (sbi->s_mount_opt, XATTR_USER);
  908. break;
  909. case Opt_nouser_xattr:
  910. clear_opt (sbi->s_mount_opt, XATTR_USER);
  911. break;
  912. #else
  913. case Opt_user_xattr:
  914. case Opt_nouser_xattr:
  915. ext3_msg(sb, KERN_INFO,
  916. "(no)user_xattr options not supported");
  917. break;
  918. #endif
  919. #ifdef CONFIG_EXT3_FS_POSIX_ACL
  920. case Opt_acl:
  921. set_opt(sbi->s_mount_opt, POSIX_ACL);
  922. break;
  923. case Opt_noacl:
  924. clear_opt(sbi->s_mount_opt, POSIX_ACL);
  925. break;
  926. #else
  927. case Opt_acl:
  928. case Opt_noacl:
  929. ext3_msg(sb, KERN_INFO,
  930. "(no)acl options not supported");
  931. break;
  932. #endif
  933. case Opt_reservation:
  934. set_opt(sbi->s_mount_opt, RESERVATION);
  935. break;
  936. case Opt_noreservation:
  937. clear_opt(sbi->s_mount_opt, RESERVATION);
  938. break;
  939. case Opt_journal_update:
  940. /* @@@ FIXME */
  941. /* Eventually we will want to be able to create
  942. a journal file here. For now, only allow the
  943. user to specify an existing inode to be the
  944. journal file. */
  945. if (is_remount) {
  946. ext3_msg(sb, KERN_ERR, "error: cannot specify "
  947. "journal on remount");
  948. return 0;
  949. }
  950. set_opt (sbi->s_mount_opt, UPDATE_JOURNAL);
  951. break;
  952. case Opt_journal_inum:
  953. if (is_remount) {
  954. ext3_msg(sb, KERN_ERR, "error: cannot specify "
  955. "journal on remount");
  956. return 0;
  957. }
  958. if (match_int(&args[0], &option))
  959. return 0;
  960. *inum = option;
  961. break;
  962. case Opt_journal_dev:
  963. if (is_remount) {
  964. ext3_msg(sb, KERN_ERR, "error: cannot specify "
  965. "journal on remount");
  966. return 0;
  967. }
  968. if (match_int(&args[0], &option))
  969. return 0;
  970. *journal_devnum = option;
  971. break;
  972. case Opt_noload:
  973. set_opt (sbi->s_mount_opt, NOLOAD);
  974. break;
  975. case Opt_commit:
  976. if (match_int(&args[0], &option))
  977. return 0;
  978. if (option < 0)
  979. return 0;
  980. if (option == 0)
  981. option = JBD_DEFAULT_MAX_COMMIT_AGE;
  982. sbi->s_commit_interval = HZ * option;
  983. break;
  984. case Opt_data_journal:
  985. data_opt = EXT3_MOUNT_JOURNAL_DATA;
  986. goto datacheck;
  987. case Opt_data_ordered:
  988. data_opt = EXT3_MOUNT_ORDERED_DATA;
  989. goto datacheck;
  990. case Opt_data_writeback:
  991. data_opt = EXT3_MOUNT_WRITEBACK_DATA;
  992. datacheck:
  993. if (is_remount) {
  994. if (test_opt(sb, DATA_FLAGS) == data_opt)
  995. break;
  996. ext3_msg(sb, KERN_ERR,
  997. "error: cannot change "
  998. "data mode on remount. The filesystem "
  999. "is mounted in data=%s mode and you "
  1000. "try to remount it in data=%s mode.",
  1001. data_mode_string(test_opt(sb,
  1002. DATA_FLAGS)),
  1003. data_mode_string(data_opt));
  1004. return 0;
  1005. } else {
  1006. clear_opt(sbi->s_mount_opt, DATA_FLAGS);
  1007. sbi->s_mount_opt |= data_opt;
  1008. }
  1009. break;
  1010. case Opt_data_err_abort:
  1011. set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
  1012. break;
  1013. case Opt_data_err_ignore:
  1014. clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
  1015. break;
  1016. #ifdef CONFIG_QUOTA
  1017. case Opt_usrjquota:
  1018. if (!set_qf_name(sb, USRQUOTA, &args[0]))
  1019. return 0;
  1020. break;
  1021. case Opt_grpjquota:
  1022. if (!set_qf_name(sb, GRPQUOTA, &args[0]))
  1023. return 0;
  1024. break;
  1025. case Opt_offusrjquota:
  1026. if (!clear_qf_name(sb, USRQUOTA))
  1027. return 0;
  1028. break;
  1029. case Opt_offgrpjquota:
  1030. if (!clear_qf_name(sb, GRPQUOTA))
  1031. return 0;
  1032. break;
  1033. case Opt_jqfmt_vfsold:
  1034. qfmt = QFMT_VFS_OLD;
  1035. goto set_qf_format;
  1036. case Opt_jqfmt_vfsv0:
  1037. qfmt = QFMT_VFS_V0;
  1038. goto set_qf_format;
  1039. case Opt_jqfmt_vfsv1:
  1040. qfmt = QFMT_VFS_V1;
  1041. set_qf_format:
  1042. if (sb_any_quota_loaded(sb) &&
  1043. sbi->s_jquota_fmt != qfmt) {
  1044. ext3_msg(sb, KERN_ERR, "error: cannot change "
  1045. "journaled quota options when "
  1046. "quota turned on.");
  1047. return 0;
  1048. }
  1049. sbi->s_jquota_fmt = qfmt;
  1050. break;
  1051. case Opt_quota:
  1052. case Opt_usrquota:
  1053. set_opt(sbi->s_mount_opt, QUOTA);
  1054. set_opt(sbi->s_mount_opt, USRQUOTA);
  1055. break;
  1056. case Opt_grpquota:
  1057. set_opt(sbi->s_mount_opt, QUOTA);
  1058. set_opt(sbi->s_mount_opt, GRPQUOTA);
  1059. break;
  1060. case Opt_noquota:
  1061. if (sb_any_quota_loaded(sb)) {
  1062. ext3_msg(sb, KERN_ERR, "error: cannot change "
  1063. "quota options when quota turned on.");
  1064. return 0;
  1065. }
  1066. clear_opt(sbi->s_mount_opt, QUOTA);
  1067. clear_opt(sbi->s_mount_opt, USRQUOTA);
  1068. clear_opt(sbi->s_mount_opt, GRPQUOTA);
  1069. break;
  1070. #else
  1071. case Opt_quota:
  1072. case Opt_usrquota:
  1073. case Opt_grpquota:
  1074. ext3_msg(sb, KERN_ERR,
  1075. "error: quota options not supported.");
  1076. break;
  1077. case Opt_usrjquota:
  1078. case Opt_grpjquota:
  1079. case Opt_offusrjquota:
  1080. case Opt_offgrpjquota:
  1081. case Opt_jqfmt_vfsold:
  1082. case Opt_jqfmt_vfsv0:
  1083. case Opt_jqfmt_vfsv1:
  1084. ext3_msg(sb, KERN_ERR,
  1085. "error: journaled quota options not "
  1086. "supported.");
  1087. break;
  1088. case Opt_noquota:
  1089. break;
  1090. #endif
  1091. case Opt_abort:
  1092. set_opt(sbi->s_mount_opt, ABORT);
  1093. break;
  1094. case Opt_nobarrier:
  1095. clear_opt(sbi->s_mount_opt, BARRIER);
  1096. break;
  1097. case Opt_barrier:
  1098. if (args[0].from) {
  1099. if (match_int(&args[0], &option))
  1100. return 0;
  1101. } else
  1102. option = 1; /* No argument, default to 1 */
  1103. if (option)
  1104. set_opt(sbi->s_mount_opt, BARRIER);
  1105. else
  1106. clear_opt(sbi->s_mount_opt, BARRIER);
  1107. break;
  1108. case Opt_ignore:
  1109. break;
  1110. case Opt_resize:
  1111. if (!is_remount) {
  1112. ext3_msg(sb, KERN_ERR,
  1113. "error: resize option only available "
  1114. "for remount");
  1115. return 0;
  1116. }
  1117. if (match_int(&args[0], &option) != 0)
  1118. return 0;
  1119. *n_blocks_count = option;
  1120. break;
  1121. case Opt_nobh:
  1122. ext3_msg(sb, KERN_WARNING,
  1123. "warning: ignoring deprecated nobh option");
  1124. break;
  1125. case Opt_bh:
  1126. ext3_msg(sb, KERN_WARNING,
  1127. "warning: ignoring deprecated bh option");
  1128. break;
  1129. default:
  1130. ext3_msg(sb, KERN_ERR,
  1131. "error: unrecognized mount option \"%s\" "
  1132. "or missing value", p);
  1133. return 0;
  1134. }
  1135. }
  1136. #ifdef CONFIG_QUOTA
  1137. if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
  1138. if (test_opt(sb, USRQUOTA) && sbi->s_qf_names[USRQUOTA])
  1139. clear_opt(sbi->s_mount_opt, USRQUOTA);
  1140. if (test_opt(sb, GRPQUOTA) && sbi->s_qf_names[GRPQUOTA])
  1141. clear_opt(sbi->s_mount_opt, GRPQUOTA);
  1142. if (test_opt(sb, GRPQUOTA) || test_opt(sb, USRQUOTA)) {
  1143. ext3_msg(sb, KERN_ERR, "error: old and new quota "
  1144. "format mixing.");
  1145. return 0;
  1146. }
  1147. if (!sbi->s_jquota_fmt) {
  1148. ext3_msg(sb, KERN_ERR, "error: journaled quota format "
  1149. "not specified.");
  1150. return 0;
  1151. }
  1152. } else {
  1153. if (sbi->s_jquota_fmt) {
  1154. ext3_msg(sb, KERN_ERR, "error: journaled quota format "
  1155. "specified with no journaling "
  1156. "enabled.");
  1157. return 0;
  1158. }
  1159. }
  1160. #endif
  1161. return 1;
  1162. }
  1163. static int ext3_setup_super(struct super_block *sb, struct ext3_super_block *es,
  1164. int read_only)
  1165. {
  1166. struct ext3_sb_info *sbi = EXT3_SB(sb);
  1167. int res = 0;
  1168. if (le32_to_cpu(es->s_rev_level) > EXT3_MAX_SUPP_REV) {
  1169. ext3_msg(sb, KERN_ERR,
  1170. "error: revision level too high, "
  1171. "forcing read-only mode");
  1172. res = MS_RDONLY;
  1173. }
  1174. if (read_only)
  1175. return res;
  1176. if (!(sbi->s_mount_state & EXT3_VALID_FS))
  1177. ext3_msg(sb, KERN_WARNING,
  1178. "warning: mounting unchecked fs, "
  1179. "running e2fsck is recommended");
  1180. else if ((sbi->s_mount_state & EXT3_ERROR_FS))
  1181. ext3_msg(sb, KERN_WARNING,
  1182. "warning: mounting fs with errors, "
  1183. "running e2fsck is recommended");
  1184. else if ((__s16) le16_to_cpu(es->s_max_mnt_count) > 0 &&
  1185. le16_to_cpu(es->s_mnt_count) >=
  1186. le16_to_cpu(es->s_max_mnt_count))
  1187. ext3_msg(sb, KERN_WARNING,
  1188. "warning: maximal mount count reached, "
  1189. "running e2fsck is recommended");
  1190. else if (le32_to_cpu(es->s_checkinterval) &&
  1191. (le32_to_cpu(es->s_lastcheck) +
  1192. le32_to_cpu(es->s_checkinterval) <= get_seconds()))
  1193. ext3_msg(sb, KERN_WARNING,
  1194. "warning: checktime reached, "
  1195. "running e2fsck is recommended");
  1196. #if 0
  1197. /* @@@ We _will_ want to clear the valid bit if we find
  1198. inconsistencies, to force a fsck at reboot. But for
  1199. a plain journaled filesystem we can keep it set as
  1200. valid forever! :) */
  1201. es->s_state &= cpu_to_le16(~EXT3_VALID_FS);
  1202. #endif
  1203. if (!le16_to_cpu(es->s_max_mnt_count))
  1204. es->s_max_mnt_count = cpu_to_le16(EXT3_DFL_MAX_MNT_COUNT);
  1205. le16_add_cpu(&es->s_mnt_count, 1);
  1206. es->s_mtime = cpu_to_le32(get_seconds());
  1207. ext3_update_dynamic_rev(sb);
  1208. EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
  1209. ext3_commit_super(sb, es, 1);
  1210. if (test_opt(sb, DEBUG))
  1211. ext3_msg(sb, KERN_INFO, "[bs=%lu, gc=%lu, "
  1212. "bpg=%lu, ipg=%lu, mo=%04lx]",
  1213. sb->s_blocksize,
  1214. sbi->s_groups_count,
  1215. EXT3_BLOCKS_PER_GROUP(sb),
  1216. EXT3_INODES_PER_GROUP(sb),
  1217. sbi->s_mount_opt);
  1218. if (EXT3_SB(sb)->s_journal->j_inode == NULL) {
  1219. char b[BDEVNAME_SIZE];
  1220. ext3_msg(sb, KERN_INFO, "using external journal on %s",
  1221. bdevname(EXT3_SB(sb)->s_journal->j_dev, b));
  1222. } else {
  1223. ext3_msg(sb, KERN_INFO, "using internal journal");
  1224. }
  1225. return res;
  1226. }
  1227. /* Called at mount-time, super-block is locked */
  1228. static int ext3_check_descriptors(struct super_block *sb)
  1229. {
  1230. struct ext3_sb_info *sbi = EXT3_SB(sb);
  1231. int i;
  1232. ext3_debug ("Checking group descriptors");
  1233. for (i = 0; i < sbi->s_groups_count; i++) {
  1234. struct ext3_group_desc *gdp = ext3_get_group_desc(sb, i, NULL);
  1235. ext3_fsblk_t first_block = ext3_group_first_block_no(sb, i);
  1236. ext3_fsblk_t last_block;
  1237. if (i == sbi->s_groups_count - 1)
  1238. last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
  1239. else
  1240. last_block = first_block +
  1241. (EXT3_BLOCKS_PER_GROUP(sb) - 1);
  1242. if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
  1243. le32_to_cpu(gdp->bg_block_bitmap) > last_block)
  1244. {
  1245. ext3_error (sb, "ext3_check_descriptors",
  1246. "Block bitmap for group %d"
  1247. " not in group (block %lu)!",
  1248. i, (unsigned long)
  1249. le32_to_cpu(gdp->bg_block_bitmap));
  1250. return 0;
  1251. }
  1252. if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
  1253. le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
  1254. {
  1255. ext3_error (sb, "ext3_check_descriptors",
  1256. "Inode bitmap for group %d"
  1257. " not in group (block %lu)!",
  1258. i, (unsigned long)
  1259. le32_to_cpu(gdp->bg_inode_bitmap));
  1260. return 0;
  1261. }
  1262. if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
  1263. le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
  1264. last_block)
  1265. {
  1266. ext3_error (sb, "ext3_check_descriptors",
  1267. "Inode table for group %d"
  1268. " not in group (block %lu)!",
  1269. i, (unsigned long)
  1270. le32_to_cpu(gdp->bg_inode_table));
  1271. return 0;
  1272. }
  1273. }
  1274. sbi->s_es->s_free_blocks_count=cpu_to_le32(ext3_count_free_blocks(sb));
  1275. sbi->s_es->s_free_inodes_count=cpu_to_le32(ext3_count_free_inodes(sb));
  1276. return 1;
  1277. }
  1278. /* ext3_orphan_cleanup() walks a singly-linked list of inodes (starting at
  1279. * the superblock) which were deleted from all directories, but held open by
  1280. * a process at the time of a crash. We walk the list and try to delete these
  1281. * inodes at recovery time (only with a read-write filesystem).
  1282. *
  1283. * In order to keep the orphan inode chain consistent during traversal (in
  1284. * case of crash during recovery), we link each inode into the superblock
  1285. * orphan list_head and handle it the same way as an inode deletion during
  1286. * normal operation (which journals the operations for us).
  1287. *
  1288. * We only do an iget() and an iput() on each inode, which is very safe if we
  1289. * accidentally point at an in-use or already deleted inode. The worst that
  1290. * can happen in this case is that we get a "bit already cleared" message from
  1291. * ext3_free_inode(). The only reason we would point at a wrong inode is if
  1292. * e2fsck was run on this filesystem, and it must have already done the orphan
  1293. * inode cleanup for us, so we can safely abort without any further action.
  1294. */
  1295. static void ext3_orphan_cleanup (struct super_block * sb,
  1296. struct ext3_super_block * es)
  1297. {
  1298. unsigned int s_flags = sb->s_flags;
  1299. int nr_orphans = 0, nr_truncates = 0;
  1300. #ifdef CONFIG_QUOTA
  1301. int i;
  1302. #endif
  1303. if (!es->s_last_orphan) {
  1304. jbd_debug(4, "no orphan inodes to clean up\n");
  1305. return;
  1306. }
  1307. if (bdev_read_only(sb->s_bdev)) {
  1308. ext3_msg(sb, KERN_ERR, "error: write access "
  1309. "unavailable, skipping orphan cleanup.");
  1310. return;
  1311. }
  1312. if (EXT3_SB(sb)->s_mount_state & EXT3_ERROR_FS) {
  1313. if (es->s_last_orphan)
  1314. jbd_debug(1, "Errors on filesystem, "
  1315. "clearing orphan list.\n");
  1316. es->s_last_orphan = 0;
  1317. jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
  1318. return;
  1319. }
  1320. if (s_flags & MS_RDONLY) {
  1321. ext3_msg(sb, KERN_INFO, "orphan cleanup on readonly fs");
  1322. sb->s_flags &= ~MS_RDONLY;
  1323. }
  1324. #ifdef CONFIG_QUOTA
  1325. /* Needed for iput() to work correctly and not trash data */
  1326. sb->s_flags |= MS_ACTIVE;
  1327. /* Turn on quotas so that they are updated correctly */
  1328. for (i = 0; i < MAXQUOTAS; i++) {
  1329. if (EXT3_SB(sb)->s_qf_names[i]) {
  1330. int ret = ext3_quota_on_mount(sb, i);
  1331. if (ret < 0)
  1332. ext3_msg(sb, KERN_ERR,
  1333. "error: cannot turn on journaled "
  1334. "quota: %d", ret);
  1335. }
  1336. }
  1337. #endif
  1338. while (es->s_last_orphan) {
  1339. struct inode *inode;
  1340. inode = ext3_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
  1341. if (IS_ERR(inode)) {
  1342. es->s_last_orphan = 0;
  1343. break;
  1344. }
  1345. list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
  1346. dquot_initialize(inode);
  1347. if (inode->i_nlink) {
  1348. printk(KERN_DEBUG
  1349. "%s: truncating inode %lu to %Ld bytes\n",
  1350. __func__, inode->i_ino, inode->i_size);
  1351. jbd_debug(2, "truncating inode %lu to %Ld bytes\n",
  1352. inode->i_ino, inode->i_size);
  1353. ext3_truncate(inode);
  1354. nr_truncates++;
  1355. } else {
  1356. printk(KERN_DEBUG
  1357. "%s: deleting unreferenced inode %lu\n",
  1358. __func__, inode->i_ino);
  1359. jbd_debug(2, "deleting unreferenced inode %lu\n",
  1360. inode->i_ino);
  1361. nr_orphans++;
  1362. }
  1363. iput(inode); /* The delete magic happens here! */
  1364. }
  1365. #define PLURAL(x) (x), ((x)==1) ? "" : "s"
  1366. if (nr_orphans)
  1367. ext3_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
  1368. PLURAL(nr_orphans));
  1369. if (nr_truncates)
  1370. ext3_msg(sb, KERN_INFO, "%d truncate%s cleaned up",
  1371. PLURAL(nr_truncates));
  1372. #ifdef CONFIG_QUOTA
  1373. /* Turn quotas off */
  1374. for (i = 0; i < MAXQUOTAS; i++) {
  1375. if (sb_dqopt(sb)->files[i])
  1376. dquot_quota_off(sb, i);
  1377. }
  1378. #endif
  1379. sb->s_flags = s_flags; /* Restore MS_RDONLY status */
  1380. }
  1381. /*
  1382. * Maximal file size. There is a direct, and {,double-,triple-}indirect
  1383. * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
  1384. * We need to be 1 filesystem block less than the 2^32 sector limit.
  1385. */
  1386. static loff_t ext3_max_size(int bits)
  1387. {
  1388. loff_t res = EXT3_NDIR_BLOCKS;
  1389. int meta_blocks;
  1390. loff_t upper_limit;
  1391. /* This is calculated to be the largest file size for a
  1392. * dense, file such that the total number of
  1393. * sectors in the file, including data and all indirect blocks,
  1394. * does not exceed 2^32 -1
  1395. * __u32 i_blocks representing the total number of
  1396. * 512 bytes blocks of the file
  1397. */
  1398. upper_limit = (1LL << 32) - 1;
  1399. /* total blocks in file system block size */
  1400. upper_limit >>= (bits - 9);
  1401. /* indirect blocks */
  1402. meta_blocks = 1;
  1403. /* double indirect blocks */
  1404. meta_blocks += 1 + (1LL << (bits-2));
  1405. /* tripple indirect blocks */
  1406. meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
  1407. upper_limit -= meta_blocks;
  1408. upper_limit <<= bits;
  1409. res += 1LL << (bits-2);
  1410. res += 1LL << (2*(bits-2));
  1411. res += 1LL << (3*(bits-2));
  1412. res <<= bits;
  1413. if (res > upper_limit)
  1414. res = upper_limit;
  1415. if (res > MAX_LFS_FILESIZE)
  1416. res = MAX_LFS_FILESIZE;
  1417. return res;
  1418. }
  1419. static ext3_fsblk_t descriptor_loc(struct super_block *sb,
  1420. ext3_fsblk_t logic_sb_block,
  1421. int nr)
  1422. {
  1423. struct ext3_sb_info *sbi = EXT3_SB(sb);
  1424. unsigned long bg, first_meta_bg;
  1425. int has_super = 0;
  1426. first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
  1427. if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_META_BG) ||
  1428. nr < first_meta_bg)
  1429. return (logic_sb_block + nr + 1);
  1430. bg = sbi->s_desc_per_block * nr;
  1431. if (ext3_bg_has_super(sb, bg))
  1432. has_super = 1;
  1433. return (has_super + ext3_group_first_block_no(sb, bg));
  1434. }
  1435. static int ext3_fill_super (struct super_block *sb, void *data, int silent)
  1436. {
  1437. struct buffer_head * bh;
  1438. struct ext3_super_block *es = NULL;
  1439. struct ext3_sb_info *sbi;
  1440. ext3_fsblk_t block;
  1441. ext3_fsblk_t sb_block = get_sb_block(&data, sb);
  1442. ext3_fsblk_t logic_sb_block;
  1443. unsigned long offset = 0;
  1444. unsigned int journal_inum = 0;
  1445. unsigned long journal_devnum = 0;
  1446. unsigned long def_mount_opts;
  1447. struct inode *root;
  1448. int blocksize;
  1449. int hblock;
  1450. int db_count;
  1451. int i;
  1452. int needs_recovery;
  1453. int ret = -EINVAL;
  1454. __le32 features;
  1455. int err;
  1456. sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
  1457. if (!sbi)
  1458. return -ENOMEM;
  1459. sbi->s_blockgroup_lock =
  1460. kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
  1461. if (!sbi->s_blockgroup_lock) {
  1462. kfree(sbi);
  1463. return -ENOMEM;
  1464. }
  1465. sb->s_fs_info = sbi;
  1466. sbi->s_mount_opt = 0;
  1467. sbi->s_resuid = EXT3_DEF_RESUID;
  1468. sbi->s_resgid = EXT3_DEF_RESGID;
  1469. sbi->s_sb_block = sb_block;
  1470. unlock_kernel();
  1471. blocksize = sb_min_blocksize(sb, EXT3_MIN_BLOCK_SIZE);
  1472. if (!blocksize) {
  1473. ext3_msg(sb, KERN_ERR, "error: unable to set blocksize");
  1474. goto out_fail;
  1475. }
  1476. /*
  1477. * The ext3 superblock will not be buffer aligned for other than 1kB
  1478. * block sizes. We need to calculate the offset from buffer start.
  1479. */
  1480. if (blocksize != EXT3_MIN_BLOCK_SIZE) {
  1481. logic_sb_block = (sb_block * EXT3_MIN_BLOCK_SIZE) / blocksize;
  1482. offset = (sb_block * EXT3_MIN_BLOCK_SIZE) % blocksize;
  1483. } else {
  1484. logic_sb_block = sb_block;
  1485. }
  1486. if (!(bh = sb_bread(sb, logic_sb_block))) {
  1487. ext3_msg(sb, KERN_ERR, "error: unable to read superblock");
  1488. goto out_fail;
  1489. }
  1490. /*
  1491. * Note: s_es must be initialized as soon as possible because
  1492. * some ext3 macro-instructions depend on its value
  1493. */
  1494. es = (struct ext3_super_block *) (bh->b_data + offset);
  1495. sbi->s_es = es;
  1496. sb->s_magic = le16_to_cpu(es->s_magic);
  1497. if (sb->s_magic != EXT3_SUPER_MAGIC)
  1498. goto cantfind_ext3;
  1499. /* Set defaults before we parse the mount options */
  1500. def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
  1501. if (def_mount_opts & EXT3_DEFM_DEBUG)
  1502. set_opt(sbi->s_mount_opt, DEBUG);
  1503. if (def_mount_opts & EXT3_DEFM_BSDGROUPS)
  1504. set_opt(sbi->s_mount_opt, GRPID);
  1505. if (def_mount_opts & EXT3_DEFM_UID16)
  1506. set_opt(sbi->s_mount_opt, NO_UID32);
  1507. #ifdef CONFIG_EXT3_FS_XATTR
  1508. if (def_mount_opts & EXT3_DEFM_XATTR_USER)
  1509. set_opt(sbi->s_mount_opt, XATTR_USER);
  1510. #endif
  1511. #ifdef CONFIG_EXT3_FS_POSIX_ACL
  1512. if (def_mount_opts & EXT3_DEFM_ACL)
  1513. set_opt(sbi->s_mount_opt, POSIX_ACL);
  1514. #endif
  1515. if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_DATA)
  1516. set_opt(sbi->s_mount_opt, JOURNAL_DATA);
  1517. else if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_ORDERED)
  1518. set_opt(sbi->s_mount_opt, ORDERED_DATA);
  1519. else if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_WBACK)
  1520. set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
  1521. if (le16_to_cpu(sbi->s_es->s_errors) == EXT3_ERRORS_PANIC)
  1522. set_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1523. else if (le16_to_cpu(sbi->s_es->s_errors) == EXT3_ERRORS_CONTINUE)
  1524. set_opt(sbi->s_mount_opt, ERRORS_CONT);
  1525. else
  1526. set_opt(sbi->s_mount_opt, ERRORS_RO);
  1527. sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
  1528. sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
  1529. set_opt(sbi->s_mount_opt, RESERVATION);
  1530. if (!parse_options ((char *) data, sb, &journal_inum, &journal_devnum,
  1531. NULL, 0))
  1532. goto failed_mount;
  1533. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  1534. (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
  1535. if (le32_to_cpu(es->s_rev_level) == EXT3_GOOD_OLD_REV &&
  1536. (EXT3_HAS_COMPAT_FEATURE(sb, ~0U) ||
  1537. EXT3_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
  1538. EXT3_HAS_INCOMPAT_FEATURE(sb, ~0U)))
  1539. ext3_msg(sb, KERN_WARNING,
  1540. "warning: feature flags set on rev 0 fs, "
  1541. "running e2fsck is recommended");
  1542. /*
  1543. * Check feature flags regardless of the revision level, since we
  1544. * previously didn't change the revision level when setting the flags,
  1545. * so there is a chance incompat flags are set on a rev 0 filesystem.
  1546. */
  1547. features = EXT3_HAS_INCOMPAT_FEATURE(sb, ~EXT3_FEATURE_INCOMPAT_SUPP);
  1548. if (features) {
  1549. ext3_msg(sb, KERN_ERR,
  1550. "error: couldn't mount because of unsupported "
  1551. "optional features (%x)", le32_to_cpu(features));
  1552. goto failed_mount;
  1553. }
  1554. features = EXT3_HAS_RO_COMPAT_FEATURE(sb, ~EXT3_FEATURE_RO_COMPAT_SUPP);
  1555. if (!(sb->s_flags & MS_RDONLY) && features) {
  1556. ext3_msg(sb, KERN_ERR,
  1557. "error: couldn't mount RDWR because of unsupported "
  1558. "optional features (%x)", le32_to_cpu(features));
  1559. goto failed_mount;
  1560. }
  1561. blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
  1562. if (blocksize < EXT3_MIN_BLOCK_SIZE ||
  1563. blocksize > EXT3_MAX_BLOCK_SIZE) {
  1564. ext3_msg(sb, KERN_ERR,
  1565. "error: couldn't mount because of unsupported "
  1566. "filesystem blocksize %d", blocksize);
  1567. goto failed_mount;
  1568. }
  1569. hblock = bdev_logical_block_size(sb->s_bdev);
  1570. if (sb->s_blocksize != blocksize) {
  1571. /*
  1572. * Make sure the blocksize for the filesystem is larger
  1573. * than the hardware sectorsize for the machine.
  1574. */
  1575. if (blocksize < hblock) {
  1576. ext3_msg(sb, KERN_ERR,
  1577. "error: fsblocksize %d too small for "
  1578. "hardware sectorsize %d", blocksize, hblock);
  1579. goto failed_mount;
  1580. }
  1581. brelse (bh);
  1582. if (!sb_set_blocksize(sb, blocksize)) {
  1583. ext3_msg(sb, KERN_ERR,
  1584. "error: bad blocksize %d", blocksize);
  1585. goto out_fail;
  1586. }
  1587. logic_sb_block = (sb_block * EXT3_MIN_BLOCK_SIZE) / blocksize;
  1588. offset = (sb_block * EXT3_MIN_BLOCK_SIZE) % blocksize;
  1589. bh = sb_bread(sb, logic_sb_block);
  1590. if (!bh) {
  1591. ext3_msg(sb, KERN_ERR,
  1592. "error: can't read superblock on 2nd try");
  1593. goto failed_mount;
  1594. }
  1595. es = (struct ext3_super_block *)(bh->b_data + offset);
  1596. sbi->s_es = es;
  1597. if (es->s_magic != cpu_to_le16(EXT3_SUPER_MAGIC)) {
  1598. ext3_msg(sb, KERN_ERR,
  1599. "error: magic mismatch");
  1600. goto failed_mount;
  1601. }
  1602. }
  1603. sb->s_maxbytes = ext3_max_size(sb->s_blocksize_bits);
  1604. if (le32_to_cpu(es->s_rev_level) == EXT3_GOOD_OLD_REV) {
  1605. sbi->s_inode_size = EXT3_GOOD_OLD_INODE_SIZE;
  1606. sbi->s_first_ino = EXT3_GOOD_OLD_FIRST_INO;
  1607. } else {
  1608. sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
  1609. sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
  1610. if ((sbi->s_inode_size < EXT3_GOOD_OLD_INODE_SIZE) ||
  1611. (!is_power_of_2(sbi->s_inode_size)) ||
  1612. (sbi->s_inode_size > blocksize)) {
  1613. ext3_msg(sb, KERN_ERR,
  1614. "error: unsupported inode size: %d",
  1615. sbi->s_inode_size);
  1616. goto failed_mount;
  1617. }
  1618. }
  1619. sbi->s_frag_size = EXT3_MIN_FRAG_SIZE <<
  1620. le32_to_cpu(es->s_log_frag_size);
  1621. if (blocksize != sbi->s_frag_size) {
  1622. ext3_msg(sb, KERN_ERR,
  1623. "error: fragsize %lu != blocksize %u (unsupported)",
  1624. sbi->s_frag_size, blocksize);
  1625. goto failed_mount;
  1626. }
  1627. sbi->s_frags_per_block = 1;
  1628. sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
  1629. sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
  1630. sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
  1631. if (EXT3_INODE_SIZE(sb) == 0 || EXT3_INODES_PER_GROUP(sb) == 0)
  1632. goto cantfind_ext3;
  1633. sbi->s_inodes_per_block = blocksize / EXT3_INODE_SIZE(sb);
  1634. if (sbi->s_inodes_per_block == 0)
  1635. goto cantfind_ext3;
  1636. sbi->s_itb_per_group = sbi->s_inodes_per_group /
  1637. sbi->s_inodes_per_block;
  1638. sbi->s_desc_per_block = blocksize / sizeof(struct ext3_group_desc);
  1639. sbi->s_sbh = bh;
  1640. sbi->s_mount_state = le16_to_cpu(es->s_state);
  1641. sbi->s_addr_per_block_bits = ilog2(EXT3_ADDR_PER_BLOCK(sb));
  1642. sbi->s_desc_per_block_bits = ilog2(EXT3_DESC_PER_BLOCK(sb));
  1643. for (i=0; i < 4; i++)
  1644. sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
  1645. sbi->s_def_hash_version = es->s_def_hash_version;
  1646. i = le32_to_cpu(es->s_flags);
  1647. if (i & EXT2_FLAGS_UNSIGNED_HASH)
  1648. sbi->s_hash_unsigned = 3;
  1649. else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
  1650. #ifdef __CHAR_UNSIGNED__
  1651. es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
  1652. sbi->s_hash_unsigned = 3;
  1653. #else
  1654. es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
  1655. #endif
  1656. }
  1657. if (sbi->s_blocks_per_group > blocksize * 8) {
  1658. ext3_msg(sb, KERN_ERR,
  1659. "#blocks per group too big: %lu",
  1660. sbi->s_blocks_per_group);
  1661. goto failed_mount;
  1662. }
  1663. if (sbi->s_frags_per_group > blocksize * 8) {
  1664. ext3_msg(sb, KERN_ERR,
  1665. "error: #fragments per group too big: %lu",
  1666. sbi->s_frags_per_group);
  1667. goto failed_mount;
  1668. }
  1669. if (sbi->s_inodes_per_group > blocksize * 8) {
  1670. ext3_msg(sb, KERN_ERR,
  1671. "error: #inodes per group too big: %lu",
  1672. sbi->s_inodes_per_group);
  1673. goto failed_mount;
  1674. }
  1675. if (le32_to_cpu(es->s_blocks_count) >
  1676. (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
  1677. ext3_msg(sb, KERN_ERR,
  1678. "error: filesystem is too large to mount safely");
  1679. if (sizeof(sector_t) < 8)
  1680. ext3_msg(sb, KERN_ERR,
  1681. "error: CONFIG_LBDAF not enabled");
  1682. goto failed_mount;
  1683. }
  1684. if (EXT3_BLOCKS_PER_GROUP(sb) == 0)
  1685. goto cantfind_ext3;
  1686. sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
  1687. le32_to_cpu(es->s_first_data_block) - 1)
  1688. / EXT3_BLOCKS_PER_GROUP(sb)) + 1;
  1689. db_count = (sbi->s_groups_count + EXT3_DESC_PER_BLOCK(sb) - 1) /
  1690. EXT3_DESC_PER_BLOCK(sb);
  1691. sbi->s_group_desc = kmalloc(db_count * sizeof (struct buffer_head *),
  1692. GFP_KERNEL);
  1693. if (sbi->s_group_desc == NULL) {
  1694. ext3_msg(sb, KERN_ERR,
  1695. "error: not enough memory");
  1696. ret = -ENOMEM;
  1697. goto failed_mount;
  1698. }
  1699. bgl_lock_init(sbi->s_blockgroup_lock);
  1700. for (i = 0; i < db_count; i++) {
  1701. block = descriptor_loc(sb, logic_sb_block, i);
  1702. sbi->s_group_desc[i] = sb_bread(sb, block);
  1703. if (!sbi->s_group_desc[i]) {
  1704. ext3_msg(sb, KERN_ERR,
  1705. "error: can't read group descriptor %d", i);
  1706. db_count = i;
  1707. goto failed_mount2;
  1708. }
  1709. }
  1710. if (!ext3_check_descriptors (sb)) {
  1711. ext3_msg(sb, KERN_ERR,
  1712. "error: group descriptors corrupted");
  1713. goto failed_mount2;
  1714. }
  1715. sbi->s_gdb_count = db_count;
  1716. get_random_bytes(&sbi->s_next_generation, sizeof(u32));
  1717. spin_lock_init(&sbi->s_next_gen_lock);
  1718. /* per fileystem reservation list head & lock */
  1719. spin_lock_init(&sbi->s_rsv_window_lock);
  1720. sbi->s_rsv_window_root = RB_ROOT;
  1721. /* Add a single, static dummy reservation to the start of the
  1722. * reservation window list --- it gives us a placeholder for
  1723. * append-at-start-of-list which makes the allocation logic
  1724. * _much_ simpler. */
  1725. sbi->s_rsv_window_head.rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
  1726. sbi->s_rsv_window_head.rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
  1727. sbi->s_rsv_window_head.rsv_alloc_hit = 0;
  1728. sbi->s_rsv_window_head.rsv_goal_size = 0;
  1729. ext3_rsv_window_add(sb, &sbi->s_rsv_window_head);
  1730. /*
  1731. * set up enough so that it can read an inode
  1732. */
  1733. sb->s_op = &ext3_sops;
  1734. sb->s_export_op = &ext3_export_ops;
  1735. sb->s_xattr = ext3_xattr_handlers;
  1736. #ifdef CONFIG_QUOTA
  1737. sb->s_qcop = &ext3_qctl_operations;
  1738. sb->dq_op = &ext3_quota_operations;
  1739. #endif
  1740. INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
  1741. mutex_init(&sbi->s_orphan_lock);
  1742. mutex_init(&sbi->s_resize_lock);
  1743. sb->s_root = NULL;
  1744. needs_recovery = (es->s_last_orphan != 0 ||
  1745. EXT3_HAS_INCOMPAT_FEATURE(sb,
  1746. EXT3_FEATURE_INCOMPAT_RECOVER));
  1747. /*
  1748. * The first inode we look at is the journal inode. Don't try
  1749. * root first: it may be modified in the journal!
  1750. */
  1751. if (!test_opt(sb, NOLOAD) &&
  1752. EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
  1753. if (ext3_load_journal(sb, es, journal_devnum))
  1754. goto failed_mount2;
  1755. } else if (journal_inum) {
  1756. if (ext3_create_journal(sb, es, journal_inum))
  1757. goto failed_mount2;
  1758. } else {
  1759. if (!silent)
  1760. ext3_msg(sb, KERN_ERR,
  1761. "error: no journal found. "
  1762. "mounting ext3 over ext2?");
  1763. goto failed_mount2;
  1764. }
  1765. err = percpu_counter_init(&sbi->s_freeblocks_counter,
  1766. ext3_count_free_blocks(sb));
  1767. if (!err) {
  1768. err = percpu_counter_init(&sbi->s_freeinodes_counter,
  1769. ext3_count_free_inodes(sb));
  1770. }
  1771. if (!err) {
  1772. err = percpu_counter_init(&sbi->s_dirs_counter,
  1773. ext3_count_dirs(sb));
  1774. }
  1775. if (err) {
  1776. ext3_msg(sb, KERN_ERR, "error: insufficient memory");
  1777. ret = err;
  1778. goto failed_mount3;
  1779. }
  1780. /* We have now updated the journal if required, so we can
  1781. * validate the data journaling mode. */
  1782. switch (test_opt(sb, DATA_FLAGS)) {
  1783. case 0:
  1784. /* No mode set, assume a default based on the journal
  1785. capabilities: ORDERED_DATA if the journal can
  1786. cope, else JOURNAL_DATA */
  1787. if (journal_check_available_features
  1788. (sbi->s_journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE))
  1789. set_opt(sbi->s_mount_opt, DEFAULT_DATA_MODE);
  1790. else
  1791. set_opt(sbi->s_mount_opt, JOURNAL_DATA);
  1792. break;
  1793. case EXT3_MOUNT_ORDERED_DATA:
  1794. case EXT3_MOUNT_WRITEBACK_DATA:
  1795. if (!journal_check_available_features
  1796. (sbi->s_journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE)) {
  1797. ext3_msg(sb, KERN_ERR,
  1798. "error: journal does not support "
  1799. "requested data journaling mode");
  1800. goto failed_mount3;
  1801. }
  1802. default:
  1803. break;
  1804. }
  1805. /*
  1806. * The journal_load will have done any necessary log recovery,
  1807. * so we can safely mount the rest of the filesystem now.
  1808. */
  1809. root = ext3_iget(sb, EXT3_ROOT_INO);
  1810. if (IS_ERR(root)) {
  1811. ext3_msg(sb, KERN_ERR, "error: get root inode failed");
  1812. ret = PTR_ERR(root);
  1813. goto failed_mount3;
  1814. }
  1815. if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
  1816. iput(root);
  1817. ext3_msg(sb, KERN_ERR, "error: corrupt root inode, run e2fsck");
  1818. goto failed_mount3;
  1819. }
  1820. sb->s_root = d_alloc_root(root);
  1821. if (!sb->s_root) {
  1822. ext3_msg(sb, KERN_ERR, "error: get root dentry failed");
  1823. iput(root);
  1824. ret = -ENOMEM;
  1825. goto failed_mount3;
  1826. }
  1827. ext3_setup_super (sb, es, sb->s_flags & MS_RDONLY);
  1828. EXT3_SB(sb)->s_mount_state |= EXT3_ORPHAN_FS;
  1829. ext3_orphan_cleanup(sb, es);
  1830. EXT3_SB(sb)->s_mount_state &= ~EXT3_ORPHAN_FS;
  1831. if (needs_recovery)
  1832. ext3_msg(sb, KERN_INFO, "recovery complete");
  1833. ext3_mark_recovery_complete(sb, es);
  1834. ext3_msg(sb, KERN_INFO, "mounted filesystem with %s data mode",
  1835. test_opt(sb,DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA ? "journal":
  1836. test_opt(sb,DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA ? "ordered":
  1837. "writeback");
  1838. lock_kernel();
  1839. return 0;
  1840. cantfind_ext3:
  1841. if (!silent)
  1842. ext3_msg(sb, KERN_INFO,
  1843. "error: can't find ext3 filesystem on dev %s.",
  1844. sb->s_id);
  1845. goto failed_mount;
  1846. failed_mount3:
  1847. percpu_counter_destroy(&sbi->s_freeblocks_counter);
  1848. percpu_counter_destroy(&sbi->s_freeinodes_counter);
  1849. percpu_counter_destroy(&sbi->s_dirs_counter);
  1850. journal_destroy(sbi->s_journal);
  1851. failed_mount2:
  1852. for (i = 0; i < db_count; i++)
  1853. brelse(sbi->s_group_desc[i]);
  1854. kfree(sbi->s_group_desc);
  1855. failed_mount:
  1856. #ifdef CONFIG_QUOTA
  1857. for (i = 0; i < MAXQUOTAS; i++)
  1858. kfree(sbi->s_qf_names[i]);
  1859. #endif
  1860. ext3_blkdev_remove(sbi);
  1861. brelse(bh);
  1862. out_fail:
  1863. sb->s_fs_info = NULL;
  1864. kfree(sbi->s_blockgroup_lock);
  1865. kfree(sbi);
  1866. lock_kernel();
  1867. return ret;
  1868. }
  1869. /*
  1870. * Setup any per-fs journal parameters now. We'll do this both on
  1871. * initial mount, once the journal has been initialised but before we've
  1872. * done any recovery; and again on any subsequent remount.
  1873. */
  1874. static void ext3_init_journal_params(struct super_block *sb, journal_t *journal)
  1875. {
  1876. struct ext3_sb_info *sbi = EXT3_SB(sb);
  1877. if (sbi->s_commit_interval)
  1878. journal->j_commit_interval = sbi->s_commit_interval;
  1879. /* We could also set up an ext3-specific default for the commit
  1880. * interval here, but for now we'll just fall back to the jbd
  1881. * default. */
  1882. spin_lock(&journal->j_state_lock);
  1883. if (test_opt(sb, BARRIER))
  1884. journal->j_flags |= JFS_BARRIER;
  1885. else
  1886. journal->j_flags &= ~JFS_BARRIER;
  1887. if (test_opt(sb, DATA_ERR_ABORT))
  1888. journal->j_flags |= JFS_ABORT_ON_SYNCDATA_ERR;
  1889. else
  1890. journal->j_flags &= ~JFS_ABORT_ON_SYNCDATA_ERR;
  1891. spin_unlock(&journal->j_state_lock);
  1892. }
  1893. static journal_t *ext3_get_journal(struct super_block *sb,
  1894. unsigned int journal_inum)
  1895. {
  1896. struct inode *journal_inode;
  1897. journal_t *journal;
  1898. /* First, test for the existence of a valid inode on disk. Bad
  1899. * things happen if we iget() an unused inode, as the subsequent
  1900. * iput() will try to delete it. */
  1901. journal_inode = ext3_iget(sb, journal_inum);
  1902. if (IS_ERR(journal_inode)) {
  1903. ext3_msg(sb, KERN_ERR, "error: no journal found");
  1904. return NULL;
  1905. }
  1906. if (!journal_inode->i_nlink) {
  1907. make_bad_inode(journal_inode);
  1908. iput(journal_inode);
  1909. ext3_msg(sb, KERN_ERR, "error: journal inode is deleted");
  1910. return NULL;
  1911. }
  1912. jbd_debug(2, "Journal inode found at %p: %Ld bytes\n",
  1913. journal_inode, journal_inode->i_size);
  1914. if (!S_ISREG(journal_inode->i_mode)) {
  1915. ext3_msg(sb, KERN_ERR, "error: invalid journal inode");
  1916. iput(journal_inode);
  1917. return NULL;
  1918. }
  1919. journal = journal_init_inode(journal_inode);
  1920. if (!journal) {
  1921. ext3_msg(sb, KERN_ERR, "error: could not load journal inode");
  1922. iput(journal_inode);
  1923. return NULL;
  1924. }
  1925. journal->j_private = sb;
  1926. ext3_init_journal_params(sb, journal);
  1927. return journal;
  1928. }
  1929. static journal_t *ext3_get_dev_journal(struct super_block *sb,
  1930. dev_t j_dev)
  1931. {
  1932. struct buffer_head * bh;
  1933. journal_t *journal;
  1934. ext3_fsblk_t start;
  1935. ext3_fsblk_t len;
  1936. int hblock, blocksize;
  1937. ext3_fsblk_t sb_block;
  1938. unsigned long offset;
  1939. struct ext3_super_block * es;
  1940. struct block_device *bdev;
  1941. bdev = ext3_blkdev_get(j_dev, sb);
  1942. if (bdev == NULL)
  1943. return NULL;
  1944. if (bd_claim(bdev, sb)) {
  1945. ext3_msg(sb, KERN_ERR,
  1946. "error: failed to claim external journal device");
  1947. blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
  1948. return NULL;
  1949. }
  1950. blocksize = sb->s_blocksize;
  1951. hblock = bdev_logical_block_size(bdev);
  1952. if (blocksize < hblock) {
  1953. ext3_msg(sb, KERN_ERR,
  1954. "error: blocksize too small for journal device");
  1955. goto out_bdev;
  1956. }
  1957. sb_block = EXT3_MIN_BLOCK_SIZE / blocksize;
  1958. offset = EXT3_MIN_BLOCK_SIZE % blocksize;
  1959. set_blocksize(bdev, blocksize);
  1960. if (!(bh = __bread(bdev, sb_block, blocksize))) {
  1961. ext3_msg(sb, KERN_ERR, "error: couldn't read superblock of "
  1962. "external journal");
  1963. goto out_bdev;
  1964. }
  1965. es = (struct ext3_super_block *) (bh->b_data + offset);
  1966. if ((le16_to_cpu(es->s_magic) != EXT3_SUPER_MAGIC) ||
  1967. !(le32_to_cpu(es->s_feature_incompat) &
  1968. EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) {
  1969. ext3_msg(sb, KERN_ERR, "error: external journal has "
  1970. "bad superblock");
  1971. brelse(bh);
  1972. goto out_bdev;
  1973. }
  1974. if (memcmp(EXT3_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
  1975. ext3_msg(sb, KERN_ERR, "error: journal UUID does not match");
  1976. brelse(bh);
  1977. goto out_bdev;
  1978. }
  1979. len = le32_to_cpu(es->s_blocks_count);
  1980. start = sb_block + 1;
  1981. brelse(bh); /* we're done with the superblock */
  1982. journal = journal_init_dev(bdev, sb->s_bdev,
  1983. start, len, blocksize);
  1984. if (!journal) {
  1985. ext3_msg(sb, KERN_ERR,
  1986. "error: failed to create device journal");
  1987. goto out_bdev;
  1988. }
  1989. journal->j_private = sb;
  1990. ll_rw_block(READ, 1, &journal->j_sb_buffer);
  1991. wait_on_buffer(journal->j_sb_buffer);
  1992. if (!buffer_uptodate(journal->j_sb_buffer)) {
  1993. ext3_msg(sb, KERN_ERR, "I/O error on journal device");
  1994. goto out_journal;
  1995. }
  1996. if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
  1997. ext3_msg(sb, KERN_ERR,
  1998. "error: external journal has more than one "
  1999. "user (unsupported) - %d",
  2000. be32_to_cpu(journal->j_superblock->s_nr_users));
  2001. goto out_journal;
  2002. }
  2003. EXT3_SB(sb)->journal_bdev = bdev;
  2004. ext3_init_journal_params(sb, journal);
  2005. return journal;
  2006. out_journal:
  2007. journal_destroy(journal);
  2008. out_bdev:
  2009. ext3_blkdev_put(bdev);
  2010. return NULL;
  2011. }
  2012. static int ext3_load_journal(struct super_block *sb,
  2013. struct ext3_super_block *es,
  2014. unsigned long journal_devnum)
  2015. {
  2016. journal_t *journal;
  2017. unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
  2018. dev_t journal_dev;
  2019. int err = 0;
  2020. int really_read_only;
  2021. if (journal_devnum &&
  2022. journal_devnum != le32_to_cpu(es->s_journal_dev)) {
  2023. ext3_msg(sb, KERN_INFO, "external journal device major/minor "
  2024. "numbers have changed");
  2025. journal_dev = new_decode_dev(journal_devnum);
  2026. } else
  2027. journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
  2028. really_read_only = bdev_read_only(sb->s_bdev);
  2029. /*
  2030. * Are we loading a blank journal or performing recovery after a
  2031. * crash? For recovery, we need to check in advance whether we
  2032. * can get read-write access to the device.
  2033. */
  2034. if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER)) {
  2035. if (sb->s_flags & MS_RDONLY) {
  2036. ext3_msg(sb, KERN_INFO,
  2037. "recovery required on readonly filesystem");
  2038. if (really_read_only) {
  2039. ext3_msg(sb, KERN_ERR, "error: write access "
  2040. "unavailable, cannot proceed");
  2041. return -EROFS;
  2042. }
  2043. ext3_msg(sb, KERN_INFO,
  2044. "write access will be enabled during recovery");
  2045. }
  2046. }
  2047. if (journal_inum && journal_dev) {
  2048. ext3_msg(sb, KERN_ERR, "error: filesystem has both journal "
  2049. "and inode journals");
  2050. return -EINVAL;
  2051. }
  2052. if (journal_inum) {
  2053. if (!(journal = ext3_get_journal(sb, journal_inum)))
  2054. return -EINVAL;
  2055. } else {
  2056. if (!(journal = ext3_get_dev_journal(sb, journal_dev)))
  2057. return -EINVAL;
  2058. }
  2059. if (!(journal->j_flags & JFS_BARRIER))
  2060. printk(KERN_INFO "EXT3-fs: barriers not enabled\n");
  2061. if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
  2062. err = journal_update_format(journal);
  2063. if (err) {
  2064. ext3_msg(sb, KERN_ERR, "error updating journal");
  2065. journal_destroy(journal);
  2066. return err;
  2067. }
  2068. }
  2069. if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER))
  2070. err = journal_wipe(journal, !really_read_only);
  2071. if (!err)
  2072. err = journal_load(journal);
  2073. if (err) {
  2074. ext3_msg(sb, KERN_ERR, "error loading journal");
  2075. journal_destroy(journal);
  2076. return err;
  2077. }
  2078. EXT3_SB(sb)->s_journal = journal;
  2079. ext3_clear_journal_err(sb, es);
  2080. if (journal_devnum &&
  2081. journal_devnum != le32_to_cpu(es->s_journal_dev)) {
  2082. es->s_journal_dev = cpu_to_le32(journal_devnum);
  2083. /* Make sure we flush the recovery flag to disk. */
  2084. ext3_commit_super(sb, es, 1);
  2085. }
  2086. return 0;
  2087. }
  2088. static int ext3_create_journal(struct super_block *sb,
  2089. struct ext3_super_block *es,
  2090. unsigned int journal_inum)
  2091. {
  2092. journal_t *journal;
  2093. int err;
  2094. if (sb->s_flags & MS_RDONLY) {
  2095. ext3_msg(sb, KERN_ERR,
  2096. "error: readonly filesystem when trying to "
  2097. "create journal");
  2098. return -EROFS;
  2099. }
  2100. journal = ext3_get_journal(sb, journal_inum);
  2101. if (!journal)
  2102. return -EINVAL;
  2103. ext3_msg(sb, KERN_INFO, "creating new journal on inode %u",
  2104. journal_inum);
  2105. err = journal_create(journal);
  2106. if (err) {
  2107. ext3_msg(sb, KERN_ERR, "error creating journal");
  2108. journal_destroy(journal);
  2109. return -EIO;
  2110. }
  2111. EXT3_SB(sb)->s_journal = journal;
  2112. ext3_update_dynamic_rev(sb);
  2113. EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
  2114. EXT3_SET_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL);
  2115. es->s_journal_inum = cpu_to_le32(journal_inum);
  2116. /* Make sure we flush the recovery flag to disk. */
  2117. ext3_commit_super(sb, es, 1);
  2118. return 0;
  2119. }
  2120. static int ext3_commit_super(struct super_block *sb,
  2121. struct ext3_super_block *es,
  2122. int sync)
  2123. {
  2124. struct buffer_head *sbh = EXT3_SB(sb)->s_sbh;
  2125. int error = 0;
  2126. if (!sbh)
  2127. return error;
  2128. if (buffer_write_io_error(sbh)) {
  2129. /*
  2130. * Oh, dear. A previous attempt to write the
  2131. * superblock failed. This could happen because the
  2132. * USB device was yanked out. Or it could happen to
  2133. * be a transient write error and maybe the block will
  2134. * be remapped. Nothing we can do but to retry the
  2135. * write and hope for the best.
  2136. */
  2137. ext3_msg(sb, KERN_ERR, "previous I/O error to "
  2138. "superblock detected");
  2139. clear_buffer_write_io_error(sbh);
  2140. set_buffer_uptodate(sbh);
  2141. }
  2142. /*
  2143. * If the file system is mounted read-only, don't update the
  2144. * superblock write time. This avoids updating the superblock
  2145. * write time when we are mounting the root file system
  2146. * read/only but we need to replay the journal; at that point,
  2147. * for people who are east of GMT and who make their clock
  2148. * tick in localtime for Windows bug-for-bug compatibility,
  2149. * the clock is set in the future, and this will cause e2fsck
  2150. * to complain and force a full file system check.
  2151. */
  2152. if (!(sb->s_flags & MS_RDONLY))
  2153. es->s_wtime = cpu_to_le32(get_seconds());
  2154. es->s_free_blocks_count = cpu_to_le32(ext3_count_free_blocks(sb));
  2155. es->s_free_inodes_count = cpu_to_le32(ext3_count_free_inodes(sb));
  2156. BUFFER_TRACE(sbh, "marking dirty");
  2157. mark_buffer_dirty(sbh);
  2158. if (sync) {
  2159. error = sync_dirty_buffer(sbh);
  2160. if (buffer_write_io_error(sbh)) {
  2161. ext3_msg(sb, KERN_ERR, "I/O error while writing "
  2162. "superblock");
  2163. clear_buffer_write_io_error(sbh);
  2164. set_buffer_uptodate(sbh);
  2165. }
  2166. }
  2167. return error;
  2168. }
  2169. /*
  2170. * Have we just finished recovery? If so, and if we are mounting (or
  2171. * remounting) the filesystem readonly, then we will end up with a
  2172. * consistent fs on disk. Record that fact.
  2173. */
  2174. static void ext3_mark_recovery_complete(struct super_block * sb,
  2175. struct ext3_super_block * es)
  2176. {
  2177. journal_t *journal = EXT3_SB(sb)->s_journal;
  2178. journal_lock_updates(journal);
  2179. if (journal_flush(journal) < 0)
  2180. goto out;
  2181. if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER) &&
  2182. sb->s_flags & MS_RDONLY) {
  2183. EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
  2184. ext3_commit_super(sb, es, 1);
  2185. }
  2186. out:
  2187. journal_unlock_updates(journal);
  2188. }
  2189. /*
  2190. * If we are mounting (or read-write remounting) a filesystem whose journal
  2191. * has recorded an error from a previous lifetime, move that error to the
  2192. * main filesystem now.
  2193. */
  2194. static void ext3_clear_journal_err(struct super_block *sb,
  2195. struct ext3_super_block *es)
  2196. {
  2197. journal_t *journal;
  2198. int j_errno;
  2199. const char *errstr;
  2200. journal = EXT3_SB(sb)->s_journal;
  2201. /*
  2202. * Now check for any error status which may have been recorded in the
  2203. * journal by a prior ext3_error() or ext3_abort()
  2204. */
  2205. j_errno = journal_errno(journal);
  2206. if (j_errno) {
  2207. char nbuf[16];
  2208. errstr = ext3_decode_error(sb, j_errno, nbuf);
  2209. ext3_warning(sb, __func__, "Filesystem error recorded "
  2210. "from previous mount: %s", errstr);
  2211. ext3_warning(sb, __func__, "Marking fs in need of "
  2212. "filesystem check.");
  2213. EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
  2214. es->s_state |= cpu_to_le16(EXT3_ERROR_FS);
  2215. ext3_commit_super (sb, es, 1);
  2216. journal_clear_err(journal);
  2217. }
  2218. }
  2219. /*
  2220. * Force the running and committing transactions to commit,
  2221. * and wait on the commit.
  2222. */
  2223. int ext3_force_commit(struct super_block *sb)
  2224. {
  2225. journal_t *journal;
  2226. int ret;
  2227. if (sb->s_flags & MS_RDONLY)
  2228. return 0;
  2229. journal = EXT3_SB(sb)->s_journal;
  2230. ret = ext3_journal_force_commit(journal);
  2231. return ret;
  2232. }
  2233. static int ext3_sync_fs(struct super_block *sb, int wait)
  2234. {
  2235. tid_t target;
  2236. if (journal_start_commit(EXT3_SB(sb)->s_journal, &target)) {
  2237. if (wait)
  2238. log_wait_commit(EXT3_SB(sb)->s_journal, target);
  2239. }
  2240. return 0;
  2241. }
  2242. /*
  2243. * LVM calls this function before a (read-only) snapshot is created. This
  2244. * gives us a chance to flush the journal completely and mark the fs clean.
  2245. */
  2246. static int ext3_freeze(struct super_block *sb)
  2247. {
  2248. int error = 0;
  2249. journal_t *journal;
  2250. if (!(sb->s_flags & MS_RDONLY)) {
  2251. journal = EXT3_SB(sb)->s_journal;
  2252. /* Now we set up the journal barrier. */
  2253. journal_lock_updates(journal);
  2254. /*
  2255. * We don't want to clear needs_recovery flag when we failed
  2256. * to flush the journal.
  2257. */
  2258. error = journal_flush(journal);
  2259. if (error < 0)
  2260. goto out;
  2261. /* Journal blocked and flushed, clear needs_recovery flag. */
  2262. EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
  2263. error = ext3_commit_super(sb, EXT3_SB(sb)->s_es, 1);
  2264. if (error)
  2265. goto out;
  2266. }
  2267. return 0;
  2268. out:
  2269. journal_unlock_updates(journal);
  2270. return error;
  2271. }
  2272. /*
  2273. * Called by LVM after the snapshot is done. We need to reset the RECOVER
  2274. * flag here, even though the filesystem is not technically dirty yet.
  2275. */
  2276. static int ext3_unfreeze(struct super_block *sb)
  2277. {
  2278. if (!(sb->s_flags & MS_RDONLY)) {
  2279. lock_super(sb);
  2280. /* Reser the needs_recovery flag before the fs is unlocked. */
  2281. EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
  2282. ext3_commit_super(sb, EXT3_SB(sb)->s_es, 1);
  2283. unlock_super(sb);
  2284. journal_unlock_updates(EXT3_SB(sb)->s_journal);
  2285. }
  2286. return 0;
  2287. }
  2288. static int ext3_remount (struct super_block * sb, int * flags, char * data)
  2289. {
  2290. struct ext3_super_block * es;
  2291. struct ext3_sb_info *sbi = EXT3_SB(sb);
  2292. ext3_fsblk_t n_blocks_count = 0;
  2293. unsigned long old_sb_flags;
  2294. struct ext3_mount_options old_opts;
  2295. int enable_quota = 0;
  2296. int err;
  2297. #ifdef CONFIG_QUOTA
  2298. int i;
  2299. #endif
  2300. lock_kernel();
  2301. /* Store the original options */
  2302. lock_super(sb);
  2303. old_sb_flags = sb->s_flags;
  2304. old_opts.s_mount_opt = sbi->s_mount_opt;
  2305. old_opts.s_resuid = sbi->s_resuid;
  2306. old_opts.s_resgid = sbi->s_resgid;
  2307. old_opts.s_commit_interval = sbi->s_commit_interval;
  2308. #ifdef CONFIG_QUOTA
  2309. old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
  2310. for (i = 0; i < MAXQUOTAS; i++)
  2311. old_opts.s_qf_names[i] = sbi->s_qf_names[i];
  2312. #endif
  2313. /*
  2314. * Allow the "check" option to be passed as a remount option.
  2315. */
  2316. if (!parse_options(data, sb, NULL, NULL, &n_blocks_count, 1)) {
  2317. err = -EINVAL;
  2318. goto restore_opts;
  2319. }
  2320. if (test_opt(sb, ABORT))
  2321. ext3_abort(sb, __func__, "Abort forced by user");
  2322. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  2323. (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
  2324. es = sbi->s_es;
  2325. ext3_init_journal_params(sb, sbi->s_journal);
  2326. if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
  2327. n_blocks_count > le32_to_cpu(es->s_blocks_count)) {
  2328. if (test_opt(sb, ABORT)) {
  2329. err = -EROFS;
  2330. goto restore_opts;
  2331. }
  2332. if (*flags & MS_RDONLY) {
  2333. err = dquot_suspend(sb, -1);
  2334. if (err < 0)
  2335. goto restore_opts;
  2336. /*
  2337. * First of all, the unconditional stuff we have to do
  2338. * to disable replay of the journal when we next remount
  2339. */
  2340. sb->s_flags |= MS_RDONLY;
  2341. /*
  2342. * OK, test if we are remounting a valid rw partition
  2343. * readonly, and if so set the rdonly flag and then
  2344. * mark the partition as valid again.
  2345. */
  2346. if (!(es->s_state & cpu_to_le16(EXT3_VALID_FS)) &&
  2347. (sbi->s_mount_state & EXT3_VALID_FS))
  2348. es->s_state = cpu_to_le16(sbi->s_mount_state);
  2349. ext3_mark_recovery_complete(sb, es);
  2350. } else {
  2351. __le32 ret;
  2352. if ((ret = EXT3_HAS_RO_COMPAT_FEATURE(sb,
  2353. ~EXT3_FEATURE_RO_COMPAT_SUPP))) {
  2354. ext3_msg(sb, KERN_WARNING,
  2355. "warning: couldn't remount RDWR "
  2356. "because of unsupported optional "
  2357. "features (%x)", le32_to_cpu(ret));
  2358. err = -EROFS;
  2359. goto restore_opts;
  2360. }
  2361. /*
  2362. * If we have an unprocessed orphan list hanging
  2363. * around from a previously readonly bdev mount,
  2364. * require a full umount/remount for now.
  2365. */
  2366. if (es->s_last_orphan) {
  2367. ext3_msg(sb, KERN_WARNING, "warning: couldn't "
  2368. "remount RDWR because of unprocessed "
  2369. "orphan inode list. Please "
  2370. "umount/remount instead.");
  2371. err = -EINVAL;
  2372. goto restore_opts;
  2373. }
  2374. /*
  2375. * Mounting a RDONLY partition read-write, so reread
  2376. * and store the current valid flag. (It may have
  2377. * been changed by e2fsck since we originally mounted
  2378. * the partition.)
  2379. */
  2380. ext3_clear_journal_err(sb, es);
  2381. sbi->s_mount_state = le16_to_cpu(es->s_state);
  2382. if ((err = ext3_group_extend(sb, es, n_blocks_count)))
  2383. goto restore_opts;
  2384. if (!ext3_setup_super (sb, es, 0))
  2385. sb->s_flags &= ~MS_RDONLY;
  2386. enable_quota = 1;
  2387. }
  2388. }
  2389. #ifdef CONFIG_QUOTA
  2390. /* Release old quota file names */
  2391. for (i = 0; i < MAXQUOTAS; i++)
  2392. if (old_opts.s_qf_names[i] &&
  2393. old_opts.s_qf_names[i] != sbi->s_qf_names[i])
  2394. kfree(old_opts.s_qf_names[i]);
  2395. #endif
  2396. unlock_super(sb);
  2397. unlock_kernel();
  2398. if (enable_quota)
  2399. dquot_resume(sb, -1);
  2400. return 0;
  2401. restore_opts:
  2402. sb->s_flags = old_sb_flags;
  2403. sbi->s_mount_opt = old_opts.s_mount_opt;
  2404. sbi->s_resuid = old_opts.s_resuid;
  2405. sbi->s_resgid = old_opts.s_resgid;
  2406. sbi->s_commit_interval = old_opts.s_commit_interval;
  2407. #ifdef CONFIG_QUOTA
  2408. sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
  2409. for (i = 0; i < MAXQUOTAS; i++) {
  2410. if (sbi->s_qf_names[i] &&
  2411. old_opts.s_qf_names[i] != sbi->s_qf_names[i])
  2412. kfree(sbi->s_qf_names[i]);
  2413. sbi->s_qf_names[i] = old_opts.s_qf_names[i];
  2414. }
  2415. #endif
  2416. unlock_super(sb);
  2417. unlock_kernel();
  2418. return err;
  2419. }
  2420. static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf)
  2421. {
  2422. struct super_block *sb = dentry->d_sb;
  2423. struct ext3_sb_info *sbi = EXT3_SB(sb);
  2424. struct ext3_super_block *es = sbi->s_es;
  2425. u64 fsid;
  2426. if (test_opt(sb, MINIX_DF)) {
  2427. sbi->s_overhead_last = 0;
  2428. } else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
  2429. unsigned long ngroups = sbi->s_groups_count, i;
  2430. ext3_fsblk_t overhead = 0;
  2431. smp_rmb();
  2432. /*
  2433. * Compute the overhead (FS structures). This is constant
  2434. * for a given filesystem unless the number of block groups
  2435. * changes so we cache the previous value until it does.
  2436. */
  2437. /*
  2438. * All of the blocks before first_data_block are
  2439. * overhead
  2440. */
  2441. overhead = le32_to_cpu(es->s_first_data_block);
  2442. /*
  2443. * Add the overhead attributed to the superblock and
  2444. * block group descriptors. If the sparse superblocks
  2445. * feature is turned on, then not all groups have this.
  2446. */
  2447. for (i = 0; i < ngroups; i++) {
  2448. overhead += ext3_bg_has_super(sb, i) +
  2449. ext3_bg_num_gdb(sb, i);
  2450. cond_resched();
  2451. }
  2452. /*
  2453. * Every block group has an inode bitmap, a block
  2454. * bitmap, and an inode table.
  2455. */
  2456. overhead += ngroups * (2 + sbi->s_itb_per_group);
  2457. sbi->s_overhead_last = overhead;
  2458. smp_wmb();
  2459. sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
  2460. }
  2461. buf->f_type = EXT3_SUPER_MAGIC;
  2462. buf->f_bsize = sb->s_blocksize;
  2463. buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
  2464. buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter);
  2465. buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
  2466. if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
  2467. buf->f_bavail = 0;
  2468. buf->f_files = le32_to_cpu(es->s_inodes_count);
  2469. buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
  2470. buf->f_namelen = EXT3_NAME_LEN;
  2471. fsid = le64_to_cpup((void *)es->s_uuid) ^
  2472. le64_to_cpup((void *)es->s_uuid + sizeof(u64));
  2473. buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
  2474. buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
  2475. return 0;
  2476. }
  2477. /* Helper function for writing quotas on sync - we need to start transaction before quota file
  2478. * is locked for write. Otherwise the are possible deadlocks:
  2479. * Process 1 Process 2
  2480. * ext3_create() quota_sync()
  2481. * journal_start() write_dquot()
  2482. * dquot_initialize() down(dqio_mutex)
  2483. * down(dqio_mutex) journal_start()
  2484. *
  2485. */
  2486. #ifdef CONFIG_QUOTA
  2487. static inline struct inode *dquot_to_inode(struct dquot *dquot)
  2488. {
  2489. return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
  2490. }
  2491. static int ext3_write_dquot(struct dquot *dquot)
  2492. {
  2493. int ret, err;
  2494. handle_t *handle;
  2495. struct inode *inode;
  2496. inode = dquot_to_inode(dquot);
  2497. handle = ext3_journal_start(inode,
  2498. EXT3_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
  2499. if (IS_ERR(handle))
  2500. return PTR_ERR(handle);
  2501. ret = dquot_commit(dquot);
  2502. err = ext3_journal_stop(handle);
  2503. if (!ret)
  2504. ret = err;
  2505. return ret;
  2506. }
  2507. static int ext3_acquire_dquot(struct dquot *dquot)
  2508. {
  2509. int ret, err;
  2510. handle_t *handle;
  2511. handle = ext3_journal_start(dquot_to_inode(dquot),
  2512. EXT3_QUOTA_INIT_BLOCKS(dquot->dq_sb));
  2513. if (IS_ERR(handle))
  2514. return PTR_ERR(handle);
  2515. ret = dquot_acquire(dquot);
  2516. err = ext3_journal_stop(handle);
  2517. if (!ret)
  2518. ret = err;
  2519. return ret;
  2520. }
  2521. static int ext3_release_dquot(struct dquot *dquot)
  2522. {
  2523. int ret, err;
  2524. handle_t *handle;
  2525. handle = ext3_journal_start(dquot_to_inode(dquot),
  2526. EXT3_QUOTA_DEL_BLOCKS(dquot->dq_sb));
  2527. if (IS_ERR(handle)) {
  2528. /* Release dquot anyway to avoid endless cycle in dqput() */
  2529. dquot_release(dquot);
  2530. return PTR_ERR(handle);
  2531. }
  2532. ret = dquot_release(dquot);
  2533. err = ext3_journal_stop(handle);
  2534. if (!ret)
  2535. ret = err;
  2536. return ret;
  2537. }
  2538. static int ext3_mark_dquot_dirty(struct dquot *dquot)
  2539. {
  2540. /* Are we journaling quotas? */
  2541. if (EXT3_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
  2542. EXT3_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
  2543. dquot_mark_dquot_dirty(dquot);
  2544. return ext3_write_dquot(dquot);
  2545. } else {
  2546. return dquot_mark_dquot_dirty(dquot);
  2547. }
  2548. }
  2549. static int ext3_write_info(struct super_block *sb, int type)
  2550. {
  2551. int ret, err;
  2552. handle_t *handle;
  2553. /* Data block + inode block */
  2554. handle = ext3_journal_start(sb->s_root->d_inode, 2);
  2555. if (IS_ERR(handle))
  2556. return PTR_ERR(handle);
  2557. ret = dquot_commit_info(sb, type);
  2558. err = ext3_journal_stop(handle);
  2559. if (!ret)
  2560. ret = err;
  2561. return ret;
  2562. }
  2563. /*
  2564. * Turn on quotas during mount time - we need to find
  2565. * the quota file and such...
  2566. */
  2567. static int ext3_quota_on_mount(struct super_block *sb, int type)
  2568. {
  2569. return dquot_quota_on_mount(sb, EXT3_SB(sb)->s_qf_names[type],
  2570. EXT3_SB(sb)->s_jquota_fmt, type);
  2571. }
  2572. /*
  2573. * Standard function to be called on quota_on
  2574. */
  2575. static int ext3_quota_on(struct super_block *sb, int type, int format_id,
  2576. char *name)
  2577. {
  2578. int err;
  2579. struct path path;
  2580. if (!test_opt(sb, QUOTA))
  2581. return -EINVAL;
  2582. err = kern_path(name, LOOKUP_FOLLOW, &path);
  2583. if (err)
  2584. return err;
  2585. /* Quotafile not on the same filesystem? */
  2586. if (path.mnt->mnt_sb != sb) {
  2587. path_put(&path);
  2588. return -EXDEV;
  2589. }
  2590. /* Journaling quota? */
  2591. if (EXT3_SB(sb)->s_qf_names[type]) {
  2592. /* Quotafile not of fs root? */
  2593. if (path.dentry->d_parent != sb->s_root)
  2594. ext3_msg(sb, KERN_WARNING,
  2595. "warning: Quota file not on filesystem root. "
  2596. "Journaled quota will not work.");
  2597. }
  2598. /*
  2599. * When we journal data on quota file, we have to flush journal to see
  2600. * all updates to the file when we bypass pagecache...
  2601. */
  2602. if (ext3_should_journal_data(path.dentry->d_inode)) {
  2603. /*
  2604. * We don't need to lock updates but journal_flush() could
  2605. * otherwise be livelocked...
  2606. */
  2607. journal_lock_updates(EXT3_SB(sb)->s_journal);
  2608. err = journal_flush(EXT3_SB(sb)->s_journal);
  2609. journal_unlock_updates(EXT3_SB(sb)->s_journal);
  2610. if (err) {
  2611. path_put(&path);
  2612. return err;
  2613. }
  2614. }
  2615. err = dquot_quota_on_path(sb, type, format_id, &path);
  2616. path_put(&path);
  2617. return err;
  2618. }
  2619. /* Read data from quotafile - avoid pagecache and such because we cannot afford
  2620. * acquiring the locks... As quota files are never truncated and quota code
  2621. * itself serializes the operations (and noone else should touch the files)
  2622. * we don't have to be afraid of races */
  2623. static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
  2624. size_t len, loff_t off)
  2625. {
  2626. struct inode *inode = sb_dqopt(sb)->files[type];
  2627. sector_t blk = off >> EXT3_BLOCK_SIZE_BITS(sb);
  2628. int err = 0;
  2629. int offset = off & (sb->s_blocksize - 1);
  2630. int tocopy;
  2631. size_t toread;
  2632. struct buffer_head *bh;
  2633. loff_t i_size = i_size_read(inode);
  2634. if (off > i_size)
  2635. return 0;
  2636. if (off+len > i_size)
  2637. len = i_size-off;
  2638. toread = len;
  2639. while (toread > 0) {
  2640. tocopy = sb->s_blocksize - offset < toread ?
  2641. sb->s_blocksize - offset : toread;
  2642. bh = ext3_bread(NULL, inode, blk, 0, &err);
  2643. if (err)
  2644. return err;
  2645. if (!bh) /* A hole? */
  2646. memset(data, 0, tocopy);
  2647. else
  2648. memcpy(data, bh->b_data+offset, tocopy);
  2649. brelse(bh);
  2650. offset = 0;
  2651. toread -= tocopy;
  2652. data += tocopy;
  2653. blk++;
  2654. }
  2655. return len;
  2656. }
  2657. /* Write to quotafile (we know the transaction is already started and has
  2658. * enough credits) */
  2659. static ssize_t ext3_quota_write(struct super_block *sb, int type,
  2660. const char *data, size_t len, loff_t off)
  2661. {
  2662. struct inode *inode = sb_dqopt(sb)->files[type];
  2663. sector_t blk = off >> EXT3_BLOCK_SIZE_BITS(sb);
  2664. int err = 0;
  2665. int offset = off & (sb->s_blocksize - 1);
  2666. int journal_quota = EXT3_SB(sb)->s_qf_names[type] != NULL;
  2667. struct buffer_head *bh;
  2668. handle_t *handle = journal_current_handle();
  2669. if (!handle) {
  2670. ext3_msg(sb, KERN_WARNING,
  2671. "warning: quota write (off=%llu, len=%llu)"
  2672. " cancelled because transaction is not started.",
  2673. (unsigned long long)off, (unsigned long long)len);
  2674. return -EIO;
  2675. }
  2676. /*
  2677. * Since we account only one data block in transaction credits,
  2678. * then it is impossible to cross a block boundary.
  2679. */
  2680. if (sb->s_blocksize - offset < len) {
  2681. ext3_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
  2682. " cancelled because not block aligned",
  2683. (unsigned long long)off, (unsigned long long)len);
  2684. return -EIO;
  2685. }
  2686. mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
  2687. bh = ext3_bread(handle, inode, blk, 1, &err);
  2688. if (!bh)
  2689. goto out;
  2690. if (journal_quota) {
  2691. err = ext3_journal_get_write_access(handle, bh);
  2692. if (err) {
  2693. brelse(bh);
  2694. goto out;
  2695. }
  2696. }
  2697. lock_buffer(bh);
  2698. memcpy(bh->b_data+offset, data, len);
  2699. flush_dcache_page(bh->b_page);
  2700. unlock_buffer(bh);
  2701. if (journal_quota)
  2702. err = ext3_journal_dirty_metadata(handle, bh);
  2703. else {
  2704. /* Always do at least ordered writes for quotas */
  2705. err = ext3_journal_dirty_data(handle, bh);
  2706. mark_buffer_dirty(bh);
  2707. }
  2708. brelse(bh);
  2709. out:
  2710. if (err) {
  2711. mutex_unlock(&inode->i_mutex);
  2712. return err;
  2713. }
  2714. if (inode->i_size < off + len) {
  2715. i_size_write(inode, off + len);
  2716. EXT3_I(inode)->i_disksize = inode->i_size;
  2717. }
  2718. inode->i_version++;
  2719. inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  2720. ext3_mark_inode_dirty(handle, inode);
  2721. mutex_unlock(&inode->i_mutex);
  2722. return len;
  2723. }
  2724. #endif
  2725. static int ext3_get_sb(struct file_system_type *fs_type,
  2726. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  2727. {
  2728. return get_sb_bdev(fs_type, flags, dev_name, data, ext3_fill_super, mnt);
  2729. }
  2730. static struct file_system_type ext3_fs_type = {
  2731. .owner = THIS_MODULE,
  2732. .name = "ext3",
  2733. .get_sb = ext3_get_sb,
  2734. .kill_sb = kill_block_super,
  2735. .fs_flags = FS_REQUIRES_DEV,
  2736. };
  2737. static int __init init_ext3_fs(void)
  2738. {
  2739. int err = init_ext3_xattr();
  2740. if (err)
  2741. return err;
  2742. err = init_inodecache();
  2743. if (err)
  2744. goto out1;
  2745. err = register_filesystem(&ext3_fs_type);
  2746. if (err)
  2747. goto out;
  2748. return 0;
  2749. out:
  2750. destroy_inodecache();
  2751. out1:
  2752. exit_ext3_xattr();
  2753. return err;
  2754. }
  2755. static void __exit exit_ext3_fs(void)
  2756. {
  2757. unregister_filesystem(&ext3_fs_type);
  2758. destroy_inodecache();
  2759. exit_ext3_xattr();
  2760. }
  2761. MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
  2762. MODULE_DESCRIPTION("Second Extended Filesystem with journaling extensions");
  2763. MODULE_LICENSE("GPL");
  2764. module_init(init_ext3_fs)
  2765. module_exit(exit_ext3_fs)