super.c 84 KB

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