super.c 82 KB

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