super.c 78 KB

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