super.c 83 KB

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