super.c 83 KB

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