super.c 74 KB

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