super.c 133 KB

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