super.c 83 KB

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