super.c 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788
  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/vmalloc.h>
  23. #include <linux/jbd2.h>
  24. #include <linux/slab.h>
  25. #include <linux/init.h>
  26. #include <linux/blkdev.h>
  27. #include <linux/parser.h>
  28. #include <linux/smp_lock.h>
  29. #include <linux/buffer_head.h>
  30. #include <linux/exportfs.h>
  31. #include <linux/vfs.h>
  32. #include <linux/random.h>
  33. #include <linux/mount.h>
  34. #include <linux/namei.h>
  35. #include <linux/quotaops.h>
  36. #include <linux/seq_file.h>
  37. #include <linux/proc_fs.h>
  38. #include <linux/ctype.h>
  39. #include <linux/log2.h>
  40. #include <linux/crc16.h>
  41. #include <asm/uaccess.h>
  42. #include <linux/kthread.h>
  43. #include <linux/freezer.h>
  44. #include "ext4.h"
  45. #include "ext4_jbd2.h"
  46. #include "xattr.h"
  47. #include "acl.h"
  48. #include "mballoc.h"
  49. #define CREATE_TRACE_POINTS
  50. #include <trace/events/ext4.h>
  51. struct proc_dir_entry *ext4_proc_root;
  52. static struct kset *ext4_kset;
  53. struct ext4_lazy_init *ext4_li_info;
  54. struct mutex ext4_li_mtx;
  55. static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
  56. unsigned long journal_devnum);
  57. static int ext4_commit_super(struct super_block *sb, int sync);
  58. static void ext4_mark_recovery_complete(struct super_block *sb,
  59. struct ext4_super_block *es);
  60. static void ext4_clear_journal_err(struct super_block *sb,
  61. struct ext4_super_block *es);
  62. static int ext4_sync_fs(struct super_block *sb, int wait);
  63. static const char *ext4_decode_error(struct super_block *sb, int errno,
  64. char nbuf[16]);
  65. static int ext4_remount(struct super_block *sb, int *flags, char *data);
  66. static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
  67. static int ext4_unfreeze(struct super_block *sb);
  68. static void ext4_write_super(struct super_block *sb);
  69. static int ext4_freeze(struct super_block *sb);
  70. static int ext4_get_sb(struct file_system_type *fs_type, int flags,
  71. const char *dev_name, void *data, struct vfsmount *mnt);
  72. static void ext4_destroy_lazyinit_thread(void);
  73. static void ext4_unregister_li_request(struct super_block *sb);
  74. #if !defined(CONFIG_EXT3_FS) && !defined(CONFIG_EXT3_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
  75. static struct file_system_type ext3_fs_type = {
  76. .owner = THIS_MODULE,
  77. .name = "ext3",
  78. .get_sb = ext4_get_sb,
  79. .kill_sb = kill_block_super,
  80. .fs_flags = FS_REQUIRES_DEV,
  81. };
  82. #define IS_EXT3_SB(sb) ((sb)->s_bdev->bd_holder == &ext3_fs_type)
  83. #else
  84. #define IS_EXT3_SB(sb) (0)
  85. #endif
  86. ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
  87. struct ext4_group_desc *bg)
  88. {
  89. return le32_to_cpu(bg->bg_block_bitmap_lo) |
  90. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  91. (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
  92. }
  93. ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
  94. struct ext4_group_desc *bg)
  95. {
  96. return le32_to_cpu(bg->bg_inode_bitmap_lo) |
  97. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  98. (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
  99. }
  100. ext4_fsblk_t ext4_inode_table(struct super_block *sb,
  101. struct ext4_group_desc *bg)
  102. {
  103. return le32_to_cpu(bg->bg_inode_table_lo) |
  104. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  105. (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
  106. }
  107. __u32 ext4_free_blks_count(struct super_block *sb,
  108. struct ext4_group_desc *bg)
  109. {
  110. return le16_to_cpu(bg->bg_free_blocks_count_lo) |
  111. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  112. (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
  113. }
  114. __u32 ext4_free_inodes_count(struct super_block *sb,
  115. struct ext4_group_desc *bg)
  116. {
  117. return le16_to_cpu(bg->bg_free_inodes_count_lo) |
  118. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  119. (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
  120. }
  121. __u32 ext4_used_dirs_count(struct super_block *sb,
  122. struct ext4_group_desc *bg)
  123. {
  124. return le16_to_cpu(bg->bg_used_dirs_count_lo) |
  125. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  126. (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
  127. }
  128. __u32 ext4_itable_unused_count(struct super_block *sb,
  129. struct ext4_group_desc *bg)
  130. {
  131. return le16_to_cpu(bg->bg_itable_unused_lo) |
  132. (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
  133. (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
  134. }
  135. void ext4_block_bitmap_set(struct super_block *sb,
  136. struct ext4_group_desc *bg, ext4_fsblk_t blk)
  137. {
  138. bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
  139. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  140. bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
  141. }
  142. void ext4_inode_bitmap_set(struct super_block *sb,
  143. struct ext4_group_desc *bg, ext4_fsblk_t blk)
  144. {
  145. bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
  146. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  147. bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
  148. }
  149. void ext4_inode_table_set(struct super_block *sb,
  150. struct ext4_group_desc *bg, ext4_fsblk_t blk)
  151. {
  152. bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
  153. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  154. bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
  155. }
  156. void ext4_free_blks_set(struct super_block *sb,
  157. struct ext4_group_desc *bg, __u32 count)
  158. {
  159. bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
  160. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  161. bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
  162. }
  163. void ext4_free_inodes_set(struct super_block *sb,
  164. struct ext4_group_desc *bg, __u32 count)
  165. {
  166. bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
  167. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  168. bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
  169. }
  170. void ext4_used_dirs_set(struct super_block *sb,
  171. struct ext4_group_desc *bg, __u32 count)
  172. {
  173. bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
  174. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  175. bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
  176. }
  177. void ext4_itable_unused_set(struct super_block *sb,
  178. struct ext4_group_desc *bg, __u32 count)
  179. {
  180. bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
  181. if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
  182. bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
  183. }
  184. /* Just increment the non-pointer handle value */
  185. static handle_t *ext4_get_nojournal(void)
  186. {
  187. handle_t *handle = current->journal_info;
  188. unsigned long ref_cnt = (unsigned long)handle;
  189. BUG_ON(ref_cnt >= EXT4_NOJOURNAL_MAX_REF_COUNT);
  190. ref_cnt++;
  191. handle = (handle_t *)ref_cnt;
  192. current->journal_info = handle;
  193. return handle;
  194. }
  195. /* Decrement the non-pointer handle value */
  196. static void ext4_put_nojournal(handle_t *handle)
  197. {
  198. unsigned long ref_cnt = (unsigned long)handle;
  199. BUG_ON(ref_cnt == 0);
  200. ref_cnt--;
  201. handle = (handle_t *)ref_cnt;
  202. current->journal_info = handle;
  203. }
  204. /*
  205. * Wrappers for jbd2_journal_start/end.
  206. *
  207. * The only special thing we need to do here is to make sure that all
  208. * journal_end calls result in the superblock being marked dirty, so
  209. * that sync() will call the filesystem's write_super callback if
  210. * appropriate.
  211. */
  212. handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
  213. {
  214. journal_t *journal;
  215. if (sb->s_flags & MS_RDONLY)
  216. return ERR_PTR(-EROFS);
  217. vfs_check_frozen(sb, SB_FREEZE_TRANS);
  218. /* Special case here: if the journal has aborted behind our
  219. * backs (eg. EIO in the commit thread), then we still need to
  220. * take the FS itself readonly cleanly. */
  221. journal = EXT4_SB(sb)->s_journal;
  222. if (journal) {
  223. if (is_journal_aborted(journal)) {
  224. ext4_abort(sb, "Detected aborted journal");
  225. return ERR_PTR(-EROFS);
  226. }
  227. return jbd2_journal_start(journal, nblocks);
  228. }
  229. return ext4_get_nojournal();
  230. }
  231. /*
  232. * The only special thing we need to do here is to make sure that all
  233. * jbd2_journal_stop calls result in the superblock being marked dirty, so
  234. * that sync() will call the filesystem's write_super callback if
  235. * appropriate.
  236. */
  237. int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle)
  238. {
  239. struct super_block *sb;
  240. int err;
  241. int rc;
  242. if (!ext4_handle_valid(handle)) {
  243. ext4_put_nojournal(handle);
  244. return 0;
  245. }
  246. sb = handle->h_transaction->t_journal->j_private;
  247. err = handle->h_err;
  248. rc = jbd2_journal_stop(handle);
  249. if (!err)
  250. err = rc;
  251. if (err)
  252. __ext4_std_error(sb, where, line, err);
  253. return err;
  254. }
  255. void ext4_journal_abort_handle(const char *caller, unsigned int line,
  256. const char *err_fn, struct buffer_head *bh,
  257. handle_t *handle, int err)
  258. {
  259. char nbuf[16];
  260. const char *errstr = ext4_decode_error(NULL, err, nbuf);
  261. BUG_ON(!ext4_handle_valid(handle));
  262. if (bh)
  263. BUFFER_TRACE(bh, "abort");
  264. if (!handle->h_err)
  265. handle->h_err = err;
  266. if (is_handle_aborted(handle))
  267. return;
  268. printk(KERN_ERR "%s:%d: aborting transaction: %s in %s\n",
  269. caller, line, errstr, err_fn);
  270. jbd2_journal_abort_handle(handle);
  271. }
  272. static void __save_error_info(struct super_block *sb, const char *func,
  273. unsigned int line)
  274. {
  275. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  276. EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
  277. es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
  278. es->s_last_error_time = cpu_to_le32(get_seconds());
  279. strncpy(es->s_last_error_func, func, sizeof(es->s_last_error_func));
  280. es->s_last_error_line = cpu_to_le32(line);
  281. if (!es->s_first_error_time) {
  282. es->s_first_error_time = es->s_last_error_time;
  283. strncpy(es->s_first_error_func, func,
  284. sizeof(es->s_first_error_func));
  285. es->s_first_error_line = cpu_to_le32(line);
  286. es->s_first_error_ino = es->s_last_error_ino;
  287. es->s_first_error_block = es->s_last_error_block;
  288. }
  289. /*
  290. * Start the daily error reporting function if it hasn't been
  291. * started already
  292. */
  293. if (!es->s_error_count)
  294. mod_timer(&EXT4_SB(sb)->s_err_report, jiffies + 24*60*60*HZ);
  295. es->s_error_count = cpu_to_le32(le32_to_cpu(es->s_error_count) + 1);
  296. }
  297. static void save_error_info(struct super_block *sb, const char *func,
  298. unsigned int line)
  299. {
  300. __save_error_info(sb, func, line);
  301. ext4_commit_super(sb, 1);
  302. }
  303. /* Deal with the reporting of failure conditions on a filesystem such as
  304. * inconsistencies detected or read IO failures.
  305. *
  306. * On ext2, we can store the error state of the filesystem in the
  307. * superblock. That is not possible on ext4, because we may have other
  308. * write ordering constraints on the superblock which prevent us from
  309. * writing it out straight away; and given that the journal is about to
  310. * be aborted, we can't rely on the current, or future, transactions to
  311. * write out the superblock safely.
  312. *
  313. * We'll just use the jbd2_journal_abort() error code to record an error in
  314. * the journal instead. On recovery, the journal will complain about
  315. * that error until we've noted it down and cleared it.
  316. */
  317. static void ext4_handle_error(struct super_block *sb)
  318. {
  319. if (sb->s_flags & MS_RDONLY)
  320. return;
  321. if (!test_opt(sb, ERRORS_CONT)) {
  322. journal_t *journal = EXT4_SB(sb)->s_journal;
  323. EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
  324. if (journal)
  325. jbd2_journal_abort(journal, -EIO);
  326. }
  327. if (test_opt(sb, ERRORS_RO)) {
  328. ext4_msg(sb, KERN_CRIT, "Remounting filesystem read-only");
  329. sb->s_flags |= MS_RDONLY;
  330. }
  331. if (test_opt(sb, ERRORS_PANIC))
  332. panic("EXT4-fs (device %s): panic forced after error\n",
  333. sb->s_id);
  334. }
  335. void __ext4_error(struct super_block *sb, const char *function,
  336. unsigned int line, const char *fmt, ...)
  337. {
  338. va_list args;
  339. va_start(args, fmt);
  340. printk(KERN_CRIT "EXT4-fs error (device %s): %s:%d: comm %s: ",
  341. sb->s_id, function, line, current->comm);
  342. vprintk(fmt, args);
  343. printk("\n");
  344. va_end(args);
  345. ext4_handle_error(sb);
  346. }
  347. void ext4_error_inode(struct inode *inode, const char *function,
  348. unsigned int line, ext4_fsblk_t block,
  349. const char *fmt, ...)
  350. {
  351. va_list args;
  352. struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es;
  353. es->s_last_error_ino = cpu_to_le32(inode->i_ino);
  354. es->s_last_error_block = cpu_to_le64(block);
  355. save_error_info(inode->i_sb, function, line);
  356. va_start(args, fmt);
  357. printk(KERN_CRIT "EXT4-fs error (device %s): %s:%d: inode #%lu: ",
  358. inode->i_sb->s_id, function, line, inode->i_ino);
  359. if (block)
  360. printk("block %llu: ", block);
  361. printk("comm %s: ", current->comm);
  362. vprintk(fmt, args);
  363. printk("\n");
  364. va_end(args);
  365. ext4_handle_error(inode->i_sb);
  366. }
  367. void ext4_error_file(struct file *file, const char *function,
  368. unsigned int line, const char *fmt, ...)
  369. {
  370. va_list args;
  371. struct ext4_super_block *es;
  372. struct inode *inode = file->f_dentry->d_inode;
  373. char pathname[80], *path;
  374. es = EXT4_SB(inode->i_sb)->s_es;
  375. es->s_last_error_ino = cpu_to_le32(inode->i_ino);
  376. save_error_info(inode->i_sb, function, line);
  377. va_start(args, fmt);
  378. path = d_path(&(file->f_path), pathname, sizeof(pathname));
  379. if (!path)
  380. path = "(unknown)";
  381. printk(KERN_CRIT
  382. "EXT4-fs error (device %s): %s:%d: inode #%lu "
  383. "(comm %s path %s): ",
  384. inode->i_sb->s_id, function, line, inode->i_ino,
  385. current->comm, path);
  386. vprintk(fmt, args);
  387. printk("\n");
  388. va_end(args);
  389. ext4_handle_error(inode->i_sb);
  390. }
  391. static const char *ext4_decode_error(struct super_block *sb, int errno,
  392. char nbuf[16])
  393. {
  394. char *errstr = NULL;
  395. switch (errno) {
  396. case -EIO:
  397. errstr = "IO failure";
  398. break;
  399. case -ENOMEM:
  400. errstr = "Out of memory";
  401. break;
  402. case -EROFS:
  403. if (!sb || (EXT4_SB(sb)->s_journal &&
  404. EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT))
  405. errstr = "Journal has aborted";
  406. else
  407. errstr = "Readonly filesystem";
  408. break;
  409. default:
  410. /* If the caller passed in an extra buffer for unknown
  411. * errors, textualise them now. Else we just return
  412. * NULL. */
  413. if (nbuf) {
  414. /* Check for truncated error codes... */
  415. if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
  416. errstr = nbuf;
  417. }
  418. break;
  419. }
  420. return errstr;
  421. }
  422. /* __ext4_std_error decodes expected errors from journaling functions
  423. * automatically and invokes the appropriate error response. */
  424. void __ext4_std_error(struct super_block *sb, const char *function,
  425. unsigned int line, int errno)
  426. {
  427. char nbuf[16];
  428. const char *errstr;
  429. /* Special case: if the error is EROFS, and we're not already
  430. * inside a transaction, then there's really no point in logging
  431. * an error. */
  432. if (errno == -EROFS && journal_current_handle() == NULL &&
  433. (sb->s_flags & MS_RDONLY))
  434. return;
  435. errstr = ext4_decode_error(sb, errno, nbuf);
  436. printk(KERN_CRIT "EXT4-fs error (device %s) in %s:%d: %s\n",
  437. sb->s_id, function, line, errstr);
  438. save_error_info(sb, function, line);
  439. ext4_handle_error(sb);
  440. }
  441. /*
  442. * ext4_abort is a much stronger failure handler than ext4_error. The
  443. * abort function may be used to deal with unrecoverable failures such
  444. * as journal IO errors or ENOMEM at a critical moment in log management.
  445. *
  446. * We unconditionally force the filesystem into an ABORT|READONLY state,
  447. * unless the error response on the fs has been set to panic in which
  448. * case we take the easy way out and panic immediately.
  449. */
  450. void __ext4_abort(struct super_block *sb, const char *function,
  451. unsigned int line, const char *fmt, ...)
  452. {
  453. va_list args;
  454. save_error_info(sb, function, line);
  455. va_start(args, fmt);
  456. printk(KERN_CRIT "EXT4-fs error (device %s): %s:%d: ", sb->s_id,
  457. function, line);
  458. vprintk(fmt, args);
  459. printk("\n");
  460. va_end(args);
  461. if ((sb->s_flags & MS_RDONLY) == 0) {
  462. ext4_msg(sb, KERN_CRIT, "Remounting filesystem read-only");
  463. sb->s_flags |= MS_RDONLY;
  464. EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
  465. if (EXT4_SB(sb)->s_journal)
  466. jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
  467. save_error_info(sb, function, line);
  468. }
  469. if (test_opt(sb, ERRORS_PANIC))
  470. panic("EXT4-fs panic from previous error\n");
  471. }
  472. void ext4_msg (struct super_block * sb, const char *prefix,
  473. const char *fmt, ...)
  474. {
  475. va_list args;
  476. va_start(args, fmt);
  477. printk("%sEXT4-fs (%s): ", prefix, sb->s_id);
  478. vprintk(fmt, args);
  479. printk("\n");
  480. va_end(args);
  481. }
  482. void __ext4_warning(struct super_block *sb, const char *function,
  483. unsigned int line, const char *fmt, ...)
  484. {
  485. va_list args;
  486. va_start(args, fmt);
  487. printk(KERN_WARNING "EXT4-fs warning (device %s): %s:%d: ",
  488. sb->s_id, function, line);
  489. vprintk(fmt, args);
  490. printk("\n");
  491. va_end(args);
  492. }
  493. void __ext4_grp_locked_error(const char *function, unsigned int line,
  494. struct super_block *sb, ext4_group_t grp,
  495. unsigned long ino, ext4_fsblk_t block,
  496. const char *fmt, ...)
  497. __releases(bitlock)
  498. __acquires(bitlock)
  499. {
  500. va_list args;
  501. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  502. es->s_last_error_ino = cpu_to_le32(ino);
  503. es->s_last_error_block = cpu_to_le64(block);
  504. __save_error_info(sb, function, line);
  505. va_start(args, fmt);
  506. printk(KERN_CRIT "EXT4-fs error (device %s): %s:%d: group %u",
  507. sb->s_id, function, line, grp);
  508. if (ino)
  509. printk("inode %lu: ", ino);
  510. if (block)
  511. printk("block %llu:", (unsigned long long) block);
  512. vprintk(fmt, args);
  513. printk("\n");
  514. va_end(args);
  515. if (test_opt(sb, ERRORS_CONT)) {
  516. ext4_commit_super(sb, 0);
  517. return;
  518. }
  519. ext4_unlock_group(sb, grp);
  520. ext4_handle_error(sb);
  521. /*
  522. * We only get here in the ERRORS_RO case; relocking the group
  523. * may be dangerous, but nothing bad will happen since the
  524. * filesystem will have already been marked read/only and the
  525. * journal has been aborted. We return 1 as a hint to callers
  526. * who might what to use the return value from
  527. * ext4_grp_locked_error() to distinguish beween the
  528. * ERRORS_CONT and ERRORS_RO case, and perhaps return more
  529. * aggressively from the ext4 function in question, with a
  530. * more appropriate error code.
  531. */
  532. ext4_lock_group(sb, grp);
  533. return;
  534. }
  535. void ext4_update_dynamic_rev(struct super_block *sb)
  536. {
  537. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  538. if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
  539. return;
  540. ext4_warning(sb,
  541. "updating to rev %d because of new feature flag, "
  542. "running e2fsck is recommended",
  543. EXT4_DYNAMIC_REV);
  544. es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
  545. es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
  546. es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
  547. /* leave es->s_feature_*compat flags alone */
  548. /* es->s_uuid will be set by e2fsck if empty */
  549. /*
  550. * The rest of the superblock fields should be zero, and if not it
  551. * means they are likely already in use, so leave them alone. We
  552. * can leave it up to e2fsck to clean up any inconsistencies there.
  553. */
  554. }
  555. /*
  556. * Open the external journal device
  557. */
  558. static struct block_device *ext4_blkdev_get(dev_t dev, struct super_block *sb)
  559. {
  560. struct block_device *bdev;
  561. char b[BDEVNAME_SIZE];
  562. bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
  563. if (IS_ERR(bdev))
  564. goto fail;
  565. return bdev;
  566. fail:
  567. ext4_msg(sb, KERN_ERR, "failed to open journal device %s: %ld",
  568. __bdevname(dev, b), PTR_ERR(bdev));
  569. return NULL;
  570. }
  571. /*
  572. * Release the journal device
  573. */
  574. static int ext4_blkdev_put(struct block_device *bdev)
  575. {
  576. bd_release(bdev);
  577. return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
  578. }
  579. static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
  580. {
  581. struct block_device *bdev;
  582. int ret = -ENODEV;
  583. bdev = sbi->journal_bdev;
  584. if (bdev) {
  585. ret = ext4_blkdev_put(bdev);
  586. sbi->journal_bdev = NULL;
  587. }
  588. return ret;
  589. }
  590. static inline struct inode *orphan_list_entry(struct list_head *l)
  591. {
  592. return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
  593. }
  594. static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
  595. {
  596. struct list_head *l;
  597. ext4_msg(sb, KERN_ERR, "sb orphan head is %d",
  598. le32_to_cpu(sbi->s_es->s_last_orphan));
  599. printk(KERN_ERR "sb_info orphan list:\n");
  600. list_for_each(l, &sbi->s_orphan) {
  601. struct inode *inode = orphan_list_entry(l);
  602. printk(KERN_ERR " "
  603. "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
  604. inode->i_sb->s_id, inode->i_ino, inode,
  605. inode->i_mode, inode->i_nlink,
  606. NEXT_ORPHAN(inode));
  607. }
  608. }
  609. static void ext4_put_super(struct super_block *sb)
  610. {
  611. struct ext4_sb_info *sbi = EXT4_SB(sb);
  612. struct ext4_super_block *es = sbi->s_es;
  613. int i, err;
  614. dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
  615. flush_workqueue(sbi->dio_unwritten_wq);
  616. destroy_workqueue(sbi->dio_unwritten_wq);
  617. lock_super(sb);
  618. lock_kernel();
  619. if (sb->s_dirt)
  620. ext4_commit_super(sb, 1);
  621. if (sbi->s_journal) {
  622. err = jbd2_journal_destroy(sbi->s_journal);
  623. sbi->s_journal = NULL;
  624. if (err < 0)
  625. ext4_abort(sb, "Couldn't clean up the journal");
  626. }
  627. del_timer(&sbi->s_err_report);
  628. ext4_unregister_li_request(sb);
  629. ext4_release_system_zone(sb);
  630. ext4_mb_release(sb);
  631. ext4_ext_release(sb);
  632. ext4_xattr_put_super(sb);
  633. if (!(sb->s_flags & MS_RDONLY)) {
  634. EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  635. es->s_state = cpu_to_le16(sbi->s_mount_state);
  636. ext4_commit_super(sb, 1);
  637. }
  638. if (sbi->s_proc) {
  639. remove_proc_entry(sb->s_id, ext4_proc_root);
  640. }
  641. kobject_del(&sbi->s_kobj);
  642. for (i = 0; i < sbi->s_gdb_count; i++)
  643. brelse(sbi->s_group_desc[i]);
  644. kfree(sbi->s_group_desc);
  645. if (is_vmalloc_addr(sbi->s_flex_groups))
  646. vfree(sbi->s_flex_groups);
  647. else
  648. kfree(sbi->s_flex_groups);
  649. percpu_counter_destroy(&sbi->s_freeblocks_counter);
  650. percpu_counter_destroy(&sbi->s_freeinodes_counter);
  651. percpu_counter_destroy(&sbi->s_dirs_counter);
  652. percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
  653. brelse(sbi->s_sbh);
  654. #ifdef CONFIG_QUOTA
  655. for (i = 0; i < MAXQUOTAS; i++)
  656. kfree(sbi->s_qf_names[i]);
  657. #endif
  658. /* Debugging code just in case the in-memory inode orphan list
  659. * isn't empty. The on-disk one can be non-empty if we've
  660. * detected an error and taken the fs readonly, but the
  661. * in-memory list had better be clean by this point. */
  662. if (!list_empty(&sbi->s_orphan))
  663. dump_orphan_list(sb, sbi);
  664. J_ASSERT(list_empty(&sbi->s_orphan));
  665. invalidate_bdev(sb->s_bdev);
  666. if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
  667. /*
  668. * Invalidate the journal device's buffers. We don't want them
  669. * floating about in memory - the physical journal device may
  670. * hotswapped, and it breaks the `ro-after' testing code.
  671. */
  672. sync_blockdev(sbi->journal_bdev);
  673. invalidate_bdev(sbi->journal_bdev);
  674. ext4_blkdev_remove(sbi);
  675. }
  676. sb->s_fs_info = NULL;
  677. /*
  678. * Now that we are completely done shutting down the
  679. * superblock, we need to actually destroy the kobject.
  680. */
  681. unlock_kernel();
  682. unlock_super(sb);
  683. kobject_put(&sbi->s_kobj);
  684. wait_for_completion(&sbi->s_kobj_unregister);
  685. kfree(sbi->s_blockgroup_lock);
  686. kfree(sbi);
  687. }
  688. static struct kmem_cache *ext4_inode_cachep;
  689. /*
  690. * Called inside transaction, so use GFP_NOFS
  691. */
  692. static struct inode *ext4_alloc_inode(struct super_block *sb)
  693. {
  694. struct ext4_inode_info *ei;
  695. ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
  696. if (!ei)
  697. return NULL;
  698. ei->vfs_inode.i_version = 1;
  699. ei->vfs_inode.i_data.writeback_index = 0;
  700. memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
  701. INIT_LIST_HEAD(&ei->i_prealloc_list);
  702. spin_lock_init(&ei->i_prealloc_lock);
  703. /*
  704. * Note: We can be called before EXT4_SB(sb)->s_journal is set,
  705. * therefore it can be null here. Don't check it, just initialize
  706. * jinode.
  707. */
  708. jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
  709. ei->i_reserved_data_blocks = 0;
  710. ei->i_reserved_meta_blocks = 0;
  711. ei->i_allocated_meta_blocks = 0;
  712. ei->i_da_metadata_calc_len = 0;
  713. ei->i_delalloc_reserved_flag = 0;
  714. spin_lock_init(&(ei->i_block_reservation_lock));
  715. #ifdef CONFIG_QUOTA
  716. ei->i_reserved_quota = 0;
  717. #endif
  718. INIT_LIST_HEAD(&ei->i_completed_io_list);
  719. spin_lock_init(&ei->i_completed_io_lock);
  720. ei->cur_aio_dio = NULL;
  721. ei->i_sync_tid = 0;
  722. ei->i_datasync_tid = 0;
  723. return &ei->vfs_inode;
  724. }
  725. static void ext4_destroy_inode(struct inode *inode)
  726. {
  727. if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
  728. ext4_msg(inode->i_sb, KERN_ERR,
  729. "Inode %lu (%p): orphan list check failed!",
  730. inode->i_ino, EXT4_I(inode));
  731. print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
  732. EXT4_I(inode), sizeof(struct ext4_inode_info),
  733. true);
  734. dump_stack();
  735. }
  736. kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
  737. }
  738. static void init_once(void *foo)
  739. {
  740. struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
  741. INIT_LIST_HEAD(&ei->i_orphan);
  742. #ifdef CONFIG_EXT4_FS_XATTR
  743. init_rwsem(&ei->xattr_sem);
  744. #endif
  745. init_rwsem(&ei->i_data_sem);
  746. inode_init_once(&ei->vfs_inode);
  747. }
  748. static int init_inodecache(void)
  749. {
  750. ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
  751. sizeof(struct ext4_inode_info),
  752. 0, (SLAB_RECLAIM_ACCOUNT|
  753. SLAB_MEM_SPREAD),
  754. init_once);
  755. if (ext4_inode_cachep == NULL)
  756. return -ENOMEM;
  757. return 0;
  758. }
  759. static void destroy_inodecache(void)
  760. {
  761. kmem_cache_destroy(ext4_inode_cachep);
  762. }
  763. void ext4_clear_inode(struct inode *inode)
  764. {
  765. invalidate_inode_buffers(inode);
  766. end_writeback(inode);
  767. dquot_drop(inode);
  768. ext4_discard_preallocations(inode);
  769. if (EXT4_JOURNAL(inode))
  770. jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
  771. &EXT4_I(inode)->jinode);
  772. }
  773. static inline void ext4_show_quota_options(struct seq_file *seq,
  774. struct super_block *sb)
  775. {
  776. #if defined(CONFIG_QUOTA)
  777. struct ext4_sb_info *sbi = EXT4_SB(sb);
  778. if (sbi->s_jquota_fmt) {
  779. char *fmtname = "";
  780. switch (sbi->s_jquota_fmt) {
  781. case QFMT_VFS_OLD:
  782. fmtname = "vfsold";
  783. break;
  784. case QFMT_VFS_V0:
  785. fmtname = "vfsv0";
  786. break;
  787. case QFMT_VFS_V1:
  788. fmtname = "vfsv1";
  789. break;
  790. }
  791. seq_printf(seq, ",jqfmt=%s", fmtname);
  792. }
  793. if (sbi->s_qf_names[USRQUOTA])
  794. seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
  795. if (sbi->s_qf_names[GRPQUOTA])
  796. seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
  797. if (test_opt(sb, USRQUOTA))
  798. seq_puts(seq, ",usrquota");
  799. if (test_opt(sb, GRPQUOTA))
  800. seq_puts(seq, ",grpquota");
  801. #endif
  802. }
  803. /*
  804. * Show an option if
  805. * - it's set to a non-default value OR
  806. * - if the per-sb default is different from the global default
  807. */
  808. static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
  809. {
  810. int def_errors;
  811. unsigned long def_mount_opts;
  812. struct super_block *sb = vfs->mnt_sb;
  813. struct ext4_sb_info *sbi = EXT4_SB(sb);
  814. struct ext4_super_block *es = sbi->s_es;
  815. def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
  816. def_errors = le16_to_cpu(es->s_errors);
  817. if (sbi->s_sb_block != 1)
  818. seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
  819. if (test_opt(sb, MINIX_DF))
  820. seq_puts(seq, ",minixdf");
  821. if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
  822. seq_puts(seq, ",grpid");
  823. if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
  824. seq_puts(seq, ",nogrpid");
  825. if (sbi->s_resuid != EXT4_DEF_RESUID ||
  826. le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
  827. seq_printf(seq, ",resuid=%u", sbi->s_resuid);
  828. }
  829. if (sbi->s_resgid != EXT4_DEF_RESGID ||
  830. le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
  831. seq_printf(seq, ",resgid=%u", sbi->s_resgid);
  832. }
  833. if (test_opt(sb, ERRORS_RO)) {
  834. if (def_errors == EXT4_ERRORS_PANIC ||
  835. def_errors == EXT4_ERRORS_CONTINUE) {
  836. seq_puts(seq, ",errors=remount-ro");
  837. }
  838. }
  839. if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
  840. seq_puts(seq, ",errors=continue");
  841. if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
  842. seq_puts(seq, ",errors=panic");
  843. if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
  844. seq_puts(seq, ",nouid32");
  845. if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
  846. seq_puts(seq, ",debug");
  847. if (test_opt(sb, OLDALLOC))
  848. seq_puts(seq, ",oldalloc");
  849. #ifdef CONFIG_EXT4_FS_XATTR
  850. if (test_opt(sb, XATTR_USER) &&
  851. !(def_mount_opts & EXT4_DEFM_XATTR_USER))
  852. seq_puts(seq, ",user_xattr");
  853. if (!test_opt(sb, XATTR_USER) &&
  854. (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
  855. seq_puts(seq, ",nouser_xattr");
  856. }
  857. #endif
  858. #ifdef CONFIG_EXT4_FS_POSIX_ACL
  859. if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
  860. seq_puts(seq, ",acl");
  861. if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
  862. seq_puts(seq, ",noacl");
  863. #endif
  864. if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
  865. seq_printf(seq, ",commit=%u",
  866. (unsigned) (sbi->s_commit_interval / HZ));
  867. }
  868. if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
  869. seq_printf(seq, ",min_batch_time=%u",
  870. (unsigned) sbi->s_min_batch_time);
  871. }
  872. if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
  873. seq_printf(seq, ",max_batch_time=%u",
  874. (unsigned) sbi->s_min_batch_time);
  875. }
  876. /*
  877. * We're changing the default of barrier mount option, so
  878. * let's always display its mount state so it's clear what its
  879. * status is.
  880. */
  881. seq_puts(seq, ",barrier=");
  882. seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
  883. if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
  884. seq_puts(seq, ",journal_async_commit");
  885. else if (test_opt(sb, JOURNAL_CHECKSUM))
  886. seq_puts(seq, ",journal_checksum");
  887. if (test_opt(sb, I_VERSION))
  888. seq_puts(seq, ",i_version");
  889. if (!test_opt(sb, DELALLOC) &&
  890. !(def_mount_opts & EXT4_DEFM_NODELALLOC))
  891. seq_puts(seq, ",nodelalloc");
  892. if (sbi->s_stripe)
  893. seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
  894. /*
  895. * journal mode get enabled in different ways
  896. * So just print the value even if we didn't specify it
  897. */
  898. if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
  899. seq_puts(seq, ",data=journal");
  900. else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
  901. seq_puts(seq, ",data=ordered");
  902. else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
  903. seq_puts(seq, ",data=writeback");
  904. if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
  905. seq_printf(seq, ",inode_readahead_blks=%u",
  906. sbi->s_inode_readahead_blks);
  907. if (test_opt(sb, DATA_ERR_ABORT))
  908. seq_puts(seq, ",data_err=abort");
  909. if (test_opt(sb, NO_AUTO_DA_ALLOC))
  910. seq_puts(seq, ",noauto_da_alloc");
  911. if (test_opt(sb, DISCARD) && !(def_mount_opts & EXT4_DEFM_DISCARD))
  912. seq_puts(seq, ",discard");
  913. if (test_opt(sb, NOLOAD))
  914. seq_puts(seq, ",norecovery");
  915. if (test_opt(sb, DIOREAD_NOLOCK))
  916. seq_puts(seq, ",dioread_nolock");
  917. if (test_opt(sb, BLOCK_VALIDITY) &&
  918. !(def_mount_opts & EXT4_DEFM_BLOCK_VALIDITY))
  919. seq_puts(seq, ",block_validity");
  920. if (!test_opt(sb, INIT_INODE_TABLE))
  921. seq_puts(seq, ",noinit_inode_table");
  922. else if (sbi->s_li_wait_mult)
  923. seq_printf(seq, ",init_inode_table=%u",
  924. (unsigned) sbi->s_li_wait_mult);
  925. ext4_show_quota_options(seq, sb);
  926. return 0;
  927. }
  928. static struct inode *ext4_nfs_get_inode(struct super_block *sb,
  929. u64 ino, u32 generation)
  930. {
  931. struct inode *inode;
  932. if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
  933. return ERR_PTR(-ESTALE);
  934. if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
  935. return ERR_PTR(-ESTALE);
  936. /* iget isn't really right if the inode is currently unallocated!!
  937. *
  938. * ext4_read_inode will return a bad_inode if the inode had been
  939. * deleted, so we should be safe.
  940. *
  941. * Currently we don't know the generation for parent directory, so
  942. * a generation of 0 means "accept any"
  943. */
  944. inode = ext4_iget(sb, ino);
  945. if (IS_ERR(inode))
  946. return ERR_CAST(inode);
  947. if (generation && inode->i_generation != generation) {
  948. iput(inode);
  949. return ERR_PTR(-ESTALE);
  950. }
  951. return inode;
  952. }
  953. static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
  954. int fh_len, int fh_type)
  955. {
  956. return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
  957. ext4_nfs_get_inode);
  958. }
  959. static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
  960. int fh_len, int fh_type)
  961. {
  962. return generic_fh_to_parent(sb, fid, fh_len, fh_type,
  963. ext4_nfs_get_inode);
  964. }
  965. /*
  966. * Try to release metadata pages (indirect blocks, directories) which are
  967. * mapped via the block device. Since these pages could have journal heads
  968. * which would prevent try_to_free_buffers() from freeing them, we must use
  969. * jbd2 layer's try_to_free_buffers() function to release them.
  970. */
  971. static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
  972. gfp_t wait)
  973. {
  974. journal_t *journal = EXT4_SB(sb)->s_journal;
  975. WARN_ON(PageChecked(page));
  976. if (!page_has_buffers(page))
  977. return 0;
  978. if (journal)
  979. return jbd2_journal_try_to_free_buffers(journal, page,
  980. wait & ~__GFP_WAIT);
  981. return try_to_free_buffers(page);
  982. }
  983. #ifdef CONFIG_QUOTA
  984. #define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
  985. #define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
  986. static int ext4_write_dquot(struct dquot *dquot);
  987. static int ext4_acquire_dquot(struct dquot *dquot);
  988. static int ext4_release_dquot(struct dquot *dquot);
  989. static int ext4_mark_dquot_dirty(struct dquot *dquot);
  990. static int ext4_write_info(struct super_block *sb, int type);
  991. static int ext4_quota_on(struct super_block *sb, int type, int format_id,
  992. char *path);
  993. static int ext4_quota_off(struct super_block *sb, int type);
  994. static int ext4_quota_on_mount(struct super_block *sb, int type);
  995. static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
  996. size_t len, loff_t off);
  997. static ssize_t ext4_quota_write(struct super_block *sb, int type,
  998. const char *data, size_t len, loff_t off);
  999. static const struct dquot_operations ext4_quota_operations = {
  1000. #ifdef CONFIG_QUOTA
  1001. .get_reserved_space = ext4_get_reserved_space,
  1002. #endif
  1003. .write_dquot = ext4_write_dquot,
  1004. .acquire_dquot = ext4_acquire_dquot,
  1005. .release_dquot = ext4_release_dquot,
  1006. .mark_dirty = ext4_mark_dquot_dirty,
  1007. .write_info = ext4_write_info,
  1008. .alloc_dquot = dquot_alloc,
  1009. .destroy_dquot = dquot_destroy,
  1010. };
  1011. static const struct quotactl_ops ext4_qctl_operations = {
  1012. .quota_on = ext4_quota_on,
  1013. .quota_off = ext4_quota_off,
  1014. .quota_sync = dquot_quota_sync,
  1015. .get_info = dquot_get_dqinfo,
  1016. .set_info = dquot_set_dqinfo,
  1017. .get_dqblk = dquot_get_dqblk,
  1018. .set_dqblk = dquot_set_dqblk
  1019. };
  1020. #endif
  1021. static const struct super_operations ext4_sops = {
  1022. .alloc_inode = ext4_alloc_inode,
  1023. .destroy_inode = ext4_destroy_inode,
  1024. .write_inode = ext4_write_inode,
  1025. .dirty_inode = ext4_dirty_inode,
  1026. .evict_inode = ext4_evict_inode,
  1027. .put_super = ext4_put_super,
  1028. .sync_fs = ext4_sync_fs,
  1029. .freeze_fs = ext4_freeze,
  1030. .unfreeze_fs = ext4_unfreeze,
  1031. .statfs = ext4_statfs,
  1032. .remount_fs = ext4_remount,
  1033. .show_options = ext4_show_options,
  1034. #ifdef CONFIG_QUOTA
  1035. .quota_read = ext4_quota_read,
  1036. .quota_write = ext4_quota_write,
  1037. #endif
  1038. .bdev_try_to_free_page = bdev_try_to_free_page,
  1039. };
  1040. static const struct super_operations ext4_nojournal_sops = {
  1041. .alloc_inode = ext4_alloc_inode,
  1042. .destroy_inode = ext4_destroy_inode,
  1043. .write_inode = ext4_write_inode,
  1044. .dirty_inode = ext4_dirty_inode,
  1045. .evict_inode = ext4_evict_inode,
  1046. .write_super = ext4_write_super,
  1047. .put_super = ext4_put_super,
  1048. .statfs = ext4_statfs,
  1049. .remount_fs = ext4_remount,
  1050. .show_options = ext4_show_options,
  1051. #ifdef CONFIG_QUOTA
  1052. .quota_read = ext4_quota_read,
  1053. .quota_write = ext4_quota_write,
  1054. #endif
  1055. .bdev_try_to_free_page = bdev_try_to_free_page,
  1056. };
  1057. static const struct export_operations ext4_export_ops = {
  1058. .fh_to_dentry = ext4_fh_to_dentry,
  1059. .fh_to_parent = ext4_fh_to_parent,
  1060. .get_parent = ext4_get_parent,
  1061. };
  1062. enum {
  1063. Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
  1064. Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
  1065. Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
  1066. Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
  1067. Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
  1068. Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
  1069. Opt_journal_update, Opt_journal_dev,
  1070. Opt_journal_checksum, Opt_journal_async_commit,
  1071. Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
  1072. Opt_data_err_abort, Opt_data_err_ignore,
  1073. Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
  1074. Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
  1075. Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
  1076. Opt_resize, Opt_usrquota, Opt_grpquota, Opt_i_version,
  1077. Opt_stripe, Opt_delalloc, Opt_nodelalloc,
  1078. Opt_block_validity, Opt_noblock_validity,
  1079. Opt_inode_readahead_blks, Opt_journal_ioprio,
  1080. Opt_dioread_nolock, Opt_dioread_lock,
  1081. Opt_discard, Opt_nodiscard,
  1082. Opt_init_inode_table, Opt_noinit_inode_table,
  1083. };
  1084. static const match_table_t tokens = {
  1085. {Opt_bsd_df, "bsddf"},
  1086. {Opt_minix_df, "minixdf"},
  1087. {Opt_grpid, "grpid"},
  1088. {Opt_grpid, "bsdgroups"},
  1089. {Opt_nogrpid, "nogrpid"},
  1090. {Opt_nogrpid, "sysvgroups"},
  1091. {Opt_resgid, "resgid=%u"},
  1092. {Opt_resuid, "resuid=%u"},
  1093. {Opt_sb, "sb=%u"},
  1094. {Opt_err_cont, "errors=continue"},
  1095. {Opt_err_panic, "errors=panic"},
  1096. {Opt_err_ro, "errors=remount-ro"},
  1097. {Opt_nouid32, "nouid32"},
  1098. {Opt_debug, "debug"},
  1099. {Opt_oldalloc, "oldalloc"},
  1100. {Opt_orlov, "orlov"},
  1101. {Opt_user_xattr, "user_xattr"},
  1102. {Opt_nouser_xattr, "nouser_xattr"},
  1103. {Opt_acl, "acl"},
  1104. {Opt_noacl, "noacl"},
  1105. {Opt_noload, "noload"},
  1106. {Opt_noload, "norecovery"},
  1107. {Opt_nobh, "nobh"},
  1108. {Opt_bh, "bh"},
  1109. {Opt_commit, "commit=%u"},
  1110. {Opt_min_batch_time, "min_batch_time=%u"},
  1111. {Opt_max_batch_time, "max_batch_time=%u"},
  1112. {Opt_journal_update, "journal=update"},
  1113. {Opt_journal_dev, "journal_dev=%u"},
  1114. {Opt_journal_checksum, "journal_checksum"},
  1115. {Opt_journal_async_commit, "journal_async_commit"},
  1116. {Opt_abort, "abort"},
  1117. {Opt_data_journal, "data=journal"},
  1118. {Opt_data_ordered, "data=ordered"},
  1119. {Opt_data_writeback, "data=writeback"},
  1120. {Opt_data_err_abort, "data_err=abort"},
  1121. {Opt_data_err_ignore, "data_err=ignore"},
  1122. {Opt_offusrjquota, "usrjquota="},
  1123. {Opt_usrjquota, "usrjquota=%s"},
  1124. {Opt_offgrpjquota, "grpjquota="},
  1125. {Opt_grpjquota, "grpjquota=%s"},
  1126. {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
  1127. {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
  1128. {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
  1129. {Opt_grpquota, "grpquota"},
  1130. {Opt_noquota, "noquota"},
  1131. {Opt_quota, "quota"},
  1132. {Opt_usrquota, "usrquota"},
  1133. {Opt_barrier, "barrier=%u"},
  1134. {Opt_barrier, "barrier"},
  1135. {Opt_nobarrier, "nobarrier"},
  1136. {Opt_i_version, "i_version"},
  1137. {Opt_stripe, "stripe=%u"},
  1138. {Opt_resize, "resize"},
  1139. {Opt_delalloc, "delalloc"},
  1140. {Opt_nodelalloc, "nodelalloc"},
  1141. {Opt_block_validity, "block_validity"},
  1142. {Opt_noblock_validity, "noblock_validity"},
  1143. {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
  1144. {Opt_journal_ioprio, "journal_ioprio=%u"},
  1145. {Opt_auto_da_alloc, "auto_da_alloc=%u"},
  1146. {Opt_auto_da_alloc, "auto_da_alloc"},
  1147. {Opt_noauto_da_alloc, "noauto_da_alloc"},
  1148. {Opt_dioread_nolock, "dioread_nolock"},
  1149. {Opt_dioread_lock, "dioread_lock"},
  1150. {Opt_discard, "discard"},
  1151. {Opt_nodiscard, "nodiscard"},
  1152. {Opt_init_inode_table, "init_itable=%u"},
  1153. {Opt_init_inode_table, "init_itable"},
  1154. {Opt_noinit_inode_table, "noinit_itable"},
  1155. {Opt_err, NULL},
  1156. };
  1157. static ext4_fsblk_t get_sb_block(void **data)
  1158. {
  1159. ext4_fsblk_t sb_block;
  1160. char *options = (char *) *data;
  1161. if (!options || strncmp(options, "sb=", 3) != 0)
  1162. return 1; /* Default location */
  1163. options += 3;
  1164. /* TODO: use simple_strtoll with >32bit ext4 */
  1165. sb_block = simple_strtoul(options, &options, 0);
  1166. if (*options && *options != ',') {
  1167. printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
  1168. (char *) *data);
  1169. return 1;
  1170. }
  1171. if (*options == ',')
  1172. options++;
  1173. *data = (void *) options;
  1174. return sb_block;
  1175. }
  1176. #define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
  1177. static char deprecated_msg[] = "Mount option \"%s\" will be removed by %s\n"
  1178. "Contact linux-ext4@vger.kernel.org if you think we should keep it.\n";
  1179. #ifdef CONFIG_QUOTA
  1180. static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
  1181. {
  1182. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1183. char *qname;
  1184. if (sb_any_quota_loaded(sb) &&
  1185. !sbi->s_qf_names[qtype]) {
  1186. ext4_msg(sb, KERN_ERR,
  1187. "Cannot change journaled "
  1188. "quota options when quota turned on");
  1189. return 0;
  1190. }
  1191. qname = match_strdup(args);
  1192. if (!qname) {
  1193. ext4_msg(sb, KERN_ERR,
  1194. "Not enough memory for storing quotafile name");
  1195. return 0;
  1196. }
  1197. if (sbi->s_qf_names[qtype] &&
  1198. strcmp(sbi->s_qf_names[qtype], qname)) {
  1199. ext4_msg(sb, KERN_ERR,
  1200. "%s quota file already specified", QTYPE2NAME(qtype));
  1201. kfree(qname);
  1202. return 0;
  1203. }
  1204. sbi->s_qf_names[qtype] = qname;
  1205. if (strchr(sbi->s_qf_names[qtype], '/')) {
  1206. ext4_msg(sb, KERN_ERR,
  1207. "quotafile must be on filesystem root");
  1208. kfree(sbi->s_qf_names[qtype]);
  1209. sbi->s_qf_names[qtype] = NULL;
  1210. return 0;
  1211. }
  1212. set_opt(sbi->s_mount_opt, QUOTA);
  1213. return 1;
  1214. }
  1215. static int clear_qf_name(struct super_block *sb, int qtype)
  1216. {
  1217. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1218. if (sb_any_quota_loaded(sb) &&
  1219. sbi->s_qf_names[qtype]) {
  1220. ext4_msg(sb, KERN_ERR, "Cannot change journaled quota options"
  1221. " when quota turned on");
  1222. return 0;
  1223. }
  1224. /*
  1225. * The space will be released later when all options are confirmed
  1226. * to be correct
  1227. */
  1228. sbi->s_qf_names[qtype] = NULL;
  1229. return 1;
  1230. }
  1231. #endif
  1232. static int parse_options(char *options, struct super_block *sb,
  1233. unsigned long *journal_devnum,
  1234. unsigned int *journal_ioprio,
  1235. ext4_fsblk_t *n_blocks_count, int is_remount)
  1236. {
  1237. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1238. char *p;
  1239. substring_t args[MAX_OPT_ARGS];
  1240. int data_opt = 0;
  1241. int option;
  1242. #ifdef CONFIG_QUOTA
  1243. int qfmt;
  1244. #endif
  1245. if (!options)
  1246. return 1;
  1247. while ((p = strsep(&options, ",")) != NULL) {
  1248. int token;
  1249. if (!*p)
  1250. continue;
  1251. /*
  1252. * Initialize args struct so we know whether arg was
  1253. * found; some options take optional arguments.
  1254. */
  1255. args[0].to = args[0].from = 0;
  1256. token = match_token(p, tokens, args);
  1257. switch (token) {
  1258. case Opt_bsd_df:
  1259. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1260. clear_opt(sbi->s_mount_opt, MINIX_DF);
  1261. break;
  1262. case Opt_minix_df:
  1263. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1264. set_opt(sbi->s_mount_opt, MINIX_DF);
  1265. break;
  1266. case Opt_grpid:
  1267. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1268. set_opt(sbi->s_mount_opt, GRPID);
  1269. break;
  1270. case Opt_nogrpid:
  1271. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1272. clear_opt(sbi->s_mount_opt, GRPID);
  1273. break;
  1274. case Opt_resuid:
  1275. if (match_int(&args[0], &option))
  1276. return 0;
  1277. sbi->s_resuid = option;
  1278. break;
  1279. case Opt_resgid:
  1280. if (match_int(&args[0], &option))
  1281. return 0;
  1282. sbi->s_resgid = option;
  1283. break;
  1284. case Opt_sb:
  1285. /* handled by get_sb_block() instead of here */
  1286. /* *sb_block = match_int(&args[0]); */
  1287. break;
  1288. case Opt_err_panic:
  1289. clear_opt(sbi->s_mount_opt, ERRORS_CONT);
  1290. clear_opt(sbi->s_mount_opt, ERRORS_RO);
  1291. set_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1292. break;
  1293. case Opt_err_ro:
  1294. clear_opt(sbi->s_mount_opt, ERRORS_CONT);
  1295. clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1296. set_opt(sbi->s_mount_opt, ERRORS_RO);
  1297. break;
  1298. case Opt_err_cont:
  1299. clear_opt(sbi->s_mount_opt, ERRORS_RO);
  1300. clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1301. set_opt(sbi->s_mount_opt, ERRORS_CONT);
  1302. break;
  1303. case Opt_nouid32:
  1304. set_opt(sbi->s_mount_opt, NO_UID32);
  1305. break;
  1306. case Opt_debug:
  1307. set_opt(sbi->s_mount_opt, DEBUG);
  1308. break;
  1309. case Opt_oldalloc:
  1310. set_opt(sbi->s_mount_opt, OLDALLOC);
  1311. break;
  1312. case Opt_orlov:
  1313. clear_opt(sbi->s_mount_opt, OLDALLOC);
  1314. break;
  1315. #ifdef CONFIG_EXT4_FS_XATTR
  1316. case Opt_user_xattr:
  1317. set_opt(sbi->s_mount_opt, XATTR_USER);
  1318. break;
  1319. case Opt_nouser_xattr:
  1320. clear_opt(sbi->s_mount_opt, XATTR_USER);
  1321. break;
  1322. #else
  1323. case Opt_user_xattr:
  1324. case Opt_nouser_xattr:
  1325. ext4_msg(sb, KERN_ERR, "(no)user_xattr options not supported");
  1326. break;
  1327. #endif
  1328. #ifdef CONFIG_EXT4_FS_POSIX_ACL
  1329. case Opt_acl:
  1330. set_opt(sbi->s_mount_opt, POSIX_ACL);
  1331. break;
  1332. case Opt_noacl:
  1333. clear_opt(sbi->s_mount_opt, POSIX_ACL);
  1334. break;
  1335. #else
  1336. case Opt_acl:
  1337. case Opt_noacl:
  1338. ext4_msg(sb, KERN_ERR, "(no)acl options not supported");
  1339. break;
  1340. #endif
  1341. case Opt_journal_update:
  1342. /* @@@ FIXME */
  1343. /* Eventually we will want to be able to create
  1344. a journal file here. For now, only allow the
  1345. user to specify an existing inode to be the
  1346. journal file. */
  1347. if (is_remount) {
  1348. ext4_msg(sb, KERN_ERR,
  1349. "Cannot specify journal on remount");
  1350. return 0;
  1351. }
  1352. set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
  1353. break;
  1354. case Opt_journal_dev:
  1355. if (is_remount) {
  1356. ext4_msg(sb, KERN_ERR,
  1357. "Cannot specify journal on remount");
  1358. return 0;
  1359. }
  1360. if (match_int(&args[0], &option))
  1361. return 0;
  1362. *journal_devnum = option;
  1363. break;
  1364. case Opt_journal_checksum:
  1365. set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
  1366. break;
  1367. case Opt_journal_async_commit:
  1368. set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
  1369. set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
  1370. break;
  1371. case Opt_noload:
  1372. set_opt(sbi->s_mount_opt, NOLOAD);
  1373. break;
  1374. case Opt_commit:
  1375. if (match_int(&args[0], &option))
  1376. return 0;
  1377. if (option < 0)
  1378. return 0;
  1379. if (option == 0)
  1380. option = JBD2_DEFAULT_MAX_COMMIT_AGE;
  1381. sbi->s_commit_interval = HZ * option;
  1382. break;
  1383. case Opt_max_batch_time:
  1384. if (match_int(&args[0], &option))
  1385. return 0;
  1386. if (option < 0)
  1387. return 0;
  1388. if (option == 0)
  1389. option = EXT4_DEF_MAX_BATCH_TIME;
  1390. sbi->s_max_batch_time = option;
  1391. break;
  1392. case Opt_min_batch_time:
  1393. if (match_int(&args[0], &option))
  1394. return 0;
  1395. if (option < 0)
  1396. return 0;
  1397. sbi->s_min_batch_time = option;
  1398. break;
  1399. case Opt_data_journal:
  1400. data_opt = EXT4_MOUNT_JOURNAL_DATA;
  1401. goto datacheck;
  1402. case Opt_data_ordered:
  1403. data_opt = EXT4_MOUNT_ORDERED_DATA;
  1404. goto datacheck;
  1405. case Opt_data_writeback:
  1406. data_opt = EXT4_MOUNT_WRITEBACK_DATA;
  1407. datacheck:
  1408. if (is_remount) {
  1409. if (test_opt(sb, DATA_FLAGS) != data_opt) {
  1410. ext4_msg(sb, KERN_ERR,
  1411. "Cannot change data mode on remount");
  1412. return 0;
  1413. }
  1414. } else {
  1415. clear_opt(sbi->s_mount_opt, DATA_FLAGS);
  1416. sbi->s_mount_opt |= data_opt;
  1417. }
  1418. break;
  1419. case Opt_data_err_abort:
  1420. set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
  1421. break;
  1422. case Opt_data_err_ignore:
  1423. clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
  1424. break;
  1425. #ifdef CONFIG_QUOTA
  1426. case Opt_usrjquota:
  1427. if (!set_qf_name(sb, USRQUOTA, &args[0]))
  1428. return 0;
  1429. break;
  1430. case Opt_grpjquota:
  1431. if (!set_qf_name(sb, GRPQUOTA, &args[0]))
  1432. return 0;
  1433. break;
  1434. case Opt_offusrjquota:
  1435. if (!clear_qf_name(sb, USRQUOTA))
  1436. return 0;
  1437. break;
  1438. case Opt_offgrpjquota:
  1439. if (!clear_qf_name(sb, GRPQUOTA))
  1440. return 0;
  1441. break;
  1442. case Opt_jqfmt_vfsold:
  1443. qfmt = QFMT_VFS_OLD;
  1444. goto set_qf_format;
  1445. case Opt_jqfmt_vfsv0:
  1446. qfmt = QFMT_VFS_V0;
  1447. goto set_qf_format;
  1448. case Opt_jqfmt_vfsv1:
  1449. qfmt = QFMT_VFS_V1;
  1450. set_qf_format:
  1451. if (sb_any_quota_loaded(sb) &&
  1452. sbi->s_jquota_fmt != qfmt) {
  1453. ext4_msg(sb, KERN_ERR, "Cannot change "
  1454. "journaled quota options when "
  1455. "quota turned on");
  1456. return 0;
  1457. }
  1458. sbi->s_jquota_fmt = qfmt;
  1459. break;
  1460. case Opt_quota:
  1461. case Opt_usrquota:
  1462. set_opt(sbi->s_mount_opt, QUOTA);
  1463. set_opt(sbi->s_mount_opt, USRQUOTA);
  1464. break;
  1465. case Opt_grpquota:
  1466. set_opt(sbi->s_mount_opt, QUOTA);
  1467. set_opt(sbi->s_mount_opt, GRPQUOTA);
  1468. break;
  1469. case Opt_noquota:
  1470. if (sb_any_quota_loaded(sb)) {
  1471. ext4_msg(sb, KERN_ERR, "Cannot change quota "
  1472. "options when quota turned on");
  1473. return 0;
  1474. }
  1475. clear_opt(sbi->s_mount_opt, QUOTA);
  1476. clear_opt(sbi->s_mount_opt, USRQUOTA);
  1477. clear_opt(sbi->s_mount_opt, GRPQUOTA);
  1478. break;
  1479. #else
  1480. case Opt_quota:
  1481. case Opt_usrquota:
  1482. case Opt_grpquota:
  1483. ext4_msg(sb, KERN_ERR,
  1484. "quota options not supported");
  1485. break;
  1486. case Opt_usrjquota:
  1487. case Opt_grpjquota:
  1488. case Opt_offusrjquota:
  1489. case Opt_offgrpjquota:
  1490. case Opt_jqfmt_vfsold:
  1491. case Opt_jqfmt_vfsv0:
  1492. case Opt_jqfmt_vfsv1:
  1493. ext4_msg(sb, KERN_ERR,
  1494. "journaled quota options not supported");
  1495. break;
  1496. case Opt_noquota:
  1497. break;
  1498. #endif
  1499. case Opt_abort:
  1500. sbi->s_mount_flags |= EXT4_MF_FS_ABORTED;
  1501. break;
  1502. case Opt_nobarrier:
  1503. clear_opt(sbi->s_mount_opt, BARRIER);
  1504. break;
  1505. case Opt_barrier:
  1506. if (args[0].from) {
  1507. if (match_int(&args[0], &option))
  1508. return 0;
  1509. } else
  1510. option = 1; /* No argument, default to 1 */
  1511. if (option)
  1512. set_opt(sbi->s_mount_opt, BARRIER);
  1513. else
  1514. clear_opt(sbi->s_mount_opt, BARRIER);
  1515. break;
  1516. case Opt_ignore:
  1517. break;
  1518. case Opt_resize:
  1519. if (!is_remount) {
  1520. ext4_msg(sb, KERN_ERR,
  1521. "resize option only available "
  1522. "for remount");
  1523. return 0;
  1524. }
  1525. if (match_int(&args[0], &option) != 0)
  1526. return 0;
  1527. *n_blocks_count = option;
  1528. break;
  1529. case Opt_nobh:
  1530. ext4_msg(sb, KERN_WARNING,
  1531. "Ignoring deprecated nobh option");
  1532. break;
  1533. case Opt_bh:
  1534. ext4_msg(sb, KERN_WARNING,
  1535. "Ignoring deprecated bh option");
  1536. break;
  1537. case Opt_i_version:
  1538. set_opt(sbi->s_mount_opt, I_VERSION);
  1539. sb->s_flags |= MS_I_VERSION;
  1540. break;
  1541. case Opt_nodelalloc:
  1542. clear_opt(sbi->s_mount_opt, DELALLOC);
  1543. break;
  1544. case Opt_stripe:
  1545. if (match_int(&args[0], &option))
  1546. return 0;
  1547. if (option < 0)
  1548. return 0;
  1549. sbi->s_stripe = option;
  1550. break;
  1551. case Opt_delalloc:
  1552. set_opt(sbi->s_mount_opt, DELALLOC);
  1553. break;
  1554. case Opt_block_validity:
  1555. set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
  1556. break;
  1557. case Opt_noblock_validity:
  1558. clear_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
  1559. break;
  1560. case Opt_inode_readahead_blks:
  1561. if (match_int(&args[0], &option))
  1562. return 0;
  1563. if (option < 0 || option > (1 << 30))
  1564. return 0;
  1565. if (!is_power_of_2(option)) {
  1566. ext4_msg(sb, KERN_ERR,
  1567. "EXT4-fs: inode_readahead_blks"
  1568. " must be a power of 2");
  1569. return 0;
  1570. }
  1571. sbi->s_inode_readahead_blks = option;
  1572. break;
  1573. case Opt_journal_ioprio:
  1574. if (match_int(&args[0], &option))
  1575. return 0;
  1576. if (option < 0 || option > 7)
  1577. break;
  1578. *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
  1579. option);
  1580. break;
  1581. case Opt_noauto_da_alloc:
  1582. set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
  1583. break;
  1584. case Opt_auto_da_alloc:
  1585. if (args[0].from) {
  1586. if (match_int(&args[0], &option))
  1587. return 0;
  1588. } else
  1589. option = 1; /* No argument, default to 1 */
  1590. if (option)
  1591. clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
  1592. else
  1593. set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
  1594. break;
  1595. case Opt_discard:
  1596. set_opt(sbi->s_mount_opt, DISCARD);
  1597. break;
  1598. case Opt_nodiscard:
  1599. clear_opt(sbi->s_mount_opt, DISCARD);
  1600. break;
  1601. case Opt_dioread_nolock:
  1602. set_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  1603. break;
  1604. case Opt_dioread_lock:
  1605. clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  1606. break;
  1607. case Opt_init_inode_table:
  1608. set_opt(sbi->s_mount_opt, INIT_INODE_TABLE);
  1609. if (args[0].from) {
  1610. if (match_int(&args[0], &option))
  1611. return 0;
  1612. } else
  1613. option = EXT4_DEF_LI_WAIT_MULT;
  1614. if (option < 0)
  1615. return 0;
  1616. sbi->s_li_wait_mult = option;
  1617. break;
  1618. case Opt_noinit_inode_table:
  1619. clear_opt(sbi->s_mount_opt, INIT_INODE_TABLE);
  1620. break;
  1621. default:
  1622. ext4_msg(sb, KERN_ERR,
  1623. "Unrecognized mount option \"%s\" "
  1624. "or missing value", p);
  1625. return 0;
  1626. }
  1627. }
  1628. #ifdef CONFIG_QUOTA
  1629. if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
  1630. if (test_opt(sb, USRQUOTA) && sbi->s_qf_names[USRQUOTA])
  1631. clear_opt(sbi->s_mount_opt, USRQUOTA);
  1632. if (test_opt(sb, GRPQUOTA) && sbi->s_qf_names[GRPQUOTA])
  1633. clear_opt(sbi->s_mount_opt, GRPQUOTA);
  1634. if (test_opt(sb, GRPQUOTA) || test_opt(sb, USRQUOTA)) {
  1635. ext4_msg(sb, KERN_ERR, "old and new quota "
  1636. "format mixing");
  1637. return 0;
  1638. }
  1639. if (!sbi->s_jquota_fmt) {
  1640. ext4_msg(sb, KERN_ERR, "journaled quota format "
  1641. "not specified");
  1642. return 0;
  1643. }
  1644. } else {
  1645. if (sbi->s_jquota_fmt) {
  1646. ext4_msg(sb, KERN_ERR, "journaled quota format "
  1647. "specified with no journaling "
  1648. "enabled");
  1649. return 0;
  1650. }
  1651. }
  1652. #endif
  1653. return 1;
  1654. }
  1655. static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
  1656. int read_only)
  1657. {
  1658. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1659. int res = 0;
  1660. if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
  1661. ext4_msg(sb, KERN_ERR, "revision level too high, "
  1662. "forcing read-only mode");
  1663. res = MS_RDONLY;
  1664. }
  1665. if (read_only)
  1666. return res;
  1667. if (!(sbi->s_mount_state & EXT4_VALID_FS))
  1668. ext4_msg(sb, KERN_WARNING, "warning: mounting unchecked fs, "
  1669. "running e2fsck is recommended");
  1670. else if ((sbi->s_mount_state & EXT4_ERROR_FS))
  1671. ext4_msg(sb, KERN_WARNING,
  1672. "warning: mounting fs with errors, "
  1673. "running e2fsck is recommended");
  1674. else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
  1675. le16_to_cpu(es->s_mnt_count) >=
  1676. (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
  1677. ext4_msg(sb, KERN_WARNING,
  1678. "warning: maximal mount count reached, "
  1679. "running e2fsck is recommended");
  1680. else if (le32_to_cpu(es->s_checkinterval) &&
  1681. (le32_to_cpu(es->s_lastcheck) +
  1682. le32_to_cpu(es->s_checkinterval) <= get_seconds()))
  1683. ext4_msg(sb, KERN_WARNING,
  1684. "warning: checktime reached, "
  1685. "running e2fsck is recommended");
  1686. if (!sbi->s_journal)
  1687. es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
  1688. if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
  1689. es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
  1690. le16_add_cpu(&es->s_mnt_count, 1);
  1691. es->s_mtime = cpu_to_le32(get_seconds());
  1692. ext4_update_dynamic_rev(sb);
  1693. if (sbi->s_journal)
  1694. EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  1695. ext4_commit_super(sb, 1);
  1696. if (test_opt(sb, DEBUG))
  1697. printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
  1698. "bpg=%lu, ipg=%lu, mo=%04x]\n",
  1699. sb->s_blocksize,
  1700. sbi->s_groups_count,
  1701. EXT4_BLOCKS_PER_GROUP(sb),
  1702. EXT4_INODES_PER_GROUP(sb),
  1703. sbi->s_mount_opt);
  1704. return res;
  1705. }
  1706. static int ext4_fill_flex_info(struct super_block *sb)
  1707. {
  1708. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1709. struct ext4_group_desc *gdp = NULL;
  1710. ext4_group_t flex_group_count;
  1711. ext4_group_t flex_group;
  1712. int groups_per_flex = 0;
  1713. size_t size;
  1714. int i;
  1715. sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
  1716. groups_per_flex = 1 << sbi->s_log_groups_per_flex;
  1717. if (groups_per_flex < 2) {
  1718. sbi->s_log_groups_per_flex = 0;
  1719. return 1;
  1720. }
  1721. /* We allocate both existing and potentially added groups */
  1722. flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
  1723. ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
  1724. EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
  1725. size = flex_group_count * sizeof(struct flex_groups);
  1726. sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
  1727. if (sbi->s_flex_groups == NULL) {
  1728. sbi->s_flex_groups = vmalloc(size);
  1729. if (sbi->s_flex_groups)
  1730. memset(sbi->s_flex_groups, 0, size);
  1731. }
  1732. if (sbi->s_flex_groups == NULL) {
  1733. ext4_msg(sb, KERN_ERR, "not enough memory for "
  1734. "%u flex groups", flex_group_count);
  1735. goto failed;
  1736. }
  1737. for (i = 0; i < sbi->s_groups_count; i++) {
  1738. gdp = ext4_get_group_desc(sb, i, NULL);
  1739. flex_group = ext4_flex_group(sbi, i);
  1740. atomic_add(ext4_free_inodes_count(sb, gdp),
  1741. &sbi->s_flex_groups[flex_group].free_inodes);
  1742. atomic_add(ext4_free_blks_count(sb, gdp),
  1743. &sbi->s_flex_groups[flex_group].free_blocks);
  1744. atomic_add(ext4_used_dirs_count(sb, gdp),
  1745. &sbi->s_flex_groups[flex_group].used_dirs);
  1746. }
  1747. return 1;
  1748. failed:
  1749. return 0;
  1750. }
  1751. __le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
  1752. struct ext4_group_desc *gdp)
  1753. {
  1754. __u16 crc = 0;
  1755. if (sbi->s_es->s_feature_ro_compat &
  1756. cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
  1757. int offset = offsetof(struct ext4_group_desc, bg_checksum);
  1758. __le32 le_group = cpu_to_le32(block_group);
  1759. crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
  1760. crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
  1761. crc = crc16(crc, (__u8 *)gdp, offset);
  1762. offset += sizeof(gdp->bg_checksum); /* skip checksum */
  1763. /* for checksum of struct ext4_group_desc do the rest...*/
  1764. if ((sbi->s_es->s_feature_incompat &
  1765. cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
  1766. offset < le16_to_cpu(sbi->s_es->s_desc_size))
  1767. crc = crc16(crc, (__u8 *)gdp + offset,
  1768. le16_to_cpu(sbi->s_es->s_desc_size) -
  1769. offset);
  1770. }
  1771. return cpu_to_le16(crc);
  1772. }
  1773. int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
  1774. struct ext4_group_desc *gdp)
  1775. {
  1776. if ((sbi->s_es->s_feature_ro_compat &
  1777. cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
  1778. (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
  1779. return 0;
  1780. return 1;
  1781. }
  1782. /* Called at mount-time, super-block is locked */
  1783. static int ext4_check_descriptors(struct super_block *sb,
  1784. ext4_group_t *first_not_zeroed)
  1785. {
  1786. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1787. ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
  1788. ext4_fsblk_t last_block;
  1789. ext4_fsblk_t block_bitmap;
  1790. ext4_fsblk_t inode_bitmap;
  1791. ext4_fsblk_t inode_table;
  1792. int flexbg_flag = 0;
  1793. ext4_group_t i, grp = sbi->s_groups_count;
  1794. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
  1795. flexbg_flag = 1;
  1796. ext4_debug("Checking group descriptors");
  1797. for (i = 0; i < sbi->s_groups_count; i++) {
  1798. struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
  1799. if (i == sbi->s_groups_count - 1 || flexbg_flag)
  1800. last_block = ext4_blocks_count(sbi->s_es) - 1;
  1801. else
  1802. last_block = first_block +
  1803. (EXT4_BLOCKS_PER_GROUP(sb) - 1);
  1804. if ((grp == sbi->s_groups_count) &&
  1805. !(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED)))
  1806. grp = i;
  1807. block_bitmap = ext4_block_bitmap(sb, gdp);
  1808. if (block_bitmap < first_block || block_bitmap > last_block) {
  1809. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1810. "Block bitmap for group %u not in group "
  1811. "(block %llu)!", i, block_bitmap);
  1812. return 0;
  1813. }
  1814. inode_bitmap = ext4_inode_bitmap(sb, gdp);
  1815. if (inode_bitmap < first_block || inode_bitmap > last_block) {
  1816. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1817. "Inode bitmap for group %u not in group "
  1818. "(block %llu)!", i, inode_bitmap);
  1819. return 0;
  1820. }
  1821. inode_table = ext4_inode_table(sb, gdp);
  1822. if (inode_table < first_block ||
  1823. inode_table + sbi->s_itb_per_group - 1 > last_block) {
  1824. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1825. "Inode table for group %u not in group "
  1826. "(block %llu)!", i, inode_table);
  1827. return 0;
  1828. }
  1829. ext4_lock_group(sb, i);
  1830. if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
  1831. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1832. "Checksum for group %u failed (%u!=%u)",
  1833. i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
  1834. gdp)), le16_to_cpu(gdp->bg_checksum));
  1835. if (!(sb->s_flags & MS_RDONLY)) {
  1836. ext4_unlock_group(sb, i);
  1837. return 0;
  1838. }
  1839. }
  1840. ext4_unlock_group(sb, i);
  1841. if (!flexbg_flag)
  1842. first_block += EXT4_BLOCKS_PER_GROUP(sb);
  1843. }
  1844. if (NULL != first_not_zeroed)
  1845. *first_not_zeroed = grp;
  1846. ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
  1847. sbi->s_es->s_free_inodes_count =cpu_to_le32(ext4_count_free_inodes(sb));
  1848. return 1;
  1849. }
  1850. /* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
  1851. * the superblock) which were deleted from all directories, but held open by
  1852. * a process at the time of a crash. We walk the list and try to delete these
  1853. * inodes at recovery time (only with a read-write filesystem).
  1854. *
  1855. * In order to keep the orphan inode chain consistent during traversal (in
  1856. * case of crash during recovery), we link each inode into the superblock
  1857. * orphan list_head and handle it the same way as an inode deletion during
  1858. * normal operation (which journals the operations for us).
  1859. *
  1860. * We only do an iget() and an iput() on each inode, which is very safe if we
  1861. * accidentally point at an in-use or already deleted inode. The worst that
  1862. * can happen in this case is that we get a "bit already cleared" message from
  1863. * ext4_free_inode(). The only reason we would point at a wrong inode is if
  1864. * e2fsck was run on this filesystem, and it must have already done the orphan
  1865. * inode cleanup for us, so we can safely abort without any further action.
  1866. */
  1867. static void ext4_orphan_cleanup(struct super_block *sb,
  1868. struct ext4_super_block *es)
  1869. {
  1870. unsigned int s_flags = sb->s_flags;
  1871. int nr_orphans = 0, nr_truncates = 0;
  1872. #ifdef CONFIG_QUOTA
  1873. int i;
  1874. #endif
  1875. if (!es->s_last_orphan) {
  1876. jbd_debug(4, "no orphan inodes to clean up\n");
  1877. return;
  1878. }
  1879. if (bdev_read_only(sb->s_bdev)) {
  1880. ext4_msg(sb, KERN_ERR, "write access "
  1881. "unavailable, skipping orphan cleanup");
  1882. return;
  1883. }
  1884. if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
  1885. if (es->s_last_orphan)
  1886. jbd_debug(1, "Errors on filesystem, "
  1887. "clearing orphan list.\n");
  1888. es->s_last_orphan = 0;
  1889. jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
  1890. return;
  1891. }
  1892. if (s_flags & MS_RDONLY) {
  1893. ext4_msg(sb, KERN_INFO, "orphan cleanup on readonly fs");
  1894. sb->s_flags &= ~MS_RDONLY;
  1895. }
  1896. #ifdef CONFIG_QUOTA
  1897. /* Needed for iput() to work correctly and not trash data */
  1898. sb->s_flags |= MS_ACTIVE;
  1899. /* Turn on quotas so that they are updated correctly */
  1900. for (i = 0; i < MAXQUOTAS; i++) {
  1901. if (EXT4_SB(sb)->s_qf_names[i]) {
  1902. int ret = ext4_quota_on_mount(sb, i);
  1903. if (ret < 0)
  1904. ext4_msg(sb, KERN_ERR,
  1905. "Cannot turn on journaled "
  1906. "quota: error %d", ret);
  1907. }
  1908. }
  1909. #endif
  1910. while (es->s_last_orphan) {
  1911. struct inode *inode;
  1912. inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
  1913. if (IS_ERR(inode)) {
  1914. es->s_last_orphan = 0;
  1915. break;
  1916. }
  1917. list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
  1918. dquot_initialize(inode);
  1919. if (inode->i_nlink) {
  1920. ext4_msg(sb, KERN_DEBUG,
  1921. "%s: truncating inode %lu to %lld bytes",
  1922. __func__, inode->i_ino, inode->i_size);
  1923. jbd_debug(2, "truncating inode %lu to %lld bytes\n",
  1924. inode->i_ino, inode->i_size);
  1925. ext4_truncate(inode);
  1926. nr_truncates++;
  1927. } else {
  1928. ext4_msg(sb, KERN_DEBUG,
  1929. "%s: deleting unreferenced inode %lu",
  1930. __func__, inode->i_ino);
  1931. jbd_debug(2, "deleting unreferenced inode %lu\n",
  1932. inode->i_ino);
  1933. nr_orphans++;
  1934. }
  1935. iput(inode); /* The delete magic happens here! */
  1936. }
  1937. #define PLURAL(x) (x), ((x) == 1) ? "" : "s"
  1938. if (nr_orphans)
  1939. ext4_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
  1940. PLURAL(nr_orphans));
  1941. if (nr_truncates)
  1942. ext4_msg(sb, KERN_INFO, "%d truncate%s cleaned up",
  1943. PLURAL(nr_truncates));
  1944. #ifdef CONFIG_QUOTA
  1945. /* Turn quotas off */
  1946. for (i = 0; i < MAXQUOTAS; i++) {
  1947. if (sb_dqopt(sb)->files[i])
  1948. dquot_quota_off(sb, i);
  1949. }
  1950. #endif
  1951. sb->s_flags = s_flags; /* Restore MS_RDONLY status */
  1952. }
  1953. /*
  1954. * Maximal extent format file size.
  1955. * Resulting logical blkno at s_maxbytes must fit in our on-disk
  1956. * extent format containers, within a sector_t, and within i_blocks
  1957. * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
  1958. * so that won't be a limiting factor.
  1959. *
  1960. * Note, this does *not* consider any metadata overhead for vfs i_blocks.
  1961. */
  1962. static loff_t ext4_max_size(int blkbits, int has_huge_files)
  1963. {
  1964. loff_t res;
  1965. loff_t upper_limit = MAX_LFS_FILESIZE;
  1966. /* small i_blocks in vfs inode? */
  1967. if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
  1968. /*
  1969. * CONFIG_LBDAF is not enabled implies the inode
  1970. * i_block represent total blocks in 512 bytes
  1971. * 32 == size of vfs inode i_blocks * 8
  1972. */
  1973. upper_limit = (1LL << 32) - 1;
  1974. /* total blocks in file system block size */
  1975. upper_limit >>= (blkbits - 9);
  1976. upper_limit <<= blkbits;
  1977. }
  1978. /* 32-bit extent-start container, ee_block */
  1979. res = 1LL << 32;
  1980. res <<= blkbits;
  1981. res -= 1;
  1982. /* Sanity check against vm- & vfs- imposed limits */
  1983. if (res > upper_limit)
  1984. res = upper_limit;
  1985. return res;
  1986. }
  1987. /*
  1988. * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
  1989. * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
  1990. * We need to be 1 filesystem block less than the 2^48 sector limit.
  1991. */
  1992. static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
  1993. {
  1994. loff_t res = EXT4_NDIR_BLOCKS;
  1995. int meta_blocks;
  1996. loff_t upper_limit;
  1997. /* This is calculated to be the largest file size for a dense, block
  1998. * mapped file such that the file's total number of 512-byte sectors,
  1999. * including data and all indirect blocks, does not exceed (2^48 - 1).
  2000. *
  2001. * __u32 i_blocks_lo and _u16 i_blocks_high represent the total
  2002. * number of 512-byte sectors of the file.
  2003. */
  2004. if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
  2005. /*
  2006. * !has_huge_files or CONFIG_LBDAF not enabled implies that
  2007. * the inode i_block field represents total file blocks in
  2008. * 2^32 512-byte sectors == size of vfs inode i_blocks * 8
  2009. */
  2010. upper_limit = (1LL << 32) - 1;
  2011. /* total blocks in file system block size */
  2012. upper_limit >>= (bits - 9);
  2013. } else {
  2014. /*
  2015. * We use 48 bit ext4_inode i_blocks
  2016. * With EXT4_HUGE_FILE_FL set the i_blocks
  2017. * represent total number of blocks in
  2018. * file system block size
  2019. */
  2020. upper_limit = (1LL << 48) - 1;
  2021. }
  2022. /* indirect blocks */
  2023. meta_blocks = 1;
  2024. /* double indirect blocks */
  2025. meta_blocks += 1 + (1LL << (bits-2));
  2026. /* tripple indirect blocks */
  2027. meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
  2028. upper_limit -= meta_blocks;
  2029. upper_limit <<= bits;
  2030. res += 1LL << (bits-2);
  2031. res += 1LL << (2*(bits-2));
  2032. res += 1LL << (3*(bits-2));
  2033. res <<= bits;
  2034. if (res > upper_limit)
  2035. res = upper_limit;
  2036. if (res > MAX_LFS_FILESIZE)
  2037. res = MAX_LFS_FILESIZE;
  2038. return res;
  2039. }
  2040. static ext4_fsblk_t descriptor_loc(struct super_block *sb,
  2041. ext4_fsblk_t logical_sb_block, int nr)
  2042. {
  2043. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2044. ext4_group_t bg, first_meta_bg;
  2045. int has_super = 0;
  2046. first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
  2047. if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
  2048. nr < first_meta_bg)
  2049. return logical_sb_block + nr + 1;
  2050. bg = sbi->s_desc_per_block * nr;
  2051. if (ext4_bg_has_super(sb, bg))
  2052. has_super = 1;
  2053. return (has_super + ext4_group_first_block_no(sb, bg));
  2054. }
  2055. /**
  2056. * ext4_get_stripe_size: Get the stripe size.
  2057. * @sbi: In memory super block info
  2058. *
  2059. * If we have specified it via mount option, then
  2060. * use the mount option value. If the value specified at mount time is
  2061. * greater than the blocks per group use the super block value.
  2062. * If the super block value is greater than blocks per group return 0.
  2063. * Allocator needs it be less than blocks per group.
  2064. *
  2065. */
  2066. static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
  2067. {
  2068. unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
  2069. unsigned long stripe_width =
  2070. le32_to_cpu(sbi->s_es->s_raid_stripe_width);
  2071. if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
  2072. return sbi->s_stripe;
  2073. if (stripe_width <= sbi->s_blocks_per_group)
  2074. return stripe_width;
  2075. if (stride <= sbi->s_blocks_per_group)
  2076. return stride;
  2077. return 0;
  2078. }
  2079. /* sysfs supprt */
  2080. struct ext4_attr {
  2081. struct attribute attr;
  2082. ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
  2083. ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
  2084. const char *, size_t);
  2085. int offset;
  2086. };
  2087. static int parse_strtoul(const char *buf,
  2088. unsigned long max, unsigned long *value)
  2089. {
  2090. char *endp;
  2091. *value = simple_strtoul(skip_spaces(buf), &endp, 0);
  2092. endp = skip_spaces(endp);
  2093. if (*endp || *value > max)
  2094. return -EINVAL;
  2095. return 0;
  2096. }
  2097. static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
  2098. struct ext4_sb_info *sbi,
  2099. char *buf)
  2100. {
  2101. return snprintf(buf, PAGE_SIZE, "%llu\n",
  2102. (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
  2103. }
  2104. static ssize_t session_write_kbytes_show(struct ext4_attr *a,
  2105. struct ext4_sb_info *sbi, char *buf)
  2106. {
  2107. struct super_block *sb = sbi->s_buddy_cache->i_sb;
  2108. if (!sb->s_bdev->bd_part)
  2109. return snprintf(buf, PAGE_SIZE, "0\n");
  2110. return snprintf(buf, PAGE_SIZE, "%lu\n",
  2111. (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
  2112. sbi->s_sectors_written_start) >> 1);
  2113. }
  2114. static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
  2115. struct ext4_sb_info *sbi, char *buf)
  2116. {
  2117. struct super_block *sb = sbi->s_buddy_cache->i_sb;
  2118. if (!sb->s_bdev->bd_part)
  2119. return snprintf(buf, PAGE_SIZE, "0\n");
  2120. return snprintf(buf, PAGE_SIZE, "%llu\n",
  2121. (unsigned long long)(sbi->s_kbytes_written +
  2122. ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
  2123. EXT4_SB(sb)->s_sectors_written_start) >> 1)));
  2124. }
  2125. static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
  2126. struct ext4_sb_info *sbi,
  2127. const char *buf, size_t count)
  2128. {
  2129. unsigned long t;
  2130. if (parse_strtoul(buf, 0x40000000, &t))
  2131. return -EINVAL;
  2132. if (!is_power_of_2(t))
  2133. return -EINVAL;
  2134. sbi->s_inode_readahead_blks = t;
  2135. return count;
  2136. }
  2137. static ssize_t sbi_ui_show(struct ext4_attr *a,
  2138. struct ext4_sb_info *sbi, char *buf)
  2139. {
  2140. unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
  2141. return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
  2142. }
  2143. static ssize_t sbi_ui_store(struct ext4_attr *a,
  2144. struct ext4_sb_info *sbi,
  2145. const char *buf, size_t count)
  2146. {
  2147. unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
  2148. unsigned long t;
  2149. if (parse_strtoul(buf, 0xffffffff, &t))
  2150. return -EINVAL;
  2151. *ui = t;
  2152. return count;
  2153. }
  2154. #define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
  2155. static struct ext4_attr ext4_attr_##_name = { \
  2156. .attr = {.name = __stringify(_name), .mode = _mode }, \
  2157. .show = _show, \
  2158. .store = _store, \
  2159. .offset = offsetof(struct ext4_sb_info, _elname), \
  2160. }
  2161. #define EXT4_ATTR(name, mode, show, store) \
  2162. static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
  2163. #define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
  2164. #define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
  2165. #define EXT4_RW_ATTR_SBI_UI(name, elname) \
  2166. EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
  2167. #define ATTR_LIST(name) &ext4_attr_##name.attr
  2168. EXT4_RO_ATTR(delayed_allocation_blocks);
  2169. EXT4_RO_ATTR(session_write_kbytes);
  2170. EXT4_RO_ATTR(lifetime_write_kbytes);
  2171. EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
  2172. inode_readahead_blks_store, s_inode_readahead_blks);
  2173. EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
  2174. EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
  2175. EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
  2176. EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
  2177. EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
  2178. EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
  2179. EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
  2180. EXT4_RW_ATTR_SBI_UI(max_writeback_mb_bump, s_max_writeback_mb_bump);
  2181. static struct attribute *ext4_attrs[] = {
  2182. ATTR_LIST(delayed_allocation_blocks),
  2183. ATTR_LIST(session_write_kbytes),
  2184. ATTR_LIST(lifetime_write_kbytes),
  2185. ATTR_LIST(inode_readahead_blks),
  2186. ATTR_LIST(inode_goal),
  2187. ATTR_LIST(mb_stats),
  2188. ATTR_LIST(mb_max_to_scan),
  2189. ATTR_LIST(mb_min_to_scan),
  2190. ATTR_LIST(mb_order2_req),
  2191. ATTR_LIST(mb_stream_req),
  2192. ATTR_LIST(mb_group_prealloc),
  2193. ATTR_LIST(max_writeback_mb_bump),
  2194. NULL,
  2195. };
  2196. static ssize_t ext4_attr_show(struct kobject *kobj,
  2197. struct attribute *attr, char *buf)
  2198. {
  2199. struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
  2200. s_kobj);
  2201. struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
  2202. return a->show ? a->show(a, sbi, buf) : 0;
  2203. }
  2204. static ssize_t ext4_attr_store(struct kobject *kobj,
  2205. struct attribute *attr,
  2206. const char *buf, size_t len)
  2207. {
  2208. struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
  2209. s_kobj);
  2210. struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
  2211. return a->store ? a->store(a, sbi, buf, len) : 0;
  2212. }
  2213. static void ext4_sb_release(struct kobject *kobj)
  2214. {
  2215. struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
  2216. s_kobj);
  2217. complete(&sbi->s_kobj_unregister);
  2218. }
  2219. static const struct sysfs_ops ext4_attr_ops = {
  2220. .show = ext4_attr_show,
  2221. .store = ext4_attr_store,
  2222. };
  2223. static struct kobj_type ext4_ktype = {
  2224. .default_attrs = ext4_attrs,
  2225. .sysfs_ops = &ext4_attr_ops,
  2226. .release = ext4_sb_release,
  2227. };
  2228. /*
  2229. * Check whether this filesystem can be mounted based on
  2230. * the features present and the RDONLY/RDWR mount requested.
  2231. * Returns 1 if this filesystem can be mounted as requested,
  2232. * 0 if it cannot be.
  2233. */
  2234. static int ext4_feature_set_ok(struct super_block *sb, int readonly)
  2235. {
  2236. if (EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP)) {
  2237. ext4_msg(sb, KERN_ERR,
  2238. "Couldn't mount because of "
  2239. "unsupported optional features (%x)",
  2240. (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
  2241. ~EXT4_FEATURE_INCOMPAT_SUPP));
  2242. return 0;
  2243. }
  2244. if (readonly)
  2245. return 1;
  2246. /* Check that feature set is OK for a read-write mount */
  2247. if (EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP)) {
  2248. ext4_msg(sb, KERN_ERR, "couldn't mount RDWR because of "
  2249. "unsupported optional features (%x)",
  2250. (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
  2251. ~EXT4_FEATURE_RO_COMPAT_SUPP));
  2252. return 0;
  2253. }
  2254. /*
  2255. * Large file size enabled file system can only be mounted
  2256. * read-write on 32-bit systems if kernel is built with CONFIG_LBDAF
  2257. */
  2258. if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
  2259. if (sizeof(blkcnt_t) < sizeof(u64)) {
  2260. ext4_msg(sb, KERN_ERR, "Filesystem with huge files "
  2261. "cannot be mounted RDWR without "
  2262. "CONFIG_LBDAF");
  2263. return 0;
  2264. }
  2265. }
  2266. return 1;
  2267. }
  2268. /*
  2269. * This function is called once a day if we have errors logged
  2270. * on the file system
  2271. */
  2272. static void print_daily_error_info(unsigned long arg)
  2273. {
  2274. struct super_block *sb = (struct super_block *) arg;
  2275. struct ext4_sb_info *sbi;
  2276. struct ext4_super_block *es;
  2277. sbi = EXT4_SB(sb);
  2278. es = sbi->s_es;
  2279. if (es->s_error_count)
  2280. ext4_msg(sb, KERN_NOTICE, "error count: %u",
  2281. le32_to_cpu(es->s_error_count));
  2282. if (es->s_first_error_time) {
  2283. printk(KERN_NOTICE "EXT4-fs (%s): initial error at %u: %.*s:%d",
  2284. sb->s_id, le32_to_cpu(es->s_first_error_time),
  2285. (int) sizeof(es->s_first_error_func),
  2286. es->s_first_error_func,
  2287. le32_to_cpu(es->s_first_error_line));
  2288. if (es->s_first_error_ino)
  2289. printk(": inode %u",
  2290. le32_to_cpu(es->s_first_error_ino));
  2291. if (es->s_first_error_block)
  2292. printk(": block %llu", (unsigned long long)
  2293. le64_to_cpu(es->s_first_error_block));
  2294. printk("\n");
  2295. }
  2296. if (es->s_last_error_time) {
  2297. printk(KERN_NOTICE "EXT4-fs (%s): last error at %u: %.*s:%d",
  2298. sb->s_id, le32_to_cpu(es->s_last_error_time),
  2299. (int) sizeof(es->s_last_error_func),
  2300. es->s_last_error_func,
  2301. le32_to_cpu(es->s_last_error_line));
  2302. if (es->s_last_error_ino)
  2303. printk(": inode %u",
  2304. le32_to_cpu(es->s_last_error_ino));
  2305. if (es->s_last_error_block)
  2306. printk(": block %llu", (unsigned long long)
  2307. le64_to_cpu(es->s_last_error_block));
  2308. printk("\n");
  2309. }
  2310. mod_timer(&sbi->s_err_report, jiffies + 24*60*60*HZ); /* Once a day */
  2311. }
  2312. static void ext4_lazyinode_timeout(unsigned long data)
  2313. {
  2314. struct task_struct *p = (struct task_struct *)data;
  2315. wake_up_process(p);
  2316. }
  2317. /* Find next suitable group and run ext4_init_inode_table */
  2318. static int ext4_run_li_request(struct ext4_li_request *elr)
  2319. {
  2320. struct ext4_group_desc *gdp = NULL;
  2321. ext4_group_t group, ngroups;
  2322. struct super_block *sb;
  2323. unsigned long timeout = 0;
  2324. int ret = 0;
  2325. sb = elr->lr_super;
  2326. ngroups = EXT4_SB(sb)->s_groups_count;
  2327. for (group = elr->lr_next_group; group < ngroups; group++) {
  2328. gdp = ext4_get_group_desc(sb, group, NULL);
  2329. if (!gdp) {
  2330. ret = 1;
  2331. break;
  2332. }
  2333. if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED)))
  2334. break;
  2335. }
  2336. if (group == ngroups)
  2337. ret = 1;
  2338. if (!ret) {
  2339. timeout = jiffies;
  2340. ret = ext4_init_inode_table(sb, group,
  2341. elr->lr_timeout ? 0 : 1);
  2342. if (elr->lr_timeout == 0) {
  2343. timeout = jiffies - timeout;
  2344. if (elr->lr_sbi->s_li_wait_mult)
  2345. timeout *= elr->lr_sbi->s_li_wait_mult;
  2346. else
  2347. timeout *= 20;
  2348. elr->lr_timeout = timeout;
  2349. }
  2350. elr->lr_next_sched = jiffies + elr->lr_timeout;
  2351. elr->lr_next_group = group + 1;
  2352. }
  2353. return ret;
  2354. }
  2355. /*
  2356. * Remove lr_request from the list_request and free the
  2357. * request tructure. Should be called with li_list_mtx held
  2358. */
  2359. static void ext4_remove_li_request(struct ext4_li_request *elr)
  2360. {
  2361. struct ext4_sb_info *sbi;
  2362. if (!elr)
  2363. return;
  2364. sbi = elr->lr_sbi;
  2365. list_del(&elr->lr_request);
  2366. sbi->s_li_request = NULL;
  2367. kfree(elr);
  2368. }
  2369. static void ext4_unregister_li_request(struct super_block *sb)
  2370. {
  2371. struct ext4_li_request *elr = EXT4_SB(sb)->s_li_request;
  2372. if (!ext4_li_info)
  2373. return;
  2374. mutex_lock(&ext4_li_info->li_list_mtx);
  2375. ext4_remove_li_request(elr);
  2376. mutex_unlock(&ext4_li_info->li_list_mtx);
  2377. }
  2378. /*
  2379. * This is the function where ext4lazyinit thread lives. It walks
  2380. * through the request list searching for next scheduled filesystem.
  2381. * When such a fs is found, run the lazy initialization request
  2382. * (ext4_rn_li_request) and keep track of the time spend in this
  2383. * function. Based on that time we compute next schedule time of
  2384. * the request. When walking through the list is complete, compute
  2385. * next waking time and put itself into sleep.
  2386. */
  2387. static int ext4_lazyinit_thread(void *arg)
  2388. {
  2389. struct ext4_lazy_init *eli = (struct ext4_lazy_init *)arg;
  2390. struct list_head *pos, *n;
  2391. struct ext4_li_request *elr;
  2392. unsigned long next_wakeup;
  2393. DEFINE_WAIT(wait);
  2394. int ret;
  2395. BUG_ON(NULL == eli);
  2396. eli->li_timer.data = (unsigned long)current;
  2397. eli->li_timer.function = ext4_lazyinode_timeout;
  2398. eli->li_task = current;
  2399. wake_up(&eli->li_wait_task);
  2400. cont_thread:
  2401. while (true) {
  2402. next_wakeup = MAX_JIFFY_OFFSET;
  2403. mutex_lock(&eli->li_list_mtx);
  2404. if (list_empty(&eli->li_request_list)) {
  2405. mutex_unlock(&eli->li_list_mtx);
  2406. goto exit_thread;
  2407. }
  2408. list_for_each_safe(pos, n, &eli->li_request_list) {
  2409. elr = list_entry(pos, struct ext4_li_request,
  2410. lr_request);
  2411. if (time_after_eq(jiffies, elr->lr_next_sched))
  2412. ret = ext4_run_li_request(elr);
  2413. if (ret) {
  2414. ret = 0;
  2415. ext4_remove_li_request(elr);
  2416. continue;
  2417. }
  2418. if (time_before(elr->lr_next_sched, next_wakeup))
  2419. next_wakeup = elr->lr_next_sched;
  2420. }
  2421. mutex_unlock(&eli->li_list_mtx);
  2422. if (freezing(current))
  2423. refrigerator();
  2424. if (time_after_eq(jiffies, next_wakeup)) {
  2425. cond_resched();
  2426. continue;
  2427. }
  2428. eli->li_timer.expires = next_wakeup;
  2429. add_timer(&eli->li_timer);
  2430. prepare_to_wait(&eli->li_wait_daemon, &wait,
  2431. TASK_INTERRUPTIBLE);
  2432. if (time_before(jiffies, next_wakeup))
  2433. schedule();
  2434. finish_wait(&eli->li_wait_daemon, &wait);
  2435. }
  2436. exit_thread:
  2437. /*
  2438. * It looks like the request list is empty, but we need
  2439. * to check it under the li_list_mtx lock, to prevent any
  2440. * additions into it, and of course we should lock ext4_li_mtx
  2441. * to atomically free the list and ext4_li_info, because at
  2442. * this point another ext4 filesystem could be registering
  2443. * new one.
  2444. */
  2445. mutex_lock(&ext4_li_mtx);
  2446. mutex_lock(&eli->li_list_mtx);
  2447. if (!list_empty(&eli->li_request_list)) {
  2448. mutex_unlock(&eli->li_list_mtx);
  2449. mutex_unlock(&ext4_li_mtx);
  2450. goto cont_thread;
  2451. }
  2452. mutex_unlock(&eli->li_list_mtx);
  2453. del_timer_sync(&ext4_li_info->li_timer);
  2454. eli->li_task = NULL;
  2455. wake_up(&eli->li_wait_task);
  2456. kfree(ext4_li_info);
  2457. ext4_li_info = NULL;
  2458. mutex_unlock(&ext4_li_mtx);
  2459. return 0;
  2460. }
  2461. static void ext4_clear_request_list(void)
  2462. {
  2463. struct list_head *pos, *n;
  2464. struct ext4_li_request *elr;
  2465. mutex_lock(&ext4_li_info->li_list_mtx);
  2466. if (list_empty(&ext4_li_info->li_request_list))
  2467. return;
  2468. list_for_each_safe(pos, n, &ext4_li_info->li_request_list) {
  2469. elr = list_entry(pos, struct ext4_li_request,
  2470. lr_request);
  2471. ext4_remove_li_request(elr);
  2472. }
  2473. mutex_unlock(&ext4_li_info->li_list_mtx);
  2474. }
  2475. static int ext4_run_lazyinit_thread(void)
  2476. {
  2477. struct task_struct *t;
  2478. t = kthread_run(ext4_lazyinit_thread, ext4_li_info, "ext4lazyinit");
  2479. if (IS_ERR(t)) {
  2480. int err = PTR_ERR(t);
  2481. ext4_clear_request_list();
  2482. del_timer_sync(&ext4_li_info->li_timer);
  2483. kfree(ext4_li_info);
  2484. ext4_li_info = NULL;
  2485. printk(KERN_CRIT "EXT4: error %d creating inode table "
  2486. "initialization thread\n",
  2487. err);
  2488. return err;
  2489. }
  2490. ext4_li_info->li_state |= EXT4_LAZYINIT_RUNNING;
  2491. wait_event(ext4_li_info->li_wait_task, ext4_li_info->li_task != NULL);
  2492. return 0;
  2493. }
  2494. /*
  2495. * Check whether it make sense to run itable init. thread or not.
  2496. * If there is at least one uninitialized inode table, return
  2497. * corresponding group number, else the loop goes through all
  2498. * groups and return total number of groups.
  2499. */
  2500. static ext4_group_t ext4_has_uninit_itable(struct super_block *sb)
  2501. {
  2502. ext4_group_t group, ngroups = EXT4_SB(sb)->s_groups_count;
  2503. struct ext4_group_desc *gdp = NULL;
  2504. for (group = 0; group < ngroups; group++) {
  2505. gdp = ext4_get_group_desc(sb, group, NULL);
  2506. if (!gdp)
  2507. continue;
  2508. if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED)))
  2509. break;
  2510. }
  2511. return group;
  2512. }
  2513. static int ext4_li_info_new(void)
  2514. {
  2515. struct ext4_lazy_init *eli = NULL;
  2516. eli = kzalloc(sizeof(*eli), GFP_KERNEL);
  2517. if (!eli)
  2518. return -ENOMEM;
  2519. eli->li_task = NULL;
  2520. INIT_LIST_HEAD(&eli->li_request_list);
  2521. mutex_init(&eli->li_list_mtx);
  2522. init_waitqueue_head(&eli->li_wait_daemon);
  2523. init_waitqueue_head(&eli->li_wait_task);
  2524. init_timer(&eli->li_timer);
  2525. eli->li_state |= EXT4_LAZYINIT_QUIT;
  2526. ext4_li_info = eli;
  2527. return 0;
  2528. }
  2529. static struct ext4_li_request *ext4_li_request_new(struct super_block *sb,
  2530. ext4_group_t start)
  2531. {
  2532. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2533. struct ext4_li_request *elr;
  2534. unsigned long rnd;
  2535. elr = kzalloc(sizeof(*elr), GFP_KERNEL);
  2536. if (!elr)
  2537. return NULL;
  2538. elr->lr_super = sb;
  2539. elr->lr_sbi = sbi;
  2540. elr->lr_next_group = start;
  2541. /*
  2542. * Randomize first schedule time of the request to
  2543. * spread the inode table initialization requests
  2544. * better.
  2545. */
  2546. get_random_bytes(&rnd, sizeof(rnd));
  2547. elr->lr_next_sched = jiffies + (unsigned long)rnd %
  2548. (EXT4_DEF_LI_MAX_START_DELAY * HZ);
  2549. return elr;
  2550. }
  2551. static int ext4_register_li_request(struct super_block *sb,
  2552. ext4_group_t first_not_zeroed)
  2553. {
  2554. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2555. struct ext4_li_request *elr;
  2556. ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
  2557. int ret = 0;
  2558. if (sbi->s_li_request != NULL)
  2559. goto out;
  2560. if (first_not_zeroed == ngroups ||
  2561. (sb->s_flags & MS_RDONLY) ||
  2562. !test_opt(sb, INIT_INODE_TABLE)) {
  2563. sbi->s_li_request = NULL;
  2564. goto out;
  2565. }
  2566. if (first_not_zeroed == ngroups) {
  2567. sbi->s_li_request = NULL;
  2568. goto out;
  2569. }
  2570. elr = ext4_li_request_new(sb, first_not_zeroed);
  2571. if (!elr) {
  2572. ret = -ENOMEM;
  2573. goto out;
  2574. }
  2575. mutex_lock(&ext4_li_mtx);
  2576. if (NULL == ext4_li_info) {
  2577. ret = ext4_li_info_new();
  2578. if (ret)
  2579. goto out;
  2580. }
  2581. mutex_lock(&ext4_li_info->li_list_mtx);
  2582. list_add(&elr->lr_request, &ext4_li_info->li_request_list);
  2583. mutex_unlock(&ext4_li_info->li_list_mtx);
  2584. sbi->s_li_request = elr;
  2585. if (!(ext4_li_info->li_state & EXT4_LAZYINIT_RUNNING)) {
  2586. ret = ext4_run_lazyinit_thread();
  2587. if (ret)
  2588. goto out;
  2589. }
  2590. mutex_unlock(&ext4_li_mtx);
  2591. out:
  2592. if (ret) {
  2593. mutex_unlock(&ext4_li_mtx);
  2594. kfree(elr);
  2595. }
  2596. return ret;
  2597. }
  2598. /*
  2599. * We do not need to lock anything since this is called on
  2600. * module unload.
  2601. */
  2602. static void ext4_destroy_lazyinit_thread(void)
  2603. {
  2604. /*
  2605. * If thread exited earlier
  2606. * there's nothing to be done.
  2607. */
  2608. if (!ext4_li_info)
  2609. return;
  2610. ext4_clear_request_list();
  2611. while (ext4_li_info->li_task) {
  2612. wake_up(&ext4_li_info->li_wait_daemon);
  2613. wait_event(ext4_li_info->li_wait_task,
  2614. ext4_li_info->li_task == NULL);
  2615. }
  2616. }
  2617. static int ext4_fill_super(struct super_block *sb, void *data, int silent)
  2618. __releases(kernel_lock)
  2619. __acquires(kernel_lock)
  2620. {
  2621. char *orig_data = kstrdup(data, GFP_KERNEL);
  2622. struct buffer_head *bh;
  2623. struct ext4_super_block *es = NULL;
  2624. struct ext4_sb_info *sbi;
  2625. ext4_fsblk_t block;
  2626. ext4_fsblk_t sb_block = get_sb_block(&data);
  2627. ext4_fsblk_t logical_sb_block;
  2628. unsigned long offset = 0;
  2629. unsigned long journal_devnum = 0;
  2630. unsigned long def_mount_opts;
  2631. struct inode *root;
  2632. char *cp;
  2633. const char *descr;
  2634. int ret = -ENOMEM;
  2635. int blocksize;
  2636. unsigned int db_count;
  2637. unsigned int i;
  2638. int needs_recovery, has_huge_files;
  2639. __u64 blocks_count;
  2640. int err;
  2641. unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
  2642. ext4_group_t first_not_zeroed;
  2643. sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
  2644. if (!sbi)
  2645. goto out_free_orig;
  2646. sbi->s_blockgroup_lock =
  2647. kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
  2648. if (!sbi->s_blockgroup_lock) {
  2649. kfree(sbi);
  2650. goto out_free_orig;
  2651. }
  2652. sb->s_fs_info = sbi;
  2653. sbi->s_mount_opt = 0;
  2654. sbi->s_resuid = EXT4_DEF_RESUID;
  2655. sbi->s_resgid = EXT4_DEF_RESGID;
  2656. sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
  2657. sbi->s_sb_block = sb_block;
  2658. if (sb->s_bdev->bd_part)
  2659. sbi->s_sectors_written_start =
  2660. part_stat_read(sb->s_bdev->bd_part, sectors[1]);
  2661. unlock_kernel();
  2662. /* Cleanup superblock name */
  2663. for (cp = sb->s_id; (cp = strchr(cp, '/'));)
  2664. *cp = '!';
  2665. ret = -EINVAL;
  2666. blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
  2667. if (!blocksize) {
  2668. ext4_msg(sb, KERN_ERR, "unable to set blocksize");
  2669. goto out_fail;
  2670. }
  2671. /*
  2672. * The ext4 superblock will not be buffer aligned for other than 1kB
  2673. * block sizes. We need to calculate the offset from buffer start.
  2674. */
  2675. if (blocksize != EXT4_MIN_BLOCK_SIZE) {
  2676. logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
  2677. offset = do_div(logical_sb_block, blocksize);
  2678. } else {
  2679. logical_sb_block = sb_block;
  2680. }
  2681. if (!(bh = sb_bread(sb, logical_sb_block))) {
  2682. ext4_msg(sb, KERN_ERR, "unable to read superblock");
  2683. goto out_fail;
  2684. }
  2685. /*
  2686. * Note: s_es must be initialized as soon as possible because
  2687. * some ext4 macro-instructions depend on its value
  2688. */
  2689. es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
  2690. sbi->s_es = es;
  2691. sb->s_magic = le16_to_cpu(es->s_magic);
  2692. if (sb->s_magic != EXT4_SUPER_MAGIC)
  2693. goto cantfind_ext4;
  2694. sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
  2695. /* Set defaults before we parse the mount options */
  2696. def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
  2697. set_opt(sbi->s_mount_opt, INIT_INODE_TABLE);
  2698. if (def_mount_opts & EXT4_DEFM_DEBUG)
  2699. set_opt(sbi->s_mount_opt, DEBUG);
  2700. if (def_mount_opts & EXT4_DEFM_BSDGROUPS) {
  2701. ext4_msg(sb, KERN_WARNING, deprecated_msg, "bsdgroups",
  2702. "2.6.38");
  2703. set_opt(sbi->s_mount_opt, GRPID);
  2704. }
  2705. if (def_mount_opts & EXT4_DEFM_UID16)
  2706. set_opt(sbi->s_mount_opt, NO_UID32);
  2707. #ifdef CONFIG_EXT4_FS_XATTR
  2708. if (def_mount_opts & EXT4_DEFM_XATTR_USER)
  2709. set_opt(sbi->s_mount_opt, XATTR_USER);
  2710. #endif
  2711. #ifdef CONFIG_EXT4_FS_POSIX_ACL
  2712. if (def_mount_opts & EXT4_DEFM_ACL)
  2713. set_opt(sbi->s_mount_opt, POSIX_ACL);
  2714. #endif
  2715. if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
  2716. set_opt(sbi->s_mount_opt, JOURNAL_DATA);
  2717. else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
  2718. set_opt(sbi->s_mount_opt, ORDERED_DATA);
  2719. else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
  2720. set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
  2721. if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
  2722. set_opt(sbi->s_mount_opt, ERRORS_PANIC);
  2723. else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
  2724. set_opt(sbi->s_mount_opt, ERRORS_CONT);
  2725. else
  2726. set_opt(sbi->s_mount_opt, ERRORS_RO);
  2727. if (def_mount_opts & EXT4_DEFM_BLOCK_VALIDITY)
  2728. set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
  2729. if (def_mount_opts & EXT4_DEFM_DISCARD)
  2730. set_opt(sbi->s_mount_opt, DISCARD);
  2731. sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
  2732. sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
  2733. sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
  2734. sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
  2735. sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
  2736. if ((def_mount_opts & EXT4_DEFM_NOBARRIER) == 0)
  2737. set_opt(sbi->s_mount_opt, BARRIER);
  2738. /*
  2739. * enable delayed allocation by default
  2740. * Use -o nodelalloc to turn it off
  2741. */
  2742. if (!IS_EXT3_SB(sb) &&
  2743. ((def_mount_opts & EXT4_DEFM_NODELALLOC) == 0))
  2744. set_opt(sbi->s_mount_opt, DELALLOC);
  2745. if (!parse_options((char *) sbi->s_es->s_mount_opts, sb,
  2746. &journal_devnum, &journal_ioprio, NULL, 0)) {
  2747. ext4_msg(sb, KERN_WARNING,
  2748. "failed to parse options in superblock: %s",
  2749. sbi->s_es->s_mount_opts);
  2750. }
  2751. if (!parse_options((char *) data, sb, &journal_devnum,
  2752. &journal_ioprio, NULL, 0))
  2753. goto failed_mount;
  2754. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  2755. (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
  2756. if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
  2757. (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
  2758. EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
  2759. EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
  2760. ext4_msg(sb, KERN_WARNING,
  2761. "feature flags set on rev 0 fs, "
  2762. "running e2fsck is recommended");
  2763. /*
  2764. * Check feature flags regardless of the revision level, since we
  2765. * previously didn't change the revision level when setting the flags,
  2766. * so there is a chance incompat flags are set on a rev 0 filesystem.
  2767. */
  2768. if (!ext4_feature_set_ok(sb, (sb->s_flags & MS_RDONLY)))
  2769. goto failed_mount;
  2770. blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
  2771. if (blocksize < EXT4_MIN_BLOCK_SIZE ||
  2772. blocksize > EXT4_MAX_BLOCK_SIZE) {
  2773. ext4_msg(sb, KERN_ERR,
  2774. "Unsupported filesystem blocksize %d", blocksize);
  2775. goto failed_mount;
  2776. }
  2777. if (sb->s_blocksize != blocksize) {
  2778. /* Validate the filesystem blocksize */
  2779. if (!sb_set_blocksize(sb, blocksize)) {
  2780. ext4_msg(sb, KERN_ERR, "bad block size %d",
  2781. blocksize);
  2782. goto failed_mount;
  2783. }
  2784. brelse(bh);
  2785. logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
  2786. offset = do_div(logical_sb_block, blocksize);
  2787. bh = sb_bread(sb, logical_sb_block);
  2788. if (!bh) {
  2789. ext4_msg(sb, KERN_ERR,
  2790. "Can't read superblock on 2nd try");
  2791. goto failed_mount;
  2792. }
  2793. es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
  2794. sbi->s_es = es;
  2795. if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
  2796. ext4_msg(sb, KERN_ERR,
  2797. "Magic mismatch, very weird!");
  2798. goto failed_mount;
  2799. }
  2800. }
  2801. has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
  2802. EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
  2803. sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
  2804. has_huge_files);
  2805. sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
  2806. if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
  2807. sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
  2808. sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
  2809. } else {
  2810. sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
  2811. sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
  2812. if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
  2813. (!is_power_of_2(sbi->s_inode_size)) ||
  2814. (sbi->s_inode_size > blocksize)) {
  2815. ext4_msg(sb, KERN_ERR,
  2816. "unsupported inode size: %d",
  2817. sbi->s_inode_size);
  2818. goto failed_mount;
  2819. }
  2820. if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
  2821. sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
  2822. }
  2823. sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
  2824. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
  2825. if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
  2826. sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
  2827. !is_power_of_2(sbi->s_desc_size)) {
  2828. ext4_msg(sb, KERN_ERR,
  2829. "unsupported descriptor size %lu",
  2830. sbi->s_desc_size);
  2831. goto failed_mount;
  2832. }
  2833. } else
  2834. sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
  2835. sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
  2836. sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
  2837. if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
  2838. goto cantfind_ext4;
  2839. sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
  2840. if (sbi->s_inodes_per_block == 0)
  2841. goto cantfind_ext4;
  2842. sbi->s_itb_per_group = sbi->s_inodes_per_group /
  2843. sbi->s_inodes_per_block;
  2844. sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
  2845. sbi->s_sbh = bh;
  2846. sbi->s_mount_state = le16_to_cpu(es->s_state);
  2847. sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
  2848. sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
  2849. for (i = 0; i < 4; i++)
  2850. sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
  2851. sbi->s_def_hash_version = es->s_def_hash_version;
  2852. i = le32_to_cpu(es->s_flags);
  2853. if (i & EXT2_FLAGS_UNSIGNED_HASH)
  2854. sbi->s_hash_unsigned = 3;
  2855. else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
  2856. #ifdef __CHAR_UNSIGNED__
  2857. es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
  2858. sbi->s_hash_unsigned = 3;
  2859. #else
  2860. es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
  2861. #endif
  2862. sb->s_dirt = 1;
  2863. }
  2864. if (sbi->s_blocks_per_group > blocksize * 8) {
  2865. ext4_msg(sb, KERN_ERR,
  2866. "#blocks per group too big: %lu",
  2867. sbi->s_blocks_per_group);
  2868. goto failed_mount;
  2869. }
  2870. if (sbi->s_inodes_per_group > blocksize * 8) {
  2871. ext4_msg(sb, KERN_ERR,
  2872. "#inodes per group too big: %lu",
  2873. sbi->s_inodes_per_group);
  2874. goto failed_mount;
  2875. }
  2876. /*
  2877. * Test whether we have more sectors than will fit in sector_t,
  2878. * and whether the max offset is addressable by the page cache.
  2879. */
  2880. if ((ext4_blocks_count(es) >
  2881. (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) ||
  2882. (ext4_blocks_count(es) >
  2883. (pgoff_t)(~0ULL) >> (PAGE_CACHE_SHIFT - sb->s_blocksize_bits))) {
  2884. ext4_msg(sb, KERN_ERR, "filesystem"
  2885. " too large to mount safely on this system");
  2886. if (sizeof(sector_t) < 8)
  2887. ext4_msg(sb, KERN_WARNING, "CONFIG_LBDAF not enabled");
  2888. ret = -EFBIG;
  2889. goto failed_mount;
  2890. }
  2891. if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
  2892. goto cantfind_ext4;
  2893. /* check blocks count against device size */
  2894. blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
  2895. if (blocks_count && ext4_blocks_count(es) > blocks_count) {
  2896. ext4_msg(sb, KERN_WARNING, "bad geometry: block count %llu "
  2897. "exceeds size of device (%llu blocks)",
  2898. ext4_blocks_count(es), blocks_count);
  2899. goto failed_mount;
  2900. }
  2901. /*
  2902. * It makes no sense for the first data block to be beyond the end
  2903. * of the filesystem.
  2904. */
  2905. if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
  2906. ext4_msg(sb, KERN_WARNING, "bad geometry: first data"
  2907. "block %u is beyond end of filesystem (%llu)",
  2908. le32_to_cpu(es->s_first_data_block),
  2909. ext4_blocks_count(es));
  2910. goto failed_mount;
  2911. }
  2912. blocks_count = (ext4_blocks_count(es) -
  2913. le32_to_cpu(es->s_first_data_block) +
  2914. EXT4_BLOCKS_PER_GROUP(sb) - 1);
  2915. do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
  2916. if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
  2917. ext4_msg(sb, KERN_WARNING, "groups count too large: %u "
  2918. "(block count %llu, first data block %u, "
  2919. "blocks per group %lu)", sbi->s_groups_count,
  2920. ext4_blocks_count(es),
  2921. le32_to_cpu(es->s_first_data_block),
  2922. EXT4_BLOCKS_PER_GROUP(sb));
  2923. goto failed_mount;
  2924. }
  2925. sbi->s_groups_count = blocks_count;
  2926. sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
  2927. (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
  2928. db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
  2929. EXT4_DESC_PER_BLOCK(sb);
  2930. sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
  2931. GFP_KERNEL);
  2932. if (sbi->s_group_desc == NULL) {
  2933. ext4_msg(sb, KERN_ERR, "not enough memory");
  2934. goto failed_mount;
  2935. }
  2936. #ifdef CONFIG_PROC_FS
  2937. if (ext4_proc_root)
  2938. sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
  2939. #endif
  2940. bgl_lock_init(sbi->s_blockgroup_lock);
  2941. for (i = 0; i < db_count; i++) {
  2942. block = descriptor_loc(sb, logical_sb_block, i);
  2943. sbi->s_group_desc[i] = sb_bread(sb, block);
  2944. if (!sbi->s_group_desc[i]) {
  2945. ext4_msg(sb, KERN_ERR,
  2946. "can't read group descriptor %d", i);
  2947. db_count = i;
  2948. goto failed_mount2;
  2949. }
  2950. }
  2951. if (!ext4_check_descriptors(sb, &first_not_zeroed)) {
  2952. ext4_msg(sb, KERN_ERR, "group descriptors corrupted!");
  2953. goto failed_mount2;
  2954. }
  2955. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
  2956. if (!ext4_fill_flex_info(sb)) {
  2957. ext4_msg(sb, KERN_ERR,
  2958. "unable to initialize "
  2959. "flex_bg meta info!");
  2960. goto failed_mount2;
  2961. }
  2962. sbi->s_gdb_count = db_count;
  2963. get_random_bytes(&sbi->s_next_generation, sizeof(u32));
  2964. spin_lock_init(&sbi->s_next_gen_lock);
  2965. sbi->s_stripe = ext4_get_stripe_size(sbi);
  2966. sbi->s_max_writeback_mb_bump = 128;
  2967. /*
  2968. * set up enough so that it can read an inode
  2969. */
  2970. if (!test_opt(sb, NOLOAD) &&
  2971. EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
  2972. sb->s_op = &ext4_sops;
  2973. else
  2974. sb->s_op = &ext4_nojournal_sops;
  2975. sb->s_export_op = &ext4_export_ops;
  2976. sb->s_xattr = ext4_xattr_handlers;
  2977. #ifdef CONFIG_QUOTA
  2978. sb->s_qcop = &ext4_qctl_operations;
  2979. sb->dq_op = &ext4_quota_operations;
  2980. #endif
  2981. INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
  2982. mutex_init(&sbi->s_orphan_lock);
  2983. mutex_init(&sbi->s_resize_lock);
  2984. sb->s_root = NULL;
  2985. needs_recovery = (es->s_last_orphan != 0 ||
  2986. EXT4_HAS_INCOMPAT_FEATURE(sb,
  2987. EXT4_FEATURE_INCOMPAT_RECOVER));
  2988. /*
  2989. * The first inode we look at is the journal inode. Don't try
  2990. * root first: it may be modified in the journal!
  2991. */
  2992. if (!test_opt(sb, NOLOAD) &&
  2993. EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
  2994. if (ext4_load_journal(sb, es, journal_devnum))
  2995. goto failed_mount3;
  2996. } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
  2997. EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
  2998. ext4_msg(sb, KERN_ERR, "required journal recovery "
  2999. "suppressed and not mounted read-only");
  3000. goto failed_mount_wq;
  3001. } else {
  3002. clear_opt(sbi->s_mount_opt, DATA_FLAGS);
  3003. set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
  3004. sbi->s_journal = NULL;
  3005. needs_recovery = 0;
  3006. goto no_journal;
  3007. }
  3008. if (ext4_blocks_count(es) > 0xffffffffULL &&
  3009. !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
  3010. JBD2_FEATURE_INCOMPAT_64BIT)) {
  3011. ext4_msg(sb, KERN_ERR, "Failed to set 64-bit journal feature");
  3012. goto failed_mount_wq;
  3013. }
  3014. if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
  3015. jbd2_journal_set_features(sbi->s_journal,
  3016. JBD2_FEATURE_COMPAT_CHECKSUM, 0,
  3017. JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
  3018. } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
  3019. jbd2_journal_set_features(sbi->s_journal,
  3020. JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
  3021. jbd2_journal_clear_features(sbi->s_journal, 0, 0,
  3022. JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
  3023. } else {
  3024. jbd2_journal_clear_features(sbi->s_journal,
  3025. JBD2_FEATURE_COMPAT_CHECKSUM, 0,
  3026. JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
  3027. }
  3028. /* We have now updated the journal if required, so we can
  3029. * validate the data journaling mode. */
  3030. switch (test_opt(sb, DATA_FLAGS)) {
  3031. case 0:
  3032. /* No mode set, assume a default based on the journal
  3033. * capabilities: ORDERED_DATA if the journal can
  3034. * cope, else JOURNAL_DATA
  3035. */
  3036. if (jbd2_journal_check_available_features
  3037. (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
  3038. set_opt(sbi->s_mount_opt, ORDERED_DATA);
  3039. else
  3040. set_opt(sbi->s_mount_opt, JOURNAL_DATA);
  3041. break;
  3042. case EXT4_MOUNT_ORDERED_DATA:
  3043. case EXT4_MOUNT_WRITEBACK_DATA:
  3044. if (!jbd2_journal_check_available_features
  3045. (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
  3046. ext4_msg(sb, KERN_ERR, "Journal does not support "
  3047. "requested data journaling mode");
  3048. goto failed_mount_wq;
  3049. }
  3050. default:
  3051. break;
  3052. }
  3053. set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
  3054. no_journal:
  3055. err = percpu_counter_init(&sbi->s_freeblocks_counter,
  3056. ext4_count_free_blocks(sb));
  3057. if (!err)
  3058. err = percpu_counter_init(&sbi->s_freeinodes_counter,
  3059. ext4_count_free_inodes(sb));
  3060. if (!err)
  3061. err = percpu_counter_init(&sbi->s_dirs_counter,
  3062. ext4_count_dirs(sb));
  3063. if (!err)
  3064. err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
  3065. if (err) {
  3066. ext4_msg(sb, KERN_ERR, "insufficient memory");
  3067. goto failed_mount_wq;
  3068. }
  3069. EXT4_SB(sb)->dio_unwritten_wq = create_workqueue("ext4-dio-unwritten");
  3070. if (!EXT4_SB(sb)->dio_unwritten_wq) {
  3071. printk(KERN_ERR "EXT4-fs: failed to create DIO workqueue\n");
  3072. goto failed_mount_wq;
  3073. }
  3074. /*
  3075. * The jbd2_journal_load will have done any necessary log recovery,
  3076. * so we can safely mount the rest of the filesystem now.
  3077. */
  3078. root = ext4_iget(sb, EXT4_ROOT_INO);
  3079. if (IS_ERR(root)) {
  3080. ext4_msg(sb, KERN_ERR, "get root inode failed");
  3081. ret = PTR_ERR(root);
  3082. goto failed_mount4;
  3083. }
  3084. if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
  3085. iput(root);
  3086. ext4_msg(sb, KERN_ERR, "corrupt root inode, run e2fsck");
  3087. goto failed_mount4;
  3088. }
  3089. sb->s_root = d_alloc_root(root);
  3090. if (!sb->s_root) {
  3091. ext4_msg(sb, KERN_ERR, "get root dentry failed");
  3092. iput(root);
  3093. ret = -ENOMEM;
  3094. goto failed_mount4;
  3095. }
  3096. ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
  3097. /* determine the minimum size of new large inodes, if present */
  3098. if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
  3099. sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
  3100. EXT4_GOOD_OLD_INODE_SIZE;
  3101. if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
  3102. EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
  3103. if (sbi->s_want_extra_isize <
  3104. le16_to_cpu(es->s_want_extra_isize))
  3105. sbi->s_want_extra_isize =
  3106. le16_to_cpu(es->s_want_extra_isize);
  3107. if (sbi->s_want_extra_isize <
  3108. le16_to_cpu(es->s_min_extra_isize))
  3109. sbi->s_want_extra_isize =
  3110. le16_to_cpu(es->s_min_extra_isize);
  3111. }
  3112. }
  3113. /* Check if enough inode space is available */
  3114. if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
  3115. sbi->s_inode_size) {
  3116. sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
  3117. EXT4_GOOD_OLD_INODE_SIZE;
  3118. ext4_msg(sb, KERN_INFO, "required extra inode space not"
  3119. "available");
  3120. }
  3121. if (test_opt(sb, DELALLOC) &&
  3122. (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)) {
  3123. ext4_msg(sb, KERN_WARNING, "Ignoring delalloc option - "
  3124. "requested data journaling mode");
  3125. clear_opt(sbi->s_mount_opt, DELALLOC);
  3126. }
  3127. if (test_opt(sb, DIOREAD_NOLOCK)) {
  3128. if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
  3129. ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
  3130. "option - requested data journaling mode");
  3131. clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  3132. }
  3133. if (sb->s_blocksize < PAGE_SIZE) {
  3134. ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
  3135. "option - block size is too small");
  3136. clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  3137. }
  3138. }
  3139. err = ext4_setup_system_zone(sb);
  3140. if (err) {
  3141. ext4_msg(sb, KERN_ERR, "failed to initialize system "
  3142. "zone (%d)", err);
  3143. goto failed_mount4;
  3144. }
  3145. ext4_ext_init(sb);
  3146. err = ext4_mb_init(sb, needs_recovery);
  3147. if (err) {
  3148. ext4_msg(sb, KERN_ERR, "failed to initialize mballoc (%d)",
  3149. err);
  3150. goto failed_mount4;
  3151. }
  3152. err = ext4_register_li_request(sb, first_not_zeroed);
  3153. if (err)
  3154. goto failed_mount4;
  3155. sbi->s_kobj.kset = ext4_kset;
  3156. init_completion(&sbi->s_kobj_unregister);
  3157. err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
  3158. "%s", sb->s_id);
  3159. if (err) {
  3160. ext4_mb_release(sb);
  3161. ext4_ext_release(sb);
  3162. goto failed_mount4;
  3163. };
  3164. EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
  3165. ext4_orphan_cleanup(sb, es);
  3166. EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
  3167. if (needs_recovery) {
  3168. ext4_msg(sb, KERN_INFO, "recovery complete");
  3169. ext4_mark_recovery_complete(sb, es);
  3170. }
  3171. if (EXT4_SB(sb)->s_journal) {
  3172. if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
  3173. descr = " journalled data mode";
  3174. else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
  3175. descr = " ordered data mode";
  3176. else
  3177. descr = " writeback data mode";
  3178. } else
  3179. descr = "out journal";
  3180. ext4_msg(sb, KERN_INFO, "mounted filesystem with%s. "
  3181. "Opts: %s%s%s", descr, sbi->s_es->s_mount_opts,
  3182. *sbi->s_es->s_mount_opts ? "; " : "", orig_data);
  3183. init_timer(&sbi->s_err_report);
  3184. sbi->s_err_report.function = print_daily_error_info;
  3185. sbi->s_err_report.data = (unsigned long) sb;
  3186. if (es->s_error_count)
  3187. mod_timer(&sbi->s_err_report, jiffies + 300*HZ); /* 5 minutes */
  3188. lock_kernel();
  3189. kfree(orig_data);
  3190. return 0;
  3191. cantfind_ext4:
  3192. if (!silent)
  3193. ext4_msg(sb, KERN_ERR, "VFS: Can't find ext4 filesystem");
  3194. goto failed_mount;
  3195. failed_mount4:
  3196. ext4_msg(sb, KERN_ERR, "mount failed");
  3197. destroy_workqueue(EXT4_SB(sb)->dio_unwritten_wq);
  3198. failed_mount_wq:
  3199. ext4_release_system_zone(sb);
  3200. if (sbi->s_journal) {
  3201. jbd2_journal_destroy(sbi->s_journal);
  3202. sbi->s_journal = NULL;
  3203. }
  3204. percpu_counter_destroy(&sbi->s_freeblocks_counter);
  3205. percpu_counter_destroy(&sbi->s_freeinodes_counter);
  3206. percpu_counter_destroy(&sbi->s_dirs_counter);
  3207. percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
  3208. failed_mount3:
  3209. if (sbi->s_flex_groups) {
  3210. if (is_vmalloc_addr(sbi->s_flex_groups))
  3211. vfree(sbi->s_flex_groups);
  3212. else
  3213. kfree(sbi->s_flex_groups);
  3214. }
  3215. failed_mount2:
  3216. for (i = 0; i < db_count; i++)
  3217. brelse(sbi->s_group_desc[i]);
  3218. kfree(sbi->s_group_desc);
  3219. failed_mount:
  3220. if (sbi->s_proc) {
  3221. remove_proc_entry(sb->s_id, ext4_proc_root);
  3222. }
  3223. #ifdef CONFIG_QUOTA
  3224. for (i = 0; i < MAXQUOTAS; i++)
  3225. kfree(sbi->s_qf_names[i]);
  3226. #endif
  3227. ext4_blkdev_remove(sbi);
  3228. brelse(bh);
  3229. out_fail:
  3230. sb->s_fs_info = NULL;
  3231. kfree(sbi->s_blockgroup_lock);
  3232. kfree(sbi);
  3233. lock_kernel();
  3234. out_free_orig:
  3235. kfree(orig_data);
  3236. return ret;
  3237. }
  3238. /*
  3239. * Setup any per-fs journal parameters now. We'll do this both on
  3240. * initial mount, once the journal has been initialised but before we've
  3241. * done any recovery; and again on any subsequent remount.
  3242. */
  3243. static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
  3244. {
  3245. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3246. journal->j_commit_interval = sbi->s_commit_interval;
  3247. journal->j_min_batch_time = sbi->s_min_batch_time;
  3248. journal->j_max_batch_time = sbi->s_max_batch_time;
  3249. write_lock(&journal->j_state_lock);
  3250. if (test_opt(sb, BARRIER))
  3251. journal->j_flags |= JBD2_BARRIER;
  3252. else
  3253. journal->j_flags &= ~JBD2_BARRIER;
  3254. if (test_opt(sb, DATA_ERR_ABORT))
  3255. journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
  3256. else
  3257. journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
  3258. write_unlock(&journal->j_state_lock);
  3259. }
  3260. static journal_t *ext4_get_journal(struct super_block *sb,
  3261. unsigned int journal_inum)
  3262. {
  3263. struct inode *journal_inode;
  3264. journal_t *journal;
  3265. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3266. /* First, test for the existence of a valid inode on disk. Bad
  3267. * things happen if we iget() an unused inode, as the subsequent
  3268. * iput() will try to delete it. */
  3269. journal_inode = ext4_iget(sb, journal_inum);
  3270. if (IS_ERR(journal_inode)) {
  3271. ext4_msg(sb, KERN_ERR, "no journal found");
  3272. return NULL;
  3273. }
  3274. if (!journal_inode->i_nlink) {
  3275. make_bad_inode(journal_inode);
  3276. iput(journal_inode);
  3277. ext4_msg(sb, KERN_ERR, "journal inode is deleted");
  3278. return NULL;
  3279. }
  3280. jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
  3281. journal_inode, journal_inode->i_size);
  3282. if (!S_ISREG(journal_inode->i_mode)) {
  3283. ext4_msg(sb, KERN_ERR, "invalid journal inode");
  3284. iput(journal_inode);
  3285. return NULL;
  3286. }
  3287. journal = jbd2_journal_init_inode(journal_inode);
  3288. if (!journal) {
  3289. ext4_msg(sb, KERN_ERR, "Could not load journal inode");
  3290. iput(journal_inode);
  3291. return NULL;
  3292. }
  3293. journal->j_private = sb;
  3294. ext4_init_journal_params(sb, journal);
  3295. return journal;
  3296. }
  3297. static journal_t *ext4_get_dev_journal(struct super_block *sb,
  3298. dev_t j_dev)
  3299. {
  3300. struct buffer_head *bh;
  3301. journal_t *journal;
  3302. ext4_fsblk_t start;
  3303. ext4_fsblk_t len;
  3304. int hblock, blocksize;
  3305. ext4_fsblk_t sb_block;
  3306. unsigned long offset;
  3307. struct ext4_super_block *es;
  3308. struct block_device *bdev;
  3309. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3310. bdev = ext4_blkdev_get(j_dev, sb);
  3311. if (bdev == NULL)
  3312. return NULL;
  3313. if (bd_claim(bdev, sb)) {
  3314. ext4_msg(sb, KERN_ERR,
  3315. "failed to claim external journal device");
  3316. blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
  3317. return NULL;
  3318. }
  3319. blocksize = sb->s_blocksize;
  3320. hblock = bdev_logical_block_size(bdev);
  3321. if (blocksize < hblock) {
  3322. ext4_msg(sb, KERN_ERR,
  3323. "blocksize too small for journal device");
  3324. goto out_bdev;
  3325. }
  3326. sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
  3327. offset = EXT4_MIN_BLOCK_SIZE % blocksize;
  3328. set_blocksize(bdev, blocksize);
  3329. if (!(bh = __bread(bdev, sb_block, blocksize))) {
  3330. ext4_msg(sb, KERN_ERR, "couldn't read superblock of "
  3331. "external journal");
  3332. goto out_bdev;
  3333. }
  3334. es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
  3335. if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
  3336. !(le32_to_cpu(es->s_feature_incompat) &
  3337. EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
  3338. ext4_msg(sb, KERN_ERR, "external journal has "
  3339. "bad superblock");
  3340. brelse(bh);
  3341. goto out_bdev;
  3342. }
  3343. if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
  3344. ext4_msg(sb, KERN_ERR, "journal UUID does not match");
  3345. brelse(bh);
  3346. goto out_bdev;
  3347. }
  3348. len = ext4_blocks_count(es);
  3349. start = sb_block + 1;
  3350. brelse(bh); /* we're done with the superblock */
  3351. journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
  3352. start, len, blocksize);
  3353. if (!journal) {
  3354. ext4_msg(sb, KERN_ERR, "failed to create device journal");
  3355. goto out_bdev;
  3356. }
  3357. journal->j_private = sb;
  3358. ll_rw_block(READ, 1, &journal->j_sb_buffer);
  3359. wait_on_buffer(journal->j_sb_buffer);
  3360. if (!buffer_uptodate(journal->j_sb_buffer)) {
  3361. ext4_msg(sb, KERN_ERR, "I/O error on journal device");
  3362. goto out_journal;
  3363. }
  3364. if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
  3365. ext4_msg(sb, KERN_ERR, "External journal has more than one "
  3366. "user (unsupported) - %d",
  3367. be32_to_cpu(journal->j_superblock->s_nr_users));
  3368. goto out_journal;
  3369. }
  3370. EXT4_SB(sb)->journal_bdev = bdev;
  3371. ext4_init_journal_params(sb, journal);
  3372. return journal;
  3373. out_journal:
  3374. jbd2_journal_destroy(journal);
  3375. out_bdev:
  3376. ext4_blkdev_put(bdev);
  3377. return NULL;
  3378. }
  3379. static int ext4_load_journal(struct super_block *sb,
  3380. struct ext4_super_block *es,
  3381. unsigned long journal_devnum)
  3382. {
  3383. journal_t *journal;
  3384. unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
  3385. dev_t journal_dev;
  3386. int err = 0;
  3387. int really_read_only;
  3388. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3389. if (journal_devnum &&
  3390. journal_devnum != le32_to_cpu(es->s_journal_dev)) {
  3391. ext4_msg(sb, KERN_INFO, "external journal device major/minor "
  3392. "numbers have changed");
  3393. journal_dev = new_decode_dev(journal_devnum);
  3394. } else
  3395. journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
  3396. really_read_only = bdev_read_only(sb->s_bdev);
  3397. /*
  3398. * Are we loading a blank journal or performing recovery after a
  3399. * crash? For recovery, we need to check in advance whether we
  3400. * can get read-write access to the device.
  3401. */
  3402. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
  3403. if (sb->s_flags & MS_RDONLY) {
  3404. ext4_msg(sb, KERN_INFO, "INFO: recovery "
  3405. "required on readonly filesystem");
  3406. if (really_read_only) {
  3407. ext4_msg(sb, KERN_ERR, "write access "
  3408. "unavailable, cannot proceed");
  3409. return -EROFS;
  3410. }
  3411. ext4_msg(sb, KERN_INFO, "write access will "
  3412. "be enabled during recovery");
  3413. }
  3414. }
  3415. if (journal_inum && journal_dev) {
  3416. ext4_msg(sb, KERN_ERR, "filesystem has both journal "
  3417. "and inode journals!");
  3418. return -EINVAL;
  3419. }
  3420. if (journal_inum) {
  3421. if (!(journal = ext4_get_journal(sb, journal_inum)))
  3422. return -EINVAL;
  3423. } else {
  3424. if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
  3425. return -EINVAL;
  3426. }
  3427. if (!(journal->j_flags & JBD2_BARRIER))
  3428. ext4_msg(sb, KERN_INFO, "barriers disabled");
  3429. if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
  3430. err = jbd2_journal_update_format(journal);
  3431. if (err) {
  3432. ext4_msg(sb, KERN_ERR, "error updating journal");
  3433. jbd2_journal_destroy(journal);
  3434. return err;
  3435. }
  3436. }
  3437. if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
  3438. err = jbd2_journal_wipe(journal, !really_read_only);
  3439. if (!err) {
  3440. char *save = kmalloc(EXT4_S_ERR_LEN, GFP_KERNEL);
  3441. if (save)
  3442. memcpy(save, ((char *) es) +
  3443. EXT4_S_ERR_START, EXT4_S_ERR_LEN);
  3444. err = jbd2_journal_load(journal);
  3445. if (save)
  3446. memcpy(((char *) es) + EXT4_S_ERR_START,
  3447. save, EXT4_S_ERR_LEN);
  3448. kfree(save);
  3449. }
  3450. if (err) {
  3451. ext4_msg(sb, KERN_ERR, "error loading journal");
  3452. jbd2_journal_destroy(journal);
  3453. return err;
  3454. }
  3455. EXT4_SB(sb)->s_journal = journal;
  3456. ext4_clear_journal_err(sb, es);
  3457. if (journal_devnum &&
  3458. journal_devnum != le32_to_cpu(es->s_journal_dev)) {
  3459. es->s_journal_dev = cpu_to_le32(journal_devnum);
  3460. /* Make sure we flush the recovery flag to disk. */
  3461. ext4_commit_super(sb, 1);
  3462. }
  3463. return 0;
  3464. }
  3465. static int ext4_commit_super(struct super_block *sb, int sync)
  3466. {
  3467. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  3468. struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
  3469. int error = 0;
  3470. if (!sbh)
  3471. return error;
  3472. if (buffer_write_io_error(sbh)) {
  3473. /*
  3474. * Oh, dear. A previous attempt to write the
  3475. * superblock failed. This could happen because the
  3476. * USB device was yanked out. Or it could happen to
  3477. * be a transient write error and maybe the block will
  3478. * be remapped. Nothing we can do but to retry the
  3479. * write and hope for the best.
  3480. */
  3481. ext4_msg(sb, KERN_ERR, "previous I/O error to "
  3482. "superblock detected");
  3483. clear_buffer_write_io_error(sbh);
  3484. set_buffer_uptodate(sbh);
  3485. }
  3486. /*
  3487. * If the file system is mounted read-only, don't update the
  3488. * superblock write time. This avoids updating the superblock
  3489. * write time when we are mounting the root file system
  3490. * read/only but we need to replay the journal; at that point,
  3491. * for people who are east of GMT and who make their clock
  3492. * tick in localtime for Windows bug-for-bug compatibility,
  3493. * the clock is set in the future, and this will cause e2fsck
  3494. * to complain and force a full file system check.
  3495. */
  3496. if (!(sb->s_flags & MS_RDONLY))
  3497. es->s_wtime = cpu_to_le32(get_seconds());
  3498. if (sb->s_bdev->bd_part)
  3499. es->s_kbytes_written =
  3500. cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
  3501. ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
  3502. EXT4_SB(sb)->s_sectors_written_start) >> 1));
  3503. else
  3504. es->s_kbytes_written =
  3505. cpu_to_le64(EXT4_SB(sb)->s_kbytes_written);
  3506. ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
  3507. &EXT4_SB(sb)->s_freeblocks_counter));
  3508. es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
  3509. &EXT4_SB(sb)->s_freeinodes_counter));
  3510. sb->s_dirt = 0;
  3511. BUFFER_TRACE(sbh, "marking dirty");
  3512. mark_buffer_dirty(sbh);
  3513. if (sync) {
  3514. error = sync_dirty_buffer(sbh);
  3515. if (error)
  3516. return error;
  3517. error = buffer_write_io_error(sbh);
  3518. if (error) {
  3519. ext4_msg(sb, KERN_ERR, "I/O error while writing "
  3520. "superblock");
  3521. clear_buffer_write_io_error(sbh);
  3522. set_buffer_uptodate(sbh);
  3523. }
  3524. }
  3525. return error;
  3526. }
  3527. /*
  3528. * Have we just finished recovery? If so, and if we are mounting (or
  3529. * remounting) the filesystem readonly, then we will end up with a
  3530. * consistent fs on disk. Record that fact.
  3531. */
  3532. static void ext4_mark_recovery_complete(struct super_block *sb,
  3533. struct ext4_super_block *es)
  3534. {
  3535. journal_t *journal = EXT4_SB(sb)->s_journal;
  3536. if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
  3537. BUG_ON(journal != NULL);
  3538. return;
  3539. }
  3540. jbd2_journal_lock_updates(journal);
  3541. if (jbd2_journal_flush(journal) < 0)
  3542. goto out;
  3543. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
  3544. sb->s_flags & MS_RDONLY) {
  3545. EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  3546. ext4_commit_super(sb, 1);
  3547. }
  3548. out:
  3549. jbd2_journal_unlock_updates(journal);
  3550. }
  3551. /*
  3552. * If we are mounting (or read-write remounting) a filesystem whose journal
  3553. * has recorded an error from a previous lifetime, move that error to the
  3554. * main filesystem now.
  3555. */
  3556. static void ext4_clear_journal_err(struct super_block *sb,
  3557. struct ext4_super_block *es)
  3558. {
  3559. journal_t *journal;
  3560. int j_errno;
  3561. const char *errstr;
  3562. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3563. journal = EXT4_SB(sb)->s_journal;
  3564. /*
  3565. * Now check for any error status which may have been recorded in the
  3566. * journal by a prior ext4_error() or ext4_abort()
  3567. */
  3568. j_errno = jbd2_journal_errno(journal);
  3569. if (j_errno) {
  3570. char nbuf[16];
  3571. errstr = ext4_decode_error(sb, j_errno, nbuf);
  3572. ext4_warning(sb, "Filesystem error recorded "
  3573. "from previous mount: %s", errstr);
  3574. ext4_warning(sb, "Marking fs in need of filesystem check.");
  3575. EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
  3576. es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
  3577. ext4_commit_super(sb, 1);
  3578. jbd2_journal_clear_err(journal);
  3579. }
  3580. }
  3581. /*
  3582. * Force the running and committing transactions to commit,
  3583. * and wait on the commit.
  3584. */
  3585. int ext4_force_commit(struct super_block *sb)
  3586. {
  3587. journal_t *journal;
  3588. int ret = 0;
  3589. if (sb->s_flags & MS_RDONLY)
  3590. return 0;
  3591. journal = EXT4_SB(sb)->s_journal;
  3592. if (journal) {
  3593. vfs_check_frozen(sb, SB_FREEZE_TRANS);
  3594. ret = ext4_journal_force_commit(journal);
  3595. }
  3596. return ret;
  3597. }
  3598. static void ext4_write_super(struct super_block *sb)
  3599. {
  3600. lock_super(sb);
  3601. ext4_commit_super(sb, 1);
  3602. unlock_super(sb);
  3603. }
  3604. static int ext4_sync_fs(struct super_block *sb, int wait)
  3605. {
  3606. int ret = 0;
  3607. tid_t target;
  3608. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3609. trace_ext4_sync_fs(sb, wait);
  3610. flush_workqueue(sbi->dio_unwritten_wq);
  3611. if (jbd2_journal_start_commit(sbi->s_journal, &target)) {
  3612. if (wait)
  3613. jbd2_log_wait_commit(sbi->s_journal, target);
  3614. }
  3615. return ret;
  3616. }
  3617. /*
  3618. * LVM calls this function before a (read-only) snapshot is created. This
  3619. * gives us a chance to flush the journal completely and mark the fs clean.
  3620. */
  3621. static int ext4_freeze(struct super_block *sb)
  3622. {
  3623. int error = 0;
  3624. journal_t *journal;
  3625. if (sb->s_flags & MS_RDONLY)
  3626. return 0;
  3627. journal = EXT4_SB(sb)->s_journal;
  3628. /* Now we set up the journal barrier. */
  3629. jbd2_journal_lock_updates(journal);
  3630. /*
  3631. * Don't clear the needs_recovery flag if we failed to flush
  3632. * the journal.
  3633. */
  3634. error = jbd2_journal_flush(journal);
  3635. if (error < 0)
  3636. goto out;
  3637. /* Journal blocked and flushed, clear needs_recovery flag. */
  3638. EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  3639. error = ext4_commit_super(sb, 1);
  3640. out:
  3641. /* we rely on s_frozen to stop further updates */
  3642. jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
  3643. return error;
  3644. }
  3645. /*
  3646. * Called by LVM after the snapshot is done. We need to reset the RECOVER
  3647. * flag here, even though the filesystem is not technically dirty yet.
  3648. */
  3649. static int ext4_unfreeze(struct super_block *sb)
  3650. {
  3651. if (sb->s_flags & MS_RDONLY)
  3652. return 0;
  3653. lock_super(sb);
  3654. /* Reset the needs_recovery flag before the fs is unlocked. */
  3655. EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  3656. ext4_commit_super(sb, 1);
  3657. unlock_super(sb);
  3658. return 0;
  3659. }
  3660. static int ext4_remount(struct super_block *sb, int *flags, char *data)
  3661. {
  3662. struct ext4_super_block *es;
  3663. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3664. ext4_fsblk_t n_blocks_count = 0;
  3665. unsigned long old_sb_flags;
  3666. struct ext4_mount_options old_opts;
  3667. int enable_quota = 0;
  3668. ext4_group_t g;
  3669. unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
  3670. int err;
  3671. #ifdef CONFIG_QUOTA
  3672. int i;
  3673. #endif
  3674. char *orig_data = kstrdup(data, GFP_KERNEL);
  3675. lock_kernel();
  3676. /* Store the original options */
  3677. lock_super(sb);
  3678. old_sb_flags = sb->s_flags;
  3679. old_opts.s_mount_opt = sbi->s_mount_opt;
  3680. old_opts.s_resuid = sbi->s_resuid;
  3681. old_opts.s_resgid = sbi->s_resgid;
  3682. old_opts.s_commit_interval = sbi->s_commit_interval;
  3683. old_opts.s_min_batch_time = sbi->s_min_batch_time;
  3684. old_opts.s_max_batch_time = sbi->s_max_batch_time;
  3685. #ifdef CONFIG_QUOTA
  3686. old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
  3687. for (i = 0; i < MAXQUOTAS; i++)
  3688. old_opts.s_qf_names[i] = sbi->s_qf_names[i];
  3689. #endif
  3690. if (sbi->s_journal && sbi->s_journal->j_task->io_context)
  3691. journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
  3692. /*
  3693. * Allow the "check" option to be passed as a remount option.
  3694. */
  3695. if (!parse_options(data, sb, NULL, &journal_ioprio,
  3696. &n_blocks_count, 1)) {
  3697. err = -EINVAL;
  3698. goto restore_opts;
  3699. }
  3700. if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED)
  3701. ext4_abort(sb, "Abort forced by user");
  3702. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  3703. (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
  3704. es = sbi->s_es;
  3705. if (sbi->s_journal) {
  3706. ext4_init_journal_params(sb, sbi->s_journal);
  3707. set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
  3708. }
  3709. if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
  3710. n_blocks_count > ext4_blocks_count(es)) {
  3711. if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED) {
  3712. err = -EROFS;
  3713. goto restore_opts;
  3714. }
  3715. if (*flags & MS_RDONLY) {
  3716. err = dquot_suspend(sb, -1);
  3717. if (err < 0)
  3718. goto restore_opts;
  3719. /*
  3720. * First of all, the unconditional stuff we have to do
  3721. * to disable replay of the journal when we next remount
  3722. */
  3723. sb->s_flags |= MS_RDONLY;
  3724. /*
  3725. * OK, test if we are remounting a valid rw partition
  3726. * readonly, and if so set the rdonly flag and then
  3727. * mark the partition as valid again.
  3728. */
  3729. if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
  3730. (sbi->s_mount_state & EXT4_VALID_FS))
  3731. es->s_state = cpu_to_le16(sbi->s_mount_state);
  3732. if (sbi->s_journal)
  3733. ext4_mark_recovery_complete(sb, es);
  3734. } else {
  3735. /* Make sure we can mount this feature set readwrite */
  3736. if (!ext4_feature_set_ok(sb, 0)) {
  3737. err = -EROFS;
  3738. goto restore_opts;
  3739. }
  3740. /*
  3741. * Make sure the group descriptor checksums
  3742. * are sane. If they aren't, refuse to remount r/w.
  3743. */
  3744. for (g = 0; g < sbi->s_groups_count; g++) {
  3745. struct ext4_group_desc *gdp =
  3746. ext4_get_group_desc(sb, g, NULL);
  3747. if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
  3748. ext4_msg(sb, KERN_ERR,
  3749. "ext4_remount: Checksum for group %u failed (%u!=%u)",
  3750. g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
  3751. le16_to_cpu(gdp->bg_checksum));
  3752. err = -EINVAL;
  3753. goto restore_opts;
  3754. }
  3755. }
  3756. /*
  3757. * If we have an unprocessed orphan list hanging
  3758. * around from a previously readonly bdev mount,
  3759. * require a full umount/remount for now.
  3760. */
  3761. if (es->s_last_orphan) {
  3762. ext4_msg(sb, KERN_WARNING, "Couldn't "
  3763. "remount RDWR because of unprocessed "
  3764. "orphan inode list. Please "
  3765. "umount/remount instead");
  3766. err = -EINVAL;
  3767. goto restore_opts;
  3768. }
  3769. /*
  3770. * Mounting a RDONLY partition read-write, so reread
  3771. * and store the current valid flag. (It may have
  3772. * been changed by e2fsck since we originally mounted
  3773. * the partition.)
  3774. */
  3775. if (sbi->s_journal)
  3776. ext4_clear_journal_err(sb, es);
  3777. sbi->s_mount_state = le16_to_cpu(es->s_state);
  3778. if ((err = ext4_group_extend(sb, es, n_blocks_count)))
  3779. goto restore_opts;
  3780. if (!ext4_setup_super(sb, es, 0))
  3781. sb->s_flags &= ~MS_RDONLY;
  3782. enable_quota = 1;
  3783. }
  3784. }
  3785. /*
  3786. * Reinitialize lazy itable initialization thread based on
  3787. * current settings
  3788. */
  3789. if ((sb->s_flags & MS_RDONLY) || !test_opt(sb, INIT_INODE_TABLE))
  3790. ext4_unregister_li_request(sb);
  3791. else {
  3792. ext4_group_t first_not_zeroed;
  3793. first_not_zeroed = ext4_has_uninit_itable(sb);
  3794. ext4_register_li_request(sb, first_not_zeroed);
  3795. }
  3796. ext4_setup_system_zone(sb);
  3797. if (sbi->s_journal == NULL)
  3798. ext4_commit_super(sb, 1);
  3799. #ifdef CONFIG_QUOTA
  3800. /* Release old quota file names */
  3801. for (i = 0; i < MAXQUOTAS; i++)
  3802. if (old_opts.s_qf_names[i] &&
  3803. old_opts.s_qf_names[i] != sbi->s_qf_names[i])
  3804. kfree(old_opts.s_qf_names[i]);
  3805. #endif
  3806. unlock_super(sb);
  3807. unlock_kernel();
  3808. if (enable_quota)
  3809. dquot_resume(sb, -1);
  3810. ext4_msg(sb, KERN_INFO, "re-mounted. Opts: %s", orig_data);
  3811. kfree(orig_data);
  3812. return 0;
  3813. restore_opts:
  3814. sb->s_flags = old_sb_flags;
  3815. sbi->s_mount_opt = old_opts.s_mount_opt;
  3816. sbi->s_resuid = old_opts.s_resuid;
  3817. sbi->s_resgid = old_opts.s_resgid;
  3818. sbi->s_commit_interval = old_opts.s_commit_interval;
  3819. sbi->s_min_batch_time = old_opts.s_min_batch_time;
  3820. sbi->s_max_batch_time = old_opts.s_max_batch_time;
  3821. #ifdef CONFIG_QUOTA
  3822. sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
  3823. for (i = 0; i < MAXQUOTAS; i++) {
  3824. if (sbi->s_qf_names[i] &&
  3825. old_opts.s_qf_names[i] != sbi->s_qf_names[i])
  3826. kfree(sbi->s_qf_names[i]);
  3827. sbi->s_qf_names[i] = old_opts.s_qf_names[i];
  3828. }
  3829. #endif
  3830. unlock_super(sb);
  3831. unlock_kernel();
  3832. kfree(orig_data);
  3833. return err;
  3834. }
  3835. static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
  3836. {
  3837. struct super_block *sb = dentry->d_sb;
  3838. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3839. struct ext4_super_block *es = sbi->s_es;
  3840. u64 fsid;
  3841. if (test_opt(sb, MINIX_DF)) {
  3842. sbi->s_overhead_last = 0;
  3843. } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
  3844. ext4_group_t i, ngroups = ext4_get_groups_count(sb);
  3845. ext4_fsblk_t overhead = 0;
  3846. /*
  3847. * Compute the overhead (FS structures). This is constant
  3848. * for a given filesystem unless the number of block groups
  3849. * changes so we cache the previous value until it does.
  3850. */
  3851. /*
  3852. * All of the blocks before first_data_block are
  3853. * overhead
  3854. */
  3855. overhead = le32_to_cpu(es->s_first_data_block);
  3856. /*
  3857. * Add the overhead attributed to the superblock and
  3858. * block group descriptors. If the sparse superblocks
  3859. * feature is turned on, then not all groups have this.
  3860. */
  3861. for (i = 0; i < ngroups; i++) {
  3862. overhead += ext4_bg_has_super(sb, i) +
  3863. ext4_bg_num_gdb(sb, i);
  3864. cond_resched();
  3865. }
  3866. /*
  3867. * Every block group has an inode bitmap, a block
  3868. * bitmap, and an inode table.
  3869. */
  3870. overhead += ngroups * (2 + sbi->s_itb_per_group);
  3871. sbi->s_overhead_last = overhead;
  3872. smp_wmb();
  3873. sbi->s_blocks_last = ext4_blocks_count(es);
  3874. }
  3875. buf->f_type = EXT4_SUPER_MAGIC;
  3876. buf->f_bsize = sb->s_blocksize;
  3877. buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
  3878. buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
  3879. percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
  3880. buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
  3881. if (buf->f_bfree < ext4_r_blocks_count(es))
  3882. buf->f_bavail = 0;
  3883. buf->f_files = le32_to_cpu(es->s_inodes_count);
  3884. buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
  3885. buf->f_namelen = EXT4_NAME_LEN;
  3886. fsid = le64_to_cpup((void *)es->s_uuid) ^
  3887. le64_to_cpup((void *)es->s_uuid + sizeof(u64));
  3888. buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
  3889. buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
  3890. return 0;
  3891. }
  3892. /* Helper function for writing quotas on sync - we need to start transaction
  3893. * before quota file is locked for write. Otherwise the are possible deadlocks:
  3894. * Process 1 Process 2
  3895. * ext4_create() quota_sync()
  3896. * jbd2_journal_start() write_dquot()
  3897. * dquot_initialize() down(dqio_mutex)
  3898. * down(dqio_mutex) jbd2_journal_start()
  3899. *
  3900. */
  3901. #ifdef CONFIG_QUOTA
  3902. static inline struct inode *dquot_to_inode(struct dquot *dquot)
  3903. {
  3904. return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
  3905. }
  3906. static int ext4_write_dquot(struct dquot *dquot)
  3907. {
  3908. int ret, err;
  3909. handle_t *handle;
  3910. struct inode *inode;
  3911. inode = dquot_to_inode(dquot);
  3912. handle = ext4_journal_start(inode,
  3913. EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
  3914. if (IS_ERR(handle))
  3915. return PTR_ERR(handle);
  3916. ret = dquot_commit(dquot);
  3917. err = ext4_journal_stop(handle);
  3918. if (!ret)
  3919. ret = err;
  3920. return ret;
  3921. }
  3922. static int ext4_acquire_dquot(struct dquot *dquot)
  3923. {
  3924. int ret, err;
  3925. handle_t *handle;
  3926. handle = ext4_journal_start(dquot_to_inode(dquot),
  3927. EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
  3928. if (IS_ERR(handle))
  3929. return PTR_ERR(handle);
  3930. ret = dquot_acquire(dquot);
  3931. err = ext4_journal_stop(handle);
  3932. if (!ret)
  3933. ret = err;
  3934. return ret;
  3935. }
  3936. static int ext4_release_dquot(struct dquot *dquot)
  3937. {
  3938. int ret, err;
  3939. handle_t *handle;
  3940. handle = ext4_journal_start(dquot_to_inode(dquot),
  3941. EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
  3942. if (IS_ERR(handle)) {
  3943. /* Release dquot anyway to avoid endless cycle in dqput() */
  3944. dquot_release(dquot);
  3945. return PTR_ERR(handle);
  3946. }
  3947. ret = dquot_release(dquot);
  3948. err = ext4_journal_stop(handle);
  3949. if (!ret)
  3950. ret = err;
  3951. return ret;
  3952. }
  3953. static int ext4_mark_dquot_dirty(struct dquot *dquot)
  3954. {
  3955. /* Are we journaling quotas? */
  3956. if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
  3957. EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
  3958. dquot_mark_dquot_dirty(dquot);
  3959. return ext4_write_dquot(dquot);
  3960. } else {
  3961. return dquot_mark_dquot_dirty(dquot);
  3962. }
  3963. }
  3964. static int ext4_write_info(struct super_block *sb, int type)
  3965. {
  3966. int ret, err;
  3967. handle_t *handle;
  3968. /* Data block + inode block */
  3969. handle = ext4_journal_start(sb->s_root->d_inode, 2);
  3970. if (IS_ERR(handle))
  3971. return PTR_ERR(handle);
  3972. ret = dquot_commit_info(sb, type);
  3973. err = ext4_journal_stop(handle);
  3974. if (!ret)
  3975. ret = err;
  3976. return ret;
  3977. }
  3978. /*
  3979. * Turn on quotas during mount time - we need to find
  3980. * the quota file and such...
  3981. */
  3982. static int ext4_quota_on_mount(struct super_block *sb, int type)
  3983. {
  3984. return dquot_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
  3985. EXT4_SB(sb)->s_jquota_fmt, type);
  3986. }
  3987. /*
  3988. * Standard function to be called on quota_on
  3989. */
  3990. static int ext4_quota_on(struct super_block *sb, int type, int format_id,
  3991. char *name)
  3992. {
  3993. int err;
  3994. struct path path;
  3995. if (!test_opt(sb, QUOTA))
  3996. return -EINVAL;
  3997. err = kern_path(name, LOOKUP_FOLLOW, &path);
  3998. if (err)
  3999. return err;
  4000. /* Quotafile not on the same filesystem? */
  4001. if (path.mnt->mnt_sb != sb) {
  4002. path_put(&path);
  4003. return -EXDEV;
  4004. }
  4005. /* Journaling quota? */
  4006. if (EXT4_SB(sb)->s_qf_names[type]) {
  4007. /* Quotafile not in fs root? */
  4008. if (path.dentry->d_parent != sb->s_root)
  4009. ext4_msg(sb, KERN_WARNING,
  4010. "Quota file not on filesystem root. "
  4011. "Journaled quota will not work");
  4012. }
  4013. /*
  4014. * When we journal data on quota file, we have to flush journal to see
  4015. * all updates to the file when we bypass pagecache...
  4016. */
  4017. if (EXT4_SB(sb)->s_journal &&
  4018. ext4_should_journal_data(path.dentry->d_inode)) {
  4019. /*
  4020. * We don't need to lock updates but journal_flush() could
  4021. * otherwise be livelocked...
  4022. */
  4023. jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
  4024. err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
  4025. jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
  4026. if (err) {
  4027. path_put(&path);
  4028. return err;
  4029. }
  4030. }
  4031. err = dquot_quota_on_path(sb, type, format_id, &path);
  4032. path_put(&path);
  4033. return err;
  4034. }
  4035. static int ext4_quota_off(struct super_block *sb, int type)
  4036. {
  4037. /* Force all delayed allocation blocks to be allocated */
  4038. if (test_opt(sb, DELALLOC)) {
  4039. down_read(&sb->s_umount);
  4040. sync_filesystem(sb);
  4041. up_read(&sb->s_umount);
  4042. }
  4043. return dquot_quota_off(sb, type);
  4044. }
  4045. /* Read data from quotafile - avoid pagecache and such because we cannot afford
  4046. * acquiring the locks... As quota files are never truncated and quota code
  4047. * itself serializes the operations (and noone else should touch the files)
  4048. * we don't have to be afraid of races */
  4049. static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
  4050. size_t len, loff_t off)
  4051. {
  4052. struct inode *inode = sb_dqopt(sb)->files[type];
  4053. ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
  4054. int err = 0;
  4055. int offset = off & (sb->s_blocksize - 1);
  4056. int tocopy;
  4057. size_t toread;
  4058. struct buffer_head *bh;
  4059. loff_t i_size = i_size_read(inode);
  4060. if (off > i_size)
  4061. return 0;
  4062. if (off+len > i_size)
  4063. len = i_size-off;
  4064. toread = len;
  4065. while (toread > 0) {
  4066. tocopy = sb->s_blocksize - offset < toread ?
  4067. sb->s_blocksize - offset : toread;
  4068. bh = ext4_bread(NULL, inode, blk, 0, &err);
  4069. if (err)
  4070. return err;
  4071. if (!bh) /* A hole? */
  4072. memset(data, 0, tocopy);
  4073. else
  4074. memcpy(data, bh->b_data+offset, tocopy);
  4075. brelse(bh);
  4076. offset = 0;
  4077. toread -= tocopy;
  4078. data += tocopy;
  4079. blk++;
  4080. }
  4081. return len;
  4082. }
  4083. /* Write to quotafile (we know the transaction is already started and has
  4084. * enough credits) */
  4085. static ssize_t ext4_quota_write(struct super_block *sb, int type,
  4086. const char *data, size_t len, loff_t off)
  4087. {
  4088. struct inode *inode = sb_dqopt(sb)->files[type];
  4089. ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
  4090. int err = 0;
  4091. int offset = off & (sb->s_blocksize - 1);
  4092. struct buffer_head *bh;
  4093. handle_t *handle = journal_current_handle();
  4094. if (EXT4_SB(sb)->s_journal && !handle) {
  4095. ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
  4096. " cancelled because transaction is not started",
  4097. (unsigned long long)off, (unsigned long long)len);
  4098. return -EIO;
  4099. }
  4100. /*
  4101. * Since we account only one data block in transaction credits,
  4102. * then it is impossible to cross a block boundary.
  4103. */
  4104. if (sb->s_blocksize - offset < len) {
  4105. ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
  4106. " cancelled because not block aligned",
  4107. (unsigned long long)off, (unsigned long long)len);
  4108. return -EIO;
  4109. }
  4110. mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
  4111. bh = ext4_bread(handle, inode, blk, 1, &err);
  4112. if (!bh)
  4113. goto out;
  4114. err = ext4_journal_get_write_access(handle, bh);
  4115. if (err) {
  4116. brelse(bh);
  4117. goto out;
  4118. }
  4119. lock_buffer(bh);
  4120. memcpy(bh->b_data+offset, data, len);
  4121. flush_dcache_page(bh->b_page);
  4122. unlock_buffer(bh);
  4123. err = ext4_handle_dirty_metadata(handle, NULL, bh);
  4124. brelse(bh);
  4125. out:
  4126. if (err) {
  4127. mutex_unlock(&inode->i_mutex);
  4128. return err;
  4129. }
  4130. if (inode->i_size < off + len) {
  4131. i_size_write(inode, off + len);
  4132. EXT4_I(inode)->i_disksize = inode->i_size;
  4133. }
  4134. inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  4135. ext4_mark_inode_dirty(handle, inode);
  4136. mutex_unlock(&inode->i_mutex);
  4137. return len;
  4138. }
  4139. #endif
  4140. static int ext4_get_sb(struct file_system_type *fs_type, int flags,
  4141. const char *dev_name, void *data, struct vfsmount *mnt)
  4142. {
  4143. return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
  4144. }
  4145. #if !defined(CONFIG_EXT2_FS) && !defined(CONFIG_EXT2_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
  4146. static struct file_system_type ext2_fs_type = {
  4147. .owner = THIS_MODULE,
  4148. .name = "ext2",
  4149. .get_sb = ext4_get_sb,
  4150. .kill_sb = kill_block_super,
  4151. .fs_flags = FS_REQUIRES_DEV,
  4152. };
  4153. static inline void register_as_ext2(void)
  4154. {
  4155. int err = register_filesystem(&ext2_fs_type);
  4156. if (err)
  4157. printk(KERN_WARNING
  4158. "EXT4-fs: Unable to register as ext2 (%d)\n", err);
  4159. }
  4160. static inline void unregister_as_ext2(void)
  4161. {
  4162. unregister_filesystem(&ext2_fs_type);
  4163. }
  4164. MODULE_ALIAS("ext2");
  4165. #else
  4166. static inline void register_as_ext2(void) { }
  4167. static inline void unregister_as_ext2(void) { }
  4168. #endif
  4169. #if !defined(CONFIG_EXT3_FS) && !defined(CONFIG_EXT3_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
  4170. static inline void register_as_ext3(void)
  4171. {
  4172. int err = register_filesystem(&ext3_fs_type);
  4173. if (err)
  4174. printk(KERN_WARNING
  4175. "EXT4-fs: Unable to register as ext3 (%d)\n", err);
  4176. }
  4177. static inline void unregister_as_ext3(void)
  4178. {
  4179. unregister_filesystem(&ext3_fs_type);
  4180. }
  4181. MODULE_ALIAS("ext3");
  4182. #else
  4183. static inline void register_as_ext3(void) { }
  4184. static inline void unregister_as_ext3(void) { }
  4185. #endif
  4186. static struct file_system_type ext4_fs_type = {
  4187. .owner = THIS_MODULE,
  4188. .name = "ext4",
  4189. .get_sb = ext4_get_sb,
  4190. .kill_sb = kill_block_super,
  4191. .fs_flags = FS_REQUIRES_DEV,
  4192. };
  4193. static int __init init_ext4_fs(void)
  4194. {
  4195. int err;
  4196. ext4_check_flag_values();
  4197. err = init_ext4_system_zone();
  4198. if (err)
  4199. return err;
  4200. ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
  4201. if (!ext4_kset)
  4202. goto out4;
  4203. ext4_proc_root = proc_mkdir("fs/ext4", NULL);
  4204. err = init_ext4_mballoc();
  4205. if (err)
  4206. goto out3;
  4207. err = init_ext4_xattr();
  4208. if (err)
  4209. goto out2;
  4210. err = init_inodecache();
  4211. if (err)
  4212. goto out1;
  4213. register_as_ext2();
  4214. register_as_ext3();
  4215. err = register_filesystem(&ext4_fs_type);
  4216. if (err)
  4217. goto out;
  4218. ext4_li_info = NULL;
  4219. mutex_init(&ext4_li_mtx);
  4220. return 0;
  4221. out:
  4222. unregister_as_ext2();
  4223. unregister_as_ext3();
  4224. destroy_inodecache();
  4225. out1:
  4226. exit_ext4_xattr();
  4227. out2:
  4228. exit_ext4_mballoc();
  4229. out3:
  4230. remove_proc_entry("fs/ext4", NULL);
  4231. kset_unregister(ext4_kset);
  4232. out4:
  4233. exit_ext4_system_zone();
  4234. return err;
  4235. }
  4236. static void __exit exit_ext4_fs(void)
  4237. {
  4238. ext4_destroy_lazyinit_thread();
  4239. unregister_as_ext2();
  4240. unregister_as_ext3();
  4241. unregister_filesystem(&ext4_fs_type);
  4242. destroy_inodecache();
  4243. exit_ext4_xattr();
  4244. exit_ext4_mballoc();
  4245. remove_proc_entry("fs/ext4", NULL);
  4246. kset_unregister(ext4_kset);
  4247. exit_ext4_system_zone();
  4248. }
  4249. MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
  4250. MODULE_DESCRIPTION("Fourth Extended Filesystem");
  4251. MODULE_LICENSE("GPL");
  4252. module_init(init_ext4_fs)
  4253. module_exit(exit_ext4_fs)