super.c 135 KB

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