super.c 83 KB

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