super.c 83 KB

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