super.c 83 KB

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