super.c 138 KB

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