super.c 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848
  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. };
  1047. static const struct super_operations ext4_nojournal_sops = {
  1048. .alloc_inode = ext4_alloc_inode,
  1049. .destroy_inode = ext4_destroy_inode,
  1050. .write_inode = ext4_write_inode,
  1051. .dirty_inode = ext4_dirty_inode,
  1052. .drop_inode = ext4_drop_inode,
  1053. .evict_inode = ext4_evict_inode,
  1054. .write_super = ext4_write_super,
  1055. .put_super = ext4_put_super,
  1056. .statfs = ext4_statfs,
  1057. .remount_fs = ext4_remount,
  1058. .show_options = ext4_show_options,
  1059. #ifdef CONFIG_QUOTA
  1060. .quota_read = ext4_quota_read,
  1061. .quota_write = ext4_quota_write,
  1062. #endif
  1063. .bdev_try_to_free_page = bdev_try_to_free_page,
  1064. };
  1065. static const struct export_operations ext4_export_ops = {
  1066. .fh_to_dentry = ext4_fh_to_dentry,
  1067. .fh_to_parent = ext4_fh_to_parent,
  1068. .get_parent = ext4_get_parent,
  1069. };
  1070. enum {
  1071. Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
  1072. Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
  1073. Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
  1074. Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
  1075. Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
  1076. Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
  1077. Opt_journal_update, Opt_journal_dev,
  1078. Opt_journal_checksum, Opt_journal_async_commit,
  1079. Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
  1080. Opt_data_err_abort, Opt_data_err_ignore,
  1081. Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
  1082. Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
  1083. Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
  1084. Opt_resize, Opt_usrquota, Opt_grpquota, Opt_i_version,
  1085. Opt_stripe, Opt_delalloc, Opt_nodelalloc,
  1086. Opt_block_validity, Opt_noblock_validity,
  1087. Opt_inode_readahead_blks, Opt_journal_ioprio,
  1088. Opt_dioread_nolock, Opt_dioread_lock,
  1089. Opt_discard, Opt_nodiscard,
  1090. Opt_init_inode_table, Opt_noinit_inode_table,
  1091. };
  1092. static const match_table_t tokens = {
  1093. {Opt_bsd_df, "bsddf"},
  1094. {Opt_minix_df, "minixdf"},
  1095. {Opt_grpid, "grpid"},
  1096. {Opt_grpid, "bsdgroups"},
  1097. {Opt_nogrpid, "nogrpid"},
  1098. {Opt_nogrpid, "sysvgroups"},
  1099. {Opt_resgid, "resgid=%u"},
  1100. {Opt_resuid, "resuid=%u"},
  1101. {Opt_sb, "sb=%u"},
  1102. {Opt_err_cont, "errors=continue"},
  1103. {Opt_err_panic, "errors=panic"},
  1104. {Opt_err_ro, "errors=remount-ro"},
  1105. {Opt_nouid32, "nouid32"},
  1106. {Opt_debug, "debug"},
  1107. {Opt_oldalloc, "oldalloc"},
  1108. {Opt_orlov, "orlov"},
  1109. {Opt_user_xattr, "user_xattr"},
  1110. {Opt_nouser_xattr, "nouser_xattr"},
  1111. {Opt_acl, "acl"},
  1112. {Opt_noacl, "noacl"},
  1113. {Opt_noload, "noload"},
  1114. {Opt_noload, "norecovery"},
  1115. {Opt_nobh, "nobh"},
  1116. {Opt_bh, "bh"},
  1117. {Opt_commit, "commit=%u"},
  1118. {Opt_min_batch_time, "min_batch_time=%u"},
  1119. {Opt_max_batch_time, "max_batch_time=%u"},
  1120. {Opt_journal_update, "journal=update"},
  1121. {Opt_journal_dev, "journal_dev=%u"},
  1122. {Opt_journal_checksum, "journal_checksum"},
  1123. {Opt_journal_async_commit, "journal_async_commit"},
  1124. {Opt_abort, "abort"},
  1125. {Opt_data_journal, "data=journal"},
  1126. {Opt_data_ordered, "data=ordered"},
  1127. {Opt_data_writeback, "data=writeback"},
  1128. {Opt_data_err_abort, "data_err=abort"},
  1129. {Opt_data_err_ignore, "data_err=ignore"},
  1130. {Opt_offusrjquota, "usrjquota="},
  1131. {Opt_usrjquota, "usrjquota=%s"},
  1132. {Opt_offgrpjquota, "grpjquota="},
  1133. {Opt_grpjquota, "grpjquota=%s"},
  1134. {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
  1135. {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
  1136. {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
  1137. {Opt_grpquota, "grpquota"},
  1138. {Opt_noquota, "noquota"},
  1139. {Opt_quota, "quota"},
  1140. {Opt_usrquota, "usrquota"},
  1141. {Opt_barrier, "barrier=%u"},
  1142. {Opt_barrier, "barrier"},
  1143. {Opt_nobarrier, "nobarrier"},
  1144. {Opt_i_version, "i_version"},
  1145. {Opt_stripe, "stripe=%u"},
  1146. {Opt_resize, "resize"},
  1147. {Opt_delalloc, "delalloc"},
  1148. {Opt_nodelalloc, "nodelalloc"},
  1149. {Opt_block_validity, "block_validity"},
  1150. {Opt_noblock_validity, "noblock_validity"},
  1151. {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
  1152. {Opt_journal_ioprio, "journal_ioprio=%u"},
  1153. {Opt_auto_da_alloc, "auto_da_alloc=%u"},
  1154. {Opt_auto_da_alloc, "auto_da_alloc"},
  1155. {Opt_noauto_da_alloc, "noauto_da_alloc"},
  1156. {Opt_dioread_nolock, "dioread_nolock"},
  1157. {Opt_dioread_lock, "dioread_lock"},
  1158. {Opt_discard, "discard"},
  1159. {Opt_nodiscard, "nodiscard"},
  1160. {Opt_init_inode_table, "init_itable=%u"},
  1161. {Opt_init_inode_table, "init_itable"},
  1162. {Opt_noinit_inode_table, "noinit_itable"},
  1163. {Opt_err, NULL},
  1164. };
  1165. static ext4_fsblk_t get_sb_block(void **data)
  1166. {
  1167. ext4_fsblk_t sb_block;
  1168. char *options = (char *) *data;
  1169. if (!options || strncmp(options, "sb=", 3) != 0)
  1170. return 1; /* Default location */
  1171. options += 3;
  1172. /* TODO: use simple_strtoll with >32bit ext4 */
  1173. sb_block = simple_strtoul(options, &options, 0);
  1174. if (*options && *options != ',') {
  1175. printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
  1176. (char *) *data);
  1177. return 1;
  1178. }
  1179. if (*options == ',')
  1180. options++;
  1181. *data = (void *) options;
  1182. return sb_block;
  1183. }
  1184. #define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
  1185. static char deprecated_msg[] = "Mount option \"%s\" will be removed by %s\n"
  1186. "Contact linux-ext4@vger.kernel.org if you think we should keep it.\n";
  1187. #ifdef CONFIG_QUOTA
  1188. static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
  1189. {
  1190. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1191. char *qname;
  1192. if (sb_any_quota_loaded(sb) &&
  1193. !sbi->s_qf_names[qtype]) {
  1194. ext4_msg(sb, KERN_ERR,
  1195. "Cannot change journaled "
  1196. "quota options when quota turned on");
  1197. return 0;
  1198. }
  1199. qname = match_strdup(args);
  1200. if (!qname) {
  1201. ext4_msg(sb, KERN_ERR,
  1202. "Not enough memory for storing quotafile name");
  1203. return 0;
  1204. }
  1205. if (sbi->s_qf_names[qtype] &&
  1206. strcmp(sbi->s_qf_names[qtype], qname)) {
  1207. ext4_msg(sb, KERN_ERR,
  1208. "%s quota file already specified", QTYPE2NAME(qtype));
  1209. kfree(qname);
  1210. return 0;
  1211. }
  1212. sbi->s_qf_names[qtype] = qname;
  1213. if (strchr(sbi->s_qf_names[qtype], '/')) {
  1214. ext4_msg(sb, KERN_ERR,
  1215. "quotafile must be on filesystem root");
  1216. kfree(sbi->s_qf_names[qtype]);
  1217. sbi->s_qf_names[qtype] = NULL;
  1218. return 0;
  1219. }
  1220. set_opt(sbi->s_mount_opt, QUOTA);
  1221. return 1;
  1222. }
  1223. static int clear_qf_name(struct super_block *sb, int qtype)
  1224. {
  1225. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1226. if (sb_any_quota_loaded(sb) &&
  1227. sbi->s_qf_names[qtype]) {
  1228. ext4_msg(sb, KERN_ERR, "Cannot change journaled quota options"
  1229. " when quota turned on");
  1230. return 0;
  1231. }
  1232. /*
  1233. * The space will be released later when all options are confirmed
  1234. * to be correct
  1235. */
  1236. sbi->s_qf_names[qtype] = NULL;
  1237. return 1;
  1238. }
  1239. #endif
  1240. static int parse_options(char *options, struct super_block *sb,
  1241. unsigned long *journal_devnum,
  1242. unsigned int *journal_ioprio,
  1243. ext4_fsblk_t *n_blocks_count, int is_remount)
  1244. {
  1245. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1246. char *p;
  1247. substring_t args[MAX_OPT_ARGS];
  1248. int data_opt = 0;
  1249. int option;
  1250. #ifdef CONFIG_QUOTA
  1251. int qfmt;
  1252. #endif
  1253. if (!options)
  1254. return 1;
  1255. while ((p = strsep(&options, ",")) != NULL) {
  1256. int token;
  1257. if (!*p)
  1258. continue;
  1259. /*
  1260. * Initialize args struct so we know whether arg was
  1261. * found; some options take optional arguments.
  1262. */
  1263. args[0].to = args[0].from = 0;
  1264. token = match_token(p, tokens, args);
  1265. switch (token) {
  1266. case Opt_bsd_df:
  1267. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1268. clear_opt(sbi->s_mount_opt, MINIX_DF);
  1269. break;
  1270. case Opt_minix_df:
  1271. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1272. set_opt(sbi->s_mount_opt, MINIX_DF);
  1273. break;
  1274. case Opt_grpid:
  1275. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1276. set_opt(sbi->s_mount_opt, GRPID);
  1277. break;
  1278. case Opt_nogrpid:
  1279. ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
  1280. clear_opt(sbi->s_mount_opt, GRPID);
  1281. break;
  1282. case Opt_resuid:
  1283. if (match_int(&args[0], &option))
  1284. return 0;
  1285. sbi->s_resuid = option;
  1286. break;
  1287. case Opt_resgid:
  1288. if (match_int(&args[0], &option))
  1289. return 0;
  1290. sbi->s_resgid = option;
  1291. break;
  1292. case Opt_sb:
  1293. /* handled by get_sb_block() instead of here */
  1294. /* *sb_block = match_int(&args[0]); */
  1295. break;
  1296. case Opt_err_panic:
  1297. clear_opt(sbi->s_mount_opt, ERRORS_CONT);
  1298. clear_opt(sbi->s_mount_opt, ERRORS_RO);
  1299. set_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1300. break;
  1301. case Opt_err_ro:
  1302. clear_opt(sbi->s_mount_opt, ERRORS_CONT);
  1303. clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1304. set_opt(sbi->s_mount_opt, ERRORS_RO);
  1305. break;
  1306. case Opt_err_cont:
  1307. clear_opt(sbi->s_mount_opt, ERRORS_RO);
  1308. clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
  1309. set_opt(sbi->s_mount_opt, ERRORS_CONT);
  1310. break;
  1311. case Opt_nouid32:
  1312. set_opt(sbi->s_mount_opt, NO_UID32);
  1313. break;
  1314. case Opt_debug:
  1315. set_opt(sbi->s_mount_opt, DEBUG);
  1316. break;
  1317. case Opt_oldalloc:
  1318. set_opt(sbi->s_mount_opt, OLDALLOC);
  1319. break;
  1320. case Opt_orlov:
  1321. clear_opt(sbi->s_mount_opt, OLDALLOC);
  1322. break;
  1323. #ifdef CONFIG_EXT4_FS_XATTR
  1324. case Opt_user_xattr:
  1325. set_opt(sbi->s_mount_opt, XATTR_USER);
  1326. break;
  1327. case Opt_nouser_xattr:
  1328. clear_opt(sbi->s_mount_opt, XATTR_USER);
  1329. break;
  1330. #else
  1331. case Opt_user_xattr:
  1332. case Opt_nouser_xattr:
  1333. ext4_msg(sb, KERN_ERR, "(no)user_xattr options not supported");
  1334. break;
  1335. #endif
  1336. #ifdef CONFIG_EXT4_FS_POSIX_ACL
  1337. case Opt_acl:
  1338. set_opt(sbi->s_mount_opt, POSIX_ACL);
  1339. break;
  1340. case Opt_noacl:
  1341. clear_opt(sbi->s_mount_opt, POSIX_ACL);
  1342. break;
  1343. #else
  1344. case Opt_acl:
  1345. case Opt_noacl:
  1346. ext4_msg(sb, KERN_ERR, "(no)acl options not supported");
  1347. break;
  1348. #endif
  1349. case Opt_journal_update:
  1350. /* @@@ FIXME */
  1351. /* Eventually we will want to be able to create
  1352. a journal file here. For now, only allow the
  1353. user to specify an existing inode to be the
  1354. journal file. */
  1355. if (is_remount) {
  1356. ext4_msg(sb, KERN_ERR,
  1357. "Cannot specify journal on remount");
  1358. return 0;
  1359. }
  1360. set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
  1361. break;
  1362. case Opt_journal_dev:
  1363. if (is_remount) {
  1364. ext4_msg(sb, KERN_ERR,
  1365. "Cannot specify journal on remount");
  1366. return 0;
  1367. }
  1368. if (match_int(&args[0], &option))
  1369. return 0;
  1370. *journal_devnum = option;
  1371. break;
  1372. case Opt_journal_checksum:
  1373. set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
  1374. break;
  1375. case Opt_journal_async_commit:
  1376. set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
  1377. set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
  1378. break;
  1379. case Opt_noload:
  1380. set_opt(sbi->s_mount_opt, NOLOAD);
  1381. break;
  1382. case Opt_commit:
  1383. if (match_int(&args[0], &option))
  1384. return 0;
  1385. if (option < 0)
  1386. return 0;
  1387. if (option == 0)
  1388. option = JBD2_DEFAULT_MAX_COMMIT_AGE;
  1389. sbi->s_commit_interval = HZ * option;
  1390. break;
  1391. case Opt_max_batch_time:
  1392. if (match_int(&args[0], &option))
  1393. return 0;
  1394. if (option < 0)
  1395. return 0;
  1396. if (option == 0)
  1397. option = EXT4_DEF_MAX_BATCH_TIME;
  1398. sbi->s_max_batch_time = option;
  1399. break;
  1400. case Opt_min_batch_time:
  1401. if (match_int(&args[0], &option))
  1402. return 0;
  1403. if (option < 0)
  1404. return 0;
  1405. sbi->s_min_batch_time = option;
  1406. break;
  1407. case Opt_data_journal:
  1408. data_opt = EXT4_MOUNT_JOURNAL_DATA;
  1409. goto datacheck;
  1410. case Opt_data_ordered:
  1411. data_opt = EXT4_MOUNT_ORDERED_DATA;
  1412. goto datacheck;
  1413. case Opt_data_writeback:
  1414. data_opt = EXT4_MOUNT_WRITEBACK_DATA;
  1415. datacheck:
  1416. if (is_remount) {
  1417. if (test_opt(sb, DATA_FLAGS) != data_opt) {
  1418. ext4_msg(sb, KERN_ERR,
  1419. "Cannot change data mode on remount");
  1420. return 0;
  1421. }
  1422. } else {
  1423. clear_opt(sbi->s_mount_opt, DATA_FLAGS);
  1424. sbi->s_mount_opt |= data_opt;
  1425. }
  1426. break;
  1427. case Opt_data_err_abort:
  1428. set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
  1429. break;
  1430. case Opt_data_err_ignore:
  1431. clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
  1432. break;
  1433. #ifdef CONFIG_QUOTA
  1434. case Opt_usrjquota:
  1435. if (!set_qf_name(sb, USRQUOTA, &args[0]))
  1436. return 0;
  1437. break;
  1438. case Opt_grpjquota:
  1439. if (!set_qf_name(sb, GRPQUOTA, &args[0]))
  1440. return 0;
  1441. break;
  1442. case Opt_offusrjquota:
  1443. if (!clear_qf_name(sb, USRQUOTA))
  1444. return 0;
  1445. break;
  1446. case Opt_offgrpjquota:
  1447. if (!clear_qf_name(sb, GRPQUOTA))
  1448. return 0;
  1449. break;
  1450. case Opt_jqfmt_vfsold:
  1451. qfmt = QFMT_VFS_OLD;
  1452. goto set_qf_format;
  1453. case Opt_jqfmt_vfsv0:
  1454. qfmt = QFMT_VFS_V0;
  1455. goto set_qf_format;
  1456. case Opt_jqfmt_vfsv1:
  1457. qfmt = QFMT_VFS_V1;
  1458. set_qf_format:
  1459. if (sb_any_quota_loaded(sb) &&
  1460. sbi->s_jquota_fmt != qfmt) {
  1461. ext4_msg(sb, KERN_ERR, "Cannot change "
  1462. "journaled quota options when "
  1463. "quota turned on");
  1464. return 0;
  1465. }
  1466. sbi->s_jquota_fmt = qfmt;
  1467. break;
  1468. case Opt_quota:
  1469. case Opt_usrquota:
  1470. set_opt(sbi->s_mount_opt, QUOTA);
  1471. set_opt(sbi->s_mount_opt, USRQUOTA);
  1472. break;
  1473. case Opt_grpquota:
  1474. set_opt(sbi->s_mount_opt, QUOTA);
  1475. set_opt(sbi->s_mount_opt, GRPQUOTA);
  1476. break;
  1477. case Opt_noquota:
  1478. if (sb_any_quota_loaded(sb)) {
  1479. ext4_msg(sb, KERN_ERR, "Cannot change quota "
  1480. "options when quota turned on");
  1481. return 0;
  1482. }
  1483. clear_opt(sbi->s_mount_opt, QUOTA);
  1484. clear_opt(sbi->s_mount_opt, USRQUOTA);
  1485. clear_opt(sbi->s_mount_opt, GRPQUOTA);
  1486. break;
  1487. #else
  1488. case Opt_quota:
  1489. case Opt_usrquota:
  1490. case Opt_grpquota:
  1491. ext4_msg(sb, KERN_ERR,
  1492. "quota options not supported");
  1493. break;
  1494. case Opt_usrjquota:
  1495. case Opt_grpjquota:
  1496. case Opt_offusrjquota:
  1497. case Opt_offgrpjquota:
  1498. case Opt_jqfmt_vfsold:
  1499. case Opt_jqfmt_vfsv0:
  1500. case Opt_jqfmt_vfsv1:
  1501. ext4_msg(sb, KERN_ERR,
  1502. "journaled quota options not supported");
  1503. break;
  1504. case Opt_noquota:
  1505. break;
  1506. #endif
  1507. case Opt_abort:
  1508. sbi->s_mount_flags |= EXT4_MF_FS_ABORTED;
  1509. break;
  1510. case Opt_nobarrier:
  1511. clear_opt(sbi->s_mount_opt, BARRIER);
  1512. break;
  1513. case Opt_barrier:
  1514. if (args[0].from) {
  1515. if (match_int(&args[0], &option))
  1516. return 0;
  1517. } else
  1518. option = 1; /* No argument, default to 1 */
  1519. if (option)
  1520. set_opt(sbi->s_mount_opt, BARRIER);
  1521. else
  1522. clear_opt(sbi->s_mount_opt, BARRIER);
  1523. break;
  1524. case Opt_ignore:
  1525. break;
  1526. case Opt_resize:
  1527. if (!is_remount) {
  1528. ext4_msg(sb, KERN_ERR,
  1529. "resize option only available "
  1530. "for remount");
  1531. return 0;
  1532. }
  1533. if (match_int(&args[0], &option) != 0)
  1534. return 0;
  1535. *n_blocks_count = option;
  1536. break;
  1537. case Opt_nobh:
  1538. ext4_msg(sb, KERN_WARNING,
  1539. "Ignoring deprecated nobh option");
  1540. break;
  1541. case Opt_bh:
  1542. ext4_msg(sb, KERN_WARNING,
  1543. "Ignoring deprecated bh option");
  1544. break;
  1545. case Opt_i_version:
  1546. set_opt(sbi->s_mount_opt, I_VERSION);
  1547. sb->s_flags |= MS_I_VERSION;
  1548. break;
  1549. case Opt_nodelalloc:
  1550. clear_opt(sbi->s_mount_opt, DELALLOC);
  1551. break;
  1552. case Opt_stripe:
  1553. if (match_int(&args[0], &option))
  1554. return 0;
  1555. if (option < 0)
  1556. return 0;
  1557. sbi->s_stripe = option;
  1558. break;
  1559. case Opt_delalloc:
  1560. set_opt(sbi->s_mount_opt, DELALLOC);
  1561. break;
  1562. case Opt_block_validity:
  1563. set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
  1564. break;
  1565. case Opt_noblock_validity:
  1566. clear_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
  1567. break;
  1568. case Opt_inode_readahead_blks:
  1569. if (match_int(&args[0], &option))
  1570. return 0;
  1571. if (option < 0 || option > (1 << 30))
  1572. return 0;
  1573. if (!is_power_of_2(option)) {
  1574. ext4_msg(sb, KERN_ERR,
  1575. "EXT4-fs: inode_readahead_blks"
  1576. " must be a power of 2");
  1577. return 0;
  1578. }
  1579. sbi->s_inode_readahead_blks = option;
  1580. break;
  1581. case Opt_journal_ioprio:
  1582. if (match_int(&args[0], &option))
  1583. return 0;
  1584. if (option < 0 || option > 7)
  1585. break;
  1586. *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
  1587. option);
  1588. break;
  1589. case Opt_noauto_da_alloc:
  1590. set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
  1591. break;
  1592. case Opt_auto_da_alloc:
  1593. if (args[0].from) {
  1594. if (match_int(&args[0], &option))
  1595. return 0;
  1596. } else
  1597. option = 1; /* No argument, default to 1 */
  1598. if (option)
  1599. clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
  1600. else
  1601. set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
  1602. break;
  1603. case Opt_discard:
  1604. set_opt(sbi->s_mount_opt, DISCARD);
  1605. break;
  1606. case Opt_nodiscard:
  1607. clear_opt(sbi->s_mount_opt, DISCARD);
  1608. break;
  1609. case Opt_dioread_nolock:
  1610. set_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  1611. break;
  1612. case Opt_dioread_lock:
  1613. clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  1614. break;
  1615. case Opt_init_inode_table:
  1616. set_opt(sbi->s_mount_opt, INIT_INODE_TABLE);
  1617. if (args[0].from) {
  1618. if (match_int(&args[0], &option))
  1619. return 0;
  1620. } else
  1621. option = EXT4_DEF_LI_WAIT_MULT;
  1622. if (option < 0)
  1623. return 0;
  1624. sbi->s_li_wait_mult = option;
  1625. break;
  1626. case Opt_noinit_inode_table:
  1627. clear_opt(sbi->s_mount_opt, INIT_INODE_TABLE);
  1628. break;
  1629. default:
  1630. ext4_msg(sb, KERN_ERR,
  1631. "Unrecognized mount option \"%s\" "
  1632. "or missing value", p);
  1633. return 0;
  1634. }
  1635. }
  1636. #ifdef CONFIG_QUOTA
  1637. if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
  1638. if (test_opt(sb, USRQUOTA) && sbi->s_qf_names[USRQUOTA])
  1639. clear_opt(sbi->s_mount_opt, USRQUOTA);
  1640. if (test_opt(sb, GRPQUOTA) && sbi->s_qf_names[GRPQUOTA])
  1641. clear_opt(sbi->s_mount_opt, GRPQUOTA);
  1642. if (test_opt(sb, GRPQUOTA) || test_opt(sb, USRQUOTA)) {
  1643. ext4_msg(sb, KERN_ERR, "old and new quota "
  1644. "format mixing");
  1645. return 0;
  1646. }
  1647. if (!sbi->s_jquota_fmt) {
  1648. ext4_msg(sb, KERN_ERR, "journaled quota format "
  1649. "not specified");
  1650. return 0;
  1651. }
  1652. } else {
  1653. if (sbi->s_jquota_fmt) {
  1654. ext4_msg(sb, KERN_ERR, "journaled quota format "
  1655. "specified with no journaling "
  1656. "enabled");
  1657. return 0;
  1658. }
  1659. }
  1660. #endif
  1661. return 1;
  1662. }
  1663. static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
  1664. int read_only)
  1665. {
  1666. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1667. int res = 0;
  1668. if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
  1669. ext4_msg(sb, KERN_ERR, "revision level too high, "
  1670. "forcing read-only mode");
  1671. res = MS_RDONLY;
  1672. }
  1673. if (read_only)
  1674. return res;
  1675. if (!(sbi->s_mount_state & EXT4_VALID_FS))
  1676. ext4_msg(sb, KERN_WARNING, "warning: mounting unchecked fs, "
  1677. "running e2fsck is recommended");
  1678. else if ((sbi->s_mount_state & EXT4_ERROR_FS))
  1679. ext4_msg(sb, KERN_WARNING,
  1680. "warning: mounting fs with errors, "
  1681. "running e2fsck is recommended");
  1682. else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
  1683. le16_to_cpu(es->s_mnt_count) >=
  1684. (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
  1685. ext4_msg(sb, KERN_WARNING,
  1686. "warning: maximal mount count reached, "
  1687. "running e2fsck is recommended");
  1688. else if (le32_to_cpu(es->s_checkinterval) &&
  1689. (le32_to_cpu(es->s_lastcheck) +
  1690. le32_to_cpu(es->s_checkinterval) <= get_seconds()))
  1691. ext4_msg(sb, KERN_WARNING,
  1692. "warning: checktime reached, "
  1693. "running e2fsck is recommended");
  1694. if (!sbi->s_journal)
  1695. es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
  1696. if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
  1697. es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
  1698. le16_add_cpu(&es->s_mnt_count, 1);
  1699. es->s_mtime = cpu_to_le32(get_seconds());
  1700. ext4_update_dynamic_rev(sb);
  1701. if (sbi->s_journal)
  1702. EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  1703. ext4_commit_super(sb, 1);
  1704. if (test_opt(sb, DEBUG))
  1705. printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
  1706. "bpg=%lu, ipg=%lu, mo=%04x]\n",
  1707. sb->s_blocksize,
  1708. sbi->s_groups_count,
  1709. EXT4_BLOCKS_PER_GROUP(sb),
  1710. EXT4_INODES_PER_GROUP(sb),
  1711. sbi->s_mount_opt);
  1712. return res;
  1713. }
  1714. static int ext4_fill_flex_info(struct super_block *sb)
  1715. {
  1716. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1717. struct ext4_group_desc *gdp = NULL;
  1718. ext4_group_t flex_group_count;
  1719. ext4_group_t flex_group;
  1720. int groups_per_flex = 0;
  1721. size_t size;
  1722. int i;
  1723. sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
  1724. groups_per_flex = 1 << sbi->s_log_groups_per_flex;
  1725. if (groups_per_flex < 2) {
  1726. sbi->s_log_groups_per_flex = 0;
  1727. return 1;
  1728. }
  1729. /* We allocate both existing and potentially added groups */
  1730. flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
  1731. ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
  1732. EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
  1733. size = flex_group_count * sizeof(struct flex_groups);
  1734. sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
  1735. if (sbi->s_flex_groups == NULL) {
  1736. sbi->s_flex_groups = vmalloc(size);
  1737. if (sbi->s_flex_groups)
  1738. memset(sbi->s_flex_groups, 0, size);
  1739. }
  1740. if (sbi->s_flex_groups == NULL) {
  1741. ext4_msg(sb, KERN_ERR, "not enough memory for "
  1742. "%u flex groups", flex_group_count);
  1743. goto failed;
  1744. }
  1745. for (i = 0; i < sbi->s_groups_count; i++) {
  1746. gdp = ext4_get_group_desc(sb, i, NULL);
  1747. flex_group = ext4_flex_group(sbi, i);
  1748. atomic_add(ext4_free_inodes_count(sb, gdp),
  1749. &sbi->s_flex_groups[flex_group].free_inodes);
  1750. atomic_add(ext4_free_blks_count(sb, gdp),
  1751. &sbi->s_flex_groups[flex_group].free_blocks);
  1752. atomic_add(ext4_used_dirs_count(sb, gdp),
  1753. &sbi->s_flex_groups[flex_group].used_dirs);
  1754. }
  1755. return 1;
  1756. failed:
  1757. return 0;
  1758. }
  1759. __le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
  1760. struct ext4_group_desc *gdp)
  1761. {
  1762. __u16 crc = 0;
  1763. if (sbi->s_es->s_feature_ro_compat &
  1764. cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
  1765. int offset = offsetof(struct ext4_group_desc, bg_checksum);
  1766. __le32 le_group = cpu_to_le32(block_group);
  1767. crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
  1768. crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
  1769. crc = crc16(crc, (__u8 *)gdp, offset);
  1770. offset += sizeof(gdp->bg_checksum); /* skip checksum */
  1771. /* for checksum of struct ext4_group_desc do the rest...*/
  1772. if ((sbi->s_es->s_feature_incompat &
  1773. cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
  1774. offset < le16_to_cpu(sbi->s_es->s_desc_size))
  1775. crc = crc16(crc, (__u8 *)gdp + offset,
  1776. le16_to_cpu(sbi->s_es->s_desc_size) -
  1777. offset);
  1778. }
  1779. return cpu_to_le16(crc);
  1780. }
  1781. int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
  1782. struct ext4_group_desc *gdp)
  1783. {
  1784. if ((sbi->s_es->s_feature_ro_compat &
  1785. cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
  1786. (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
  1787. return 0;
  1788. return 1;
  1789. }
  1790. /* Called at mount-time, super-block is locked */
  1791. static int ext4_check_descriptors(struct super_block *sb,
  1792. ext4_group_t *first_not_zeroed)
  1793. {
  1794. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1795. ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
  1796. ext4_fsblk_t last_block;
  1797. ext4_fsblk_t block_bitmap;
  1798. ext4_fsblk_t inode_bitmap;
  1799. ext4_fsblk_t inode_table;
  1800. int flexbg_flag = 0;
  1801. ext4_group_t i, grp = sbi->s_groups_count;
  1802. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
  1803. flexbg_flag = 1;
  1804. ext4_debug("Checking group descriptors");
  1805. for (i = 0; i < sbi->s_groups_count; i++) {
  1806. struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
  1807. if (i == sbi->s_groups_count - 1 || flexbg_flag)
  1808. last_block = ext4_blocks_count(sbi->s_es) - 1;
  1809. else
  1810. last_block = first_block +
  1811. (EXT4_BLOCKS_PER_GROUP(sb) - 1);
  1812. if ((grp == sbi->s_groups_count) &&
  1813. !(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED)))
  1814. grp = i;
  1815. block_bitmap = ext4_block_bitmap(sb, gdp);
  1816. if (block_bitmap < first_block || block_bitmap > last_block) {
  1817. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1818. "Block bitmap for group %u not in group "
  1819. "(block %llu)!", i, block_bitmap);
  1820. return 0;
  1821. }
  1822. inode_bitmap = ext4_inode_bitmap(sb, gdp);
  1823. if (inode_bitmap < first_block || inode_bitmap > last_block) {
  1824. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1825. "Inode bitmap for group %u not in group "
  1826. "(block %llu)!", i, inode_bitmap);
  1827. return 0;
  1828. }
  1829. inode_table = ext4_inode_table(sb, gdp);
  1830. if (inode_table < first_block ||
  1831. inode_table + sbi->s_itb_per_group - 1 > last_block) {
  1832. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1833. "Inode table for group %u not in group "
  1834. "(block %llu)!", i, inode_table);
  1835. return 0;
  1836. }
  1837. ext4_lock_group(sb, i);
  1838. if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
  1839. ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
  1840. "Checksum for group %u failed (%u!=%u)",
  1841. i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
  1842. gdp)), le16_to_cpu(gdp->bg_checksum));
  1843. if (!(sb->s_flags & MS_RDONLY)) {
  1844. ext4_unlock_group(sb, i);
  1845. return 0;
  1846. }
  1847. }
  1848. ext4_unlock_group(sb, i);
  1849. if (!flexbg_flag)
  1850. first_block += EXT4_BLOCKS_PER_GROUP(sb);
  1851. }
  1852. if (NULL != first_not_zeroed)
  1853. *first_not_zeroed = grp;
  1854. ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
  1855. sbi->s_es->s_free_inodes_count =cpu_to_le32(ext4_count_free_inodes(sb));
  1856. return 1;
  1857. }
  1858. /* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
  1859. * the superblock) which were deleted from all directories, but held open by
  1860. * a process at the time of a crash. We walk the list and try to delete these
  1861. * inodes at recovery time (only with a read-write filesystem).
  1862. *
  1863. * In order to keep the orphan inode chain consistent during traversal (in
  1864. * case of crash during recovery), we link each inode into the superblock
  1865. * orphan list_head and handle it the same way as an inode deletion during
  1866. * normal operation (which journals the operations for us).
  1867. *
  1868. * We only do an iget() and an iput() on each inode, which is very safe if we
  1869. * accidentally point at an in-use or already deleted inode. The worst that
  1870. * can happen in this case is that we get a "bit already cleared" message from
  1871. * ext4_free_inode(). The only reason we would point at a wrong inode is if
  1872. * e2fsck was run on this filesystem, and it must have already done the orphan
  1873. * inode cleanup for us, so we can safely abort without any further action.
  1874. */
  1875. static void ext4_orphan_cleanup(struct super_block *sb,
  1876. struct ext4_super_block *es)
  1877. {
  1878. unsigned int s_flags = sb->s_flags;
  1879. int nr_orphans = 0, nr_truncates = 0;
  1880. #ifdef CONFIG_QUOTA
  1881. int i;
  1882. #endif
  1883. if (!es->s_last_orphan) {
  1884. jbd_debug(4, "no orphan inodes to clean up\n");
  1885. return;
  1886. }
  1887. if (bdev_read_only(sb->s_bdev)) {
  1888. ext4_msg(sb, KERN_ERR, "write access "
  1889. "unavailable, skipping orphan cleanup");
  1890. return;
  1891. }
  1892. if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
  1893. if (es->s_last_orphan)
  1894. jbd_debug(1, "Errors on filesystem, "
  1895. "clearing orphan list.\n");
  1896. es->s_last_orphan = 0;
  1897. jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
  1898. return;
  1899. }
  1900. if (s_flags & MS_RDONLY) {
  1901. ext4_msg(sb, KERN_INFO, "orphan cleanup on readonly fs");
  1902. sb->s_flags &= ~MS_RDONLY;
  1903. }
  1904. #ifdef CONFIG_QUOTA
  1905. /* Needed for iput() to work correctly and not trash data */
  1906. sb->s_flags |= MS_ACTIVE;
  1907. /* Turn on quotas so that they are updated correctly */
  1908. for (i = 0; i < MAXQUOTAS; i++) {
  1909. if (EXT4_SB(sb)->s_qf_names[i]) {
  1910. int ret = ext4_quota_on_mount(sb, i);
  1911. if (ret < 0)
  1912. ext4_msg(sb, KERN_ERR,
  1913. "Cannot turn on journaled "
  1914. "quota: error %d", ret);
  1915. }
  1916. }
  1917. #endif
  1918. while (es->s_last_orphan) {
  1919. struct inode *inode;
  1920. inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
  1921. if (IS_ERR(inode)) {
  1922. es->s_last_orphan = 0;
  1923. break;
  1924. }
  1925. list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
  1926. dquot_initialize(inode);
  1927. if (inode->i_nlink) {
  1928. ext4_msg(sb, KERN_DEBUG,
  1929. "%s: truncating inode %lu to %lld bytes",
  1930. __func__, inode->i_ino, inode->i_size);
  1931. jbd_debug(2, "truncating inode %lu to %lld bytes\n",
  1932. inode->i_ino, inode->i_size);
  1933. ext4_truncate(inode);
  1934. nr_truncates++;
  1935. } else {
  1936. ext4_msg(sb, KERN_DEBUG,
  1937. "%s: deleting unreferenced inode %lu",
  1938. __func__, inode->i_ino);
  1939. jbd_debug(2, "deleting unreferenced inode %lu\n",
  1940. inode->i_ino);
  1941. nr_orphans++;
  1942. }
  1943. iput(inode); /* The delete magic happens here! */
  1944. }
  1945. #define PLURAL(x) (x), ((x) == 1) ? "" : "s"
  1946. if (nr_orphans)
  1947. ext4_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
  1948. PLURAL(nr_orphans));
  1949. if (nr_truncates)
  1950. ext4_msg(sb, KERN_INFO, "%d truncate%s cleaned up",
  1951. PLURAL(nr_truncates));
  1952. #ifdef CONFIG_QUOTA
  1953. /* Turn quotas off */
  1954. for (i = 0; i < MAXQUOTAS; i++) {
  1955. if (sb_dqopt(sb)->files[i])
  1956. dquot_quota_off(sb, i);
  1957. }
  1958. #endif
  1959. sb->s_flags = s_flags; /* Restore MS_RDONLY status */
  1960. }
  1961. /*
  1962. * Maximal extent format file size.
  1963. * Resulting logical blkno at s_maxbytes must fit in our on-disk
  1964. * extent format containers, within a sector_t, and within i_blocks
  1965. * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
  1966. * so that won't be a limiting factor.
  1967. *
  1968. * Note, this does *not* consider any metadata overhead for vfs i_blocks.
  1969. */
  1970. static loff_t ext4_max_size(int blkbits, int has_huge_files)
  1971. {
  1972. loff_t res;
  1973. loff_t upper_limit = MAX_LFS_FILESIZE;
  1974. /* small i_blocks in vfs inode? */
  1975. if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
  1976. /*
  1977. * CONFIG_LBDAF is not enabled implies the inode
  1978. * i_block represent total blocks in 512 bytes
  1979. * 32 == size of vfs inode i_blocks * 8
  1980. */
  1981. upper_limit = (1LL << 32) - 1;
  1982. /* total blocks in file system block size */
  1983. upper_limit >>= (blkbits - 9);
  1984. upper_limit <<= blkbits;
  1985. }
  1986. /* 32-bit extent-start container, ee_block */
  1987. res = 1LL << 32;
  1988. res <<= blkbits;
  1989. res -= 1;
  1990. /* Sanity check against vm- & vfs- imposed limits */
  1991. if (res > upper_limit)
  1992. res = upper_limit;
  1993. return res;
  1994. }
  1995. /*
  1996. * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
  1997. * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
  1998. * We need to be 1 filesystem block less than the 2^48 sector limit.
  1999. */
  2000. static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
  2001. {
  2002. loff_t res = EXT4_NDIR_BLOCKS;
  2003. int meta_blocks;
  2004. loff_t upper_limit;
  2005. /* This is calculated to be the largest file size for a dense, block
  2006. * mapped file such that the file's total number of 512-byte sectors,
  2007. * including data and all indirect blocks, does not exceed (2^48 - 1).
  2008. *
  2009. * __u32 i_blocks_lo and _u16 i_blocks_high represent the total
  2010. * number of 512-byte sectors of the file.
  2011. */
  2012. if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
  2013. /*
  2014. * !has_huge_files or CONFIG_LBDAF not enabled implies that
  2015. * the inode i_block field represents total file blocks in
  2016. * 2^32 512-byte sectors == size of vfs inode i_blocks * 8
  2017. */
  2018. upper_limit = (1LL << 32) - 1;
  2019. /* total blocks in file system block size */
  2020. upper_limit >>= (bits - 9);
  2021. } else {
  2022. /*
  2023. * We use 48 bit ext4_inode i_blocks
  2024. * With EXT4_HUGE_FILE_FL set the i_blocks
  2025. * represent total number of blocks in
  2026. * file system block size
  2027. */
  2028. upper_limit = (1LL << 48) - 1;
  2029. }
  2030. /* indirect blocks */
  2031. meta_blocks = 1;
  2032. /* double indirect blocks */
  2033. meta_blocks += 1 + (1LL << (bits-2));
  2034. /* tripple indirect blocks */
  2035. meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
  2036. upper_limit -= meta_blocks;
  2037. upper_limit <<= bits;
  2038. res += 1LL << (bits-2);
  2039. res += 1LL << (2*(bits-2));
  2040. res += 1LL << (3*(bits-2));
  2041. res <<= bits;
  2042. if (res > upper_limit)
  2043. res = upper_limit;
  2044. if (res > MAX_LFS_FILESIZE)
  2045. res = MAX_LFS_FILESIZE;
  2046. return res;
  2047. }
  2048. static ext4_fsblk_t descriptor_loc(struct super_block *sb,
  2049. ext4_fsblk_t logical_sb_block, int nr)
  2050. {
  2051. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2052. ext4_group_t bg, first_meta_bg;
  2053. int has_super = 0;
  2054. first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
  2055. if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
  2056. nr < first_meta_bg)
  2057. return logical_sb_block + nr + 1;
  2058. bg = sbi->s_desc_per_block * nr;
  2059. if (ext4_bg_has_super(sb, bg))
  2060. has_super = 1;
  2061. return (has_super + ext4_group_first_block_no(sb, bg));
  2062. }
  2063. /**
  2064. * ext4_get_stripe_size: Get the stripe size.
  2065. * @sbi: In memory super block info
  2066. *
  2067. * If we have specified it via mount option, then
  2068. * use the mount option value. If the value specified at mount time is
  2069. * greater than the blocks per group use the super block value.
  2070. * If the super block value is greater than blocks per group return 0.
  2071. * Allocator needs it be less than blocks per group.
  2072. *
  2073. */
  2074. static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
  2075. {
  2076. unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
  2077. unsigned long stripe_width =
  2078. le32_to_cpu(sbi->s_es->s_raid_stripe_width);
  2079. if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
  2080. return sbi->s_stripe;
  2081. if (stripe_width <= sbi->s_blocks_per_group)
  2082. return stripe_width;
  2083. if (stride <= sbi->s_blocks_per_group)
  2084. return stride;
  2085. return 0;
  2086. }
  2087. /* sysfs supprt */
  2088. struct ext4_attr {
  2089. struct attribute attr;
  2090. ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
  2091. ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
  2092. const char *, size_t);
  2093. int offset;
  2094. };
  2095. static int parse_strtoul(const char *buf,
  2096. unsigned long max, unsigned long *value)
  2097. {
  2098. char *endp;
  2099. *value = simple_strtoul(skip_spaces(buf), &endp, 0);
  2100. endp = skip_spaces(endp);
  2101. if (*endp || *value > max)
  2102. return -EINVAL;
  2103. return 0;
  2104. }
  2105. static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
  2106. struct ext4_sb_info *sbi,
  2107. char *buf)
  2108. {
  2109. return snprintf(buf, PAGE_SIZE, "%llu\n",
  2110. (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
  2111. }
  2112. static ssize_t session_write_kbytes_show(struct ext4_attr *a,
  2113. struct ext4_sb_info *sbi, char *buf)
  2114. {
  2115. struct super_block *sb = sbi->s_buddy_cache->i_sb;
  2116. if (!sb->s_bdev->bd_part)
  2117. return snprintf(buf, PAGE_SIZE, "0\n");
  2118. return snprintf(buf, PAGE_SIZE, "%lu\n",
  2119. (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
  2120. sbi->s_sectors_written_start) >> 1);
  2121. }
  2122. static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
  2123. struct ext4_sb_info *sbi, char *buf)
  2124. {
  2125. struct super_block *sb = sbi->s_buddy_cache->i_sb;
  2126. if (!sb->s_bdev->bd_part)
  2127. return snprintf(buf, PAGE_SIZE, "0\n");
  2128. return snprintf(buf, PAGE_SIZE, "%llu\n",
  2129. (unsigned long long)(sbi->s_kbytes_written +
  2130. ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
  2131. EXT4_SB(sb)->s_sectors_written_start) >> 1)));
  2132. }
  2133. static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
  2134. struct ext4_sb_info *sbi,
  2135. const char *buf, size_t count)
  2136. {
  2137. unsigned long t;
  2138. if (parse_strtoul(buf, 0x40000000, &t))
  2139. return -EINVAL;
  2140. if (!is_power_of_2(t))
  2141. return -EINVAL;
  2142. sbi->s_inode_readahead_blks = t;
  2143. return count;
  2144. }
  2145. static ssize_t sbi_ui_show(struct ext4_attr *a,
  2146. struct ext4_sb_info *sbi, char *buf)
  2147. {
  2148. unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
  2149. return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
  2150. }
  2151. static ssize_t sbi_ui_store(struct ext4_attr *a,
  2152. struct ext4_sb_info *sbi,
  2153. const char *buf, size_t count)
  2154. {
  2155. unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
  2156. unsigned long t;
  2157. if (parse_strtoul(buf, 0xffffffff, &t))
  2158. return -EINVAL;
  2159. *ui = t;
  2160. return count;
  2161. }
  2162. #define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
  2163. static struct ext4_attr ext4_attr_##_name = { \
  2164. .attr = {.name = __stringify(_name), .mode = _mode }, \
  2165. .show = _show, \
  2166. .store = _store, \
  2167. .offset = offsetof(struct ext4_sb_info, _elname), \
  2168. }
  2169. #define EXT4_ATTR(name, mode, show, store) \
  2170. static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
  2171. #define EXT4_INFO_ATTR(name) EXT4_ATTR(name, 0444, NULL, NULL)
  2172. #define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
  2173. #define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
  2174. #define EXT4_RW_ATTR_SBI_UI(name, elname) \
  2175. EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
  2176. #define ATTR_LIST(name) &ext4_attr_##name.attr
  2177. EXT4_RO_ATTR(delayed_allocation_blocks);
  2178. EXT4_RO_ATTR(session_write_kbytes);
  2179. EXT4_RO_ATTR(lifetime_write_kbytes);
  2180. EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
  2181. inode_readahead_blks_store, s_inode_readahead_blks);
  2182. EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
  2183. EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
  2184. EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
  2185. EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
  2186. EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
  2187. EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
  2188. EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
  2189. EXT4_RW_ATTR_SBI_UI(max_writeback_mb_bump, s_max_writeback_mb_bump);
  2190. static struct attribute *ext4_attrs[] = {
  2191. ATTR_LIST(delayed_allocation_blocks),
  2192. ATTR_LIST(session_write_kbytes),
  2193. ATTR_LIST(lifetime_write_kbytes),
  2194. ATTR_LIST(inode_readahead_blks),
  2195. ATTR_LIST(inode_goal),
  2196. ATTR_LIST(mb_stats),
  2197. ATTR_LIST(mb_max_to_scan),
  2198. ATTR_LIST(mb_min_to_scan),
  2199. ATTR_LIST(mb_order2_req),
  2200. ATTR_LIST(mb_stream_req),
  2201. ATTR_LIST(mb_group_prealloc),
  2202. ATTR_LIST(max_writeback_mb_bump),
  2203. NULL,
  2204. };
  2205. /* Features this copy of ext4 supports */
  2206. EXT4_INFO_ATTR(lazy_itable_init);
  2207. EXT4_INFO_ATTR(batched_discard);
  2208. static struct attribute *ext4_feat_attrs[] = {
  2209. ATTR_LIST(lazy_itable_init),
  2210. ATTR_LIST(batched_discard),
  2211. NULL,
  2212. };
  2213. static ssize_t ext4_attr_show(struct kobject *kobj,
  2214. struct attribute *attr, char *buf)
  2215. {
  2216. struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
  2217. s_kobj);
  2218. struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
  2219. return a->show ? a->show(a, sbi, buf) : 0;
  2220. }
  2221. static ssize_t ext4_attr_store(struct kobject *kobj,
  2222. struct attribute *attr,
  2223. const char *buf, size_t len)
  2224. {
  2225. struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
  2226. s_kobj);
  2227. struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
  2228. return a->store ? a->store(a, sbi, buf, len) : 0;
  2229. }
  2230. static void ext4_sb_release(struct kobject *kobj)
  2231. {
  2232. struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
  2233. s_kobj);
  2234. complete(&sbi->s_kobj_unregister);
  2235. }
  2236. static const struct sysfs_ops ext4_attr_ops = {
  2237. .show = ext4_attr_show,
  2238. .store = ext4_attr_store,
  2239. };
  2240. static struct kobj_type ext4_ktype = {
  2241. .default_attrs = ext4_attrs,
  2242. .sysfs_ops = &ext4_attr_ops,
  2243. .release = ext4_sb_release,
  2244. };
  2245. static void ext4_feat_release(struct kobject *kobj)
  2246. {
  2247. complete(&ext4_feat->f_kobj_unregister);
  2248. }
  2249. static struct kobj_type ext4_feat_ktype = {
  2250. .default_attrs = ext4_feat_attrs,
  2251. .sysfs_ops = &ext4_attr_ops,
  2252. .release = ext4_feat_release,
  2253. };
  2254. /*
  2255. * Check whether this filesystem can be mounted based on
  2256. * the features present and the RDONLY/RDWR mount requested.
  2257. * Returns 1 if this filesystem can be mounted as requested,
  2258. * 0 if it cannot be.
  2259. */
  2260. static int ext4_feature_set_ok(struct super_block *sb, int readonly)
  2261. {
  2262. if (EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP)) {
  2263. ext4_msg(sb, KERN_ERR,
  2264. "Couldn't mount because of "
  2265. "unsupported optional features (%x)",
  2266. (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
  2267. ~EXT4_FEATURE_INCOMPAT_SUPP));
  2268. return 0;
  2269. }
  2270. if (readonly)
  2271. return 1;
  2272. /* Check that feature set is OK for a read-write mount */
  2273. if (EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP)) {
  2274. ext4_msg(sb, KERN_ERR, "couldn't mount RDWR because of "
  2275. "unsupported optional features (%x)",
  2276. (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
  2277. ~EXT4_FEATURE_RO_COMPAT_SUPP));
  2278. return 0;
  2279. }
  2280. /*
  2281. * Large file size enabled file system can only be mounted
  2282. * read-write on 32-bit systems if kernel is built with CONFIG_LBDAF
  2283. */
  2284. if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
  2285. if (sizeof(blkcnt_t) < sizeof(u64)) {
  2286. ext4_msg(sb, KERN_ERR, "Filesystem with huge files "
  2287. "cannot be mounted RDWR without "
  2288. "CONFIG_LBDAF");
  2289. return 0;
  2290. }
  2291. }
  2292. return 1;
  2293. }
  2294. /*
  2295. * This function is called once a day if we have errors logged
  2296. * on the file system
  2297. */
  2298. static void print_daily_error_info(unsigned long arg)
  2299. {
  2300. struct super_block *sb = (struct super_block *) arg;
  2301. struct ext4_sb_info *sbi;
  2302. struct ext4_super_block *es;
  2303. sbi = EXT4_SB(sb);
  2304. es = sbi->s_es;
  2305. if (es->s_error_count)
  2306. ext4_msg(sb, KERN_NOTICE, "error count: %u",
  2307. le32_to_cpu(es->s_error_count));
  2308. if (es->s_first_error_time) {
  2309. printk(KERN_NOTICE "EXT4-fs (%s): initial error at %u: %.*s:%d",
  2310. sb->s_id, le32_to_cpu(es->s_first_error_time),
  2311. (int) sizeof(es->s_first_error_func),
  2312. es->s_first_error_func,
  2313. le32_to_cpu(es->s_first_error_line));
  2314. if (es->s_first_error_ino)
  2315. printk(": inode %u",
  2316. le32_to_cpu(es->s_first_error_ino));
  2317. if (es->s_first_error_block)
  2318. printk(": block %llu", (unsigned long long)
  2319. le64_to_cpu(es->s_first_error_block));
  2320. printk("\n");
  2321. }
  2322. if (es->s_last_error_time) {
  2323. printk(KERN_NOTICE "EXT4-fs (%s): last error at %u: %.*s:%d",
  2324. sb->s_id, le32_to_cpu(es->s_last_error_time),
  2325. (int) sizeof(es->s_last_error_func),
  2326. es->s_last_error_func,
  2327. le32_to_cpu(es->s_last_error_line));
  2328. if (es->s_last_error_ino)
  2329. printk(": inode %u",
  2330. le32_to_cpu(es->s_last_error_ino));
  2331. if (es->s_last_error_block)
  2332. printk(": block %llu", (unsigned long long)
  2333. le64_to_cpu(es->s_last_error_block));
  2334. printk("\n");
  2335. }
  2336. mod_timer(&sbi->s_err_report, jiffies + 24*60*60*HZ); /* Once a day */
  2337. }
  2338. static void ext4_lazyinode_timeout(unsigned long data)
  2339. {
  2340. struct task_struct *p = (struct task_struct *)data;
  2341. wake_up_process(p);
  2342. }
  2343. /* Find next suitable group and run ext4_init_inode_table */
  2344. static int ext4_run_li_request(struct ext4_li_request *elr)
  2345. {
  2346. struct ext4_group_desc *gdp = NULL;
  2347. ext4_group_t group, ngroups;
  2348. struct super_block *sb;
  2349. unsigned long timeout = 0;
  2350. int ret = 0;
  2351. sb = elr->lr_super;
  2352. ngroups = EXT4_SB(sb)->s_groups_count;
  2353. for (group = elr->lr_next_group; group < ngroups; group++) {
  2354. gdp = ext4_get_group_desc(sb, group, NULL);
  2355. if (!gdp) {
  2356. ret = 1;
  2357. break;
  2358. }
  2359. if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED)))
  2360. break;
  2361. }
  2362. if (group == ngroups)
  2363. ret = 1;
  2364. if (!ret) {
  2365. timeout = jiffies;
  2366. ret = ext4_init_inode_table(sb, group,
  2367. elr->lr_timeout ? 0 : 1);
  2368. if (elr->lr_timeout == 0) {
  2369. timeout = jiffies - timeout;
  2370. if (elr->lr_sbi->s_li_wait_mult)
  2371. timeout *= elr->lr_sbi->s_li_wait_mult;
  2372. else
  2373. timeout *= 20;
  2374. elr->lr_timeout = timeout;
  2375. }
  2376. elr->lr_next_sched = jiffies + elr->lr_timeout;
  2377. elr->lr_next_group = group + 1;
  2378. }
  2379. return ret;
  2380. }
  2381. /*
  2382. * Remove lr_request from the list_request and free the
  2383. * request tructure. Should be called with li_list_mtx held
  2384. */
  2385. static void ext4_remove_li_request(struct ext4_li_request *elr)
  2386. {
  2387. struct ext4_sb_info *sbi;
  2388. if (!elr)
  2389. return;
  2390. sbi = elr->lr_sbi;
  2391. list_del(&elr->lr_request);
  2392. sbi->s_li_request = NULL;
  2393. kfree(elr);
  2394. }
  2395. static void ext4_unregister_li_request(struct super_block *sb)
  2396. {
  2397. struct ext4_li_request *elr = EXT4_SB(sb)->s_li_request;
  2398. if (!ext4_li_info)
  2399. return;
  2400. mutex_lock(&ext4_li_info->li_list_mtx);
  2401. ext4_remove_li_request(elr);
  2402. mutex_unlock(&ext4_li_info->li_list_mtx);
  2403. }
  2404. /*
  2405. * This is the function where ext4lazyinit thread lives. It walks
  2406. * through the request list searching for next scheduled filesystem.
  2407. * When such a fs is found, run the lazy initialization request
  2408. * (ext4_rn_li_request) and keep track of the time spend in this
  2409. * function. Based on that time we compute next schedule time of
  2410. * the request. When walking through the list is complete, compute
  2411. * next waking time and put itself into sleep.
  2412. */
  2413. static int ext4_lazyinit_thread(void *arg)
  2414. {
  2415. struct ext4_lazy_init *eli = (struct ext4_lazy_init *)arg;
  2416. struct list_head *pos, *n;
  2417. struct ext4_li_request *elr;
  2418. unsigned long next_wakeup;
  2419. DEFINE_WAIT(wait);
  2420. BUG_ON(NULL == eli);
  2421. eli->li_timer.data = (unsigned long)current;
  2422. eli->li_timer.function = ext4_lazyinode_timeout;
  2423. eli->li_task = current;
  2424. wake_up(&eli->li_wait_task);
  2425. cont_thread:
  2426. while (true) {
  2427. next_wakeup = MAX_JIFFY_OFFSET;
  2428. mutex_lock(&eli->li_list_mtx);
  2429. if (list_empty(&eli->li_request_list)) {
  2430. mutex_unlock(&eli->li_list_mtx);
  2431. goto exit_thread;
  2432. }
  2433. list_for_each_safe(pos, n, &eli->li_request_list) {
  2434. elr = list_entry(pos, struct ext4_li_request,
  2435. lr_request);
  2436. if (time_after_eq(jiffies, elr->lr_next_sched)) {
  2437. if (ext4_run_li_request(elr) != 0) {
  2438. /* error, remove the lazy_init job */
  2439. ext4_remove_li_request(elr);
  2440. continue;
  2441. }
  2442. }
  2443. if (time_before(elr->lr_next_sched, next_wakeup))
  2444. next_wakeup = elr->lr_next_sched;
  2445. }
  2446. mutex_unlock(&eli->li_list_mtx);
  2447. if (freezing(current))
  2448. refrigerator();
  2449. if ((time_after_eq(jiffies, next_wakeup)) ||
  2450. (MAX_JIFFY_OFFSET == next_wakeup)) {
  2451. cond_resched();
  2452. continue;
  2453. }
  2454. eli->li_timer.expires = next_wakeup;
  2455. add_timer(&eli->li_timer);
  2456. prepare_to_wait(&eli->li_wait_daemon, &wait,
  2457. TASK_INTERRUPTIBLE);
  2458. if (time_before(jiffies, next_wakeup))
  2459. schedule();
  2460. finish_wait(&eli->li_wait_daemon, &wait);
  2461. }
  2462. exit_thread:
  2463. /*
  2464. * It looks like the request list is empty, but we need
  2465. * to check it under the li_list_mtx lock, to prevent any
  2466. * additions into it, and of course we should lock ext4_li_mtx
  2467. * to atomically free the list and ext4_li_info, because at
  2468. * this point another ext4 filesystem could be registering
  2469. * new one.
  2470. */
  2471. mutex_lock(&ext4_li_mtx);
  2472. mutex_lock(&eli->li_list_mtx);
  2473. if (!list_empty(&eli->li_request_list)) {
  2474. mutex_unlock(&eli->li_list_mtx);
  2475. mutex_unlock(&ext4_li_mtx);
  2476. goto cont_thread;
  2477. }
  2478. mutex_unlock(&eli->li_list_mtx);
  2479. del_timer_sync(&ext4_li_info->li_timer);
  2480. eli->li_task = NULL;
  2481. wake_up(&eli->li_wait_task);
  2482. kfree(ext4_li_info);
  2483. ext4_li_info = NULL;
  2484. mutex_unlock(&ext4_li_mtx);
  2485. return 0;
  2486. }
  2487. static void ext4_clear_request_list(void)
  2488. {
  2489. struct list_head *pos, *n;
  2490. struct ext4_li_request *elr;
  2491. mutex_lock(&ext4_li_info->li_list_mtx);
  2492. list_for_each_safe(pos, n, &ext4_li_info->li_request_list) {
  2493. elr = list_entry(pos, struct ext4_li_request,
  2494. lr_request);
  2495. ext4_remove_li_request(elr);
  2496. }
  2497. mutex_unlock(&ext4_li_info->li_list_mtx);
  2498. }
  2499. static int ext4_run_lazyinit_thread(void)
  2500. {
  2501. struct task_struct *t;
  2502. t = kthread_run(ext4_lazyinit_thread, ext4_li_info, "ext4lazyinit");
  2503. if (IS_ERR(t)) {
  2504. int err = PTR_ERR(t);
  2505. ext4_clear_request_list();
  2506. del_timer_sync(&ext4_li_info->li_timer);
  2507. kfree(ext4_li_info);
  2508. ext4_li_info = NULL;
  2509. printk(KERN_CRIT "EXT4: error %d creating inode table "
  2510. "initialization thread\n",
  2511. err);
  2512. return err;
  2513. }
  2514. ext4_li_info->li_state |= EXT4_LAZYINIT_RUNNING;
  2515. wait_event(ext4_li_info->li_wait_task, ext4_li_info->li_task != NULL);
  2516. return 0;
  2517. }
  2518. /*
  2519. * Check whether it make sense to run itable init. thread or not.
  2520. * If there is at least one uninitialized inode table, return
  2521. * corresponding group number, else the loop goes through all
  2522. * groups and return total number of groups.
  2523. */
  2524. static ext4_group_t ext4_has_uninit_itable(struct super_block *sb)
  2525. {
  2526. ext4_group_t group, ngroups = EXT4_SB(sb)->s_groups_count;
  2527. struct ext4_group_desc *gdp = NULL;
  2528. for (group = 0; group < ngroups; group++) {
  2529. gdp = ext4_get_group_desc(sb, group, NULL);
  2530. if (!gdp)
  2531. continue;
  2532. if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED)))
  2533. break;
  2534. }
  2535. return group;
  2536. }
  2537. static int ext4_li_info_new(void)
  2538. {
  2539. struct ext4_lazy_init *eli = NULL;
  2540. eli = kzalloc(sizeof(*eli), GFP_KERNEL);
  2541. if (!eli)
  2542. return -ENOMEM;
  2543. eli->li_task = NULL;
  2544. INIT_LIST_HEAD(&eli->li_request_list);
  2545. mutex_init(&eli->li_list_mtx);
  2546. init_waitqueue_head(&eli->li_wait_daemon);
  2547. init_waitqueue_head(&eli->li_wait_task);
  2548. init_timer(&eli->li_timer);
  2549. eli->li_state |= EXT4_LAZYINIT_QUIT;
  2550. ext4_li_info = eli;
  2551. return 0;
  2552. }
  2553. static struct ext4_li_request *ext4_li_request_new(struct super_block *sb,
  2554. ext4_group_t start)
  2555. {
  2556. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2557. struct ext4_li_request *elr;
  2558. unsigned long rnd;
  2559. elr = kzalloc(sizeof(*elr), GFP_KERNEL);
  2560. if (!elr)
  2561. return NULL;
  2562. elr->lr_super = sb;
  2563. elr->lr_sbi = sbi;
  2564. elr->lr_next_group = start;
  2565. /*
  2566. * Randomize first schedule time of the request to
  2567. * spread the inode table initialization requests
  2568. * better.
  2569. */
  2570. get_random_bytes(&rnd, sizeof(rnd));
  2571. elr->lr_next_sched = jiffies + (unsigned long)rnd %
  2572. (EXT4_DEF_LI_MAX_START_DELAY * HZ);
  2573. return elr;
  2574. }
  2575. static int ext4_register_li_request(struct super_block *sb,
  2576. ext4_group_t first_not_zeroed)
  2577. {
  2578. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2579. struct ext4_li_request *elr;
  2580. ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
  2581. int ret;
  2582. if (sbi->s_li_request != NULL)
  2583. return 0;
  2584. if (first_not_zeroed == ngroups ||
  2585. (sb->s_flags & MS_RDONLY) ||
  2586. !test_opt(sb, INIT_INODE_TABLE)) {
  2587. sbi->s_li_request = NULL;
  2588. return 0;
  2589. }
  2590. if (first_not_zeroed == ngroups) {
  2591. sbi->s_li_request = NULL;
  2592. return 0;
  2593. }
  2594. elr = ext4_li_request_new(sb, first_not_zeroed);
  2595. if (!elr)
  2596. return -ENOMEM;
  2597. mutex_lock(&ext4_li_mtx);
  2598. if (NULL == ext4_li_info) {
  2599. ret = ext4_li_info_new();
  2600. if (ret)
  2601. goto out;
  2602. }
  2603. mutex_lock(&ext4_li_info->li_list_mtx);
  2604. list_add(&elr->lr_request, &ext4_li_info->li_request_list);
  2605. mutex_unlock(&ext4_li_info->li_list_mtx);
  2606. sbi->s_li_request = elr;
  2607. if (!(ext4_li_info->li_state & EXT4_LAZYINIT_RUNNING)) {
  2608. ret = ext4_run_lazyinit_thread();
  2609. if (ret)
  2610. goto out;
  2611. }
  2612. out:
  2613. mutex_unlock(&ext4_li_mtx);
  2614. if (ret)
  2615. kfree(elr);
  2616. return ret;
  2617. }
  2618. /*
  2619. * We do not need to lock anything since this is called on
  2620. * module unload.
  2621. */
  2622. static void ext4_destroy_lazyinit_thread(void)
  2623. {
  2624. /*
  2625. * If thread exited earlier
  2626. * there's nothing to be done.
  2627. */
  2628. if (!ext4_li_info)
  2629. return;
  2630. ext4_clear_request_list();
  2631. while (ext4_li_info->li_task) {
  2632. wake_up(&ext4_li_info->li_wait_daemon);
  2633. wait_event(ext4_li_info->li_wait_task,
  2634. ext4_li_info->li_task == NULL);
  2635. }
  2636. }
  2637. static int ext4_fill_super(struct super_block *sb, void *data, int silent)
  2638. __releases(kernel_lock)
  2639. __acquires(kernel_lock)
  2640. {
  2641. char *orig_data = kstrdup(data, GFP_KERNEL);
  2642. struct buffer_head *bh;
  2643. struct ext4_super_block *es = NULL;
  2644. struct ext4_sb_info *sbi;
  2645. ext4_fsblk_t block;
  2646. ext4_fsblk_t sb_block = get_sb_block(&data);
  2647. ext4_fsblk_t logical_sb_block;
  2648. unsigned long offset = 0;
  2649. unsigned long journal_devnum = 0;
  2650. unsigned long def_mount_opts;
  2651. struct inode *root;
  2652. char *cp;
  2653. const char *descr;
  2654. int ret = -ENOMEM;
  2655. int blocksize;
  2656. unsigned int db_count;
  2657. unsigned int i;
  2658. int needs_recovery, has_huge_files;
  2659. __u64 blocks_count;
  2660. int err;
  2661. unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
  2662. ext4_group_t first_not_zeroed;
  2663. sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
  2664. if (!sbi)
  2665. goto out_free_orig;
  2666. sbi->s_blockgroup_lock =
  2667. kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
  2668. if (!sbi->s_blockgroup_lock) {
  2669. kfree(sbi);
  2670. goto out_free_orig;
  2671. }
  2672. sb->s_fs_info = sbi;
  2673. sbi->s_mount_opt = 0;
  2674. sbi->s_resuid = EXT4_DEF_RESUID;
  2675. sbi->s_resgid = EXT4_DEF_RESGID;
  2676. sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
  2677. sbi->s_sb_block = sb_block;
  2678. if (sb->s_bdev->bd_part)
  2679. sbi->s_sectors_written_start =
  2680. part_stat_read(sb->s_bdev->bd_part, sectors[1]);
  2681. /* Cleanup superblock name */
  2682. for (cp = sb->s_id; (cp = strchr(cp, '/'));)
  2683. *cp = '!';
  2684. ret = -EINVAL;
  2685. blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
  2686. if (!blocksize) {
  2687. ext4_msg(sb, KERN_ERR, "unable to set blocksize");
  2688. goto out_fail;
  2689. }
  2690. /*
  2691. * The ext4 superblock will not be buffer aligned for other than 1kB
  2692. * block sizes. We need to calculate the offset from buffer start.
  2693. */
  2694. if (blocksize != EXT4_MIN_BLOCK_SIZE) {
  2695. logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
  2696. offset = do_div(logical_sb_block, blocksize);
  2697. } else {
  2698. logical_sb_block = sb_block;
  2699. }
  2700. if (!(bh = sb_bread(sb, logical_sb_block))) {
  2701. ext4_msg(sb, KERN_ERR, "unable to read superblock");
  2702. goto out_fail;
  2703. }
  2704. /*
  2705. * Note: s_es must be initialized as soon as possible because
  2706. * some ext4 macro-instructions depend on its value
  2707. */
  2708. es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
  2709. sbi->s_es = es;
  2710. sb->s_magic = le16_to_cpu(es->s_magic);
  2711. if (sb->s_magic != EXT4_SUPER_MAGIC)
  2712. goto cantfind_ext4;
  2713. sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
  2714. /* Set defaults before we parse the mount options */
  2715. def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
  2716. set_opt(sbi->s_mount_opt, INIT_INODE_TABLE);
  2717. if (def_mount_opts & EXT4_DEFM_DEBUG)
  2718. set_opt(sbi->s_mount_opt, DEBUG);
  2719. if (def_mount_opts & EXT4_DEFM_BSDGROUPS) {
  2720. ext4_msg(sb, KERN_WARNING, deprecated_msg, "bsdgroups",
  2721. "2.6.38");
  2722. set_opt(sbi->s_mount_opt, GRPID);
  2723. }
  2724. if (def_mount_opts & EXT4_DEFM_UID16)
  2725. set_opt(sbi->s_mount_opt, NO_UID32);
  2726. #ifdef CONFIG_EXT4_FS_XATTR
  2727. if (def_mount_opts & EXT4_DEFM_XATTR_USER)
  2728. set_opt(sbi->s_mount_opt, XATTR_USER);
  2729. #endif
  2730. #ifdef CONFIG_EXT4_FS_POSIX_ACL
  2731. if (def_mount_opts & EXT4_DEFM_ACL)
  2732. set_opt(sbi->s_mount_opt, POSIX_ACL);
  2733. #endif
  2734. if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
  2735. set_opt(sbi->s_mount_opt, JOURNAL_DATA);
  2736. else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
  2737. set_opt(sbi->s_mount_opt, ORDERED_DATA);
  2738. else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
  2739. set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
  2740. if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
  2741. set_opt(sbi->s_mount_opt, ERRORS_PANIC);
  2742. else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
  2743. set_opt(sbi->s_mount_opt, ERRORS_CONT);
  2744. else
  2745. set_opt(sbi->s_mount_opt, ERRORS_RO);
  2746. if (def_mount_opts & EXT4_DEFM_BLOCK_VALIDITY)
  2747. set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
  2748. if (def_mount_opts & EXT4_DEFM_DISCARD)
  2749. set_opt(sbi->s_mount_opt, DISCARD);
  2750. sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
  2751. sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
  2752. sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
  2753. sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
  2754. sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
  2755. if ((def_mount_opts & EXT4_DEFM_NOBARRIER) == 0)
  2756. set_opt(sbi->s_mount_opt, BARRIER);
  2757. /*
  2758. * enable delayed allocation by default
  2759. * Use -o nodelalloc to turn it off
  2760. */
  2761. if (!IS_EXT3_SB(sb) &&
  2762. ((def_mount_opts & EXT4_DEFM_NODELALLOC) == 0))
  2763. set_opt(sbi->s_mount_opt, DELALLOC);
  2764. if (!parse_options((char *) sbi->s_es->s_mount_opts, sb,
  2765. &journal_devnum, &journal_ioprio, NULL, 0)) {
  2766. ext4_msg(sb, KERN_WARNING,
  2767. "failed to parse options in superblock: %s",
  2768. sbi->s_es->s_mount_opts);
  2769. }
  2770. if (!parse_options((char *) data, sb, &journal_devnum,
  2771. &journal_ioprio, NULL, 0))
  2772. goto failed_mount;
  2773. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  2774. (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
  2775. if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
  2776. (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
  2777. EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
  2778. EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
  2779. ext4_msg(sb, KERN_WARNING,
  2780. "feature flags set on rev 0 fs, "
  2781. "running e2fsck is recommended");
  2782. /*
  2783. * Check feature flags regardless of the revision level, since we
  2784. * previously didn't change the revision level when setting the flags,
  2785. * so there is a chance incompat flags are set on a rev 0 filesystem.
  2786. */
  2787. if (!ext4_feature_set_ok(sb, (sb->s_flags & MS_RDONLY)))
  2788. goto failed_mount;
  2789. blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
  2790. if (blocksize < EXT4_MIN_BLOCK_SIZE ||
  2791. blocksize > EXT4_MAX_BLOCK_SIZE) {
  2792. ext4_msg(sb, KERN_ERR,
  2793. "Unsupported filesystem blocksize %d", blocksize);
  2794. goto failed_mount;
  2795. }
  2796. if (sb->s_blocksize != blocksize) {
  2797. /* Validate the filesystem blocksize */
  2798. if (!sb_set_blocksize(sb, blocksize)) {
  2799. ext4_msg(sb, KERN_ERR, "bad block size %d",
  2800. blocksize);
  2801. goto failed_mount;
  2802. }
  2803. brelse(bh);
  2804. logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
  2805. offset = do_div(logical_sb_block, blocksize);
  2806. bh = sb_bread(sb, logical_sb_block);
  2807. if (!bh) {
  2808. ext4_msg(sb, KERN_ERR,
  2809. "Can't read superblock on 2nd try");
  2810. goto failed_mount;
  2811. }
  2812. es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
  2813. sbi->s_es = es;
  2814. if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
  2815. ext4_msg(sb, KERN_ERR,
  2816. "Magic mismatch, very weird!");
  2817. goto failed_mount;
  2818. }
  2819. }
  2820. has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
  2821. EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
  2822. sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
  2823. has_huge_files);
  2824. sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
  2825. if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
  2826. sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
  2827. sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
  2828. } else {
  2829. sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
  2830. sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
  2831. if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
  2832. (!is_power_of_2(sbi->s_inode_size)) ||
  2833. (sbi->s_inode_size > blocksize)) {
  2834. ext4_msg(sb, KERN_ERR,
  2835. "unsupported inode size: %d",
  2836. sbi->s_inode_size);
  2837. goto failed_mount;
  2838. }
  2839. if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
  2840. sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
  2841. }
  2842. sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
  2843. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
  2844. if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
  2845. sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
  2846. !is_power_of_2(sbi->s_desc_size)) {
  2847. ext4_msg(sb, KERN_ERR,
  2848. "unsupported descriptor size %lu",
  2849. sbi->s_desc_size);
  2850. goto failed_mount;
  2851. }
  2852. } else
  2853. sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
  2854. sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
  2855. sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
  2856. if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
  2857. goto cantfind_ext4;
  2858. sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
  2859. if (sbi->s_inodes_per_block == 0)
  2860. goto cantfind_ext4;
  2861. sbi->s_itb_per_group = sbi->s_inodes_per_group /
  2862. sbi->s_inodes_per_block;
  2863. sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
  2864. sbi->s_sbh = bh;
  2865. sbi->s_mount_state = le16_to_cpu(es->s_state);
  2866. sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
  2867. sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
  2868. for (i = 0; i < 4; i++)
  2869. sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
  2870. sbi->s_def_hash_version = es->s_def_hash_version;
  2871. i = le32_to_cpu(es->s_flags);
  2872. if (i & EXT2_FLAGS_UNSIGNED_HASH)
  2873. sbi->s_hash_unsigned = 3;
  2874. else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
  2875. #ifdef __CHAR_UNSIGNED__
  2876. es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
  2877. sbi->s_hash_unsigned = 3;
  2878. #else
  2879. es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
  2880. #endif
  2881. sb->s_dirt = 1;
  2882. }
  2883. if (sbi->s_blocks_per_group > blocksize * 8) {
  2884. ext4_msg(sb, KERN_ERR,
  2885. "#blocks per group too big: %lu",
  2886. sbi->s_blocks_per_group);
  2887. goto failed_mount;
  2888. }
  2889. if (sbi->s_inodes_per_group > blocksize * 8) {
  2890. ext4_msg(sb, KERN_ERR,
  2891. "#inodes per group too big: %lu",
  2892. sbi->s_inodes_per_group);
  2893. goto failed_mount;
  2894. }
  2895. /*
  2896. * Test whether we have more sectors than will fit in sector_t,
  2897. * and whether the max offset is addressable by the page cache.
  2898. */
  2899. err = generic_check_addressable(sb->s_blocksize_bits,
  2900. ext4_blocks_count(es));
  2901. if (err) {
  2902. ext4_msg(sb, KERN_ERR, "filesystem"
  2903. " too large to mount safely on this system");
  2904. if (sizeof(sector_t) < 8)
  2905. ext4_msg(sb, KERN_WARNING, "CONFIG_LBDAF not enabled");
  2906. ret = err;
  2907. goto failed_mount;
  2908. }
  2909. if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
  2910. goto cantfind_ext4;
  2911. /* check blocks count against device size */
  2912. blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
  2913. if (blocks_count && ext4_blocks_count(es) > blocks_count) {
  2914. ext4_msg(sb, KERN_WARNING, "bad geometry: block count %llu "
  2915. "exceeds size of device (%llu blocks)",
  2916. ext4_blocks_count(es), blocks_count);
  2917. goto failed_mount;
  2918. }
  2919. /*
  2920. * It makes no sense for the first data block to be beyond the end
  2921. * of the filesystem.
  2922. */
  2923. if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
  2924. ext4_msg(sb, KERN_WARNING, "bad geometry: first data"
  2925. "block %u is beyond end of filesystem (%llu)",
  2926. le32_to_cpu(es->s_first_data_block),
  2927. ext4_blocks_count(es));
  2928. goto failed_mount;
  2929. }
  2930. blocks_count = (ext4_blocks_count(es) -
  2931. le32_to_cpu(es->s_first_data_block) +
  2932. EXT4_BLOCKS_PER_GROUP(sb) - 1);
  2933. do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
  2934. if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
  2935. ext4_msg(sb, KERN_WARNING, "groups count too large: %u "
  2936. "(block count %llu, first data block %u, "
  2937. "blocks per group %lu)", sbi->s_groups_count,
  2938. ext4_blocks_count(es),
  2939. le32_to_cpu(es->s_first_data_block),
  2940. EXT4_BLOCKS_PER_GROUP(sb));
  2941. goto failed_mount;
  2942. }
  2943. sbi->s_groups_count = blocks_count;
  2944. sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
  2945. (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
  2946. db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
  2947. EXT4_DESC_PER_BLOCK(sb);
  2948. sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
  2949. GFP_KERNEL);
  2950. if (sbi->s_group_desc == NULL) {
  2951. ext4_msg(sb, KERN_ERR, "not enough memory");
  2952. goto failed_mount;
  2953. }
  2954. #ifdef CONFIG_PROC_FS
  2955. if (ext4_proc_root)
  2956. sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
  2957. #endif
  2958. bgl_lock_init(sbi->s_blockgroup_lock);
  2959. for (i = 0; i < db_count; i++) {
  2960. block = descriptor_loc(sb, logical_sb_block, i);
  2961. sbi->s_group_desc[i] = sb_bread(sb, block);
  2962. if (!sbi->s_group_desc[i]) {
  2963. ext4_msg(sb, KERN_ERR,
  2964. "can't read group descriptor %d", i);
  2965. db_count = i;
  2966. goto failed_mount2;
  2967. }
  2968. }
  2969. if (!ext4_check_descriptors(sb, &first_not_zeroed)) {
  2970. ext4_msg(sb, KERN_ERR, "group descriptors corrupted!");
  2971. goto failed_mount2;
  2972. }
  2973. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
  2974. if (!ext4_fill_flex_info(sb)) {
  2975. ext4_msg(sb, KERN_ERR,
  2976. "unable to initialize "
  2977. "flex_bg meta info!");
  2978. goto failed_mount2;
  2979. }
  2980. sbi->s_gdb_count = db_count;
  2981. get_random_bytes(&sbi->s_next_generation, sizeof(u32));
  2982. spin_lock_init(&sbi->s_next_gen_lock);
  2983. err = percpu_counter_init(&sbi->s_freeblocks_counter,
  2984. ext4_count_free_blocks(sb));
  2985. if (!err) {
  2986. err = percpu_counter_init(&sbi->s_freeinodes_counter,
  2987. ext4_count_free_inodes(sb));
  2988. }
  2989. if (!err) {
  2990. err = percpu_counter_init(&sbi->s_dirs_counter,
  2991. ext4_count_dirs(sb));
  2992. }
  2993. if (!err) {
  2994. err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
  2995. }
  2996. if (err) {
  2997. ext4_msg(sb, KERN_ERR, "insufficient memory");
  2998. goto failed_mount3;
  2999. }
  3000. sbi->s_stripe = ext4_get_stripe_size(sbi);
  3001. sbi->s_max_writeback_mb_bump = 128;
  3002. /*
  3003. * set up enough so that it can read an inode
  3004. */
  3005. if (!test_opt(sb, NOLOAD) &&
  3006. EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
  3007. sb->s_op = &ext4_sops;
  3008. else
  3009. sb->s_op = &ext4_nojournal_sops;
  3010. sb->s_export_op = &ext4_export_ops;
  3011. sb->s_xattr = ext4_xattr_handlers;
  3012. #ifdef CONFIG_QUOTA
  3013. sb->s_qcop = &ext4_qctl_operations;
  3014. sb->dq_op = &ext4_quota_operations;
  3015. #endif
  3016. INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
  3017. mutex_init(&sbi->s_orphan_lock);
  3018. mutex_init(&sbi->s_resize_lock);
  3019. sb->s_root = NULL;
  3020. needs_recovery = (es->s_last_orphan != 0 ||
  3021. EXT4_HAS_INCOMPAT_FEATURE(sb,
  3022. EXT4_FEATURE_INCOMPAT_RECOVER));
  3023. /*
  3024. * The first inode we look at is the journal inode. Don't try
  3025. * root first: it may be modified in the journal!
  3026. */
  3027. if (!test_opt(sb, NOLOAD) &&
  3028. EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
  3029. if (ext4_load_journal(sb, es, journal_devnum))
  3030. goto failed_mount3;
  3031. } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
  3032. EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
  3033. ext4_msg(sb, KERN_ERR, "required journal recovery "
  3034. "suppressed and not mounted read-only");
  3035. goto failed_mount_wq;
  3036. } else {
  3037. clear_opt(sbi->s_mount_opt, DATA_FLAGS);
  3038. set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
  3039. sbi->s_journal = NULL;
  3040. needs_recovery = 0;
  3041. goto no_journal;
  3042. }
  3043. if (ext4_blocks_count(es) > 0xffffffffULL &&
  3044. !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
  3045. JBD2_FEATURE_INCOMPAT_64BIT)) {
  3046. ext4_msg(sb, KERN_ERR, "Failed to set 64-bit journal feature");
  3047. goto failed_mount_wq;
  3048. }
  3049. if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
  3050. jbd2_journal_set_features(sbi->s_journal,
  3051. JBD2_FEATURE_COMPAT_CHECKSUM, 0,
  3052. JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
  3053. } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
  3054. jbd2_journal_set_features(sbi->s_journal,
  3055. JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
  3056. jbd2_journal_clear_features(sbi->s_journal, 0, 0,
  3057. JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
  3058. } else {
  3059. jbd2_journal_clear_features(sbi->s_journal,
  3060. JBD2_FEATURE_COMPAT_CHECKSUM, 0,
  3061. JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
  3062. }
  3063. /* We have now updated the journal if required, so we can
  3064. * validate the data journaling mode. */
  3065. switch (test_opt(sb, DATA_FLAGS)) {
  3066. case 0:
  3067. /* No mode set, assume a default based on the journal
  3068. * capabilities: ORDERED_DATA if the journal can
  3069. * cope, else JOURNAL_DATA
  3070. */
  3071. if (jbd2_journal_check_available_features
  3072. (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
  3073. set_opt(sbi->s_mount_opt, ORDERED_DATA);
  3074. else
  3075. set_opt(sbi->s_mount_opt, JOURNAL_DATA);
  3076. break;
  3077. case EXT4_MOUNT_ORDERED_DATA:
  3078. case EXT4_MOUNT_WRITEBACK_DATA:
  3079. if (!jbd2_journal_check_available_features
  3080. (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
  3081. ext4_msg(sb, KERN_ERR, "Journal does not support "
  3082. "requested data journaling mode");
  3083. goto failed_mount_wq;
  3084. }
  3085. default:
  3086. break;
  3087. }
  3088. set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
  3089. /*
  3090. * The journal may have updated the bg summary counts, so we
  3091. * need to update the global counters.
  3092. */
  3093. percpu_counter_set(&sbi->s_freeblocks_counter,
  3094. ext4_count_free_blocks(sb));
  3095. percpu_counter_set(&sbi->s_freeinodes_counter,
  3096. ext4_count_free_inodes(sb));
  3097. percpu_counter_set(&sbi->s_dirs_counter,
  3098. ext4_count_dirs(sb));
  3099. percpu_counter_set(&sbi->s_dirtyblocks_counter, 0);
  3100. no_journal:
  3101. EXT4_SB(sb)->dio_unwritten_wq = create_workqueue("ext4-dio-unwritten");
  3102. if (!EXT4_SB(sb)->dio_unwritten_wq) {
  3103. printk(KERN_ERR "EXT4-fs: failed to create DIO workqueue\n");
  3104. goto failed_mount_wq;
  3105. }
  3106. /*
  3107. * The jbd2_journal_load will have done any necessary log recovery,
  3108. * so we can safely mount the rest of the filesystem now.
  3109. */
  3110. root = ext4_iget(sb, EXT4_ROOT_INO);
  3111. if (IS_ERR(root)) {
  3112. ext4_msg(sb, KERN_ERR, "get root inode failed");
  3113. ret = PTR_ERR(root);
  3114. goto failed_mount4;
  3115. }
  3116. if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
  3117. iput(root);
  3118. ext4_msg(sb, KERN_ERR, "corrupt root inode, run e2fsck");
  3119. goto failed_mount4;
  3120. }
  3121. sb->s_root = d_alloc_root(root);
  3122. if (!sb->s_root) {
  3123. ext4_msg(sb, KERN_ERR, "get root dentry failed");
  3124. iput(root);
  3125. ret = -ENOMEM;
  3126. goto failed_mount4;
  3127. }
  3128. ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
  3129. /* determine the minimum size of new large inodes, if present */
  3130. if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
  3131. sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
  3132. EXT4_GOOD_OLD_INODE_SIZE;
  3133. if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
  3134. EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
  3135. if (sbi->s_want_extra_isize <
  3136. le16_to_cpu(es->s_want_extra_isize))
  3137. sbi->s_want_extra_isize =
  3138. le16_to_cpu(es->s_want_extra_isize);
  3139. if (sbi->s_want_extra_isize <
  3140. le16_to_cpu(es->s_min_extra_isize))
  3141. sbi->s_want_extra_isize =
  3142. le16_to_cpu(es->s_min_extra_isize);
  3143. }
  3144. }
  3145. /* Check if enough inode space is available */
  3146. if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
  3147. sbi->s_inode_size) {
  3148. sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
  3149. EXT4_GOOD_OLD_INODE_SIZE;
  3150. ext4_msg(sb, KERN_INFO, "required extra inode space not"
  3151. "available");
  3152. }
  3153. if (test_opt(sb, DELALLOC) &&
  3154. (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)) {
  3155. ext4_msg(sb, KERN_WARNING, "Ignoring delalloc option - "
  3156. "requested data journaling mode");
  3157. clear_opt(sbi->s_mount_opt, DELALLOC);
  3158. }
  3159. if (test_opt(sb, DIOREAD_NOLOCK)) {
  3160. if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
  3161. ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
  3162. "option - requested data journaling mode");
  3163. clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  3164. }
  3165. if (sb->s_blocksize < PAGE_SIZE) {
  3166. ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
  3167. "option - block size is too small");
  3168. clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
  3169. }
  3170. }
  3171. err = ext4_setup_system_zone(sb);
  3172. if (err) {
  3173. ext4_msg(sb, KERN_ERR, "failed to initialize system "
  3174. "zone (%d)", err);
  3175. goto failed_mount4;
  3176. }
  3177. ext4_ext_init(sb);
  3178. err = ext4_mb_init(sb, needs_recovery);
  3179. if (err) {
  3180. ext4_msg(sb, KERN_ERR, "failed to initialize mballoc (%d)",
  3181. err);
  3182. goto failed_mount4;
  3183. }
  3184. err = ext4_register_li_request(sb, first_not_zeroed);
  3185. if (err)
  3186. goto failed_mount4;
  3187. sbi->s_kobj.kset = ext4_kset;
  3188. init_completion(&sbi->s_kobj_unregister);
  3189. err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
  3190. "%s", sb->s_id);
  3191. if (err) {
  3192. ext4_mb_release(sb);
  3193. ext4_ext_release(sb);
  3194. goto failed_mount4;
  3195. };
  3196. EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
  3197. ext4_orphan_cleanup(sb, es);
  3198. EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
  3199. if (needs_recovery) {
  3200. ext4_msg(sb, KERN_INFO, "recovery complete");
  3201. ext4_mark_recovery_complete(sb, es);
  3202. }
  3203. if (EXT4_SB(sb)->s_journal) {
  3204. if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
  3205. descr = " journalled data mode";
  3206. else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
  3207. descr = " ordered data mode";
  3208. else
  3209. descr = " writeback data mode";
  3210. } else
  3211. descr = "out journal";
  3212. ext4_msg(sb, KERN_INFO, "mounted filesystem with%s. "
  3213. "Opts: %s%s%s", descr, sbi->s_es->s_mount_opts,
  3214. *sbi->s_es->s_mount_opts ? "; " : "", orig_data);
  3215. init_timer(&sbi->s_err_report);
  3216. sbi->s_err_report.function = print_daily_error_info;
  3217. sbi->s_err_report.data = (unsigned long) sb;
  3218. if (es->s_error_count)
  3219. mod_timer(&sbi->s_err_report, jiffies + 300*HZ); /* 5 minutes */
  3220. kfree(orig_data);
  3221. return 0;
  3222. cantfind_ext4:
  3223. if (!silent)
  3224. ext4_msg(sb, KERN_ERR, "VFS: Can't find ext4 filesystem");
  3225. goto failed_mount;
  3226. failed_mount4:
  3227. ext4_msg(sb, KERN_ERR, "mount failed");
  3228. destroy_workqueue(EXT4_SB(sb)->dio_unwritten_wq);
  3229. failed_mount_wq:
  3230. ext4_release_system_zone(sb);
  3231. if (sbi->s_journal) {
  3232. jbd2_journal_destroy(sbi->s_journal);
  3233. sbi->s_journal = NULL;
  3234. }
  3235. failed_mount3:
  3236. if (sbi->s_flex_groups) {
  3237. if (is_vmalloc_addr(sbi->s_flex_groups))
  3238. vfree(sbi->s_flex_groups);
  3239. else
  3240. kfree(sbi->s_flex_groups);
  3241. }
  3242. percpu_counter_destroy(&sbi->s_freeblocks_counter);
  3243. percpu_counter_destroy(&sbi->s_freeinodes_counter);
  3244. percpu_counter_destroy(&sbi->s_dirs_counter);
  3245. percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
  3246. failed_mount2:
  3247. for (i = 0; i < db_count; i++)
  3248. brelse(sbi->s_group_desc[i]);
  3249. kfree(sbi->s_group_desc);
  3250. failed_mount:
  3251. if (sbi->s_proc) {
  3252. remove_proc_entry(sb->s_id, ext4_proc_root);
  3253. }
  3254. #ifdef CONFIG_QUOTA
  3255. for (i = 0; i < MAXQUOTAS; i++)
  3256. kfree(sbi->s_qf_names[i]);
  3257. #endif
  3258. ext4_blkdev_remove(sbi);
  3259. brelse(bh);
  3260. out_fail:
  3261. sb->s_fs_info = NULL;
  3262. kfree(sbi->s_blockgroup_lock);
  3263. kfree(sbi);
  3264. out_free_orig:
  3265. kfree(orig_data);
  3266. return ret;
  3267. }
  3268. /*
  3269. * Setup any per-fs journal parameters now. We'll do this both on
  3270. * initial mount, once the journal has been initialised but before we've
  3271. * done any recovery; and again on any subsequent remount.
  3272. */
  3273. static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
  3274. {
  3275. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3276. journal->j_commit_interval = sbi->s_commit_interval;
  3277. journal->j_min_batch_time = sbi->s_min_batch_time;
  3278. journal->j_max_batch_time = sbi->s_max_batch_time;
  3279. write_lock(&journal->j_state_lock);
  3280. if (test_opt(sb, BARRIER))
  3281. journal->j_flags |= JBD2_BARRIER;
  3282. else
  3283. journal->j_flags &= ~JBD2_BARRIER;
  3284. if (test_opt(sb, DATA_ERR_ABORT))
  3285. journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
  3286. else
  3287. journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
  3288. write_unlock(&journal->j_state_lock);
  3289. }
  3290. static journal_t *ext4_get_journal(struct super_block *sb,
  3291. unsigned int journal_inum)
  3292. {
  3293. struct inode *journal_inode;
  3294. journal_t *journal;
  3295. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3296. /* First, test for the existence of a valid inode on disk. Bad
  3297. * things happen if we iget() an unused inode, as the subsequent
  3298. * iput() will try to delete it. */
  3299. journal_inode = ext4_iget(sb, journal_inum);
  3300. if (IS_ERR(journal_inode)) {
  3301. ext4_msg(sb, KERN_ERR, "no journal found");
  3302. return NULL;
  3303. }
  3304. if (!journal_inode->i_nlink) {
  3305. make_bad_inode(journal_inode);
  3306. iput(journal_inode);
  3307. ext4_msg(sb, KERN_ERR, "journal inode is deleted");
  3308. return NULL;
  3309. }
  3310. jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
  3311. journal_inode, journal_inode->i_size);
  3312. if (!S_ISREG(journal_inode->i_mode)) {
  3313. ext4_msg(sb, KERN_ERR, "invalid journal inode");
  3314. iput(journal_inode);
  3315. return NULL;
  3316. }
  3317. journal = jbd2_journal_init_inode(journal_inode);
  3318. if (!journal) {
  3319. ext4_msg(sb, KERN_ERR, "Could not load journal inode");
  3320. iput(journal_inode);
  3321. return NULL;
  3322. }
  3323. journal->j_private = sb;
  3324. ext4_init_journal_params(sb, journal);
  3325. return journal;
  3326. }
  3327. static journal_t *ext4_get_dev_journal(struct super_block *sb,
  3328. dev_t j_dev)
  3329. {
  3330. struct buffer_head *bh;
  3331. journal_t *journal;
  3332. ext4_fsblk_t start;
  3333. ext4_fsblk_t len;
  3334. int hblock, blocksize;
  3335. ext4_fsblk_t sb_block;
  3336. unsigned long offset;
  3337. struct ext4_super_block *es;
  3338. struct block_device *bdev;
  3339. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3340. bdev = ext4_blkdev_get(j_dev, sb);
  3341. if (bdev == NULL)
  3342. return NULL;
  3343. if (bd_claim(bdev, sb)) {
  3344. ext4_msg(sb, KERN_ERR,
  3345. "failed to claim external journal device");
  3346. blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
  3347. return NULL;
  3348. }
  3349. blocksize = sb->s_blocksize;
  3350. hblock = bdev_logical_block_size(bdev);
  3351. if (blocksize < hblock) {
  3352. ext4_msg(sb, KERN_ERR,
  3353. "blocksize too small for journal device");
  3354. goto out_bdev;
  3355. }
  3356. sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
  3357. offset = EXT4_MIN_BLOCK_SIZE % blocksize;
  3358. set_blocksize(bdev, blocksize);
  3359. if (!(bh = __bread(bdev, sb_block, blocksize))) {
  3360. ext4_msg(sb, KERN_ERR, "couldn't read superblock of "
  3361. "external journal");
  3362. goto out_bdev;
  3363. }
  3364. es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
  3365. if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
  3366. !(le32_to_cpu(es->s_feature_incompat) &
  3367. EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
  3368. ext4_msg(sb, KERN_ERR, "external journal has "
  3369. "bad superblock");
  3370. brelse(bh);
  3371. goto out_bdev;
  3372. }
  3373. if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
  3374. ext4_msg(sb, KERN_ERR, "journal UUID does not match");
  3375. brelse(bh);
  3376. goto out_bdev;
  3377. }
  3378. len = ext4_blocks_count(es);
  3379. start = sb_block + 1;
  3380. brelse(bh); /* we're done with the superblock */
  3381. journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
  3382. start, len, blocksize);
  3383. if (!journal) {
  3384. ext4_msg(sb, KERN_ERR, "failed to create device journal");
  3385. goto out_bdev;
  3386. }
  3387. journal->j_private = sb;
  3388. ll_rw_block(READ, 1, &journal->j_sb_buffer);
  3389. wait_on_buffer(journal->j_sb_buffer);
  3390. if (!buffer_uptodate(journal->j_sb_buffer)) {
  3391. ext4_msg(sb, KERN_ERR, "I/O error on journal device");
  3392. goto out_journal;
  3393. }
  3394. if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
  3395. ext4_msg(sb, KERN_ERR, "External journal has more than one "
  3396. "user (unsupported) - %d",
  3397. be32_to_cpu(journal->j_superblock->s_nr_users));
  3398. goto out_journal;
  3399. }
  3400. EXT4_SB(sb)->journal_bdev = bdev;
  3401. ext4_init_journal_params(sb, journal);
  3402. return journal;
  3403. out_journal:
  3404. jbd2_journal_destroy(journal);
  3405. out_bdev:
  3406. ext4_blkdev_put(bdev);
  3407. return NULL;
  3408. }
  3409. static int ext4_load_journal(struct super_block *sb,
  3410. struct ext4_super_block *es,
  3411. unsigned long journal_devnum)
  3412. {
  3413. journal_t *journal;
  3414. unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
  3415. dev_t journal_dev;
  3416. int err = 0;
  3417. int really_read_only;
  3418. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3419. if (journal_devnum &&
  3420. journal_devnum != le32_to_cpu(es->s_journal_dev)) {
  3421. ext4_msg(sb, KERN_INFO, "external journal device major/minor "
  3422. "numbers have changed");
  3423. journal_dev = new_decode_dev(journal_devnum);
  3424. } else
  3425. journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
  3426. really_read_only = bdev_read_only(sb->s_bdev);
  3427. /*
  3428. * Are we loading a blank journal or performing recovery after a
  3429. * crash? For recovery, we need to check in advance whether we
  3430. * can get read-write access to the device.
  3431. */
  3432. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
  3433. if (sb->s_flags & MS_RDONLY) {
  3434. ext4_msg(sb, KERN_INFO, "INFO: recovery "
  3435. "required on readonly filesystem");
  3436. if (really_read_only) {
  3437. ext4_msg(sb, KERN_ERR, "write access "
  3438. "unavailable, cannot proceed");
  3439. return -EROFS;
  3440. }
  3441. ext4_msg(sb, KERN_INFO, "write access will "
  3442. "be enabled during recovery");
  3443. }
  3444. }
  3445. if (journal_inum && journal_dev) {
  3446. ext4_msg(sb, KERN_ERR, "filesystem has both journal "
  3447. "and inode journals!");
  3448. return -EINVAL;
  3449. }
  3450. if (journal_inum) {
  3451. if (!(journal = ext4_get_journal(sb, journal_inum)))
  3452. return -EINVAL;
  3453. } else {
  3454. if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
  3455. return -EINVAL;
  3456. }
  3457. if (!(journal->j_flags & JBD2_BARRIER))
  3458. ext4_msg(sb, KERN_INFO, "barriers disabled");
  3459. if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
  3460. err = jbd2_journal_update_format(journal);
  3461. if (err) {
  3462. ext4_msg(sb, KERN_ERR, "error updating journal");
  3463. jbd2_journal_destroy(journal);
  3464. return err;
  3465. }
  3466. }
  3467. if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
  3468. err = jbd2_journal_wipe(journal, !really_read_only);
  3469. if (!err) {
  3470. char *save = kmalloc(EXT4_S_ERR_LEN, GFP_KERNEL);
  3471. if (save)
  3472. memcpy(save, ((char *) es) +
  3473. EXT4_S_ERR_START, EXT4_S_ERR_LEN);
  3474. err = jbd2_journal_load(journal);
  3475. if (save)
  3476. memcpy(((char *) es) + EXT4_S_ERR_START,
  3477. save, EXT4_S_ERR_LEN);
  3478. kfree(save);
  3479. }
  3480. if (err) {
  3481. ext4_msg(sb, KERN_ERR, "error loading journal");
  3482. jbd2_journal_destroy(journal);
  3483. return err;
  3484. }
  3485. EXT4_SB(sb)->s_journal = journal;
  3486. ext4_clear_journal_err(sb, es);
  3487. if (!really_read_only && journal_devnum &&
  3488. journal_devnum != le32_to_cpu(es->s_journal_dev)) {
  3489. es->s_journal_dev = cpu_to_le32(journal_devnum);
  3490. /* Make sure we flush the recovery flag to disk. */
  3491. ext4_commit_super(sb, 1);
  3492. }
  3493. return 0;
  3494. }
  3495. static int ext4_commit_super(struct super_block *sb, int sync)
  3496. {
  3497. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  3498. struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
  3499. int error = 0;
  3500. if (!sbh)
  3501. return error;
  3502. if (buffer_write_io_error(sbh)) {
  3503. /*
  3504. * Oh, dear. A previous attempt to write the
  3505. * superblock failed. This could happen because the
  3506. * USB device was yanked out. Or it could happen to
  3507. * be a transient write error and maybe the block will
  3508. * be remapped. Nothing we can do but to retry the
  3509. * write and hope for the best.
  3510. */
  3511. ext4_msg(sb, KERN_ERR, "previous I/O error to "
  3512. "superblock detected");
  3513. clear_buffer_write_io_error(sbh);
  3514. set_buffer_uptodate(sbh);
  3515. }
  3516. /*
  3517. * If the file system is mounted read-only, don't update the
  3518. * superblock write time. This avoids updating the superblock
  3519. * write time when we are mounting the root file system
  3520. * read/only but we need to replay the journal; at that point,
  3521. * for people who are east of GMT and who make their clock
  3522. * tick in localtime for Windows bug-for-bug compatibility,
  3523. * the clock is set in the future, and this will cause e2fsck
  3524. * to complain and force a full file system check.
  3525. */
  3526. if (!(sb->s_flags & MS_RDONLY))
  3527. es->s_wtime = cpu_to_le32(get_seconds());
  3528. if (sb->s_bdev->bd_part)
  3529. es->s_kbytes_written =
  3530. cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
  3531. ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
  3532. EXT4_SB(sb)->s_sectors_written_start) >> 1));
  3533. else
  3534. es->s_kbytes_written =
  3535. cpu_to_le64(EXT4_SB(sb)->s_kbytes_written);
  3536. ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
  3537. &EXT4_SB(sb)->s_freeblocks_counter));
  3538. es->s_free_inodes_count =
  3539. cpu_to_le32(percpu_counter_sum_positive(
  3540. &EXT4_SB(sb)->s_freeinodes_counter));
  3541. sb->s_dirt = 0;
  3542. BUFFER_TRACE(sbh, "marking dirty");
  3543. mark_buffer_dirty(sbh);
  3544. if (sync) {
  3545. error = sync_dirty_buffer(sbh);
  3546. if (error)
  3547. return error;
  3548. error = buffer_write_io_error(sbh);
  3549. if (error) {
  3550. ext4_msg(sb, KERN_ERR, "I/O error while writing "
  3551. "superblock");
  3552. clear_buffer_write_io_error(sbh);
  3553. set_buffer_uptodate(sbh);
  3554. }
  3555. }
  3556. return error;
  3557. }
  3558. /*
  3559. * Have we just finished recovery? If so, and if we are mounting (or
  3560. * remounting) the filesystem readonly, then we will end up with a
  3561. * consistent fs on disk. Record that fact.
  3562. */
  3563. static void ext4_mark_recovery_complete(struct super_block *sb,
  3564. struct ext4_super_block *es)
  3565. {
  3566. journal_t *journal = EXT4_SB(sb)->s_journal;
  3567. if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
  3568. BUG_ON(journal != NULL);
  3569. return;
  3570. }
  3571. jbd2_journal_lock_updates(journal);
  3572. if (jbd2_journal_flush(journal) < 0)
  3573. goto out;
  3574. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
  3575. sb->s_flags & MS_RDONLY) {
  3576. EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  3577. ext4_commit_super(sb, 1);
  3578. }
  3579. out:
  3580. jbd2_journal_unlock_updates(journal);
  3581. }
  3582. /*
  3583. * If we are mounting (or read-write remounting) a filesystem whose journal
  3584. * has recorded an error from a previous lifetime, move that error to the
  3585. * main filesystem now.
  3586. */
  3587. static void ext4_clear_journal_err(struct super_block *sb,
  3588. struct ext4_super_block *es)
  3589. {
  3590. journal_t *journal;
  3591. int j_errno;
  3592. const char *errstr;
  3593. BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
  3594. journal = EXT4_SB(sb)->s_journal;
  3595. /*
  3596. * Now check for any error status which may have been recorded in the
  3597. * journal by a prior ext4_error() or ext4_abort()
  3598. */
  3599. j_errno = jbd2_journal_errno(journal);
  3600. if (j_errno) {
  3601. char nbuf[16];
  3602. errstr = ext4_decode_error(sb, j_errno, nbuf);
  3603. ext4_warning(sb, "Filesystem error recorded "
  3604. "from previous mount: %s", errstr);
  3605. ext4_warning(sb, "Marking fs in need of filesystem check.");
  3606. EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
  3607. es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
  3608. ext4_commit_super(sb, 1);
  3609. jbd2_journal_clear_err(journal);
  3610. }
  3611. }
  3612. /*
  3613. * Force the running and committing transactions to commit,
  3614. * and wait on the commit.
  3615. */
  3616. int ext4_force_commit(struct super_block *sb)
  3617. {
  3618. journal_t *journal;
  3619. int ret = 0;
  3620. if (sb->s_flags & MS_RDONLY)
  3621. return 0;
  3622. journal = EXT4_SB(sb)->s_journal;
  3623. if (journal) {
  3624. vfs_check_frozen(sb, SB_FREEZE_TRANS);
  3625. ret = ext4_journal_force_commit(journal);
  3626. }
  3627. return ret;
  3628. }
  3629. static void ext4_write_super(struct super_block *sb)
  3630. {
  3631. lock_super(sb);
  3632. ext4_commit_super(sb, 1);
  3633. unlock_super(sb);
  3634. }
  3635. static int ext4_sync_fs(struct super_block *sb, int wait)
  3636. {
  3637. int ret = 0;
  3638. tid_t target;
  3639. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3640. trace_ext4_sync_fs(sb, wait);
  3641. flush_workqueue(sbi->dio_unwritten_wq);
  3642. if (jbd2_journal_start_commit(sbi->s_journal, &target)) {
  3643. if (wait)
  3644. jbd2_log_wait_commit(sbi->s_journal, target);
  3645. }
  3646. return ret;
  3647. }
  3648. /*
  3649. * LVM calls this function before a (read-only) snapshot is created. This
  3650. * gives us a chance to flush the journal completely and mark the fs clean.
  3651. */
  3652. static int ext4_freeze(struct super_block *sb)
  3653. {
  3654. int error = 0;
  3655. journal_t *journal;
  3656. if (sb->s_flags & MS_RDONLY)
  3657. return 0;
  3658. journal = EXT4_SB(sb)->s_journal;
  3659. /* Now we set up the journal barrier. */
  3660. jbd2_journal_lock_updates(journal);
  3661. /*
  3662. * Don't clear the needs_recovery flag if we failed to flush
  3663. * the journal.
  3664. */
  3665. error = jbd2_journal_flush(journal);
  3666. if (error < 0)
  3667. goto out;
  3668. /* Journal blocked and flushed, clear needs_recovery flag. */
  3669. EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  3670. error = ext4_commit_super(sb, 1);
  3671. out:
  3672. /* we rely on s_frozen to stop further updates */
  3673. jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
  3674. return error;
  3675. }
  3676. /*
  3677. * Called by LVM after the snapshot is done. We need to reset the RECOVER
  3678. * flag here, even though the filesystem is not technically dirty yet.
  3679. */
  3680. static int ext4_unfreeze(struct super_block *sb)
  3681. {
  3682. if (sb->s_flags & MS_RDONLY)
  3683. return 0;
  3684. lock_super(sb);
  3685. /* Reset the needs_recovery flag before the fs is unlocked. */
  3686. EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
  3687. ext4_commit_super(sb, 1);
  3688. unlock_super(sb);
  3689. return 0;
  3690. }
  3691. static int ext4_remount(struct super_block *sb, int *flags, char *data)
  3692. {
  3693. struct ext4_super_block *es;
  3694. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3695. ext4_fsblk_t n_blocks_count = 0;
  3696. unsigned long old_sb_flags;
  3697. struct ext4_mount_options old_opts;
  3698. int enable_quota = 0;
  3699. ext4_group_t g;
  3700. unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
  3701. int err;
  3702. #ifdef CONFIG_QUOTA
  3703. int i;
  3704. #endif
  3705. char *orig_data = kstrdup(data, GFP_KERNEL);
  3706. /* Store the original options */
  3707. lock_super(sb);
  3708. old_sb_flags = sb->s_flags;
  3709. old_opts.s_mount_opt = sbi->s_mount_opt;
  3710. old_opts.s_resuid = sbi->s_resuid;
  3711. old_opts.s_resgid = sbi->s_resgid;
  3712. old_opts.s_commit_interval = sbi->s_commit_interval;
  3713. old_opts.s_min_batch_time = sbi->s_min_batch_time;
  3714. old_opts.s_max_batch_time = sbi->s_max_batch_time;
  3715. #ifdef CONFIG_QUOTA
  3716. old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
  3717. for (i = 0; i < MAXQUOTAS; i++)
  3718. old_opts.s_qf_names[i] = sbi->s_qf_names[i];
  3719. #endif
  3720. if (sbi->s_journal && sbi->s_journal->j_task->io_context)
  3721. journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
  3722. /*
  3723. * Allow the "check" option to be passed as a remount option.
  3724. */
  3725. if (!parse_options(data, sb, NULL, &journal_ioprio,
  3726. &n_blocks_count, 1)) {
  3727. err = -EINVAL;
  3728. goto restore_opts;
  3729. }
  3730. if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED)
  3731. ext4_abort(sb, "Abort forced by user");
  3732. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  3733. (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
  3734. es = sbi->s_es;
  3735. if (sbi->s_journal) {
  3736. ext4_init_journal_params(sb, sbi->s_journal);
  3737. set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
  3738. }
  3739. if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
  3740. n_blocks_count > ext4_blocks_count(es)) {
  3741. if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED) {
  3742. err = -EROFS;
  3743. goto restore_opts;
  3744. }
  3745. if (*flags & MS_RDONLY) {
  3746. err = dquot_suspend(sb, -1);
  3747. if (err < 0)
  3748. goto restore_opts;
  3749. /*
  3750. * First of all, the unconditional stuff we have to do
  3751. * to disable replay of the journal when we next remount
  3752. */
  3753. sb->s_flags |= MS_RDONLY;
  3754. /*
  3755. * OK, test if we are remounting a valid rw partition
  3756. * readonly, and if so set the rdonly flag and then
  3757. * mark the partition as valid again.
  3758. */
  3759. if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
  3760. (sbi->s_mount_state & EXT4_VALID_FS))
  3761. es->s_state = cpu_to_le16(sbi->s_mount_state);
  3762. if (sbi->s_journal)
  3763. ext4_mark_recovery_complete(sb, es);
  3764. } else {
  3765. /* Make sure we can mount this feature set readwrite */
  3766. if (!ext4_feature_set_ok(sb, 0)) {
  3767. err = -EROFS;
  3768. goto restore_opts;
  3769. }
  3770. /*
  3771. * Make sure the group descriptor checksums
  3772. * are sane. If they aren't, refuse to remount r/w.
  3773. */
  3774. for (g = 0; g < sbi->s_groups_count; g++) {
  3775. struct ext4_group_desc *gdp =
  3776. ext4_get_group_desc(sb, g, NULL);
  3777. if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
  3778. ext4_msg(sb, KERN_ERR,
  3779. "ext4_remount: Checksum for group %u failed (%u!=%u)",
  3780. g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
  3781. le16_to_cpu(gdp->bg_checksum));
  3782. err = -EINVAL;
  3783. goto restore_opts;
  3784. }
  3785. }
  3786. /*
  3787. * If we have an unprocessed orphan list hanging
  3788. * around from a previously readonly bdev mount,
  3789. * require a full umount/remount for now.
  3790. */
  3791. if (es->s_last_orphan) {
  3792. ext4_msg(sb, KERN_WARNING, "Couldn't "
  3793. "remount RDWR because of unprocessed "
  3794. "orphan inode list. Please "
  3795. "umount/remount instead");
  3796. err = -EINVAL;
  3797. goto restore_opts;
  3798. }
  3799. /*
  3800. * Mounting a RDONLY partition read-write, so reread
  3801. * and store the current valid flag. (It may have
  3802. * been changed by e2fsck since we originally mounted
  3803. * the partition.)
  3804. */
  3805. if (sbi->s_journal)
  3806. ext4_clear_journal_err(sb, es);
  3807. sbi->s_mount_state = le16_to_cpu(es->s_state);
  3808. if ((err = ext4_group_extend(sb, es, n_blocks_count)))
  3809. goto restore_opts;
  3810. if (!ext4_setup_super(sb, es, 0))
  3811. sb->s_flags &= ~MS_RDONLY;
  3812. enable_quota = 1;
  3813. }
  3814. }
  3815. /*
  3816. * Reinitialize lazy itable initialization thread based on
  3817. * current settings
  3818. */
  3819. if ((sb->s_flags & MS_RDONLY) || !test_opt(sb, INIT_INODE_TABLE))
  3820. ext4_unregister_li_request(sb);
  3821. else {
  3822. ext4_group_t first_not_zeroed;
  3823. first_not_zeroed = ext4_has_uninit_itable(sb);
  3824. ext4_register_li_request(sb, first_not_zeroed);
  3825. }
  3826. ext4_setup_system_zone(sb);
  3827. if (sbi->s_journal == NULL)
  3828. ext4_commit_super(sb, 1);
  3829. #ifdef CONFIG_QUOTA
  3830. /* Release old quota file names */
  3831. for (i = 0; i < MAXQUOTAS; i++)
  3832. if (old_opts.s_qf_names[i] &&
  3833. old_opts.s_qf_names[i] != sbi->s_qf_names[i])
  3834. kfree(old_opts.s_qf_names[i]);
  3835. #endif
  3836. unlock_super(sb);
  3837. if (enable_quota)
  3838. dquot_resume(sb, -1);
  3839. ext4_msg(sb, KERN_INFO, "re-mounted. Opts: %s", orig_data);
  3840. kfree(orig_data);
  3841. return 0;
  3842. restore_opts:
  3843. sb->s_flags = old_sb_flags;
  3844. sbi->s_mount_opt = old_opts.s_mount_opt;
  3845. sbi->s_resuid = old_opts.s_resuid;
  3846. sbi->s_resgid = old_opts.s_resgid;
  3847. sbi->s_commit_interval = old_opts.s_commit_interval;
  3848. sbi->s_min_batch_time = old_opts.s_min_batch_time;
  3849. sbi->s_max_batch_time = old_opts.s_max_batch_time;
  3850. #ifdef CONFIG_QUOTA
  3851. sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
  3852. for (i = 0; i < MAXQUOTAS; i++) {
  3853. if (sbi->s_qf_names[i] &&
  3854. old_opts.s_qf_names[i] != sbi->s_qf_names[i])
  3855. kfree(sbi->s_qf_names[i]);
  3856. sbi->s_qf_names[i] = old_opts.s_qf_names[i];
  3857. }
  3858. #endif
  3859. unlock_super(sb);
  3860. kfree(orig_data);
  3861. return err;
  3862. }
  3863. static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
  3864. {
  3865. struct super_block *sb = dentry->d_sb;
  3866. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3867. struct ext4_super_block *es = sbi->s_es;
  3868. u64 fsid;
  3869. if (test_opt(sb, MINIX_DF)) {
  3870. sbi->s_overhead_last = 0;
  3871. } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
  3872. ext4_group_t i, ngroups = ext4_get_groups_count(sb);
  3873. ext4_fsblk_t overhead = 0;
  3874. /*
  3875. * Compute the overhead (FS structures). This is constant
  3876. * for a given filesystem unless the number of block groups
  3877. * changes so we cache the previous value until it does.
  3878. */
  3879. /*
  3880. * All of the blocks before first_data_block are
  3881. * overhead
  3882. */
  3883. overhead = le32_to_cpu(es->s_first_data_block);
  3884. /*
  3885. * Add the overhead attributed to the superblock and
  3886. * block group descriptors. If the sparse superblocks
  3887. * feature is turned on, then not all groups have this.
  3888. */
  3889. for (i = 0; i < ngroups; i++) {
  3890. overhead += ext4_bg_has_super(sb, i) +
  3891. ext4_bg_num_gdb(sb, i);
  3892. cond_resched();
  3893. }
  3894. /*
  3895. * Every block group has an inode bitmap, a block
  3896. * bitmap, and an inode table.
  3897. */
  3898. overhead += ngroups * (2 + sbi->s_itb_per_group);
  3899. sbi->s_overhead_last = overhead;
  3900. smp_wmb();
  3901. sbi->s_blocks_last = ext4_blocks_count(es);
  3902. }
  3903. buf->f_type = EXT4_SUPER_MAGIC;
  3904. buf->f_bsize = sb->s_blocksize;
  3905. buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
  3906. buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
  3907. percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
  3908. buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
  3909. if (buf->f_bfree < ext4_r_blocks_count(es))
  3910. buf->f_bavail = 0;
  3911. buf->f_files = le32_to_cpu(es->s_inodes_count);
  3912. buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
  3913. buf->f_namelen = EXT4_NAME_LEN;
  3914. fsid = le64_to_cpup((void *)es->s_uuid) ^
  3915. le64_to_cpup((void *)es->s_uuid + sizeof(u64));
  3916. buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
  3917. buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
  3918. return 0;
  3919. }
  3920. /* Helper function for writing quotas on sync - we need to start transaction
  3921. * before quota file is locked for write. Otherwise the are possible deadlocks:
  3922. * Process 1 Process 2
  3923. * ext4_create() quota_sync()
  3924. * jbd2_journal_start() write_dquot()
  3925. * dquot_initialize() down(dqio_mutex)
  3926. * down(dqio_mutex) jbd2_journal_start()
  3927. *
  3928. */
  3929. #ifdef CONFIG_QUOTA
  3930. static inline struct inode *dquot_to_inode(struct dquot *dquot)
  3931. {
  3932. return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
  3933. }
  3934. static int ext4_write_dquot(struct dquot *dquot)
  3935. {
  3936. int ret, err;
  3937. handle_t *handle;
  3938. struct inode *inode;
  3939. inode = dquot_to_inode(dquot);
  3940. handle = ext4_journal_start(inode,
  3941. EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
  3942. if (IS_ERR(handle))
  3943. return PTR_ERR(handle);
  3944. ret = dquot_commit(dquot);
  3945. err = ext4_journal_stop(handle);
  3946. if (!ret)
  3947. ret = err;
  3948. return ret;
  3949. }
  3950. static int ext4_acquire_dquot(struct dquot *dquot)
  3951. {
  3952. int ret, err;
  3953. handle_t *handle;
  3954. handle = ext4_journal_start(dquot_to_inode(dquot),
  3955. EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
  3956. if (IS_ERR(handle))
  3957. return PTR_ERR(handle);
  3958. ret = dquot_acquire(dquot);
  3959. err = ext4_journal_stop(handle);
  3960. if (!ret)
  3961. ret = err;
  3962. return ret;
  3963. }
  3964. static int ext4_release_dquot(struct dquot *dquot)
  3965. {
  3966. int ret, err;
  3967. handle_t *handle;
  3968. handle = ext4_journal_start(dquot_to_inode(dquot),
  3969. EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
  3970. if (IS_ERR(handle)) {
  3971. /* Release dquot anyway to avoid endless cycle in dqput() */
  3972. dquot_release(dquot);
  3973. return PTR_ERR(handle);
  3974. }
  3975. ret = dquot_release(dquot);
  3976. err = ext4_journal_stop(handle);
  3977. if (!ret)
  3978. ret = err;
  3979. return ret;
  3980. }
  3981. static int ext4_mark_dquot_dirty(struct dquot *dquot)
  3982. {
  3983. /* Are we journaling quotas? */
  3984. if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
  3985. EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
  3986. dquot_mark_dquot_dirty(dquot);
  3987. return ext4_write_dquot(dquot);
  3988. } else {
  3989. return dquot_mark_dquot_dirty(dquot);
  3990. }
  3991. }
  3992. static int ext4_write_info(struct super_block *sb, int type)
  3993. {
  3994. int ret, err;
  3995. handle_t *handle;
  3996. /* Data block + inode block */
  3997. handle = ext4_journal_start(sb->s_root->d_inode, 2);
  3998. if (IS_ERR(handle))
  3999. return PTR_ERR(handle);
  4000. ret = dquot_commit_info(sb, type);
  4001. err = ext4_journal_stop(handle);
  4002. if (!ret)
  4003. ret = err;
  4004. return ret;
  4005. }
  4006. /*
  4007. * Turn on quotas during mount time - we need to find
  4008. * the quota file and such...
  4009. */
  4010. static int ext4_quota_on_mount(struct super_block *sb, int type)
  4011. {
  4012. return dquot_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
  4013. EXT4_SB(sb)->s_jquota_fmt, type);
  4014. }
  4015. /*
  4016. * Standard function to be called on quota_on
  4017. */
  4018. static int ext4_quota_on(struct super_block *sb, int type, int format_id,
  4019. char *name)
  4020. {
  4021. int err;
  4022. struct path path;
  4023. if (!test_opt(sb, QUOTA))
  4024. return -EINVAL;
  4025. err = kern_path(name, LOOKUP_FOLLOW, &path);
  4026. if (err)
  4027. return err;
  4028. /* Quotafile not on the same filesystem? */
  4029. if (path.mnt->mnt_sb != sb) {
  4030. path_put(&path);
  4031. return -EXDEV;
  4032. }
  4033. /* Journaling quota? */
  4034. if (EXT4_SB(sb)->s_qf_names[type]) {
  4035. /* Quotafile not in fs root? */
  4036. if (path.dentry->d_parent != sb->s_root)
  4037. ext4_msg(sb, KERN_WARNING,
  4038. "Quota file not on filesystem root. "
  4039. "Journaled quota will not work");
  4040. }
  4041. /*
  4042. * When we journal data on quota file, we have to flush journal to see
  4043. * all updates to the file when we bypass pagecache...
  4044. */
  4045. if (EXT4_SB(sb)->s_journal &&
  4046. ext4_should_journal_data(path.dentry->d_inode)) {
  4047. /*
  4048. * We don't need to lock updates but journal_flush() could
  4049. * otherwise be livelocked...
  4050. */
  4051. jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
  4052. err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
  4053. jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
  4054. if (err) {
  4055. path_put(&path);
  4056. return err;
  4057. }
  4058. }
  4059. err = dquot_quota_on_path(sb, type, format_id, &path);
  4060. path_put(&path);
  4061. return err;
  4062. }
  4063. static int ext4_quota_off(struct super_block *sb, int type)
  4064. {
  4065. /* Force all delayed allocation blocks to be allocated.
  4066. * Caller already holds s_umount sem */
  4067. if (test_opt(sb, DELALLOC))
  4068. sync_filesystem(sb);
  4069. return dquot_quota_off(sb, type);
  4070. }
  4071. /* Read data from quotafile - avoid pagecache and such because we cannot afford
  4072. * acquiring the locks... As quota files are never truncated and quota code
  4073. * itself serializes the operations (and noone else should touch the files)
  4074. * we don't have to be afraid of races */
  4075. static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
  4076. size_t len, loff_t off)
  4077. {
  4078. struct inode *inode = sb_dqopt(sb)->files[type];
  4079. ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
  4080. int err = 0;
  4081. int offset = off & (sb->s_blocksize - 1);
  4082. int tocopy;
  4083. size_t toread;
  4084. struct buffer_head *bh;
  4085. loff_t i_size = i_size_read(inode);
  4086. if (off > i_size)
  4087. return 0;
  4088. if (off+len > i_size)
  4089. len = i_size-off;
  4090. toread = len;
  4091. while (toread > 0) {
  4092. tocopy = sb->s_blocksize - offset < toread ?
  4093. sb->s_blocksize - offset : toread;
  4094. bh = ext4_bread(NULL, inode, blk, 0, &err);
  4095. if (err)
  4096. return err;
  4097. if (!bh) /* A hole? */
  4098. memset(data, 0, tocopy);
  4099. else
  4100. memcpy(data, bh->b_data+offset, tocopy);
  4101. brelse(bh);
  4102. offset = 0;
  4103. toread -= tocopy;
  4104. data += tocopy;
  4105. blk++;
  4106. }
  4107. return len;
  4108. }
  4109. /* Write to quotafile (we know the transaction is already started and has
  4110. * enough credits) */
  4111. static ssize_t ext4_quota_write(struct super_block *sb, int type,
  4112. const char *data, size_t len, loff_t off)
  4113. {
  4114. struct inode *inode = sb_dqopt(sb)->files[type];
  4115. ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
  4116. int err = 0;
  4117. int offset = off & (sb->s_blocksize - 1);
  4118. struct buffer_head *bh;
  4119. handle_t *handle = journal_current_handle();
  4120. if (EXT4_SB(sb)->s_journal && !handle) {
  4121. ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
  4122. " cancelled because transaction is not started",
  4123. (unsigned long long)off, (unsigned long long)len);
  4124. return -EIO;
  4125. }
  4126. /*
  4127. * Since we account only one data block in transaction credits,
  4128. * then it is impossible to cross a block boundary.
  4129. */
  4130. if (sb->s_blocksize - offset < len) {
  4131. ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
  4132. " cancelled because not block aligned",
  4133. (unsigned long long)off, (unsigned long long)len);
  4134. return -EIO;
  4135. }
  4136. mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
  4137. bh = ext4_bread(handle, inode, blk, 1, &err);
  4138. if (!bh)
  4139. goto out;
  4140. err = ext4_journal_get_write_access(handle, bh);
  4141. if (err) {
  4142. brelse(bh);
  4143. goto out;
  4144. }
  4145. lock_buffer(bh);
  4146. memcpy(bh->b_data+offset, data, len);
  4147. flush_dcache_page(bh->b_page);
  4148. unlock_buffer(bh);
  4149. err = ext4_handle_dirty_metadata(handle, NULL, bh);
  4150. brelse(bh);
  4151. out:
  4152. if (err) {
  4153. mutex_unlock(&inode->i_mutex);
  4154. return err;
  4155. }
  4156. if (inode->i_size < off + len) {
  4157. i_size_write(inode, off + len);
  4158. EXT4_I(inode)->i_disksize = inode->i_size;
  4159. }
  4160. inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  4161. ext4_mark_inode_dirty(handle, inode);
  4162. mutex_unlock(&inode->i_mutex);
  4163. return len;
  4164. }
  4165. #endif
  4166. static struct dentry *ext4_mount(struct file_system_type *fs_type, int flags,
  4167. const char *dev_name, void *data)
  4168. {
  4169. return mount_bdev(fs_type, flags, dev_name, data, ext4_fill_super);
  4170. }
  4171. #if !defined(CONFIG_EXT2_FS) && !defined(CONFIG_EXT2_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
  4172. static struct file_system_type ext2_fs_type = {
  4173. .owner = THIS_MODULE,
  4174. .name = "ext2",
  4175. .mount = ext4_mount,
  4176. .kill_sb = kill_block_super,
  4177. .fs_flags = FS_REQUIRES_DEV,
  4178. };
  4179. static inline void register_as_ext2(void)
  4180. {
  4181. int err = register_filesystem(&ext2_fs_type);
  4182. if (err)
  4183. printk(KERN_WARNING
  4184. "EXT4-fs: Unable to register as ext2 (%d)\n", err);
  4185. }
  4186. static inline void unregister_as_ext2(void)
  4187. {
  4188. unregister_filesystem(&ext2_fs_type);
  4189. }
  4190. MODULE_ALIAS("ext2");
  4191. #else
  4192. static inline void register_as_ext2(void) { }
  4193. static inline void unregister_as_ext2(void) { }
  4194. #endif
  4195. #if !defined(CONFIG_EXT3_FS) && !defined(CONFIG_EXT3_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
  4196. static inline void register_as_ext3(void)
  4197. {
  4198. int err = register_filesystem(&ext3_fs_type);
  4199. if (err)
  4200. printk(KERN_WARNING
  4201. "EXT4-fs: Unable to register as ext3 (%d)\n", err);
  4202. }
  4203. static inline void unregister_as_ext3(void)
  4204. {
  4205. unregister_filesystem(&ext3_fs_type);
  4206. }
  4207. MODULE_ALIAS("ext3");
  4208. #else
  4209. static inline void register_as_ext3(void) { }
  4210. static inline void unregister_as_ext3(void) { }
  4211. #endif
  4212. static struct file_system_type ext4_fs_type = {
  4213. .owner = THIS_MODULE,
  4214. .name = "ext4",
  4215. .mount = ext4_mount,
  4216. .kill_sb = kill_block_super,
  4217. .fs_flags = FS_REQUIRES_DEV,
  4218. };
  4219. int __init ext4_init_feat_adverts(void)
  4220. {
  4221. struct ext4_features *ef;
  4222. int ret = -ENOMEM;
  4223. ef = kzalloc(sizeof(struct ext4_features), GFP_KERNEL);
  4224. if (!ef)
  4225. goto out;
  4226. ef->f_kobj.kset = ext4_kset;
  4227. init_completion(&ef->f_kobj_unregister);
  4228. ret = kobject_init_and_add(&ef->f_kobj, &ext4_feat_ktype, NULL,
  4229. "features");
  4230. if (ret) {
  4231. kfree(ef);
  4232. goto out;
  4233. }
  4234. ext4_feat = ef;
  4235. ret = 0;
  4236. out:
  4237. return ret;
  4238. }
  4239. static int __init ext4_init_fs(void)
  4240. {
  4241. int err;
  4242. ext4_check_flag_values();
  4243. err = ext4_init_pageio();
  4244. if (err)
  4245. return err;
  4246. err = ext4_init_system_zone();
  4247. if (err)
  4248. goto out5;
  4249. ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
  4250. if (!ext4_kset)
  4251. goto out4;
  4252. ext4_proc_root = proc_mkdir("fs/ext4", NULL);
  4253. err = ext4_init_feat_adverts();
  4254. err = ext4_init_mballoc();
  4255. if (err)
  4256. goto out3;
  4257. err = ext4_init_xattr();
  4258. if (err)
  4259. goto out2;
  4260. err = init_inodecache();
  4261. if (err)
  4262. goto out1;
  4263. register_as_ext2();
  4264. register_as_ext3();
  4265. err = register_filesystem(&ext4_fs_type);
  4266. if (err)
  4267. goto out;
  4268. ext4_li_info = NULL;
  4269. mutex_init(&ext4_li_mtx);
  4270. return 0;
  4271. out:
  4272. unregister_as_ext2();
  4273. unregister_as_ext3();
  4274. destroy_inodecache();
  4275. out1:
  4276. ext4_exit_xattr();
  4277. out2:
  4278. ext4_exit_mballoc();
  4279. out3:
  4280. kfree(ext4_feat);
  4281. remove_proc_entry("fs/ext4", NULL);
  4282. kset_unregister(ext4_kset);
  4283. out4:
  4284. ext4_exit_system_zone();
  4285. out5:
  4286. ext4_exit_pageio();
  4287. return err;
  4288. }
  4289. static void __exit ext4_exit_fs(void)
  4290. {
  4291. ext4_destroy_lazyinit_thread();
  4292. unregister_as_ext2();
  4293. unregister_as_ext3();
  4294. unregister_filesystem(&ext4_fs_type);
  4295. destroy_inodecache();
  4296. ext4_exit_xattr();
  4297. ext4_exit_mballoc();
  4298. remove_proc_entry("fs/ext4", NULL);
  4299. kset_unregister(ext4_kset);
  4300. ext4_exit_system_zone();
  4301. ext4_exit_pageio();
  4302. }
  4303. MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
  4304. MODULE_DESCRIPTION("Fourth Extended Filesystem");
  4305. MODULE_LICENSE("GPL");
  4306. module_init(ext4_init_fs)
  4307. module_exit(ext4_exit_fs)