super.c 83 KB

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