super.c 83 KB

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