super.c 83 KB

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