super.c 85 KB

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