super.c 84 KB

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