super.c 83 KB

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