super.c 133 KB

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