super.c 74 KB

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