inode.c 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812
  1. /*
  2. * linux/fs/ext4/inode.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. * 64-bit file support on 64-bit platforms by Jakub Jelinek
  16. * (jj@sunsite.ms.mff.cuni.cz)
  17. *
  18. * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
  19. */
  20. #include <linux/module.h>
  21. #include <linux/fs.h>
  22. #include <linux/time.h>
  23. #include <linux/jbd2.h>
  24. #include <linux/highuid.h>
  25. #include <linux/pagemap.h>
  26. #include <linux/quotaops.h>
  27. #include <linux/string.h>
  28. #include <linux/buffer_head.h>
  29. #include <linux/writeback.h>
  30. #include <linux/pagevec.h>
  31. #include <linux/mpage.h>
  32. #include <linux/namei.h>
  33. #include <linux/uio.h>
  34. #include <linux/bio.h>
  35. #include <linux/workqueue.h>
  36. #include <linux/kernel.h>
  37. #include <linux/printk.h>
  38. #include <linux/slab.h>
  39. #include <linux/ratelimit.h>
  40. #include "ext4_jbd2.h"
  41. #include "xattr.h"
  42. #include "acl.h"
  43. #include "truncate.h"
  44. #include <trace/events/ext4.h>
  45. #define MPAGE_DA_EXTENT_TAIL 0x01
  46. static inline int ext4_begin_ordered_truncate(struct inode *inode,
  47. loff_t new_size)
  48. {
  49. trace_ext4_begin_ordered_truncate(inode, new_size);
  50. /*
  51. * If jinode is zero, then we never opened the file for
  52. * writing, so there's no need to call
  53. * jbd2_journal_begin_ordered_truncate() since there's no
  54. * outstanding writes we need to flush.
  55. */
  56. if (!EXT4_I(inode)->jinode)
  57. return 0;
  58. return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
  59. EXT4_I(inode)->jinode,
  60. new_size);
  61. }
  62. static void ext4_invalidatepage(struct page *page, unsigned long offset);
  63. static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
  64. struct buffer_head *bh_result, int create);
  65. static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode);
  66. static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate);
  67. static int __ext4_journalled_writepage(struct page *page, unsigned int len);
  68. static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
  69. /*
  70. * Test whether an inode is a fast symlink.
  71. */
  72. static int ext4_inode_is_fast_symlink(struct inode *inode)
  73. {
  74. int ea_blocks = EXT4_I(inode)->i_file_acl ?
  75. (inode->i_sb->s_blocksize >> 9) : 0;
  76. return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
  77. }
  78. /*
  79. * Restart the transaction associated with *handle. This does a commit,
  80. * so before we call here everything must be consistently dirtied against
  81. * this transaction.
  82. */
  83. int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
  84. int nblocks)
  85. {
  86. int ret;
  87. /*
  88. * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
  89. * moment, get_block can be called only for blocks inside i_size since
  90. * page cache has been already dropped and writes are blocked by
  91. * i_mutex. So we can safely drop the i_data_sem here.
  92. */
  93. BUG_ON(EXT4_JOURNAL(inode) == NULL);
  94. jbd_debug(2, "restarting handle %p\n", handle);
  95. up_write(&EXT4_I(inode)->i_data_sem);
  96. ret = ext4_journal_restart(handle, nblocks);
  97. down_write(&EXT4_I(inode)->i_data_sem);
  98. ext4_discard_preallocations(inode);
  99. return ret;
  100. }
  101. /*
  102. * Called at the last iput() if i_nlink is zero.
  103. */
  104. void ext4_evict_inode(struct inode *inode)
  105. {
  106. handle_t *handle;
  107. int err;
  108. trace_ext4_evict_inode(inode);
  109. ext4_ioend_wait(inode);
  110. if (inode->i_nlink) {
  111. /*
  112. * When journalling data dirty buffers are tracked only in the
  113. * journal. So although mm thinks everything is clean and
  114. * ready for reaping the inode might still have some pages to
  115. * write in the running transaction or waiting to be
  116. * checkpointed. Thus calling jbd2_journal_invalidatepage()
  117. * (via truncate_inode_pages()) to discard these buffers can
  118. * cause data loss. Also even if we did not discard these
  119. * buffers, we would have no way to find them after the inode
  120. * is reaped and thus user could see stale data if he tries to
  121. * read them before the transaction is checkpointed. So be
  122. * careful and force everything to disk here... We use
  123. * ei->i_datasync_tid to store the newest transaction
  124. * containing inode's data.
  125. *
  126. * Note that directories do not have this problem because they
  127. * don't use page cache.
  128. */
  129. if (ext4_should_journal_data(inode) &&
  130. (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode))) {
  131. journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
  132. tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
  133. jbd2_log_start_commit(journal, commit_tid);
  134. jbd2_log_wait_commit(journal, commit_tid);
  135. filemap_write_and_wait(&inode->i_data);
  136. }
  137. truncate_inode_pages(&inode->i_data, 0);
  138. goto no_delete;
  139. }
  140. if (!is_bad_inode(inode))
  141. dquot_initialize(inode);
  142. if (ext4_should_order_data(inode))
  143. ext4_begin_ordered_truncate(inode, 0);
  144. truncate_inode_pages(&inode->i_data, 0);
  145. if (is_bad_inode(inode))
  146. goto no_delete;
  147. handle = ext4_journal_start(inode, ext4_blocks_for_truncate(inode)+3);
  148. if (IS_ERR(handle)) {
  149. ext4_std_error(inode->i_sb, PTR_ERR(handle));
  150. /*
  151. * If we're going to skip the normal cleanup, we still need to
  152. * make sure that the in-core orphan linked list is properly
  153. * cleaned up.
  154. */
  155. ext4_orphan_del(NULL, inode);
  156. goto no_delete;
  157. }
  158. if (IS_SYNC(inode))
  159. ext4_handle_sync(handle);
  160. inode->i_size = 0;
  161. err = ext4_mark_inode_dirty(handle, inode);
  162. if (err) {
  163. ext4_warning(inode->i_sb,
  164. "couldn't mark inode dirty (err %d)", err);
  165. goto stop_handle;
  166. }
  167. if (inode->i_blocks)
  168. ext4_truncate(inode);
  169. /*
  170. * ext4_ext_truncate() doesn't reserve any slop when it
  171. * restarts journal transactions; therefore there may not be
  172. * enough credits left in the handle to remove the inode from
  173. * the orphan list and set the dtime field.
  174. */
  175. if (!ext4_handle_has_enough_credits(handle, 3)) {
  176. err = ext4_journal_extend(handle, 3);
  177. if (err > 0)
  178. err = ext4_journal_restart(handle, 3);
  179. if (err != 0) {
  180. ext4_warning(inode->i_sb,
  181. "couldn't extend journal (err %d)", err);
  182. stop_handle:
  183. ext4_journal_stop(handle);
  184. ext4_orphan_del(NULL, inode);
  185. goto no_delete;
  186. }
  187. }
  188. /*
  189. * Kill off the orphan record which ext4_truncate created.
  190. * AKPM: I think this can be inside the above `if'.
  191. * Note that ext4_orphan_del() has to be able to cope with the
  192. * deletion of a non-existent orphan - this is because we don't
  193. * know if ext4_truncate() actually created an orphan record.
  194. * (Well, we could do this if we need to, but heck - it works)
  195. */
  196. ext4_orphan_del(handle, inode);
  197. EXT4_I(inode)->i_dtime = get_seconds();
  198. /*
  199. * One subtle ordering requirement: if anything has gone wrong
  200. * (transaction abort, IO errors, whatever), then we can still
  201. * do these next steps (the fs will already have been marked as
  202. * having errors), but we can't free the inode if the mark_dirty
  203. * fails.
  204. */
  205. if (ext4_mark_inode_dirty(handle, inode))
  206. /* If that failed, just do the required in-core inode clear. */
  207. ext4_clear_inode(inode);
  208. else
  209. ext4_free_inode(handle, inode);
  210. ext4_journal_stop(handle);
  211. return;
  212. no_delete:
  213. ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
  214. }
  215. #ifdef CONFIG_QUOTA
  216. qsize_t *ext4_get_reserved_space(struct inode *inode)
  217. {
  218. return &EXT4_I(inode)->i_reserved_quota;
  219. }
  220. #endif
  221. /*
  222. * Calculate the number of metadata blocks need to reserve
  223. * to allocate a block located at @lblock
  224. */
  225. static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
  226. {
  227. if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
  228. return ext4_ext_calc_metadata_amount(inode, lblock);
  229. return ext4_ind_calc_metadata_amount(inode, lblock);
  230. }
  231. /*
  232. * Called with i_data_sem down, which is important since we can call
  233. * ext4_discard_preallocations() from here.
  234. */
  235. void ext4_da_update_reserve_space(struct inode *inode,
  236. int used, int quota_claim)
  237. {
  238. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  239. struct ext4_inode_info *ei = EXT4_I(inode);
  240. spin_lock(&ei->i_block_reservation_lock);
  241. trace_ext4_da_update_reserve_space(inode, used, quota_claim);
  242. if (unlikely(used > ei->i_reserved_data_blocks)) {
  243. ext4_msg(inode->i_sb, KERN_NOTICE, "%s: ino %lu, used %d "
  244. "with only %d reserved data blocks\n",
  245. __func__, inode->i_ino, used,
  246. ei->i_reserved_data_blocks);
  247. WARN_ON(1);
  248. used = ei->i_reserved_data_blocks;
  249. }
  250. /* Update per-inode reservations */
  251. ei->i_reserved_data_blocks -= used;
  252. ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
  253. percpu_counter_sub(&sbi->s_dirtyclusters_counter,
  254. used + ei->i_allocated_meta_blocks);
  255. ei->i_allocated_meta_blocks = 0;
  256. if (ei->i_reserved_data_blocks == 0) {
  257. /*
  258. * We can release all of the reserved metadata blocks
  259. * only when we have written all of the delayed
  260. * allocation blocks.
  261. */
  262. percpu_counter_sub(&sbi->s_dirtyclusters_counter,
  263. ei->i_reserved_meta_blocks);
  264. ei->i_reserved_meta_blocks = 0;
  265. ei->i_da_metadata_calc_len = 0;
  266. }
  267. spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
  268. /* Update quota subsystem for data blocks */
  269. if (quota_claim)
  270. dquot_claim_block(inode, EXT4_C2B(sbi, used));
  271. else {
  272. /*
  273. * We did fallocate with an offset that is already delayed
  274. * allocated. So on delayed allocated writeback we should
  275. * not re-claim the quota for fallocated blocks.
  276. */
  277. dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
  278. }
  279. /*
  280. * If we have done all the pending block allocations and if
  281. * there aren't any writers on the inode, we can discard the
  282. * inode's preallocations.
  283. */
  284. if ((ei->i_reserved_data_blocks == 0) &&
  285. (atomic_read(&inode->i_writecount) == 0))
  286. ext4_discard_preallocations(inode);
  287. }
  288. static int __check_block_validity(struct inode *inode, const char *func,
  289. unsigned int line,
  290. struct ext4_map_blocks *map)
  291. {
  292. if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
  293. map->m_len)) {
  294. ext4_error_inode(inode, func, line, map->m_pblk,
  295. "lblock %lu mapped to illegal pblock "
  296. "(length %d)", (unsigned long) map->m_lblk,
  297. map->m_len);
  298. return -EIO;
  299. }
  300. return 0;
  301. }
  302. #define check_block_validity(inode, map) \
  303. __check_block_validity((inode), __func__, __LINE__, (map))
  304. /*
  305. * Return the number of contiguous dirty pages in a given inode
  306. * starting at page frame idx.
  307. */
  308. static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
  309. unsigned int max_pages)
  310. {
  311. struct address_space *mapping = inode->i_mapping;
  312. pgoff_t index;
  313. struct pagevec pvec;
  314. pgoff_t num = 0;
  315. int i, nr_pages, done = 0;
  316. if (max_pages == 0)
  317. return 0;
  318. pagevec_init(&pvec, 0);
  319. while (!done) {
  320. index = idx;
  321. nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
  322. PAGECACHE_TAG_DIRTY,
  323. (pgoff_t)PAGEVEC_SIZE);
  324. if (nr_pages == 0)
  325. break;
  326. for (i = 0; i < nr_pages; i++) {
  327. struct page *page = pvec.pages[i];
  328. struct buffer_head *bh, *head;
  329. lock_page(page);
  330. if (unlikely(page->mapping != mapping) ||
  331. !PageDirty(page) ||
  332. PageWriteback(page) ||
  333. page->index != idx) {
  334. done = 1;
  335. unlock_page(page);
  336. break;
  337. }
  338. if (page_has_buffers(page)) {
  339. bh = head = page_buffers(page);
  340. do {
  341. if (!buffer_delay(bh) &&
  342. !buffer_unwritten(bh))
  343. done = 1;
  344. bh = bh->b_this_page;
  345. } while (!done && (bh != head));
  346. }
  347. unlock_page(page);
  348. if (done)
  349. break;
  350. idx++;
  351. num++;
  352. if (num >= max_pages) {
  353. done = 1;
  354. break;
  355. }
  356. }
  357. pagevec_release(&pvec);
  358. }
  359. return num;
  360. }
  361. /*
  362. * Sets the BH_Da_Mapped bit on the buffer heads corresponding to the given map.
  363. */
  364. static void set_buffers_da_mapped(struct inode *inode,
  365. struct ext4_map_blocks *map)
  366. {
  367. struct address_space *mapping = inode->i_mapping;
  368. struct pagevec pvec;
  369. int i, nr_pages;
  370. pgoff_t index, end;
  371. index = map->m_lblk >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
  372. end = (map->m_lblk + map->m_len - 1) >>
  373. (PAGE_CACHE_SHIFT - inode->i_blkbits);
  374. pagevec_init(&pvec, 0);
  375. while (index <= end) {
  376. nr_pages = pagevec_lookup(&pvec, mapping, index,
  377. min(end - index + 1,
  378. (pgoff_t)PAGEVEC_SIZE));
  379. if (nr_pages == 0)
  380. break;
  381. for (i = 0; i < nr_pages; i++) {
  382. struct page *page = pvec.pages[i];
  383. struct buffer_head *bh, *head;
  384. if (unlikely(page->mapping != mapping) ||
  385. !PageDirty(page))
  386. break;
  387. if (page_has_buffers(page)) {
  388. bh = head = page_buffers(page);
  389. do {
  390. set_buffer_da_mapped(bh);
  391. bh = bh->b_this_page;
  392. } while (bh != head);
  393. }
  394. index++;
  395. }
  396. pagevec_release(&pvec);
  397. }
  398. }
  399. /*
  400. * The ext4_map_blocks() function tries to look up the requested blocks,
  401. * and returns if the blocks are already mapped.
  402. *
  403. * Otherwise it takes the write lock of the i_data_sem and allocate blocks
  404. * and store the allocated blocks in the result buffer head and mark it
  405. * mapped.
  406. *
  407. * If file type is extents based, it will call ext4_ext_map_blocks(),
  408. * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
  409. * based files
  410. *
  411. * On success, it returns the number of blocks being mapped or allocate.
  412. * if create==0 and the blocks are pre-allocated and uninitialized block,
  413. * the result buffer head is unmapped. If the create ==1, it will make sure
  414. * the buffer head is mapped.
  415. *
  416. * It returns 0 if plain look up failed (blocks have not been allocated), in
  417. * that case, buffer head is unmapped
  418. *
  419. * It returns the error in case of allocation failure.
  420. */
  421. int ext4_map_blocks(handle_t *handle, struct inode *inode,
  422. struct ext4_map_blocks *map, int flags)
  423. {
  424. int retval;
  425. map->m_flags = 0;
  426. ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
  427. "logical block %lu\n", inode->i_ino, flags, map->m_len,
  428. (unsigned long) map->m_lblk);
  429. /*
  430. * Try to see if we can get the block without requesting a new
  431. * file system block.
  432. */
  433. down_read((&EXT4_I(inode)->i_data_sem));
  434. if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
  435. retval = ext4_ext_map_blocks(handle, inode, map, flags &
  436. EXT4_GET_BLOCKS_KEEP_SIZE);
  437. } else {
  438. retval = ext4_ind_map_blocks(handle, inode, map, flags &
  439. EXT4_GET_BLOCKS_KEEP_SIZE);
  440. }
  441. up_read((&EXT4_I(inode)->i_data_sem));
  442. if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
  443. int ret = check_block_validity(inode, map);
  444. if (ret != 0)
  445. return ret;
  446. }
  447. /* If it is only a block(s) look up */
  448. if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
  449. return retval;
  450. /*
  451. * Returns if the blocks have already allocated
  452. *
  453. * Note that if blocks have been preallocated
  454. * ext4_ext_get_block() returns the create = 0
  455. * with buffer head unmapped.
  456. */
  457. if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
  458. return retval;
  459. /*
  460. * When we call get_blocks without the create flag, the
  461. * BH_Unwritten flag could have gotten set if the blocks
  462. * requested were part of a uninitialized extent. We need to
  463. * clear this flag now that we are committed to convert all or
  464. * part of the uninitialized extent to be an initialized
  465. * extent. This is because we need to avoid the combination
  466. * of BH_Unwritten and BH_Mapped flags being simultaneously
  467. * set on the buffer_head.
  468. */
  469. map->m_flags &= ~EXT4_MAP_UNWRITTEN;
  470. /*
  471. * New blocks allocate and/or writing to uninitialized extent
  472. * will possibly result in updating i_data, so we take
  473. * the write lock of i_data_sem, and call get_blocks()
  474. * with create == 1 flag.
  475. */
  476. down_write((&EXT4_I(inode)->i_data_sem));
  477. /*
  478. * if the caller is from delayed allocation writeout path
  479. * we have already reserved fs blocks for allocation
  480. * let the underlying get_block() function know to
  481. * avoid double accounting
  482. */
  483. if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
  484. ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
  485. /*
  486. * We need to check for EXT4 here because migrate
  487. * could have changed the inode type in between
  488. */
  489. if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
  490. retval = ext4_ext_map_blocks(handle, inode, map, flags);
  491. } else {
  492. retval = ext4_ind_map_blocks(handle, inode, map, flags);
  493. if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
  494. /*
  495. * We allocated new blocks which will result in
  496. * i_data's format changing. Force the migrate
  497. * to fail by clearing migrate flags
  498. */
  499. ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
  500. }
  501. /*
  502. * Update reserved blocks/metadata blocks after successful
  503. * block allocation which had been deferred till now. We don't
  504. * support fallocate for non extent files. So we can update
  505. * reserve space here.
  506. */
  507. if ((retval > 0) &&
  508. (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
  509. ext4_da_update_reserve_space(inode, retval, 1);
  510. }
  511. if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
  512. ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
  513. /* If we have successfully mapped the delayed allocated blocks,
  514. * set the BH_Da_Mapped bit on them. Its important to do this
  515. * under the protection of i_data_sem.
  516. */
  517. if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
  518. set_buffers_da_mapped(inode, map);
  519. }
  520. up_write((&EXT4_I(inode)->i_data_sem));
  521. if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
  522. int ret = check_block_validity(inode, map);
  523. if (ret != 0)
  524. return ret;
  525. }
  526. return retval;
  527. }
  528. /* Maximum number of blocks we map for direct IO at once. */
  529. #define DIO_MAX_BLOCKS 4096
  530. static int _ext4_get_block(struct inode *inode, sector_t iblock,
  531. struct buffer_head *bh, int flags)
  532. {
  533. handle_t *handle = ext4_journal_current_handle();
  534. struct ext4_map_blocks map;
  535. int ret = 0, started = 0;
  536. int dio_credits;
  537. map.m_lblk = iblock;
  538. map.m_len = bh->b_size >> inode->i_blkbits;
  539. if (flags && !handle) {
  540. /* Direct IO write... */
  541. if (map.m_len > DIO_MAX_BLOCKS)
  542. map.m_len = DIO_MAX_BLOCKS;
  543. dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
  544. handle = ext4_journal_start(inode, dio_credits);
  545. if (IS_ERR(handle)) {
  546. ret = PTR_ERR(handle);
  547. return ret;
  548. }
  549. started = 1;
  550. }
  551. ret = ext4_map_blocks(handle, inode, &map, flags);
  552. if (ret > 0) {
  553. map_bh(bh, inode->i_sb, map.m_pblk);
  554. bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
  555. bh->b_size = inode->i_sb->s_blocksize * map.m_len;
  556. ret = 0;
  557. }
  558. if (started)
  559. ext4_journal_stop(handle);
  560. return ret;
  561. }
  562. int ext4_get_block(struct inode *inode, sector_t iblock,
  563. struct buffer_head *bh, int create)
  564. {
  565. return _ext4_get_block(inode, iblock, bh,
  566. create ? EXT4_GET_BLOCKS_CREATE : 0);
  567. }
  568. /*
  569. * `handle' can be NULL if create is zero
  570. */
  571. struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
  572. ext4_lblk_t block, int create, int *errp)
  573. {
  574. struct ext4_map_blocks map;
  575. struct buffer_head *bh;
  576. int fatal = 0, err;
  577. J_ASSERT(handle != NULL || create == 0);
  578. map.m_lblk = block;
  579. map.m_len = 1;
  580. err = ext4_map_blocks(handle, inode, &map,
  581. create ? EXT4_GET_BLOCKS_CREATE : 0);
  582. if (err < 0)
  583. *errp = err;
  584. if (err <= 0)
  585. return NULL;
  586. *errp = 0;
  587. bh = sb_getblk(inode->i_sb, map.m_pblk);
  588. if (!bh) {
  589. *errp = -EIO;
  590. return NULL;
  591. }
  592. if (map.m_flags & EXT4_MAP_NEW) {
  593. J_ASSERT(create != 0);
  594. J_ASSERT(handle != NULL);
  595. /*
  596. * Now that we do not always journal data, we should
  597. * keep in mind whether this should always journal the
  598. * new buffer as metadata. For now, regular file
  599. * writes use ext4_get_block instead, so it's not a
  600. * problem.
  601. */
  602. lock_buffer(bh);
  603. BUFFER_TRACE(bh, "call get_create_access");
  604. fatal = ext4_journal_get_create_access(handle, bh);
  605. if (!fatal && !buffer_uptodate(bh)) {
  606. memset(bh->b_data, 0, inode->i_sb->s_blocksize);
  607. set_buffer_uptodate(bh);
  608. }
  609. unlock_buffer(bh);
  610. BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
  611. err = ext4_handle_dirty_metadata(handle, inode, bh);
  612. if (!fatal)
  613. fatal = err;
  614. } else {
  615. BUFFER_TRACE(bh, "not a new buffer");
  616. }
  617. if (fatal) {
  618. *errp = fatal;
  619. brelse(bh);
  620. bh = NULL;
  621. }
  622. return bh;
  623. }
  624. struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
  625. ext4_lblk_t block, int create, int *err)
  626. {
  627. struct buffer_head *bh;
  628. bh = ext4_getblk(handle, inode, block, create, err);
  629. if (!bh)
  630. return bh;
  631. if (buffer_uptodate(bh))
  632. return bh;
  633. ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
  634. wait_on_buffer(bh);
  635. if (buffer_uptodate(bh))
  636. return bh;
  637. put_bh(bh);
  638. *err = -EIO;
  639. return NULL;
  640. }
  641. static int walk_page_buffers(handle_t *handle,
  642. struct buffer_head *head,
  643. unsigned from,
  644. unsigned to,
  645. int *partial,
  646. int (*fn)(handle_t *handle,
  647. struct buffer_head *bh))
  648. {
  649. struct buffer_head *bh;
  650. unsigned block_start, block_end;
  651. unsigned blocksize = head->b_size;
  652. int err, ret = 0;
  653. struct buffer_head *next;
  654. for (bh = head, block_start = 0;
  655. ret == 0 && (bh != head || !block_start);
  656. block_start = block_end, bh = next) {
  657. next = bh->b_this_page;
  658. block_end = block_start + blocksize;
  659. if (block_end <= from || block_start >= to) {
  660. if (partial && !buffer_uptodate(bh))
  661. *partial = 1;
  662. continue;
  663. }
  664. err = (*fn)(handle, bh);
  665. if (!ret)
  666. ret = err;
  667. }
  668. return ret;
  669. }
  670. /*
  671. * To preserve ordering, it is essential that the hole instantiation and
  672. * the data write be encapsulated in a single transaction. We cannot
  673. * close off a transaction and start a new one between the ext4_get_block()
  674. * and the commit_write(). So doing the jbd2_journal_start at the start of
  675. * prepare_write() is the right place.
  676. *
  677. * Also, this function can nest inside ext4_writepage() ->
  678. * block_write_full_page(). In that case, we *know* that ext4_writepage()
  679. * has generated enough buffer credits to do the whole page. So we won't
  680. * block on the journal in that case, which is good, because the caller may
  681. * be PF_MEMALLOC.
  682. *
  683. * By accident, ext4 can be reentered when a transaction is open via
  684. * quota file writes. If we were to commit the transaction while thus
  685. * reentered, there can be a deadlock - we would be holding a quota
  686. * lock, and the commit would never complete if another thread had a
  687. * transaction open and was blocking on the quota lock - a ranking
  688. * violation.
  689. *
  690. * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
  691. * will _not_ run commit under these circumstances because handle->h_ref
  692. * is elevated. We'll still have enough credits for the tiny quotafile
  693. * write.
  694. */
  695. static int do_journal_get_write_access(handle_t *handle,
  696. struct buffer_head *bh)
  697. {
  698. int dirty = buffer_dirty(bh);
  699. int ret;
  700. if (!buffer_mapped(bh) || buffer_freed(bh))
  701. return 0;
  702. /*
  703. * __block_write_begin() could have dirtied some buffers. Clean
  704. * the dirty bit as jbd2_journal_get_write_access() could complain
  705. * otherwise about fs integrity issues. Setting of the dirty bit
  706. * by __block_write_begin() isn't a real problem here as we clear
  707. * the bit before releasing a page lock and thus writeback cannot
  708. * ever write the buffer.
  709. */
  710. if (dirty)
  711. clear_buffer_dirty(bh);
  712. ret = ext4_journal_get_write_access(handle, bh);
  713. if (!ret && dirty)
  714. ret = ext4_handle_dirty_metadata(handle, NULL, bh);
  715. return ret;
  716. }
  717. static int ext4_get_block_write(struct inode *inode, sector_t iblock,
  718. struct buffer_head *bh_result, int create);
  719. static int ext4_write_begin(struct file *file, struct address_space *mapping,
  720. loff_t pos, unsigned len, unsigned flags,
  721. struct page **pagep, void **fsdata)
  722. {
  723. struct inode *inode = mapping->host;
  724. int ret, needed_blocks;
  725. handle_t *handle;
  726. int retries = 0;
  727. struct page *page;
  728. pgoff_t index;
  729. unsigned from, to;
  730. trace_ext4_write_begin(inode, pos, len, flags);
  731. /*
  732. * Reserve one block more for addition to orphan list in case
  733. * we allocate blocks but write fails for some reason
  734. */
  735. needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
  736. index = pos >> PAGE_CACHE_SHIFT;
  737. from = pos & (PAGE_CACHE_SIZE - 1);
  738. to = from + len;
  739. retry:
  740. handle = ext4_journal_start(inode, needed_blocks);
  741. if (IS_ERR(handle)) {
  742. ret = PTR_ERR(handle);
  743. goto out;
  744. }
  745. /* We cannot recurse into the filesystem as the transaction is already
  746. * started */
  747. flags |= AOP_FLAG_NOFS;
  748. page = grab_cache_page_write_begin(mapping, index, flags);
  749. if (!page) {
  750. ext4_journal_stop(handle);
  751. ret = -ENOMEM;
  752. goto out;
  753. }
  754. *pagep = page;
  755. if (ext4_should_dioread_nolock(inode))
  756. ret = __block_write_begin(page, pos, len, ext4_get_block_write);
  757. else
  758. ret = __block_write_begin(page, pos, len, ext4_get_block);
  759. if (!ret && ext4_should_journal_data(inode)) {
  760. ret = walk_page_buffers(handle, page_buffers(page),
  761. from, to, NULL, do_journal_get_write_access);
  762. }
  763. if (ret) {
  764. unlock_page(page);
  765. page_cache_release(page);
  766. /*
  767. * __block_write_begin may have instantiated a few blocks
  768. * outside i_size. Trim these off again. Don't need
  769. * i_size_read because we hold i_mutex.
  770. *
  771. * Add inode to orphan list in case we crash before
  772. * truncate finishes
  773. */
  774. if (pos + len > inode->i_size && ext4_can_truncate(inode))
  775. ext4_orphan_add(handle, inode);
  776. ext4_journal_stop(handle);
  777. if (pos + len > inode->i_size) {
  778. ext4_truncate_failed_write(inode);
  779. /*
  780. * If truncate failed early the inode might
  781. * still be on the orphan list; we need to
  782. * make sure the inode is removed from the
  783. * orphan list in that case.
  784. */
  785. if (inode->i_nlink)
  786. ext4_orphan_del(NULL, inode);
  787. }
  788. }
  789. if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
  790. goto retry;
  791. out:
  792. return ret;
  793. }
  794. /* For write_end() in data=journal mode */
  795. static int write_end_fn(handle_t *handle, struct buffer_head *bh)
  796. {
  797. if (!buffer_mapped(bh) || buffer_freed(bh))
  798. return 0;
  799. set_buffer_uptodate(bh);
  800. return ext4_handle_dirty_metadata(handle, NULL, bh);
  801. }
  802. static int ext4_generic_write_end(struct file *file,
  803. struct address_space *mapping,
  804. loff_t pos, unsigned len, unsigned copied,
  805. struct page *page, void *fsdata)
  806. {
  807. int i_size_changed = 0;
  808. struct inode *inode = mapping->host;
  809. handle_t *handle = ext4_journal_current_handle();
  810. copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
  811. /*
  812. * No need to use i_size_read() here, the i_size
  813. * cannot change under us because we hold i_mutex.
  814. *
  815. * But it's important to update i_size while still holding page lock:
  816. * page writeout could otherwise come in and zero beyond i_size.
  817. */
  818. if (pos + copied > inode->i_size) {
  819. i_size_write(inode, pos + copied);
  820. i_size_changed = 1;
  821. }
  822. if (pos + copied > EXT4_I(inode)->i_disksize) {
  823. /* We need to mark inode dirty even if
  824. * new_i_size is less that inode->i_size
  825. * bu greater than i_disksize.(hint delalloc)
  826. */
  827. ext4_update_i_disksize(inode, (pos + copied));
  828. i_size_changed = 1;
  829. }
  830. unlock_page(page);
  831. page_cache_release(page);
  832. /*
  833. * Don't mark the inode dirty under page lock. First, it unnecessarily
  834. * makes the holding time of page lock longer. Second, it forces lock
  835. * ordering of page lock and transaction start for journaling
  836. * filesystems.
  837. */
  838. if (i_size_changed)
  839. ext4_mark_inode_dirty(handle, inode);
  840. return copied;
  841. }
  842. /*
  843. * We need to pick up the new inode size which generic_commit_write gave us
  844. * `file' can be NULL - eg, when called from page_symlink().
  845. *
  846. * ext4 never places buffers on inode->i_mapping->private_list. metadata
  847. * buffers are managed internally.
  848. */
  849. static int ext4_ordered_write_end(struct file *file,
  850. struct address_space *mapping,
  851. loff_t pos, unsigned len, unsigned copied,
  852. struct page *page, void *fsdata)
  853. {
  854. handle_t *handle = ext4_journal_current_handle();
  855. struct inode *inode = mapping->host;
  856. int ret = 0, ret2;
  857. trace_ext4_ordered_write_end(inode, pos, len, copied);
  858. ret = ext4_jbd2_file_inode(handle, inode);
  859. if (ret == 0) {
  860. ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
  861. page, fsdata);
  862. copied = ret2;
  863. if (pos + len > inode->i_size && ext4_can_truncate(inode))
  864. /* if we have allocated more blocks and copied
  865. * less. We will have blocks allocated outside
  866. * inode->i_size. So truncate them
  867. */
  868. ext4_orphan_add(handle, inode);
  869. if (ret2 < 0)
  870. ret = ret2;
  871. } else {
  872. unlock_page(page);
  873. page_cache_release(page);
  874. }
  875. ret2 = ext4_journal_stop(handle);
  876. if (!ret)
  877. ret = ret2;
  878. if (pos + len > inode->i_size) {
  879. ext4_truncate_failed_write(inode);
  880. /*
  881. * If truncate failed early the inode might still be
  882. * on the orphan list; we need to make sure the inode
  883. * is removed from the orphan list in that case.
  884. */
  885. if (inode->i_nlink)
  886. ext4_orphan_del(NULL, inode);
  887. }
  888. return ret ? ret : copied;
  889. }
  890. static int ext4_writeback_write_end(struct file *file,
  891. struct address_space *mapping,
  892. loff_t pos, unsigned len, unsigned copied,
  893. struct page *page, void *fsdata)
  894. {
  895. handle_t *handle = ext4_journal_current_handle();
  896. struct inode *inode = mapping->host;
  897. int ret = 0, ret2;
  898. trace_ext4_writeback_write_end(inode, pos, len, copied);
  899. ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
  900. page, fsdata);
  901. copied = ret2;
  902. if (pos + len > inode->i_size && ext4_can_truncate(inode))
  903. /* if we have allocated more blocks and copied
  904. * less. We will have blocks allocated outside
  905. * inode->i_size. So truncate them
  906. */
  907. ext4_orphan_add(handle, inode);
  908. if (ret2 < 0)
  909. ret = ret2;
  910. ret2 = ext4_journal_stop(handle);
  911. if (!ret)
  912. ret = ret2;
  913. if (pos + len > inode->i_size) {
  914. ext4_truncate_failed_write(inode);
  915. /*
  916. * If truncate failed early the inode might still be
  917. * on the orphan list; we need to make sure the inode
  918. * is removed from the orphan list in that case.
  919. */
  920. if (inode->i_nlink)
  921. ext4_orphan_del(NULL, inode);
  922. }
  923. return ret ? ret : copied;
  924. }
  925. static int ext4_journalled_write_end(struct file *file,
  926. struct address_space *mapping,
  927. loff_t pos, unsigned len, unsigned copied,
  928. struct page *page, void *fsdata)
  929. {
  930. handle_t *handle = ext4_journal_current_handle();
  931. struct inode *inode = mapping->host;
  932. int ret = 0, ret2;
  933. int partial = 0;
  934. unsigned from, to;
  935. loff_t new_i_size;
  936. trace_ext4_journalled_write_end(inode, pos, len, copied);
  937. from = pos & (PAGE_CACHE_SIZE - 1);
  938. to = from + len;
  939. BUG_ON(!ext4_handle_valid(handle));
  940. if (copied < len) {
  941. if (!PageUptodate(page))
  942. copied = 0;
  943. page_zero_new_buffers(page, from+copied, to);
  944. }
  945. ret = walk_page_buffers(handle, page_buffers(page), from,
  946. to, &partial, write_end_fn);
  947. if (!partial)
  948. SetPageUptodate(page);
  949. new_i_size = pos + copied;
  950. if (new_i_size > inode->i_size)
  951. i_size_write(inode, pos+copied);
  952. ext4_set_inode_state(inode, EXT4_STATE_JDATA);
  953. EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
  954. if (new_i_size > EXT4_I(inode)->i_disksize) {
  955. ext4_update_i_disksize(inode, new_i_size);
  956. ret2 = ext4_mark_inode_dirty(handle, inode);
  957. if (!ret)
  958. ret = ret2;
  959. }
  960. unlock_page(page);
  961. page_cache_release(page);
  962. if (pos + len > inode->i_size && ext4_can_truncate(inode))
  963. /* if we have allocated more blocks and copied
  964. * less. We will have blocks allocated outside
  965. * inode->i_size. So truncate them
  966. */
  967. ext4_orphan_add(handle, inode);
  968. ret2 = ext4_journal_stop(handle);
  969. if (!ret)
  970. ret = ret2;
  971. if (pos + len > inode->i_size) {
  972. ext4_truncate_failed_write(inode);
  973. /*
  974. * If truncate failed early the inode might still be
  975. * on the orphan list; we need to make sure the inode
  976. * is removed from the orphan list in that case.
  977. */
  978. if (inode->i_nlink)
  979. ext4_orphan_del(NULL, inode);
  980. }
  981. return ret ? ret : copied;
  982. }
  983. /*
  984. * Reserve a single cluster located at lblock
  985. */
  986. static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
  987. {
  988. int retries = 0;
  989. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  990. struct ext4_inode_info *ei = EXT4_I(inode);
  991. unsigned int md_needed;
  992. int ret;
  993. /*
  994. * recalculate the amount of metadata blocks to reserve
  995. * in order to allocate nrblocks
  996. * worse case is one extent per block
  997. */
  998. repeat:
  999. spin_lock(&ei->i_block_reservation_lock);
  1000. md_needed = EXT4_NUM_B2C(sbi,
  1001. ext4_calc_metadata_amount(inode, lblock));
  1002. trace_ext4_da_reserve_space(inode, md_needed);
  1003. spin_unlock(&ei->i_block_reservation_lock);
  1004. /*
  1005. * We will charge metadata quota at writeout time; this saves
  1006. * us from metadata over-estimation, though we may go over by
  1007. * a small amount in the end. Here we just reserve for data.
  1008. */
  1009. ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
  1010. if (ret)
  1011. return ret;
  1012. /*
  1013. * We do still charge estimated metadata to the sb though;
  1014. * we cannot afford to run out of free blocks.
  1015. */
  1016. if (ext4_claim_free_clusters(sbi, md_needed + 1, 0)) {
  1017. dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
  1018. if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
  1019. yield();
  1020. goto repeat;
  1021. }
  1022. return -ENOSPC;
  1023. }
  1024. spin_lock(&ei->i_block_reservation_lock);
  1025. ei->i_reserved_data_blocks++;
  1026. ei->i_reserved_meta_blocks += md_needed;
  1027. spin_unlock(&ei->i_block_reservation_lock);
  1028. return 0; /* success */
  1029. }
  1030. static void ext4_da_release_space(struct inode *inode, int to_free)
  1031. {
  1032. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  1033. struct ext4_inode_info *ei = EXT4_I(inode);
  1034. if (!to_free)
  1035. return; /* Nothing to release, exit */
  1036. spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
  1037. trace_ext4_da_release_space(inode, to_free);
  1038. if (unlikely(to_free > ei->i_reserved_data_blocks)) {
  1039. /*
  1040. * if there aren't enough reserved blocks, then the
  1041. * counter is messed up somewhere. Since this
  1042. * function is called from invalidate page, it's
  1043. * harmless to return without any action.
  1044. */
  1045. ext4_msg(inode->i_sb, KERN_NOTICE, "ext4_da_release_space: "
  1046. "ino %lu, to_free %d with only %d reserved "
  1047. "data blocks\n", inode->i_ino, to_free,
  1048. ei->i_reserved_data_blocks);
  1049. WARN_ON(1);
  1050. to_free = ei->i_reserved_data_blocks;
  1051. }
  1052. ei->i_reserved_data_blocks -= to_free;
  1053. if (ei->i_reserved_data_blocks == 0) {
  1054. /*
  1055. * We can release all of the reserved metadata blocks
  1056. * only when we have written all of the delayed
  1057. * allocation blocks.
  1058. * Note that in case of bigalloc, i_reserved_meta_blocks,
  1059. * i_reserved_data_blocks, etc. refer to number of clusters.
  1060. */
  1061. percpu_counter_sub(&sbi->s_dirtyclusters_counter,
  1062. ei->i_reserved_meta_blocks);
  1063. ei->i_reserved_meta_blocks = 0;
  1064. ei->i_da_metadata_calc_len = 0;
  1065. }
  1066. /* update fs dirty data blocks counter */
  1067. percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
  1068. spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
  1069. dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
  1070. }
  1071. static void ext4_da_page_release_reservation(struct page *page,
  1072. unsigned long offset)
  1073. {
  1074. int to_release = 0;
  1075. struct buffer_head *head, *bh;
  1076. unsigned int curr_off = 0;
  1077. struct inode *inode = page->mapping->host;
  1078. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  1079. int num_clusters;
  1080. head = page_buffers(page);
  1081. bh = head;
  1082. do {
  1083. unsigned int next_off = curr_off + bh->b_size;
  1084. if ((offset <= curr_off) && (buffer_delay(bh))) {
  1085. to_release++;
  1086. clear_buffer_delay(bh);
  1087. clear_buffer_da_mapped(bh);
  1088. }
  1089. curr_off = next_off;
  1090. } while ((bh = bh->b_this_page) != head);
  1091. /* If we have released all the blocks belonging to a cluster, then we
  1092. * need to release the reserved space for that cluster. */
  1093. num_clusters = EXT4_NUM_B2C(sbi, to_release);
  1094. while (num_clusters > 0) {
  1095. ext4_fsblk_t lblk;
  1096. lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
  1097. ((num_clusters - 1) << sbi->s_cluster_bits);
  1098. if (sbi->s_cluster_ratio == 1 ||
  1099. !ext4_find_delalloc_cluster(inode, lblk, 1))
  1100. ext4_da_release_space(inode, 1);
  1101. num_clusters--;
  1102. }
  1103. }
  1104. /*
  1105. * Delayed allocation stuff
  1106. */
  1107. /*
  1108. * mpage_da_submit_io - walks through extent of pages and try to write
  1109. * them with writepage() call back
  1110. *
  1111. * @mpd->inode: inode
  1112. * @mpd->first_page: first page of the extent
  1113. * @mpd->next_page: page after the last page of the extent
  1114. *
  1115. * By the time mpage_da_submit_io() is called we expect all blocks
  1116. * to be allocated. this may be wrong if allocation failed.
  1117. *
  1118. * As pages are already locked by write_cache_pages(), we can't use it
  1119. */
  1120. static int mpage_da_submit_io(struct mpage_da_data *mpd,
  1121. struct ext4_map_blocks *map)
  1122. {
  1123. struct pagevec pvec;
  1124. unsigned long index, end;
  1125. int ret = 0, err, nr_pages, i;
  1126. struct inode *inode = mpd->inode;
  1127. struct address_space *mapping = inode->i_mapping;
  1128. loff_t size = i_size_read(inode);
  1129. unsigned int len, block_start;
  1130. struct buffer_head *bh, *page_bufs = NULL;
  1131. int journal_data = ext4_should_journal_data(inode);
  1132. sector_t pblock = 0, cur_logical = 0;
  1133. struct ext4_io_submit io_submit;
  1134. BUG_ON(mpd->next_page <= mpd->first_page);
  1135. memset(&io_submit, 0, sizeof(io_submit));
  1136. /*
  1137. * We need to start from the first_page to the next_page - 1
  1138. * to make sure we also write the mapped dirty buffer_heads.
  1139. * If we look at mpd->b_blocknr we would only be looking
  1140. * at the currently mapped buffer_heads.
  1141. */
  1142. index = mpd->first_page;
  1143. end = mpd->next_page - 1;
  1144. pagevec_init(&pvec, 0);
  1145. while (index <= end) {
  1146. nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
  1147. if (nr_pages == 0)
  1148. break;
  1149. for (i = 0; i < nr_pages; i++) {
  1150. int commit_write = 0, skip_page = 0;
  1151. struct page *page = pvec.pages[i];
  1152. index = page->index;
  1153. if (index > end)
  1154. break;
  1155. if (index == size >> PAGE_CACHE_SHIFT)
  1156. len = size & ~PAGE_CACHE_MASK;
  1157. else
  1158. len = PAGE_CACHE_SIZE;
  1159. if (map) {
  1160. cur_logical = index << (PAGE_CACHE_SHIFT -
  1161. inode->i_blkbits);
  1162. pblock = map->m_pblk + (cur_logical -
  1163. map->m_lblk);
  1164. }
  1165. index++;
  1166. BUG_ON(!PageLocked(page));
  1167. BUG_ON(PageWriteback(page));
  1168. /*
  1169. * If the page does not have buffers (for
  1170. * whatever reason), try to create them using
  1171. * __block_write_begin. If this fails,
  1172. * skip the page and move on.
  1173. */
  1174. if (!page_has_buffers(page)) {
  1175. if (__block_write_begin(page, 0, len,
  1176. noalloc_get_block_write)) {
  1177. skip_page:
  1178. unlock_page(page);
  1179. continue;
  1180. }
  1181. commit_write = 1;
  1182. }
  1183. bh = page_bufs = page_buffers(page);
  1184. block_start = 0;
  1185. do {
  1186. if (!bh)
  1187. goto skip_page;
  1188. if (map && (cur_logical >= map->m_lblk) &&
  1189. (cur_logical <= (map->m_lblk +
  1190. (map->m_len - 1)))) {
  1191. if (buffer_delay(bh)) {
  1192. clear_buffer_delay(bh);
  1193. bh->b_blocknr = pblock;
  1194. }
  1195. if (buffer_da_mapped(bh))
  1196. clear_buffer_da_mapped(bh);
  1197. if (buffer_unwritten(bh) ||
  1198. buffer_mapped(bh))
  1199. BUG_ON(bh->b_blocknr != pblock);
  1200. if (map->m_flags & EXT4_MAP_UNINIT)
  1201. set_buffer_uninit(bh);
  1202. clear_buffer_unwritten(bh);
  1203. }
  1204. /*
  1205. * skip page if block allocation undone and
  1206. * block is dirty
  1207. */
  1208. if (ext4_bh_delay_or_unwritten(NULL, bh))
  1209. skip_page = 1;
  1210. bh = bh->b_this_page;
  1211. block_start += bh->b_size;
  1212. cur_logical++;
  1213. pblock++;
  1214. } while (bh != page_bufs);
  1215. if (skip_page)
  1216. goto skip_page;
  1217. if (commit_write)
  1218. /* mark the buffer_heads as dirty & uptodate */
  1219. block_commit_write(page, 0, len);
  1220. clear_page_dirty_for_io(page);
  1221. /*
  1222. * Delalloc doesn't support data journalling,
  1223. * but eventually maybe we'll lift this
  1224. * restriction.
  1225. */
  1226. if (unlikely(journal_data && PageChecked(page)))
  1227. err = __ext4_journalled_writepage(page, len);
  1228. else if (test_opt(inode->i_sb, MBLK_IO_SUBMIT))
  1229. err = ext4_bio_write_page(&io_submit, page,
  1230. len, mpd->wbc);
  1231. else if (buffer_uninit(page_bufs)) {
  1232. ext4_set_bh_endio(page_bufs, inode);
  1233. err = block_write_full_page_endio(page,
  1234. noalloc_get_block_write,
  1235. mpd->wbc, ext4_end_io_buffer_write);
  1236. } else
  1237. err = block_write_full_page(page,
  1238. noalloc_get_block_write, mpd->wbc);
  1239. if (!err)
  1240. mpd->pages_written++;
  1241. /*
  1242. * In error case, we have to continue because
  1243. * remaining pages are still locked
  1244. */
  1245. if (ret == 0)
  1246. ret = err;
  1247. }
  1248. pagevec_release(&pvec);
  1249. }
  1250. ext4_io_submit(&io_submit);
  1251. return ret;
  1252. }
  1253. static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd)
  1254. {
  1255. int nr_pages, i;
  1256. pgoff_t index, end;
  1257. struct pagevec pvec;
  1258. struct inode *inode = mpd->inode;
  1259. struct address_space *mapping = inode->i_mapping;
  1260. index = mpd->first_page;
  1261. end = mpd->next_page - 1;
  1262. while (index <= end) {
  1263. nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
  1264. if (nr_pages == 0)
  1265. break;
  1266. for (i = 0; i < nr_pages; i++) {
  1267. struct page *page = pvec.pages[i];
  1268. if (page->index > end)
  1269. break;
  1270. BUG_ON(!PageLocked(page));
  1271. BUG_ON(PageWriteback(page));
  1272. block_invalidatepage(page, 0);
  1273. ClearPageUptodate(page);
  1274. unlock_page(page);
  1275. }
  1276. index = pvec.pages[nr_pages - 1]->index + 1;
  1277. pagevec_release(&pvec);
  1278. }
  1279. return;
  1280. }
  1281. static void ext4_print_free_blocks(struct inode *inode)
  1282. {
  1283. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  1284. printk(KERN_CRIT "Total free blocks count %lld\n",
  1285. EXT4_C2B(EXT4_SB(inode->i_sb),
  1286. ext4_count_free_clusters(inode->i_sb)));
  1287. printk(KERN_CRIT "Free/Dirty block details\n");
  1288. printk(KERN_CRIT "free_blocks=%lld\n",
  1289. (long long) EXT4_C2B(EXT4_SB(inode->i_sb),
  1290. percpu_counter_sum(&sbi->s_freeclusters_counter)));
  1291. printk(KERN_CRIT "dirty_blocks=%lld\n",
  1292. (long long) EXT4_C2B(EXT4_SB(inode->i_sb),
  1293. percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
  1294. printk(KERN_CRIT "Block reservation details\n");
  1295. printk(KERN_CRIT "i_reserved_data_blocks=%u\n",
  1296. EXT4_I(inode)->i_reserved_data_blocks);
  1297. printk(KERN_CRIT "i_reserved_meta_blocks=%u\n",
  1298. EXT4_I(inode)->i_reserved_meta_blocks);
  1299. return;
  1300. }
  1301. /*
  1302. * mpage_da_map_and_submit - go through given space, map them
  1303. * if necessary, and then submit them for I/O
  1304. *
  1305. * @mpd - bh describing space
  1306. *
  1307. * The function skips space we know is already mapped to disk blocks.
  1308. *
  1309. */
  1310. static void mpage_da_map_and_submit(struct mpage_da_data *mpd)
  1311. {
  1312. int err, blks, get_blocks_flags;
  1313. struct ext4_map_blocks map, *mapp = NULL;
  1314. sector_t next = mpd->b_blocknr;
  1315. unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
  1316. loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
  1317. handle_t *handle = NULL;
  1318. /*
  1319. * If the blocks are mapped already, or we couldn't accumulate
  1320. * any blocks, then proceed immediately to the submission stage.
  1321. */
  1322. if ((mpd->b_size == 0) ||
  1323. ((mpd->b_state & (1 << BH_Mapped)) &&
  1324. !(mpd->b_state & (1 << BH_Delay)) &&
  1325. !(mpd->b_state & (1 << BH_Unwritten))))
  1326. goto submit_io;
  1327. handle = ext4_journal_current_handle();
  1328. BUG_ON(!handle);
  1329. /*
  1330. * Call ext4_map_blocks() to allocate any delayed allocation
  1331. * blocks, or to convert an uninitialized extent to be
  1332. * initialized (in the case where we have written into
  1333. * one or more preallocated blocks).
  1334. *
  1335. * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
  1336. * indicate that we are on the delayed allocation path. This
  1337. * affects functions in many different parts of the allocation
  1338. * call path. This flag exists primarily because we don't
  1339. * want to change *many* call functions, so ext4_map_blocks()
  1340. * will set the EXT4_STATE_DELALLOC_RESERVED flag once the
  1341. * inode's allocation semaphore is taken.
  1342. *
  1343. * If the blocks in questions were delalloc blocks, set
  1344. * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
  1345. * variables are updated after the blocks have been allocated.
  1346. */
  1347. map.m_lblk = next;
  1348. map.m_len = max_blocks;
  1349. get_blocks_flags = EXT4_GET_BLOCKS_CREATE;
  1350. if (ext4_should_dioread_nolock(mpd->inode))
  1351. get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
  1352. if (mpd->b_state & (1 << BH_Delay))
  1353. get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
  1354. blks = ext4_map_blocks(handle, mpd->inode, &map, get_blocks_flags);
  1355. if (blks < 0) {
  1356. struct super_block *sb = mpd->inode->i_sb;
  1357. err = blks;
  1358. /*
  1359. * If get block returns EAGAIN or ENOSPC and there
  1360. * appears to be free blocks we will just let
  1361. * mpage_da_submit_io() unlock all of the pages.
  1362. */
  1363. if (err == -EAGAIN)
  1364. goto submit_io;
  1365. if (err == -ENOSPC && ext4_count_free_clusters(sb)) {
  1366. mpd->retval = err;
  1367. goto submit_io;
  1368. }
  1369. /*
  1370. * get block failure will cause us to loop in
  1371. * writepages, because a_ops->writepage won't be able
  1372. * to make progress. The page will be redirtied by
  1373. * writepage and writepages will again try to write
  1374. * the same.
  1375. */
  1376. if (!(EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)) {
  1377. ext4_msg(sb, KERN_CRIT,
  1378. "delayed block allocation failed for inode %lu "
  1379. "at logical offset %llu with max blocks %zd "
  1380. "with error %d", mpd->inode->i_ino,
  1381. (unsigned long long) next,
  1382. mpd->b_size >> mpd->inode->i_blkbits, err);
  1383. ext4_msg(sb, KERN_CRIT,
  1384. "This should not happen!! Data will be lost\n");
  1385. if (err == -ENOSPC)
  1386. ext4_print_free_blocks(mpd->inode);
  1387. }
  1388. /* invalidate all the pages */
  1389. ext4_da_block_invalidatepages(mpd);
  1390. /* Mark this page range as having been completed */
  1391. mpd->io_done = 1;
  1392. return;
  1393. }
  1394. BUG_ON(blks == 0);
  1395. mapp = &map;
  1396. if (map.m_flags & EXT4_MAP_NEW) {
  1397. struct block_device *bdev = mpd->inode->i_sb->s_bdev;
  1398. int i;
  1399. for (i = 0; i < map.m_len; i++)
  1400. unmap_underlying_metadata(bdev, map.m_pblk + i);
  1401. if (ext4_should_order_data(mpd->inode)) {
  1402. err = ext4_jbd2_file_inode(handle, mpd->inode);
  1403. if (err) {
  1404. /* Only if the journal is aborted */
  1405. mpd->retval = err;
  1406. goto submit_io;
  1407. }
  1408. }
  1409. }
  1410. /*
  1411. * Update on-disk size along with block allocation.
  1412. */
  1413. disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
  1414. if (disksize > i_size_read(mpd->inode))
  1415. disksize = i_size_read(mpd->inode);
  1416. if (disksize > EXT4_I(mpd->inode)->i_disksize) {
  1417. ext4_update_i_disksize(mpd->inode, disksize);
  1418. err = ext4_mark_inode_dirty(handle, mpd->inode);
  1419. if (err)
  1420. ext4_error(mpd->inode->i_sb,
  1421. "Failed to mark inode %lu dirty",
  1422. mpd->inode->i_ino);
  1423. }
  1424. submit_io:
  1425. mpage_da_submit_io(mpd, mapp);
  1426. mpd->io_done = 1;
  1427. }
  1428. #define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
  1429. (1 << BH_Delay) | (1 << BH_Unwritten))
  1430. /*
  1431. * mpage_add_bh_to_extent - try to add one more block to extent of blocks
  1432. *
  1433. * @mpd->lbh - extent of blocks
  1434. * @logical - logical number of the block in the file
  1435. * @bh - bh of the block (used to access block's state)
  1436. *
  1437. * the function is used to collect contig. blocks in same state
  1438. */
  1439. static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
  1440. sector_t logical, size_t b_size,
  1441. unsigned long b_state)
  1442. {
  1443. sector_t next;
  1444. int nrblocks = mpd->b_size >> mpd->inode->i_blkbits;
  1445. /*
  1446. * XXX Don't go larger than mballoc is willing to allocate
  1447. * This is a stopgap solution. We eventually need to fold
  1448. * mpage_da_submit_io() into this function and then call
  1449. * ext4_map_blocks() multiple times in a loop
  1450. */
  1451. if (nrblocks >= 8*1024*1024/mpd->inode->i_sb->s_blocksize)
  1452. goto flush_it;
  1453. /* check if thereserved journal credits might overflow */
  1454. if (!(ext4_test_inode_flag(mpd->inode, EXT4_INODE_EXTENTS))) {
  1455. if (nrblocks >= EXT4_MAX_TRANS_DATA) {
  1456. /*
  1457. * With non-extent format we are limited by the journal
  1458. * credit available. Total credit needed to insert
  1459. * nrblocks contiguous blocks is dependent on the
  1460. * nrblocks. So limit nrblocks.
  1461. */
  1462. goto flush_it;
  1463. } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
  1464. EXT4_MAX_TRANS_DATA) {
  1465. /*
  1466. * Adding the new buffer_head would make it cross the
  1467. * allowed limit for which we have journal credit
  1468. * reserved. So limit the new bh->b_size
  1469. */
  1470. b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
  1471. mpd->inode->i_blkbits;
  1472. /* we will do mpage_da_submit_io in the next loop */
  1473. }
  1474. }
  1475. /*
  1476. * First block in the extent
  1477. */
  1478. if (mpd->b_size == 0) {
  1479. mpd->b_blocknr = logical;
  1480. mpd->b_size = b_size;
  1481. mpd->b_state = b_state & BH_FLAGS;
  1482. return;
  1483. }
  1484. next = mpd->b_blocknr + nrblocks;
  1485. /*
  1486. * Can we merge the block to our big extent?
  1487. */
  1488. if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
  1489. mpd->b_size += b_size;
  1490. return;
  1491. }
  1492. flush_it:
  1493. /*
  1494. * We couldn't merge the block to our extent, so we
  1495. * need to flush current extent and start new one
  1496. */
  1497. mpage_da_map_and_submit(mpd);
  1498. return;
  1499. }
  1500. static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
  1501. {
  1502. return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
  1503. }
  1504. /*
  1505. * This function is grabs code from the very beginning of
  1506. * ext4_map_blocks, but assumes that the caller is from delayed write
  1507. * time. This function looks up the requested blocks and sets the
  1508. * buffer delay bit under the protection of i_data_sem.
  1509. */
  1510. static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
  1511. struct ext4_map_blocks *map,
  1512. struct buffer_head *bh)
  1513. {
  1514. int retval;
  1515. sector_t invalid_block = ~((sector_t) 0xffff);
  1516. if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
  1517. invalid_block = ~0;
  1518. map->m_flags = 0;
  1519. ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
  1520. "logical block %lu\n", inode->i_ino, map->m_len,
  1521. (unsigned long) map->m_lblk);
  1522. /*
  1523. * Try to see if we can get the block without requesting a new
  1524. * file system block.
  1525. */
  1526. down_read((&EXT4_I(inode)->i_data_sem));
  1527. if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
  1528. retval = ext4_ext_map_blocks(NULL, inode, map, 0);
  1529. else
  1530. retval = ext4_ind_map_blocks(NULL, inode, map, 0);
  1531. if (retval == 0) {
  1532. /*
  1533. * XXX: __block_prepare_write() unmaps passed block,
  1534. * is it OK?
  1535. */
  1536. /* If the block was allocated from previously allocated cluster,
  1537. * then we dont need to reserve it again. */
  1538. if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) {
  1539. retval = ext4_da_reserve_space(inode, iblock);
  1540. if (retval)
  1541. /* not enough space to reserve */
  1542. goto out_unlock;
  1543. }
  1544. /* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served
  1545. * and it should not appear on the bh->b_state.
  1546. */
  1547. map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
  1548. map_bh(bh, inode->i_sb, invalid_block);
  1549. set_buffer_new(bh);
  1550. set_buffer_delay(bh);
  1551. }
  1552. out_unlock:
  1553. up_read((&EXT4_I(inode)->i_data_sem));
  1554. return retval;
  1555. }
  1556. /*
  1557. * This is a special get_blocks_t callback which is used by
  1558. * ext4_da_write_begin(). It will either return mapped block or
  1559. * reserve space for a single block.
  1560. *
  1561. * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
  1562. * We also have b_blocknr = -1 and b_bdev initialized properly
  1563. *
  1564. * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
  1565. * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
  1566. * initialized properly.
  1567. */
  1568. static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
  1569. struct buffer_head *bh, int create)
  1570. {
  1571. struct ext4_map_blocks map;
  1572. int ret = 0;
  1573. BUG_ON(create == 0);
  1574. BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
  1575. map.m_lblk = iblock;
  1576. map.m_len = 1;
  1577. /*
  1578. * first, we need to know whether the block is allocated already
  1579. * preallocated blocks are unmapped but should treated
  1580. * the same as allocated blocks.
  1581. */
  1582. ret = ext4_da_map_blocks(inode, iblock, &map, bh);
  1583. if (ret <= 0)
  1584. return ret;
  1585. map_bh(bh, inode->i_sb, map.m_pblk);
  1586. bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
  1587. if (buffer_unwritten(bh)) {
  1588. /* A delayed write to unwritten bh should be marked
  1589. * new and mapped. Mapped ensures that we don't do
  1590. * get_block multiple times when we write to the same
  1591. * offset and new ensures that we do proper zero out
  1592. * for partial write.
  1593. */
  1594. set_buffer_new(bh);
  1595. set_buffer_mapped(bh);
  1596. }
  1597. return 0;
  1598. }
  1599. /*
  1600. * This function is used as a standard get_block_t calback function
  1601. * when there is no desire to allocate any blocks. It is used as a
  1602. * callback function for block_write_begin() and block_write_full_page().
  1603. * These functions should only try to map a single block at a time.
  1604. *
  1605. * Since this function doesn't do block allocations even if the caller
  1606. * requests it by passing in create=1, it is critically important that
  1607. * any caller checks to make sure that any buffer heads are returned
  1608. * by this function are either all already mapped or marked for
  1609. * delayed allocation before calling block_write_full_page(). Otherwise,
  1610. * b_blocknr could be left unitialized, and the page write functions will
  1611. * be taken by surprise.
  1612. */
  1613. static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
  1614. struct buffer_head *bh_result, int create)
  1615. {
  1616. BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
  1617. return _ext4_get_block(inode, iblock, bh_result, 0);
  1618. }
  1619. static int bget_one(handle_t *handle, struct buffer_head *bh)
  1620. {
  1621. get_bh(bh);
  1622. return 0;
  1623. }
  1624. static int bput_one(handle_t *handle, struct buffer_head *bh)
  1625. {
  1626. put_bh(bh);
  1627. return 0;
  1628. }
  1629. static int __ext4_journalled_writepage(struct page *page,
  1630. unsigned int len)
  1631. {
  1632. struct address_space *mapping = page->mapping;
  1633. struct inode *inode = mapping->host;
  1634. struct buffer_head *page_bufs;
  1635. handle_t *handle = NULL;
  1636. int ret = 0;
  1637. int err;
  1638. ClearPageChecked(page);
  1639. page_bufs = page_buffers(page);
  1640. BUG_ON(!page_bufs);
  1641. walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one);
  1642. /* As soon as we unlock the page, it can go away, but we have
  1643. * references to buffers so we are safe */
  1644. unlock_page(page);
  1645. handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
  1646. if (IS_ERR(handle)) {
  1647. ret = PTR_ERR(handle);
  1648. goto out;
  1649. }
  1650. BUG_ON(!ext4_handle_valid(handle));
  1651. ret = walk_page_buffers(handle, page_bufs, 0, len, NULL,
  1652. do_journal_get_write_access);
  1653. err = walk_page_buffers(handle, page_bufs, 0, len, NULL,
  1654. write_end_fn);
  1655. if (ret == 0)
  1656. ret = err;
  1657. EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
  1658. err = ext4_journal_stop(handle);
  1659. if (!ret)
  1660. ret = err;
  1661. walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one);
  1662. ext4_set_inode_state(inode, EXT4_STATE_JDATA);
  1663. out:
  1664. return ret;
  1665. }
  1666. static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode);
  1667. static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate);
  1668. /*
  1669. * Note that we don't need to start a transaction unless we're journaling data
  1670. * because we should have holes filled from ext4_page_mkwrite(). We even don't
  1671. * need to file the inode to the transaction's list in ordered mode because if
  1672. * we are writing back data added by write(), the inode is already there and if
  1673. * we are writing back data modified via mmap(), no one guarantees in which
  1674. * transaction the data will hit the disk. In case we are journaling data, we
  1675. * cannot start transaction directly because transaction start ranks above page
  1676. * lock so we have to do some magic.
  1677. *
  1678. * This function can get called via...
  1679. * - ext4_da_writepages after taking page lock (have journal handle)
  1680. * - journal_submit_inode_data_buffers (no journal handle)
  1681. * - shrink_page_list via pdflush (no journal handle)
  1682. * - grab_page_cache when doing write_begin (have journal handle)
  1683. *
  1684. * We don't do any block allocation in this function. If we have page with
  1685. * multiple blocks we need to write those buffer_heads that are mapped. This
  1686. * is important for mmaped based write. So if we do with blocksize 1K
  1687. * truncate(f, 1024);
  1688. * a = mmap(f, 0, 4096);
  1689. * a[0] = 'a';
  1690. * truncate(f, 4096);
  1691. * we have in the page first buffer_head mapped via page_mkwrite call back
  1692. * but other bufer_heads would be unmapped but dirty(dirty done via the
  1693. * do_wp_page). So writepage should write the first block. If we modify
  1694. * the mmap area beyond 1024 we will again get a page_fault and the
  1695. * page_mkwrite callback will do the block allocation and mark the
  1696. * buffer_heads mapped.
  1697. *
  1698. * We redirty the page if we have any buffer_heads that is either delay or
  1699. * unwritten in the page.
  1700. *
  1701. * We can get recursively called as show below.
  1702. *
  1703. * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
  1704. * ext4_writepage()
  1705. *
  1706. * But since we don't do any block allocation we should not deadlock.
  1707. * Page also have the dirty flag cleared so we don't get recurive page_lock.
  1708. */
  1709. static int ext4_writepage(struct page *page,
  1710. struct writeback_control *wbc)
  1711. {
  1712. int ret = 0, commit_write = 0;
  1713. loff_t size;
  1714. unsigned int len;
  1715. struct buffer_head *page_bufs = NULL;
  1716. struct inode *inode = page->mapping->host;
  1717. trace_ext4_writepage(page);
  1718. size = i_size_read(inode);
  1719. if (page->index == size >> PAGE_CACHE_SHIFT)
  1720. len = size & ~PAGE_CACHE_MASK;
  1721. else
  1722. len = PAGE_CACHE_SIZE;
  1723. /*
  1724. * If the page does not have buffers (for whatever reason),
  1725. * try to create them using __block_write_begin. If this
  1726. * fails, redirty the page and move on.
  1727. */
  1728. if (!page_has_buffers(page)) {
  1729. if (__block_write_begin(page, 0, len,
  1730. noalloc_get_block_write)) {
  1731. redirty_page:
  1732. redirty_page_for_writepage(wbc, page);
  1733. unlock_page(page);
  1734. return 0;
  1735. }
  1736. commit_write = 1;
  1737. }
  1738. page_bufs = page_buffers(page);
  1739. if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
  1740. ext4_bh_delay_or_unwritten)) {
  1741. /*
  1742. * We don't want to do block allocation, so redirty
  1743. * the page and return. We may reach here when we do
  1744. * a journal commit via journal_submit_inode_data_buffers.
  1745. * We can also reach here via shrink_page_list but it
  1746. * should never be for direct reclaim so warn if that
  1747. * happens
  1748. */
  1749. WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD)) ==
  1750. PF_MEMALLOC);
  1751. goto redirty_page;
  1752. }
  1753. if (commit_write)
  1754. /* now mark the buffer_heads as dirty and uptodate */
  1755. block_commit_write(page, 0, len);
  1756. if (PageChecked(page) && ext4_should_journal_data(inode))
  1757. /*
  1758. * It's mmapped pagecache. Add buffers and journal it. There
  1759. * doesn't seem much point in redirtying the page here.
  1760. */
  1761. return __ext4_journalled_writepage(page, len);
  1762. if (buffer_uninit(page_bufs)) {
  1763. ext4_set_bh_endio(page_bufs, inode);
  1764. ret = block_write_full_page_endio(page, noalloc_get_block_write,
  1765. wbc, ext4_end_io_buffer_write);
  1766. } else
  1767. ret = block_write_full_page(page, noalloc_get_block_write,
  1768. wbc);
  1769. return ret;
  1770. }
  1771. /*
  1772. * This is called via ext4_da_writepages() to
  1773. * calculate the total number of credits to reserve to fit
  1774. * a single extent allocation into a single transaction,
  1775. * ext4_da_writpeages() will loop calling this before
  1776. * the block allocation.
  1777. */
  1778. static int ext4_da_writepages_trans_blocks(struct inode *inode)
  1779. {
  1780. int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
  1781. /*
  1782. * With non-extent format the journal credit needed to
  1783. * insert nrblocks contiguous block is dependent on
  1784. * number of contiguous block. So we will limit
  1785. * number of contiguous block to a sane value
  1786. */
  1787. if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) &&
  1788. (max_blocks > EXT4_MAX_TRANS_DATA))
  1789. max_blocks = EXT4_MAX_TRANS_DATA;
  1790. return ext4_chunk_trans_blocks(inode, max_blocks);
  1791. }
  1792. /*
  1793. * write_cache_pages_da - walk the list of dirty pages of the given
  1794. * address space and accumulate pages that need writing, and call
  1795. * mpage_da_map_and_submit to map a single contiguous memory region
  1796. * and then write them.
  1797. */
  1798. static int write_cache_pages_da(struct address_space *mapping,
  1799. struct writeback_control *wbc,
  1800. struct mpage_da_data *mpd,
  1801. pgoff_t *done_index)
  1802. {
  1803. struct buffer_head *bh, *head;
  1804. struct inode *inode = mapping->host;
  1805. struct pagevec pvec;
  1806. unsigned int nr_pages;
  1807. sector_t logical;
  1808. pgoff_t index, end;
  1809. long nr_to_write = wbc->nr_to_write;
  1810. int i, tag, ret = 0;
  1811. memset(mpd, 0, sizeof(struct mpage_da_data));
  1812. mpd->wbc = wbc;
  1813. mpd->inode = inode;
  1814. pagevec_init(&pvec, 0);
  1815. index = wbc->range_start >> PAGE_CACHE_SHIFT;
  1816. end = wbc->range_end >> PAGE_CACHE_SHIFT;
  1817. if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
  1818. tag = PAGECACHE_TAG_TOWRITE;
  1819. else
  1820. tag = PAGECACHE_TAG_DIRTY;
  1821. *done_index = index;
  1822. while (index <= end) {
  1823. nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
  1824. min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
  1825. if (nr_pages == 0)
  1826. return 0;
  1827. for (i = 0; i < nr_pages; i++) {
  1828. struct page *page = pvec.pages[i];
  1829. /*
  1830. * At this point, the page may be truncated or
  1831. * invalidated (changing page->mapping to NULL), or
  1832. * even swizzled back from swapper_space to tmpfs file
  1833. * mapping. However, page->index will not change
  1834. * because we have a reference on the page.
  1835. */
  1836. if (page->index > end)
  1837. goto out;
  1838. *done_index = page->index + 1;
  1839. /*
  1840. * If we can't merge this page, and we have
  1841. * accumulated an contiguous region, write it
  1842. */
  1843. if ((mpd->next_page != page->index) &&
  1844. (mpd->next_page != mpd->first_page)) {
  1845. mpage_da_map_and_submit(mpd);
  1846. goto ret_extent_tail;
  1847. }
  1848. lock_page(page);
  1849. /*
  1850. * If the page is no longer dirty, or its
  1851. * mapping no longer corresponds to inode we
  1852. * are writing (which means it has been
  1853. * truncated or invalidated), or the page is
  1854. * already under writeback and we are not
  1855. * doing a data integrity writeback, skip the page
  1856. */
  1857. if (!PageDirty(page) ||
  1858. (PageWriteback(page) &&
  1859. (wbc->sync_mode == WB_SYNC_NONE)) ||
  1860. unlikely(page->mapping != mapping)) {
  1861. unlock_page(page);
  1862. continue;
  1863. }
  1864. wait_on_page_writeback(page);
  1865. BUG_ON(PageWriteback(page));
  1866. if (mpd->next_page != page->index)
  1867. mpd->first_page = page->index;
  1868. mpd->next_page = page->index + 1;
  1869. logical = (sector_t) page->index <<
  1870. (PAGE_CACHE_SHIFT - inode->i_blkbits);
  1871. if (!page_has_buffers(page)) {
  1872. mpage_add_bh_to_extent(mpd, logical,
  1873. PAGE_CACHE_SIZE,
  1874. (1 << BH_Dirty) | (1 << BH_Uptodate));
  1875. if (mpd->io_done)
  1876. goto ret_extent_tail;
  1877. } else {
  1878. /*
  1879. * Page with regular buffer heads,
  1880. * just add all dirty ones
  1881. */
  1882. head = page_buffers(page);
  1883. bh = head;
  1884. do {
  1885. BUG_ON(buffer_locked(bh));
  1886. /*
  1887. * We need to try to allocate
  1888. * unmapped blocks in the same page.
  1889. * Otherwise we won't make progress
  1890. * with the page in ext4_writepage
  1891. */
  1892. if (ext4_bh_delay_or_unwritten(NULL, bh)) {
  1893. mpage_add_bh_to_extent(mpd, logical,
  1894. bh->b_size,
  1895. bh->b_state);
  1896. if (mpd->io_done)
  1897. goto ret_extent_tail;
  1898. } else if (buffer_dirty(bh) && (buffer_mapped(bh))) {
  1899. /*
  1900. * mapped dirty buffer. We need
  1901. * to update the b_state
  1902. * because we look at b_state
  1903. * in mpage_da_map_blocks. We
  1904. * don't update b_size because
  1905. * if we find an unmapped
  1906. * buffer_head later we need to
  1907. * use the b_state flag of that
  1908. * buffer_head.
  1909. */
  1910. if (mpd->b_size == 0)
  1911. mpd->b_state = bh->b_state & BH_FLAGS;
  1912. }
  1913. logical++;
  1914. } while ((bh = bh->b_this_page) != head);
  1915. }
  1916. if (nr_to_write > 0) {
  1917. nr_to_write--;
  1918. if (nr_to_write == 0 &&
  1919. wbc->sync_mode == WB_SYNC_NONE)
  1920. /*
  1921. * We stop writing back only if we are
  1922. * not doing integrity sync. In case of
  1923. * integrity sync we have to keep going
  1924. * because someone may be concurrently
  1925. * dirtying pages, and we might have
  1926. * synced a lot of newly appeared dirty
  1927. * pages, but have not synced all of the
  1928. * old dirty pages.
  1929. */
  1930. goto out;
  1931. }
  1932. }
  1933. pagevec_release(&pvec);
  1934. cond_resched();
  1935. }
  1936. return 0;
  1937. ret_extent_tail:
  1938. ret = MPAGE_DA_EXTENT_TAIL;
  1939. out:
  1940. pagevec_release(&pvec);
  1941. cond_resched();
  1942. return ret;
  1943. }
  1944. static int ext4_da_writepages(struct address_space *mapping,
  1945. struct writeback_control *wbc)
  1946. {
  1947. pgoff_t index;
  1948. int range_whole = 0;
  1949. handle_t *handle = NULL;
  1950. struct mpage_da_data mpd;
  1951. struct inode *inode = mapping->host;
  1952. int pages_written = 0;
  1953. unsigned int max_pages;
  1954. int range_cyclic, cycled = 1, io_done = 0;
  1955. int needed_blocks, ret = 0;
  1956. long desired_nr_to_write, nr_to_writebump = 0;
  1957. loff_t range_start = wbc->range_start;
  1958. struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
  1959. pgoff_t done_index = 0;
  1960. pgoff_t end;
  1961. struct blk_plug plug;
  1962. trace_ext4_da_writepages(inode, wbc);
  1963. /*
  1964. * No pages to write? This is mainly a kludge to avoid starting
  1965. * a transaction for special inodes like journal inode on last iput()
  1966. * because that could violate lock ordering on umount
  1967. */
  1968. if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
  1969. return 0;
  1970. /*
  1971. * If the filesystem has aborted, it is read-only, so return
  1972. * right away instead of dumping stack traces later on that
  1973. * will obscure the real source of the problem. We test
  1974. * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
  1975. * the latter could be true if the filesystem is mounted
  1976. * read-only, and in that case, ext4_da_writepages should
  1977. * *never* be called, so if that ever happens, we would want
  1978. * the stack trace.
  1979. */
  1980. if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
  1981. return -EROFS;
  1982. if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
  1983. range_whole = 1;
  1984. range_cyclic = wbc->range_cyclic;
  1985. if (wbc->range_cyclic) {
  1986. index = mapping->writeback_index;
  1987. if (index)
  1988. cycled = 0;
  1989. wbc->range_start = index << PAGE_CACHE_SHIFT;
  1990. wbc->range_end = LLONG_MAX;
  1991. wbc->range_cyclic = 0;
  1992. end = -1;
  1993. } else {
  1994. index = wbc->range_start >> PAGE_CACHE_SHIFT;
  1995. end = wbc->range_end >> PAGE_CACHE_SHIFT;
  1996. }
  1997. /*
  1998. * This works around two forms of stupidity. The first is in
  1999. * the writeback code, which caps the maximum number of pages
  2000. * written to be 1024 pages. This is wrong on multiple
  2001. * levels; different architectues have a different page size,
  2002. * which changes the maximum amount of data which gets
  2003. * written. Secondly, 4 megabytes is way too small. XFS
  2004. * forces this value to be 16 megabytes by multiplying
  2005. * nr_to_write parameter by four, and then relies on its
  2006. * allocator to allocate larger extents to make them
  2007. * contiguous. Unfortunately this brings us to the second
  2008. * stupidity, which is that ext4's mballoc code only allocates
  2009. * at most 2048 blocks. So we force contiguous writes up to
  2010. * the number of dirty blocks in the inode, or
  2011. * sbi->max_writeback_mb_bump whichever is smaller.
  2012. */
  2013. max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
  2014. if (!range_cyclic && range_whole) {
  2015. if (wbc->nr_to_write == LONG_MAX)
  2016. desired_nr_to_write = wbc->nr_to_write;
  2017. else
  2018. desired_nr_to_write = wbc->nr_to_write * 8;
  2019. } else
  2020. desired_nr_to_write = ext4_num_dirty_pages(inode, index,
  2021. max_pages);
  2022. if (desired_nr_to_write > max_pages)
  2023. desired_nr_to_write = max_pages;
  2024. if (wbc->nr_to_write < desired_nr_to_write) {
  2025. nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
  2026. wbc->nr_to_write = desired_nr_to_write;
  2027. }
  2028. retry:
  2029. if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
  2030. tag_pages_for_writeback(mapping, index, end);
  2031. blk_start_plug(&plug);
  2032. while (!ret && wbc->nr_to_write > 0) {
  2033. /*
  2034. * we insert one extent at a time. So we need
  2035. * credit needed for single extent allocation.
  2036. * journalled mode is currently not supported
  2037. * by delalloc
  2038. */
  2039. BUG_ON(ext4_should_journal_data(inode));
  2040. needed_blocks = ext4_da_writepages_trans_blocks(inode);
  2041. /* start a new transaction*/
  2042. handle = ext4_journal_start(inode, needed_blocks);
  2043. if (IS_ERR(handle)) {
  2044. ret = PTR_ERR(handle);
  2045. ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
  2046. "%ld pages, ino %lu; err %d", __func__,
  2047. wbc->nr_to_write, inode->i_ino, ret);
  2048. blk_finish_plug(&plug);
  2049. goto out_writepages;
  2050. }
  2051. /*
  2052. * Now call write_cache_pages_da() to find the next
  2053. * contiguous region of logical blocks that need
  2054. * blocks to be allocated by ext4 and submit them.
  2055. */
  2056. ret = write_cache_pages_da(mapping, wbc, &mpd, &done_index);
  2057. /*
  2058. * If we have a contiguous extent of pages and we
  2059. * haven't done the I/O yet, map the blocks and submit
  2060. * them for I/O.
  2061. */
  2062. if (!mpd.io_done && mpd.next_page != mpd.first_page) {
  2063. mpage_da_map_and_submit(&mpd);
  2064. ret = MPAGE_DA_EXTENT_TAIL;
  2065. }
  2066. trace_ext4_da_write_pages(inode, &mpd);
  2067. wbc->nr_to_write -= mpd.pages_written;
  2068. ext4_journal_stop(handle);
  2069. if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
  2070. /* commit the transaction which would
  2071. * free blocks released in the transaction
  2072. * and try again
  2073. */
  2074. jbd2_journal_force_commit_nested(sbi->s_journal);
  2075. ret = 0;
  2076. } else if (ret == MPAGE_DA_EXTENT_TAIL) {
  2077. /*
  2078. * Got one extent now try with rest of the pages.
  2079. * If mpd.retval is set -EIO, journal is aborted.
  2080. * So we don't need to write any more.
  2081. */
  2082. pages_written += mpd.pages_written;
  2083. ret = mpd.retval;
  2084. io_done = 1;
  2085. } else if (wbc->nr_to_write)
  2086. /*
  2087. * There is no more writeout needed
  2088. * or we requested for a noblocking writeout
  2089. * and we found the device congested
  2090. */
  2091. break;
  2092. }
  2093. blk_finish_plug(&plug);
  2094. if (!io_done && !cycled) {
  2095. cycled = 1;
  2096. index = 0;
  2097. wbc->range_start = index << PAGE_CACHE_SHIFT;
  2098. wbc->range_end = mapping->writeback_index - 1;
  2099. goto retry;
  2100. }
  2101. /* Update index */
  2102. wbc->range_cyclic = range_cyclic;
  2103. if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
  2104. /*
  2105. * set the writeback_index so that range_cyclic
  2106. * mode will write it back later
  2107. */
  2108. mapping->writeback_index = done_index;
  2109. out_writepages:
  2110. wbc->nr_to_write -= nr_to_writebump;
  2111. wbc->range_start = range_start;
  2112. trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
  2113. return ret;
  2114. }
  2115. #define FALL_BACK_TO_NONDELALLOC 1
  2116. static int ext4_nonda_switch(struct super_block *sb)
  2117. {
  2118. s64 free_blocks, dirty_blocks;
  2119. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2120. /*
  2121. * switch to non delalloc mode if we are running low
  2122. * on free block. The free block accounting via percpu
  2123. * counters can get slightly wrong with percpu_counter_batch getting
  2124. * accumulated on each CPU without updating global counters
  2125. * Delalloc need an accurate free block accounting. So switch
  2126. * to non delalloc when we are near to error range.
  2127. */
  2128. free_blocks = EXT4_C2B(sbi,
  2129. percpu_counter_read_positive(&sbi->s_freeclusters_counter));
  2130. dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
  2131. if (2 * free_blocks < 3 * dirty_blocks ||
  2132. free_blocks < (dirty_blocks + EXT4_FREECLUSTERS_WATERMARK)) {
  2133. /*
  2134. * free block count is less than 150% of dirty blocks
  2135. * or free blocks is less than watermark
  2136. */
  2137. return 1;
  2138. }
  2139. /*
  2140. * Even if we don't switch but are nearing capacity,
  2141. * start pushing delalloc when 1/2 of free blocks are dirty.
  2142. */
  2143. if (free_blocks < 2 * dirty_blocks)
  2144. writeback_inodes_sb_if_idle(sb, WB_REASON_FS_FREE_SPACE);
  2145. return 0;
  2146. }
  2147. static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
  2148. loff_t pos, unsigned len, unsigned flags,
  2149. struct page **pagep, void **fsdata)
  2150. {
  2151. int ret, retries = 0;
  2152. struct page *page;
  2153. pgoff_t index;
  2154. struct inode *inode = mapping->host;
  2155. handle_t *handle;
  2156. loff_t page_len;
  2157. index = pos >> PAGE_CACHE_SHIFT;
  2158. if (ext4_nonda_switch(inode->i_sb)) {
  2159. *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
  2160. return ext4_write_begin(file, mapping, pos,
  2161. len, flags, pagep, fsdata);
  2162. }
  2163. *fsdata = (void *)0;
  2164. trace_ext4_da_write_begin(inode, pos, len, flags);
  2165. retry:
  2166. /*
  2167. * With delayed allocation, we don't log the i_disksize update
  2168. * if there is delayed block allocation. But we still need
  2169. * to journalling the i_disksize update if writes to the end
  2170. * of file which has an already mapped buffer.
  2171. */
  2172. handle = ext4_journal_start(inode, 1);
  2173. if (IS_ERR(handle)) {
  2174. ret = PTR_ERR(handle);
  2175. goto out;
  2176. }
  2177. /* We cannot recurse into the filesystem as the transaction is already
  2178. * started */
  2179. flags |= AOP_FLAG_NOFS;
  2180. page = grab_cache_page_write_begin(mapping, index, flags);
  2181. if (!page) {
  2182. ext4_journal_stop(handle);
  2183. ret = -ENOMEM;
  2184. goto out;
  2185. }
  2186. *pagep = page;
  2187. ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
  2188. if (ret < 0) {
  2189. unlock_page(page);
  2190. ext4_journal_stop(handle);
  2191. page_cache_release(page);
  2192. /*
  2193. * block_write_begin may have instantiated a few blocks
  2194. * outside i_size. Trim these off again. Don't need
  2195. * i_size_read because we hold i_mutex.
  2196. */
  2197. if (pos + len > inode->i_size)
  2198. ext4_truncate_failed_write(inode);
  2199. } else {
  2200. page_len = pos & (PAGE_CACHE_SIZE - 1);
  2201. if (page_len > 0) {
  2202. ret = ext4_discard_partial_page_buffers_no_lock(handle,
  2203. inode, page, pos - page_len, page_len,
  2204. EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED);
  2205. }
  2206. }
  2207. if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
  2208. goto retry;
  2209. out:
  2210. return ret;
  2211. }
  2212. /*
  2213. * Check if we should update i_disksize
  2214. * when write to the end of file but not require block allocation
  2215. */
  2216. static int ext4_da_should_update_i_disksize(struct page *page,
  2217. unsigned long offset)
  2218. {
  2219. struct buffer_head *bh;
  2220. struct inode *inode = page->mapping->host;
  2221. unsigned int idx;
  2222. int i;
  2223. bh = page_buffers(page);
  2224. idx = offset >> inode->i_blkbits;
  2225. for (i = 0; i < idx; i++)
  2226. bh = bh->b_this_page;
  2227. if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
  2228. return 0;
  2229. return 1;
  2230. }
  2231. static int ext4_da_write_end(struct file *file,
  2232. struct address_space *mapping,
  2233. loff_t pos, unsigned len, unsigned copied,
  2234. struct page *page, void *fsdata)
  2235. {
  2236. struct inode *inode = mapping->host;
  2237. int ret = 0, ret2;
  2238. handle_t *handle = ext4_journal_current_handle();
  2239. loff_t new_i_size;
  2240. unsigned long start, end;
  2241. int write_mode = (int)(unsigned long)fsdata;
  2242. loff_t page_len;
  2243. if (write_mode == FALL_BACK_TO_NONDELALLOC) {
  2244. if (ext4_should_order_data(inode)) {
  2245. return ext4_ordered_write_end(file, mapping, pos,
  2246. len, copied, page, fsdata);
  2247. } else if (ext4_should_writeback_data(inode)) {
  2248. return ext4_writeback_write_end(file, mapping, pos,
  2249. len, copied, page, fsdata);
  2250. } else {
  2251. BUG();
  2252. }
  2253. }
  2254. trace_ext4_da_write_end(inode, pos, len, copied);
  2255. start = pos & (PAGE_CACHE_SIZE - 1);
  2256. end = start + copied - 1;
  2257. /*
  2258. * generic_write_end() will run mark_inode_dirty() if i_size
  2259. * changes. So let's piggyback the i_disksize mark_inode_dirty
  2260. * into that.
  2261. */
  2262. new_i_size = pos + copied;
  2263. if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
  2264. if (ext4_da_should_update_i_disksize(page, end)) {
  2265. down_write(&EXT4_I(inode)->i_data_sem);
  2266. if (new_i_size > EXT4_I(inode)->i_disksize) {
  2267. /*
  2268. * Updating i_disksize when extending file
  2269. * without needing block allocation
  2270. */
  2271. if (ext4_should_order_data(inode))
  2272. ret = ext4_jbd2_file_inode(handle,
  2273. inode);
  2274. EXT4_I(inode)->i_disksize = new_i_size;
  2275. }
  2276. up_write(&EXT4_I(inode)->i_data_sem);
  2277. /* We need to mark inode dirty even if
  2278. * new_i_size is less that inode->i_size
  2279. * bu greater than i_disksize.(hint delalloc)
  2280. */
  2281. ext4_mark_inode_dirty(handle, inode);
  2282. }
  2283. }
  2284. ret2 = generic_write_end(file, mapping, pos, len, copied,
  2285. page, fsdata);
  2286. page_len = PAGE_CACHE_SIZE -
  2287. ((pos + copied - 1) & (PAGE_CACHE_SIZE - 1));
  2288. if (page_len > 0) {
  2289. ret = ext4_discard_partial_page_buffers_no_lock(handle,
  2290. inode, page, pos + copied - 1, page_len,
  2291. EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED);
  2292. }
  2293. copied = ret2;
  2294. if (ret2 < 0)
  2295. ret = ret2;
  2296. ret2 = ext4_journal_stop(handle);
  2297. if (!ret)
  2298. ret = ret2;
  2299. return ret ? ret : copied;
  2300. }
  2301. static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
  2302. {
  2303. /*
  2304. * Drop reserved blocks
  2305. */
  2306. BUG_ON(!PageLocked(page));
  2307. if (!page_has_buffers(page))
  2308. goto out;
  2309. ext4_da_page_release_reservation(page, offset);
  2310. out:
  2311. ext4_invalidatepage(page, offset);
  2312. return;
  2313. }
  2314. /*
  2315. * Force all delayed allocation blocks to be allocated for a given inode.
  2316. */
  2317. int ext4_alloc_da_blocks(struct inode *inode)
  2318. {
  2319. trace_ext4_alloc_da_blocks(inode);
  2320. if (!EXT4_I(inode)->i_reserved_data_blocks &&
  2321. !EXT4_I(inode)->i_reserved_meta_blocks)
  2322. return 0;
  2323. /*
  2324. * We do something simple for now. The filemap_flush() will
  2325. * also start triggering a write of the data blocks, which is
  2326. * not strictly speaking necessary (and for users of
  2327. * laptop_mode, not even desirable). However, to do otherwise
  2328. * would require replicating code paths in:
  2329. *
  2330. * ext4_da_writepages() ->
  2331. * write_cache_pages() ---> (via passed in callback function)
  2332. * __mpage_da_writepage() -->
  2333. * mpage_add_bh_to_extent()
  2334. * mpage_da_map_blocks()
  2335. *
  2336. * The problem is that write_cache_pages(), located in
  2337. * mm/page-writeback.c, marks pages clean in preparation for
  2338. * doing I/O, which is not desirable if we're not planning on
  2339. * doing I/O at all.
  2340. *
  2341. * We could call write_cache_pages(), and then redirty all of
  2342. * the pages by calling redirty_page_for_writepage() but that
  2343. * would be ugly in the extreme. So instead we would need to
  2344. * replicate parts of the code in the above functions,
  2345. * simplifying them because we wouldn't actually intend to
  2346. * write out the pages, but rather only collect contiguous
  2347. * logical block extents, call the multi-block allocator, and
  2348. * then update the buffer heads with the block allocations.
  2349. *
  2350. * For now, though, we'll cheat by calling filemap_flush(),
  2351. * which will map the blocks, and start the I/O, but not
  2352. * actually wait for the I/O to complete.
  2353. */
  2354. return filemap_flush(inode->i_mapping);
  2355. }
  2356. /*
  2357. * bmap() is special. It gets used by applications such as lilo and by
  2358. * the swapper to find the on-disk block of a specific piece of data.
  2359. *
  2360. * Naturally, this is dangerous if the block concerned is still in the
  2361. * journal. If somebody makes a swapfile on an ext4 data-journaling
  2362. * filesystem and enables swap, then they may get a nasty shock when the
  2363. * data getting swapped to that swapfile suddenly gets overwritten by
  2364. * the original zero's written out previously to the journal and
  2365. * awaiting writeback in the kernel's buffer cache.
  2366. *
  2367. * So, if we see any bmap calls here on a modified, data-journaled file,
  2368. * take extra steps to flush any blocks which might be in the cache.
  2369. */
  2370. static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
  2371. {
  2372. struct inode *inode = mapping->host;
  2373. journal_t *journal;
  2374. int err;
  2375. if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
  2376. test_opt(inode->i_sb, DELALLOC)) {
  2377. /*
  2378. * With delalloc we want to sync the file
  2379. * so that we can make sure we allocate
  2380. * blocks for file
  2381. */
  2382. filemap_write_and_wait(mapping);
  2383. }
  2384. if (EXT4_JOURNAL(inode) &&
  2385. ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
  2386. /*
  2387. * This is a REALLY heavyweight approach, but the use of
  2388. * bmap on dirty files is expected to be extremely rare:
  2389. * only if we run lilo or swapon on a freshly made file
  2390. * do we expect this to happen.
  2391. *
  2392. * (bmap requires CAP_SYS_RAWIO so this does not
  2393. * represent an unprivileged user DOS attack --- we'd be
  2394. * in trouble if mortal users could trigger this path at
  2395. * will.)
  2396. *
  2397. * NB. EXT4_STATE_JDATA is not set on files other than
  2398. * regular files. If somebody wants to bmap a directory
  2399. * or symlink and gets confused because the buffer
  2400. * hasn't yet been flushed to disk, they deserve
  2401. * everything they get.
  2402. */
  2403. ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
  2404. journal = EXT4_JOURNAL(inode);
  2405. jbd2_journal_lock_updates(journal);
  2406. err = jbd2_journal_flush(journal);
  2407. jbd2_journal_unlock_updates(journal);
  2408. if (err)
  2409. return 0;
  2410. }
  2411. return generic_block_bmap(mapping, block, ext4_get_block);
  2412. }
  2413. static int ext4_readpage(struct file *file, struct page *page)
  2414. {
  2415. trace_ext4_readpage(page);
  2416. return mpage_readpage(page, ext4_get_block);
  2417. }
  2418. static int
  2419. ext4_readpages(struct file *file, struct address_space *mapping,
  2420. struct list_head *pages, unsigned nr_pages)
  2421. {
  2422. return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
  2423. }
  2424. static void ext4_invalidatepage_free_endio(struct page *page, unsigned long offset)
  2425. {
  2426. struct buffer_head *head, *bh;
  2427. unsigned int curr_off = 0;
  2428. if (!page_has_buffers(page))
  2429. return;
  2430. head = bh = page_buffers(page);
  2431. do {
  2432. if (offset <= curr_off && test_clear_buffer_uninit(bh)
  2433. && bh->b_private) {
  2434. ext4_free_io_end(bh->b_private);
  2435. bh->b_private = NULL;
  2436. bh->b_end_io = NULL;
  2437. }
  2438. curr_off = curr_off + bh->b_size;
  2439. bh = bh->b_this_page;
  2440. } while (bh != head);
  2441. }
  2442. static void ext4_invalidatepage(struct page *page, unsigned long offset)
  2443. {
  2444. journal_t *journal = EXT4_JOURNAL(page->mapping->host);
  2445. trace_ext4_invalidatepage(page, offset);
  2446. /*
  2447. * free any io_end structure allocated for buffers to be discarded
  2448. */
  2449. if (ext4_should_dioread_nolock(page->mapping->host))
  2450. ext4_invalidatepage_free_endio(page, offset);
  2451. /*
  2452. * If it's a full truncate we just forget about the pending dirtying
  2453. */
  2454. if (offset == 0)
  2455. ClearPageChecked(page);
  2456. if (journal)
  2457. jbd2_journal_invalidatepage(journal, page, offset);
  2458. else
  2459. block_invalidatepage(page, offset);
  2460. }
  2461. static int ext4_releasepage(struct page *page, gfp_t wait)
  2462. {
  2463. journal_t *journal = EXT4_JOURNAL(page->mapping->host);
  2464. trace_ext4_releasepage(page);
  2465. WARN_ON(PageChecked(page));
  2466. if (!page_has_buffers(page))
  2467. return 0;
  2468. if (journal)
  2469. return jbd2_journal_try_to_free_buffers(journal, page, wait);
  2470. else
  2471. return try_to_free_buffers(page);
  2472. }
  2473. /*
  2474. * ext4_get_block used when preparing for a DIO write or buffer write.
  2475. * We allocate an uinitialized extent if blocks haven't been allocated.
  2476. * The extent will be converted to initialized after the IO is complete.
  2477. */
  2478. static int ext4_get_block_write(struct inode *inode, sector_t iblock,
  2479. struct buffer_head *bh_result, int create)
  2480. {
  2481. ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
  2482. inode->i_ino, create);
  2483. return _ext4_get_block(inode, iblock, bh_result,
  2484. EXT4_GET_BLOCKS_IO_CREATE_EXT);
  2485. }
  2486. static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
  2487. ssize_t size, void *private, int ret,
  2488. bool is_async)
  2489. {
  2490. struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
  2491. ext4_io_end_t *io_end = iocb->private;
  2492. struct workqueue_struct *wq;
  2493. unsigned long flags;
  2494. struct ext4_inode_info *ei;
  2495. /* if not async direct IO or dio with 0 bytes write, just return */
  2496. if (!io_end || !size)
  2497. goto out;
  2498. ext_debug("ext4_end_io_dio(): io_end 0x%p"
  2499. "for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
  2500. iocb->private, io_end->inode->i_ino, iocb, offset,
  2501. size);
  2502. iocb->private = NULL;
  2503. /* if not aio dio with unwritten extents, just free io and return */
  2504. if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
  2505. ext4_free_io_end(io_end);
  2506. out:
  2507. if (is_async)
  2508. aio_complete(iocb, ret, 0);
  2509. inode_dio_done(inode);
  2510. return;
  2511. }
  2512. io_end->offset = offset;
  2513. io_end->size = size;
  2514. if (is_async) {
  2515. io_end->iocb = iocb;
  2516. io_end->result = ret;
  2517. }
  2518. wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
  2519. /* Add the io_end to per-inode completed aio dio list*/
  2520. ei = EXT4_I(io_end->inode);
  2521. spin_lock_irqsave(&ei->i_completed_io_lock, flags);
  2522. list_add_tail(&io_end->list, &ei->i_completed_io_list);
  2523. spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
  2524. /* queue the work to convert unwritten extents to written */
  2525. queue_work(wq, &io_end->work);
  2526. /* XXX: probably should move into the real I/O completion handler */
  2527. inode_dio_done(inode);
  2528. }
  2529. static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate)
  2530. {
  2531. ext4_io_end_t *io_end = bh->b_private;
  2532. struct workqueue_struct *wq;
  2533. struct inode *inode;
  2534. unsigned long flags;
  2535. if (!test_clear_buffer_uninit(bh) || !io_end)
  2536. goto out;
  2537. if (!(io_end->inode->i_sb->s_flags & MS_ACTIVE)) {
  2538. printk("sb umounted, discard end_io request for inode %lu\n",
  2539. io_end->inode->i_ino);
  2540. ext4_free_io_end(io_end);
  2541. goto out;
  2542. }
  2543. /*
  2544. * It may be over-defensive here to check EXT4_IO_END_UNWRITTEN now,
  2545. * but being more careful is always safe for the future change.
  2546. */
  2547. inode = io_end->inode;
  2548. ext4_set_io_unwritten_flag(inode, io_end);
  2549. /* Add the io_end to per-inode completed io list*/
  2550. spin_lock_irqsave(&EXT4_I(inode)->i_completed_io_lock, flags);
  2551. list_add_tail(&io_end->list, &EXT4_I(inode)->i_completed_io_list);
  2552. spin_unlock_irqrestore(&EXT4_I(inode)->i_completed_io_lock, flags);
  2553. wq = EXT4_SB(inode->i_sb)->dio_unwritten_wq;
  2554. /* queue the work to convert unwritten extents to written */
  2555. queue_work(wq, &io_end->work);
  2556. out:
  2557. bh->b_private = NULL;
  2558. bh->b_end_io = NULL;
  2559. clear_buffer_uninit(bh);
  2560. end_buffer_async_write(bh, uptodate);
  2561. }
  2562. static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode)
  2563. {
  2564. ext4_io_end_t *io_end;
  2565. struct page *page = bh->b_page;
  2566. loff_t offset = (sector_t)page->index << PAGE_CACHE_SHIFT;
  2567. size_t size = bh->b_size;
  2568. retry:
  2569. io_end = ext4_init_io_end(inode, GFP_ATOMIC);
  2570. if (!io_end) {
  2571. pr_warn_ratelimited("%s: allocation fail\n", __func__);
  2572. schedule();
  2573. goto retry;
  2574. }
  2575. io_end->offset = offset;
  2576. io_end->size = size;
  2577. /*
  2578. * We need to hold a reference to the page to make sure it
  2579. * doesn't get evicted before ext4_end_io_work() has a chance
  2580. * to convert the extent from written to unwritten.
  2581. */
  2582. io_end->page = page;
  2583. get_page(io_end->page);
  2584. bh->b_private = io_end;
  2585. bh->b_end_io = ext4_end_io_buffer_write;
  2586. return 0;
  2587. }
  2588. /*
  2589. * For ext4 extent files, ext4 will do direct-io write to holes,
  2590. * preallocated extents, and those write extend the file, no need to
  2591. * fall back to buffered IO.
  2592. *
  2593. * For holes, we fallocate those blocks, mark them as uninitialized
  2594. * If those blocks were preallocated, we mark sure they are splited, but
  2595. * still keep the range to write as uninitialized.
  2596. *
  2597. * The unwrritten extents will be converted to written when DIO is completed.
  2598. * For async direct IO, since the IO may still pending when return, we
  2599. * set up an end_io call back function, which will do the conversion
  2600. * when async direct IO completed.
  2601. *
  2602. * If the O_DIRECT write will extend the file then add this inode to the
  2603. * orphan list. So recovery will truncate it back to the original size
  2604. * if the machine crashes during the write.
  2605. *
  2606. */
  2607. static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
  2608. const struct iovec *iov, loff_t offset,
  2609. unsigned long nr_segs)
  2610. {
  2611. struct file *file = iocb->ki_filp;
  2612. struct inode *inode = file->f_mapping->host;
  2613. ssize_t ret;
  2614. size_t count = iov_length(iov, nr_segs);
  2615. loff_t final_size = offset + count;
  2616. if (rw == WRITE && final_size <= inode->i_size) {
  2617. /*
  2618. * We could direct write to holes and fallocate.
  2619. *
  2620. * Allocated blocks to fill the hole are marked as uninitialized
  2621. * to prevent parallel buffered read to expose the stale data
  2622. * before DIO complete the data IO.
  2623. *
  2624. * As to previously fallocated extents, ext4 get_block
  2625. * will just simply mark the buffer mapped but still
  2626. * keep the extents uninitialized.
  2627. *
  2628. * for non AIO case, we will convert those unwritten extents
  2629. * to written after return back from blockdev_direct_IO.
  2630. *
  2631. * for async DIO, the conversion needs to be defered when
  2632. * the IO is completed. The ext4 end_io callback function
  2633. * will be called to take care of the conversion work.
  2634. * Here for async case, we allocate an io_end structure to
  2635. * hook to the iocb.
  2636. */
  2637. iocb->private = NULL;
  2638. EXT4_I(inode)->cur_aio_dio = NULL;
  2639. if (!is_sync_kiocb(iocb)) {
  2640. iocb->private = ext4_init_io_end(inode, GFP_NOFS);
  2641. if (!iocb->private)
  2642. return -ENOMEM;
  2643. /*
  2644. * we save the io structure for current async
  2645. * direct IO, so that later ext4_map_blocks()
  2646. * could flag the io structure whether there
  2647. * is a unwritten extents needs to be converted
  2648. * when IO is completed.
  2649. */
  2650. EXT4_I(inode)->cur_aio_dio = iocb->private;
  2651. }
  2652. ret = __blockdev_direct_IO(rw, iocb, inode,
  2653. inode->i_sb->s_bdev, iov,
  2654. offset, nr_segs,
  2655. ext4_get_block_write,
  2656. ext4_end_io_dio,
  2657. NULL,
  2658. DIO_LOCKING | DIO_SKIP_HOLES);
  2659. if (iocb->private)
  2660. EXT4_I(inode)->cur_aio_dio = NULL;
  2661. /*
  2662. * The io_end structure takes a reference to the inode,
  2663. * that structure needs to be destroyed and the
  2664. * reference to the inode need to be dropped, when IO is
  2665. * complete, even with 0 byte write, or failed.
  2666. *
  2667. * In the successful AIO DIO case, the io_end structure will be
  2668. * desctroyed and the reference to the inode will be dropped
  2669. * after the end_io call back function is called.
  2670. *
  2671. * In the case there is 0 byte write, or error case, since
  2672. * VFS direct IO won't invoke the end_io call back function,
  2673. * we need to free the end_io structure here.
  2674. */
  2675. if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
  2676. ext4_free_io_end(iocb->private);
  2677. iocb->private = NULL;
  2678. } else if (ret > 0 && ext4_test_inode_state(inode,
  2679. EXT4_STATE_DIO_UNWRITTEN)) {
  2680. int err;
  2681. /*
  2682. * for non AIO case, since the IO is already
  2683. * completed, we could do the conversion right here
  2684. */
  2685. err = ext4_convert_unwritten_extents(inode,
  2686. offset, ret);
  2687. if (err < 0)
  2688. ret = err;
  2689. ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
  2690. }
  2691. return ret;
  2692. }
  2693. /* for write the the end of file case, we fall back to old way */
  2694. return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
  2695. }
  2696. static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
  2697. const struct iovec *iov, loff_t offset,
  2698. unsigned long nr_segs)
  2699. {
  2700. struct file *file = iocb->ki_filp;
  2701. struct inode *inode = file->f_mapping->host;
  2702. ssize_t ret;
  2703. /*
  2704. * If we are doing data journalling we don't support O_DIRECT
  2705. */
  2706. if (ext4_should_journal_data(inode))
  2707. return 0;
  2708. trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw);
  2709. if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
  2710. ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
  2711. else
  2712. ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
  2713. trace_ext4_direct_IO_exit(inode, offset,
  2714. iov_length(iov, nr_segs), rw, ret);
  2715. return ret;
  2716. }
  2717. /*
  2718. * Pages can be marked dirty completely asynchronously from ext4's journalling
  2719. * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
  2720. * much here because ->set_page_dirty is called under VFS locks. The page is
  2721. * not necessarily locked.
  2722. *
  2723. * We cannot just dirty the page and leave attached buffers clean, because the
  2724. * buffers' dirty state is "definitive". We cannot just set the buffers dirty
  2725. * or jbddirty because all the journalling code will explode.
  2726. *
  2727. * So what we do is to mark the page "pending dirty" and next time writepage
  2728. * is called, propagate that into the buffers appropriately.
  2729. */
  2730. static int ext4_journalled_set_page_dirty(struct page *page)
  2731. {
  2732. SetPageChecked(page);
  2733. return __set_page_dirty_nobuffers(page);
  2734. }
  2735. static const struct address_space_operations ext4_ordered_aops = {
  2736. .readpage = ext4_readpage,
  2737. .readpages = ext4_readpages,
  2738. .writepage = ext4_writepage,
  2739. .write_begin = ext4_write_begin,
  2740. .write_end = ext4_ordered_write_end,
  2741. .bmap = ext4_bmap,
  2742. .invalidatepage = ext4_invalidatepage,
  2743. .releasepage = ext4_releasepage,
  2744. .direct_IO = ext4_direct_IO,
  2745. .migratepage = buffer_migrate_page,
  2746. .is_partially_uptodate = block_is_partially_uptodate,
  2747. .error_remove_page = generic_error_remove_page,
  2748. };
  2749. static const struct address_space_operations ext4_writeback_aops = {
  2750. .readpage = ext4_readpage,
  2751. .readpages = ext4_readpages,
  2752. .writepage = ext4_writepage,
  2753. .write_begin = ext4_write_begin,
  2754. .write_end = ext4_writeback_write_end,
  2755. .bmap = ext4_bmap,
  2756. .invalidatepage = ext4_invalidatepage,
  2757. .releasepage = ext4_releasepage,
  2758. .direct_IO = ext4_direct_IO,
  2759. .migratepage = buffer_migrate_page,
  2760. .is_partially_uptodate = block_is_partially_uptodate,
  2761. .error_remove_page = generic_error_remove_page,
  2762. };
  2763. static const struct address_space_operations ext4_journalled_aops = {
  2764. .readpage = ext4_readpage,
  2765. .readpages = ext4_readpages,
  2766. .writepage = ext4_writepage,
  2767. .write_begin = ext4_write_begin,
  2768. .write_end = ext4_journalled_write_end,
  2769. .set_page_dirty = ext4_journalled_set_page_dirty,
  2770. .bmap = ext4_bmap,
  2771. .invalidatepage = ext4_invalidatepage,
  2772. .releasepage = ext4_releasepage,
  2773. .direct_IO = ext4_direct_IO,
  2774. .is_partially_uptodate = block_is_partially_uptodate,
  2775. .error_remove_page = generic_error_remove_page,
  2776. };
  2777. static const struct address_space_operations ext4_da_aops = {
  2778. .readpage = ext4_readpage,
  2779. .readpages = ext4_readpages,
  2780. .writepage = ext4_writepage,
  2781. .writepages = ext4_da_writepages,
  2782. .write_begin = ext4_da_write_begin,
  2783. .write_end = ext4_da_write_end,
  2784. .bmap = ext4_bmap,
  2785. .invalidatepage = ext4_da_invalidatepage,
  2786. .releasepage = ext4_releasepage,
  2787. .direct_IO = ext4_direct_IO,
  2788. .migratepage = buffer_migrate_page,
  2789. .is_partially_uptodate = block_is_partially_uptodate,
  2790. .error_remove_page = generic_error_remove_page,
  2791. };
  2792. void ext4_set_aops(struct inode *inode)
  2793. {
  2794. if (ext4_should_order_data(inode) &&
  2795. test_opt(inode->i_sb, DELALLOC))
  2796. inode->i_mapping->a_ops = &ext4_da_aops;
  2797. else if (ext4_should_order_data(inode))
  2798. inode->i_mapping->a_ops = &ext4_ordered_aops;
  2799. else if (ext4_should_writeback_data(inode) &&
  2800. test_opt(inode->i_sb, DELALLOC))
  2801. inode->i_mapping->a_ops = &ext4_da_aops;
  2802. else if (ext4_should_writeback_data(inode))
  2803. inode->i_mapping->a_ops = &ext4_writeback_aops;
  2804. else
  2805. inode->i_mapping->a_ops = &ext4_journalled_aops;
  2806. }
  2807. /*
  2808. * ext4_discard_partial_page_buffers()
  2809. * Wrapper function for ext4_discard_partial_page_buffers_no_lock.
  2810. * This function finds and locks the page containing the offset
  2811. * "from" and passes it to ext4_discard_partial_page_buffers_no_lock.
  2812. * Calling functions that already have the page locked should call
  2813. * ext4_discard_partial_page_buffers_no_lock directly.
  2814. */
  2815. int ext4_discard_partial_page_buffers(handle_t *handle,
  2816. struct address_space *mapping, loff_t from,
  2817. loff_t length, int flags)
  2818. {
  2819. struct inode *inode = mapping->host;
  2820. struct page *page;
  2821. int err = 0;
  2822. page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
  2823. mapping_gfp_mask(mapping) & ~__GFP_FS);
  2824. if (!page)
  2825. return -ENOMEM;
  2826. err = ext4_discard_partial_page_buffers_no_lock(handle, inode, page,
  2827. from, length, flags);
  2828. unlock_page(page);
  2829. page_cache_release(page);
  2830. return err;
  2831. }
  2832. /*
  2833. * ext4_discard_partial_page_buffers_no_lock()
  2834. * Zeros a page range of length 'length' starting from offset 'from'.
  2835. * Buffer heads that correspond to the block aligned regions of the
  2836. * zeroed range will be unmapped. Unblock aligned regions
  2837. * will have the corresponding buffer head mapped if needed so that
  2838. * that region of the page can be updated with the partial zero out.
  2839. *
  2840. * This function assumes that the page has already been locked. The
  2841. * The range to be discarded must be contained with in the given page.
  2842. * If the specified range exceeds the end of the page it will be shortened
  2843. * to the end of the page that corresponds to 'from'. This function is
  2844. * appropriate for updating a page and it buffer heads to be unmapped and
  2845. * zeroed for blocks that have been either released, or are going to be
  2846. * released.
  2847. *
  2848. * handle: The journal handle
  2849. * inode: The files inode
  2850. * page: A locked page that contains the offset "from"
  2851. * from: The starting byte offset (from the begining of the file)
  2852. * to begin discarding
  2853. * len: The length of bytes to discard
  2854. * flags: Optional flags that may be used:
  2855. *
  2856. * EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED
  2857. * Only zero the regions of the page whose buffer heads
  2858. * have already been unmapped. This flag is appropriate
  2859. * for updateing the contents of a page whose blocks may
  2860. * have already been released, and we only want to zero
  2861. * out the regions that correspond to those released blocks.
  2862. *
  2863. * Returns zero on sucess or negative on failure.
  2864. */
  2865. int ext4_discard_partial_page_buffers_no_lock(handle_t *handle,
  2866. struct inode *inode, struct page *page, loff_t from,
  2867. loff_t length, int flags)
  2868. {
  2869. ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
  2870. unsigned int offset = from & (PAGE_CACHE_SIZE-1);
  2871. unsigned int blocksize, max, pos;
  2872. ext4_lblk_t iblock;
  2873. struct buffer_head *bh;
  2874. int err = 0;
  2875. blocksize = inode->i_sb->s_blocksize;
  2876. max = PAGE_CACHE_SIZE - offset;
  2877. if (index != page->index)
  2878. return -EINVAL;
  2879. /*
  2880. * correct length if it does not fall between
  2881. * 'from' and the end of the page
  2882. */
  2883. if (length > max || length < 0)
  2884. length = max;
  2885. iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
  2886. if (!page_has_buffers(page)) {
  2887. /*
  2888. * If the range to be discarded covers a partial block
  2889. * we need to get the page buffers. This is because
  2890. * partial blocks cannot be released and the page needs
  2891. * to be updated with the contents of the block before
  2892. * we write the zeros on top of it.
  2893. */
  2894. if ((from & (blocksize - 1)) ||
  2895. ((from + length) & (blocksize - 1))) {
  2896. create_empty_buffers(page, blocksize, 0);
  2897. } else {
  2898. /*
  2899. * If there are no partial blocks,
  2900. * there is nothing to update,
  2901. * so we can return now
  2902. */
  2903. return 0;
  2904. }
  2905. }
  2906. /* Find the buffer that contains "offset" */
  2907. bh = page_buffers(page);
  2908. pos = blocksize;
  2909. while (offset >= pos) {
  2910. bh = bh->b_this_page;
  2911. iblock++;
  2912. pos += blocksize;
  2913. }
  2914. pos = offset;
  2915. while (pos < offset + length) {
  2916. unsigned int end_of_block, range_to_discard;
  2917. err = 0;
  2918. /* The length of space left to zero and unmap */
  2919. range_to_discard = offset + length - pos;
  2920. /* The length of space until the end of the block */
  2921. end_of_block = blocksize - (pos & (blocksize-1));
  2922. /*
  2923. * Do not unmap or zero past end of block
  2924. * for this buffer head
  2925. */
  2926. if (range_to_discard > end_of_block)
  2927. range_to_discard = end_of_block;
  2928. /*
  2929. * Skip this buffer head if we are only zeroing unampped
  2930. * regions of the page
  2931. */
  2932. if (flags & EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED &&
  2933. buffer_mapped(bh))
  2934. goto next;
  2935. /* If the range is block aligned, unmap */
  2936. if (range_to_discard == blocksize) {
  2937. clear_buffer_dirty(bh);
  2938. bh->b_bdev = NULL;
  2939. clear_buffer_mapped(bh);
  2940. clear_buffer_req(bh);
  2941. clear_buffer_new(bh);
  2942. clear_buffer_delay(bh);
  2943. clear_buffer_unwritten(bh);
  2944. clear_buffer_uptodate(bh);
  2945. zero_user(page, pos, range_to_discard);
  2946. BUFFER_TRACE(bh, "Buffer discarded");
  2947. goto next;
  2948. }
  2949. /*
  2950. * If this block is not completely contained in the range
  2951. * to be discarded, then it is not going to be released. Because
  2952. * we need to keep this block, we need to make sure this part
  2953. * of the page is uptodate before we modify it by writeing
  2954. * partial zeros on it.
  2955. */
  2956. if (!buffer_mapped(bh)) {
  2957. /*
  2958. * Buffer head must be mapped before we can read
  2959. * from the block
  2960. */
  2961. BUFFER_TRACE(bh, "unmapped");
  2962. ext4_get_block(inode, iblock, bh, 0);
  2963. /* unmapped? It's a hole - nothing to do */
  2964. if (!buffer_mapped(bh)) {
  2965. BUFFER_TRACE(bh, "still unmapped");
  2966. goto next;
  2967. }
  2968. }
  2969. /* Ok, it's mapped. Make sure it's up-to-date */
  2970. if (PageUptodate(page))
  2971. set_buffer_uptodate(bh);
  2972. if (!buffer_uptodate(bh)) {
  2973. err = -EIO;
  2974. ll_rw_block(READ, 1, &bh);
  2975. wait_on_buffer(bh);
  2976. /* Uhhuh. Read error. Complain and punt.*/
  2977. if (!buffer_uptodate(bh))
  2978. goto next;
  2979. }
  2980. if (ext4_should_journal_data(inode)) {
  2981. BUFFER_TRACE(bh, "get write access");
  2982. err = ext4_journal_get_write_access(handle, bh);
  2983. if (err)
  2984. goto next;
  2985. }
  2986. zero_user(page, pos, range_to_discard);
  2987. err = 0;
  2988. if (ext4_should_journal_data(inode)) {
  2989. err = ext4_handle_dirty_metadata(handle, inode, bh);
  2990. } else
  2991. mark_buffer_dirty(bh);
  2992. BUFFER_TRACE(bh, "Partial buffer zeroed");
  2993. next:
  2994. bh = bh->b_this_page;
  2995. iblock++;
  2996. pos += range_to_discard;
  2997. }
  2998. return err;
  2999. }
  3000. /*
  3001. * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
  3002. * up to the end of the block which corresponds to `from'.
  3003. * This required during truncate. We need to physically zero the tail end
  3004. * of that block so it doesn't yield old data if the file is later grown.
  3005. */
  3006. int ext4_block_truncate_page(handle_t *handle,
  3007. struct address_space *mapping, loff_t from)
  3008. {
  3009. unsigned offset = from & (PAGE_CACHE_SIZE-1);
  3010. unsigned length;
  3011. unsigned blocksize;
  3012. struct inode *inode = mapping->host;
  3013. blocksize = inode->i_sb->s_blocksize;
  3014. length = blocksize - (offset & (blocksize - 1));
  3015. return ext4_block_zero_page_range(handle, mapping, from, length);
  3016. }
  3017. /*
  3018. * ext4_block_zero_page_range() zeros out a mapping of length 'length'
  3019. * starting from file offset 'from'. The range to be zero'd must
  3020. * be contained with in one block. If the specified range exceeds
  3021. * the end of the block it will be shortened to end of the block
  3022. * that cooresponds to 'from'
  3023. */
  3024. int ext4_block_zero_page_range(handle_t *handle,
  3025. struct address_space *mapping, loff_t from, loff_t length)
  3026. {
  3027. ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
  3028. unsigned offset = from & (PAGE_CACHE_SIZE-1);
  3029. unsigned blocksize, max, pos;
  3030. ext4_lblk_t iblock;
  3031. struct inode *inode = mapping->host;
  3032. struct buffer_head *bh;
  3033. struct page *page;
  3034. int err = 0;
  3035. page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
  3036. mapping_gfp_mask(mapping) & ~__GFP_FS);
  3037. if (!page)
  3038. return -ENOMEM;
  3039. blocksize = inode->i_sb->s_blocksize;
  3040. max = blocksize - (offset & (blocksize - 1));
  3041. /*
  3042. * correct length if it does not fall between
  3043. * 'from' and the end of the block
  3044. */
  3045. if (length > max || length < 0)
  3046. length = max;
  3047. iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
  3048. if (!page_has_buffers(page))
  3049. create_empty_buffers(page, blocksize, 0);
  3050. /* Find the buffer that contains "offset" */
  3051. bh = page_buffers(page);
  3052. pos = blocksize;
  3053. while (offset >= pos) {
  3054. bh = bh->b_this_page;
  3055. iblock++;
  3056. pos += blocksize;
  3057. }
  3058. err = 0;
  3059. if (buffer_freed(bh)) {
  3060. BUFFER_TRACE(bh, "freed: skip");
  3061. goto unlock;
  3062. }
  3063. if (!buffer_mapped(bh)) {
  3064. BUFFER_TRACE(bh, "unmapped");
  3065. ext4_get_block(inode, iblock, bh, 0);
  3066. /* unmapped? It's a hole - nothing to do */
  3067. if (!buffer_mapped(bh)) {
  3068. BUFFER_TRACE(bh, "still unmapped");
  3069. goto unlock;
  3070. }
  3071. }
  3072. /* Ok, it's mapped. Make sure it's up-to-date */
  3073. if (PageUptodate(page))
  3074. set_buffer_uptodate(bh);
  3075. if (!buffer_uptodate(bh)) {
  3076. err = -EIO;
  3077. ll_rw_block(READ, 1, &bh);
  3078. wait_on_buffer(bh);
  3079. /* Uhhuh. Read error. Complain and punt. */
  3080. if (!buffer_uptodate(bh))
  3081. goto unlock;
  3082. }
  3083. if (ext4_should_journal_data(inode)) {
  3084. BUFFER_TRACE(bh, "get write access");
  3085. err = ext4_journal_get_write_access(handle, bh);
  3086. if (err)
  3087. goto unlock;
  3088. }
  3089. zero_user(page, offset, length);
  3090. BUFFER_TRACE(bh, "zeroed end of block");
  3091. err = 0;
  3092. if (ext4_should_journal_data(inode)) {
  3093. err = ext4_handle_dirty_metadata(handle, inode, bh);
  3094. } else
  3095. mark_buffer_dirty(bh);
  3096. unlock:
  3097. unlock_page(page);
  3098. page_cache_release(page);
  3099. return err;
  3100. }
  3101. int ext4_can_truncate(struct inode *inode)
  3102. {
  3103. if (S_ISREG(inode->i_mode))
  3104. return 1;
  3105. if (S_ISDIR(inode->i_mode))
  3106. return 1;
  3107. if (S_ISLNK(inode->i_mode))
  3108. return !ext4_inode_is_fast_symlink(inode);
  3109. return 0;
  3110. }
  3111. /*
  3112. * ext4_punch_hole: punches a hole in a file by releaseing the blocks
  3113. * associated with the given offset and length
  3114. *
  3115. * @inode: File inode
  3116. * @offset: The offset where the hole will begin
  3117. * @len: The length of the hole
  3118. *
  3119. * Returns: 0 on sucess or negative on failure
  3120. */
  3121. int ext4_punch_hole(struct file *file, loff_t offset, loff_t length)
  3122. {
  3123. struct inode *inode = file->f_path.dentry->d_inode;
  3124. if (!S_ISREG(inode->i_mode))
  3125. return -ENOTSUPP;
  3126. if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
  3127. /* TODO: Add support for non extent hole punching */
  3128. return -ENOTSUPP;
  3129. }
  3130. if (EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) {
  3131. /* TODO: Add support for bigalloc file systems */
  3132. return -ENOTSUPP;
  3133. }
  3134. return ext4_ext_punch_hole(file, offset, length);
  3135. }
  3136. /*
  3137. * ext4_truncate()
  3138. *
  3139. * We block out ext4_get_block() block instantiations across the entire
  3140. * transaction, and VFS/VM ensures that ext4_truncate() cannot run
  3141. * simultaneously on behalf of the same inode.
  3142. *
  3143. * As we work through the truncate and commmit bits of it to the journal there
  3144. * is one core, guiding principle: the file's tree must always be consistent on
  3145. * disk. We must be able to restart the truncate after a crash.
  3146. *
  3147. * The file's tree may be transiently inconsistent in memory (although it
  3148. * probably isn't), but whenever we close off and commit a journal transaction,
  3149. * the contents of (the filesystem + the journal) must be consistent and
  3150. * restartable. It's pretty simple, really: bottom up, right to left (although
  3151. * left-to-right works OK too).
  3152. *
  3153. * Note that at recovery time, journal replay occurs *before* the restart of
  3154. * truncate against the orphan inode list.
  3155. *
  3156. * The committed inode has the new, desired i_size (which is the same as
  3157. * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
  3158. * that this inode's truncate did not complete and it will again call
  3159. * ext4_truncate() to have another go. So there will be instantiated blocks
  3160. * to the right of the truncation point in a crashed ext4 filesystem. But
  3161. * that's fine - as long as they are linked from the inode, the post-crash
  3162. * ext4_truncate() run will find them and release them.
  3163. */
  3164. void ext4_truncate(struct inode *inode)
  3165. {
  3166. trace_ext4_truncate_enter(inode);
  3167. if (!ext4_can_truncate(inode))
  3168. return;
  3169. ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
  3170. if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
  3171. ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
  3172. if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
  3173. ext4_ext_truncate(inode);
  3174. else
  3175. ext4_ind_truncate(inode);
  3176. trace_ext4_truncate_exit(inode);
  3177. }
  3178. /*
  3179. * ext4_get_inode_loc returns with an extra refcount against the inode's
  3180. * underlying buffer_head on success. If 'in_mem' is true, we have all
  3181. * data in memory that is needed to recreate the on-disk version of this
  3182. * inode.
  3183. */
  3184. static int __ext4_get_inode_loc(struct inode *inode,
  3185. struct ext4_iloc *iloc, int in_mem)
  3186. {
  3187. struct ext4_group_desc *gdp;
  3188. struct buffer_head *bh;
  3189. struct super_block *sb = inode->i_sb;
  3190. ext4_fsblk_t block;
  3191. int inodes_per_block, inode_offset;
  3192. iloc->bh = NULL;
  3193. if (!ext4_valid_inum(sb, inode->i_ino))
  3194. return -EIO;
  3195. iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
  3196. gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
  3197. if (!gdp)
  3198. return -EIO;
  3199. /*
  3200. * Figure out the offset within the block group inode table
  3201. */
  3202. inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
  3203. inode_offset = ((inode->i_ino - 1) %
  3204. EXT4_INODES_PER_GROUP(sb));
  3205. block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
  3206. iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
  3207. bh = sb_getblk(sb, block);
  3208. if (!bh) {
  3209. EXT4_ERROR_INODE_BLOCK(inode, block,
  3210. "unable to read itable block");
  3211. return -EIO;
  3212. }
  3213. if (!buffer_uptodate(bh)) {
  3214. lock_buffer(bh);
  3215. /*
  3216. * If the buffer has the write error flag, we have failed
  3217. * to write out another inode in the same block. In this
  3218. * case, we don't have to read the block because we may
  3219. * read the old inode data successfully.
  3220. */
  3221. if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
  3222. set_buffer_uptodate(bh);
  3223. if (buffer_uptodate(bh)) {
  3224. /* someone brought it uptodate while we waited */
  3225. unlock_buffer(bh);
  3226. goto has_buffer;
  3227. }
  3228. /*
  3229. * If we have all information of the inode in memory and this
  3230. * is the only valid inode in the block, we need not read the
  3231. * block.
  3232. */
  3233. if (in_mem) {
  3234. struct buffer_head *bitmap_bh;
  3235. int i, start;
  3236. start = inode_offset & ~(inodes_per_block - 1);
  3237. /* Is the inode bitmap in cache? */
  3238. bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
  3239. if (!bitmap_bh)
  3240. goto make_io;
  3241. /*
  3242. * If the inode bitmap isn't in cache then the
  3243. * optimisation may end up performing two reads instead
  3244. * of one, so skip it.
  3245. */
  3246. if (!buffer_uptodate(bitmap_bh)) {
  3247. brelse(bitmap_bh);
  3248. goto make_io;
  3249. }
  3250. for (i = start; i < start + inodes_per_block; i++) {
  3251. if (i == inode_offset)
  3252. continue;
  3253. if (ext4_test_bit(i, bitmap_bh->b_data))
  3254. break;
  3255. }
  3256. brelse(bitmap_bh);
  3257. if (i == start + inodes_per_block) {
  3258. /* all other inodes are free, so skip I/O */
  3259. memset(bh->b_data, 0, bh->b_size);
  3260. set_buffer_uptodate(bh);
  3261. unlock_buffer(bh);
  3262. goto has_buffer;
  3263. }
  3264. }
  3265. make_io:
  3266. /*
  3267. * If we need to do any I/O, try to pre-readahead extra
  3268. * blocks from the inode table.
  3269. */
  3270. if (EXT4_SB(sb)->s_inode_readahead_blks) {
  3271. ext4_fsblk_t b, end, table;
  3272. unsigned num;
  3273. table = ext4_inode_table(sb, gdp);
  3274. /* s_inode_readahead_blks is always a power of 2 */
  3275. b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
  3276. if (table > b)
  3277. b = table;
  3278. end = b + EXT4_SB(sb)->s_inode_readahead_blks;
  3279. num = EXT4_INODES_PER_GROUP(sb);
  3280. if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
  3281. EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
  3282. num -= ext4_itable_unused_count(sb, gdp);
  3283. table += num / inodes_per_block;
  3284. if (end > table)
  3285. end = table;
  3286. while (b <= end)
  3287. sb_breadahead(sb, b++);
  3288. }
  3289. /*
  3290. * There are other valid inodes in the buffer, this inode
  3291. * has in-inode xattrs, or we don't have this inode in memory.
  3292. * Read the block from disk.
  3293. */
  3294. trace_ext4_load_inode(inode);
  3295. get_bh(bh);
  3296. bh->b_end_io = end_buffer_read_sync;
  3297. submit_bh(READ | REQ_META | REQ_PRIO, bh);
  3298. wait_on_buffer(bh);
  3299. if (!buffer_uptodate(bh)) {
  3300. EXT4_ERROR_INODE_BLOCK(inode, block,
  3301. "unable to read itable block");
  3302. brelse(bh);
  3303. return -EIO;
  3304. }
  3305. }
  3306. has_buffer:
  3307. iloc->bh = bh;
  3308. return 0;
  3309. }
  3310. int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
  3311. {
  3312. /* We have all inode data except xattrs in memory here. */
  3313. return __ext4_get_inode_loc(inode, iloc,
  3314. !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
  3315. }
  3316. void ext4_set_inode_flags(struct inode *inode)
  3317. {
  3318. unsigned int flags = EXT4_I(inode)->i_flags;
  3319. inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
  3320. if (flags & EXT4_SYNC_FL)
  3321. inode->i_flags |= S_SYNC;
  3322. if (flags & EXT4_APPEND_FL)
  3323. inode->i_flags |= S_APPEND;
  3324. if (flags & EXT4_IMMUTABLE_FL)
  3325. inode->i_flags |= S_IMMUTABLE;
  3326. if (flags & EXT4_NOATIME_FL)
  3327. inode->i_flags |= S_NOATIME;
  3328. if (flags & EXT4_DIRSYNC_FL)
  3329. inode->i_flags |= S_DIRSYNC;
  3330. }
  3331. /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
  3332. void ext4_get_inode_flags(struct ext4_inode_info *ei)
  3333. {
  3334. unsigned int vfs_fl;
  3335. unsigned long old_fl, new_fl;
  3336. do {
  3337. vfs_fl = ei->vfs_inode.i_flags;
  3338. old_fl = ei->i_flags;
  3339. new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
  3340. EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
  3341. EXT4_DIRSYNC_FL);
  3342. if (vfs_fl & S_SYNC)
  3343. new_fl |= EXT4_SYNC_FL;
  3344. if (vfs_fl & S_APPEND)
  3345. new_fl |= EXT4_APPEND_FL;
  3346. if (vfs_fl & S_IMMUTABLE)
  3347. new_fl |= EXT4_IMMUTABLE_FL;
  3348. if (vfs_fl & S_NOATIME)
  3349. new_fl |= EXT4_NOATIME_FL;
  3350. if (vfs_fl & S_DIRSYNC)
  3351. new_fl |= EXT4_DIRSYNC_FL;
  3352. } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
  3353. }
  3354. static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
  3355. struct ext4_inode_info *ei)
  3356. {
  3357. blkcnt_t i_blocks ;
  3358. struct inode *inode = &(ei->vfs_inode);
  3359. struct super_block *sb = inode->i_sb;
  3360. if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
  3361. EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
  3362. /* we are using combined 48 bit field */
  3363. i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
  3364. le32_to_cpu(raw_inode->i_blocks_lo);
  3365. if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
  3366. /* i_blocks represent file system block size */
  3367. return i_blocks << (inode->i_blkbits - 9);
  3368. } else {
  3369. return i_blocks;
  3370. }
  3371. } else {
  3372. return le32_to_cpu(raw_inode->i_blocks_lo);
  3373. }
  3374. }
  3375. struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
  3376. {
  3377. struct ext4_iloc iloc;
  3378. struct ext4_inode *raw_inode;
  3379. struct ext4_inode_info *ei;
  3380. struct inode *inode;
  3381. journal_t *journal = EXT4_SB(sb)->s_journal;
  3382. long ret;
  3383. int block;
  3384. inode = iget_locked(sb, ino);
  3385. if (!inode)
  3386. return ERR_PTR(-ENOMEM);
  3387. if (!(inode->i_state & I_NEW))
  3388. return inode;
  3389. ei = EXT4_I(inode);
  3390. iloc.bh = NULL;
  3391. ret = __ext4_get_inode_loc(inode, &iloc, 0);
  3392. if (ret < 0)
  3393. goto bad_inode;
  3394. raw_inode = ext4_raw_inode(&iloc);
  3395. inode->i_mode = le16_to_cpu(raw_inode->i_mode);
  3396. inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
  3397. inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
  3398. if (!(test_opt(inode->i_sb, NO_UID32))) {
  3399. inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
  3400. inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
  3401. }
  3402. set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
  3403. ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
  3404. ei->i_dir_start_lookup = 0;
  3405. ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
  3406. /* We now have enough fields to check if the inode was active or not.
  3407. * This is needed because nfsd might try to access dead inodes
  3408. * the test is that same one that e2fsck uses
  3409. * NeilBrown 1999oct15
  3410. */
  3411. if (inode->i_nlink == 0) {
  3412. if (inode->i_mode == 0 ||
  3413. !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
  3414. /* this inode is deleted */
  3415. ret = -ESTALE;
  3416. goto bad_inode;
  3417. }
  3418. /* The only unlinked inodes we let through here have
  3419. * valid i_mode and are being read by the orphan
  3420. * recovery code: that's fine, we're about to complete
  3421. * the process of deleting those. */
  3422. }
  3423. ei->i_flags = le32_to_cpu(raw_inode->i_flags);
  3424. inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
  3425. ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
  3426. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
  3427. ei->i_file_acl |=
  3428. ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
  3429. inode->i_size = ext4_isize(raw_inode);
  3430. ei->i_disksize = inode->i_size;
  3431. #ifdef CONFIG_QUOTA
  3432. ei->i_reserved_quota = 0;
  3433. #endif
  3434. inode->i_generation = le32_to_cpu(raw_inode->i_generation);
  3435. ei->i_block_group = iloc.block_group;
  3436. ei->i_last_alloc_group = ~0;
  3437. /*
  3438. * NOTE! The in-memory inode i_data array is in little-endian order
  3439. * even on big-endian machines: we do NOT byteswap the block numbers!
  3440. */
  3441. for (block = 0; block < EXT4_N_BLOCKS; block++)
  3442. ei->i_data[block] = raw_inode->i_block[block];
  3443. INIT_LIST_HEAD(&ei->i_orphan);
  3444. /*
  3445. * Set transaction id's of transactions that have to be committed
  3446. * to finish f[data]sync. We set them to currently running transaction
  3447. * as we cannot be sure that the inode or some of its metadata isn't
  3448. * part of the transaction - the inode could have been reclaimed and
  3449. * now it is reread from disk.
  3450. */
  3451. if (journal) {
  3452. transaction_t *transaction;
  3453. tid_t tid;
  3454. read_lock(&journal->j_state_lock);
  3455. if (journal->j_running_transaction)
  3456. transaction = journal->j_running_transaction;
  3457. else
  3458. transaction = journal->j_committing_transaction;
  3459. if (transaction)
  3460. tid = transaction->t_tid;
  3461. else
  3462. tid = journal->j_commit_sequence;
  3463. read_unlock(&journal->j_state_lock);
  3464. ei->i_sync_tid = tid;
  3465. ei->i_datasync_tid = tid;
  3466. }
  3467. if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
  3468. ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
  3469. if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
  3470. EXT4_INODE_SIZE(inode->i_sb)) {
  3471. ret = -EIO;
  3472. goto bad_inode;
  3473. }
  3474. if (ei->i_extra_isize == 0) {
  3475. /* The extra space is currently unused. Use it. */
  3476. ei->i_extra_isize = sizeof(struct ext4_inode) -
  3477. EXT4_GOOD_OLD_INODE_SIZE;
  3478. } else {
  3479. __le32 *magic = (void *)raw_inode +
  3480. EXT4_GOOD_OLD_INODE_SIZE +
  3481. ei->i_extra_isize;
  3482. if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
  3483. ext4_set_inode_state(inode, EXT4_STATE_XATTR);
  3484. }
  3485. } else
  3486. ei->i_extra_isize = 0;
  3487. EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
  3488. EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
  3489. EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
  3490. EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
  3491. inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
  3492. if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
  3493. if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
  3494. inode->i_version |=
  3495. (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
  3496. }
  3497. ret = 0;
  3498. if (ei->i_file_acl &&
  3499. !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
  3500. EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
  3501. ei->i_file_acl);
  3502. ret = -EIO;
  3503. goto bad_inode;
  3504. } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
  3505. if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
  3506. (S_ISLNK(inode->i_mode) &&
  3507. !ext4_inode_is_fast_symlink(inode)))
  3508. /* Validate extent which is part of inode */
  3509. ret = ext4_ext_check_inode(inode);
  3510. } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
  3511. (S_ISLNK(inode->i_mode) &&
  3512. !ext4_inode_is_fast_symlink(inode))) {
  3513. /* Validate block references which are part of inode */
  3514. ret = ext4_ind_check_inode(inode);
  3515. }
  3516. if (ret)
  3517. goto bad_inode;
  3518. if (S_ISREG(inode->i_mode)) {
  3519. inode->i_op = &ext4_file_inode_operations;
  3520. inode->i_fop = &ext4_file_operations;
  3521. ext4_set_aops(inode);
  3522. } else if (S_ISDIR(inode->i_mode)) {
  3523. inode->i_op = &ext4_dir_inode_operations;
  3524. inode->i_fop = &ext4_dir_operations;
  3525. } else if (S_ISLNK(inode->i_mode)) {
  3526. if (ext4_inode_is_fast_symlink(inode)) {
  3527. inode->i_op = &ext4_fast_symlink_inode_operations;
  3528. nd_terminate_link(ei->i_data, inode->i_size,
  3529. sizeof(ei->i_data) - 1);
  3530. } else {
  3531. inode->i_op = &ext4_symlink_inode_operations;
  3532. ext4_set_aops(inode);
  3533. }
  3534. } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
  3535. S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
  3536. inode->i_op = &ext4_special_inode_operations;
  3537. if (raw_inode->i_block[0])
  3538. init_special_inode(inode, inode->i_mode,
  3539. old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
  3540. else
  3541. init_special_inode(inode, inode->i_mode,
  3542. new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
  3543. } else {
  3544. ret = -EIO;
  3545. EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
  3546. goto bad_inode;
  3547. }
  3548. brelse(iloc.bh);
  3549. ext4_set_inode_flags(inode);
  3550. unlock_new_inode(inode);
  3551. return inode;
  3552. bad_inode:
  3553. brelse(iloc.bh);
  3554. iget_failed(inode);
  3555. return ERR_PTR(ret);
  3556. }
  3557. static int ext4_inode_blocks_set(handle_t *handle,
  3558. struct ext4_inode *raw_inode,
  3559. struct ext4_inode_info *ei)
  3560. {
  3561. struct inode *inode = &(ei->vfs_inode);
  3562. u64 i_blocks = inode->i_blocks;
  3563. struct super_block *sb = inode->i_sb;
  3564. if (i_blocks <= ~0U) {
  3565. /*
  3566. * i_blocks can be represnted in a 32 bit variable
  3567. * as multiple of 512 bytes
  3568. */
  3569. raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
  3570. raw_inode->i_blocks_high = 0;
  3571. ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
  3572. return 0;
  3573. }
  3574. if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
  3575. return -EFBIG;
  3576. if (i_blocks <= 0xffffffffffffULL) {
  3577. /*
  3578. * i_blocks can be represented in a 48 bit variable
  3579. * as multiple of 512 bytes
  3580. */
  3581. raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
  3582. raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
  3583. ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
  3584. } else {
  3585. ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
  3586. /* i_block is stored in file system block size */
  3587. i_blocks = i_blocks >> (inode->i_blkbits - 9);
  3588. raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
  3589. raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
  3590. }
  3591. return 0;
  3592. }
  3593. /*
  3594. * Post the struct inode info into an on-disk inode location in the
  3595. * buffer-cache. This gobbles the caller's reference to the
  3596. * buffer_head in the inode location struct.
  3597. *
  3598. * The caller must have write access to iloc->bh.
  3599. */
  3600. static int ext4_do_update_inode(handle_t *handle,
  3601. struct inode *inode,
  3602. struct ext4_iloc *iloc)
  3603. {
  3604. struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
  3605. struct ext4_inode_info *ei = EXT4_I(inode);
  3606. struct buffer_head *bh = iloc->bh;
  3607. int err = 0, rc, block;
  3608. /* For fields not not tracking in the in-memory inode,
  3609. * initialise them to zero for new inodes. */
  3610. if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
  3611. memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
  3612. ext4_get_inode_flags(ei);
  3613. raw_inode->i_mode = cpu_to_le16(inode->i_mode);
  3614. if (!(test_opt(inode->i_sb, NO_UID32))) {
  3615. raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
  3616. raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
  3617. /*
  3618. * Fix up interoperability with old kernels. Otherwise, old inodes get
  3619. * re-used with the upper 16 bits of the uid/gid intact
  3620. */
  3621. if (!ei->i_dtime) {
  3622. raw_inode->i_uid_high =
  3623. cpu_to_le16(high_16_bits(inode->i_uid));
  3624. raw_inode->i_gid_high =
  3625. cpu_to_le16(high_16_bits(inode->i_gid));
  3626. } else {
  3627. raw_inode->i_uid_high = 0;
  3628. raw_inode->i_gid_high = 0;
  3629. }
  3630. } else {
  3631. raw_inode->i_uid_low =
  3632. cpu_to_le16(fs_high2lowuid(inode->i_uid));
  3633. raw_inode->i_gid_low =
  3634. cpu_to_le16(fs_high2lowgid(inode->i_gid));
  3635. raw_inode->i_uid_high = 0;
  3636. raw_inode->i_gid_high = 0;
  3637. }
  3638. raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
  3639. EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
  3640. EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
  3641. EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
  3642. EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
  3643. if (ext4_inode_blocks_set(handle, raw_inode, ei))
  3644. goto out_brelse;
  3645. raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
  3646. raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
  3647. if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
  3648. cpu_to_le32(EXT4_OS_HURD))
  3649. raw_inode->i_file_acl_high =
  3650. cpu_to_le16(ei->i_file_acl >> 32);
  3651. raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
  3652. ext4_isize_set(raw_inode, ei->i_disksize);
  3653. if (ei->i_disksize > 0x7fffffffULL) {
  3654. struct super_block *sb = inode->i_sb;
  3655. if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
  3656. EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
  3657. EXT4_SB(sb)->s_es->s_rev_level ==
  3658. cpu_to_le32(EXT4_GOOD_OLD_REV)) {
  3659. /* If this is the first large file
  3660. * created, add a flag to the superblock.
  3661. */
  3662. err = ext4_journal_get_write_access(handle,
  3663. EXT4_SB(sb)->s_sbh);
  3664. if (err)
  3665. goto out_brelse;
  3666. ext4_update_dynamic_rev(sb);
  3667. EXT4_SET_RO_COMPAT_FEATURE(sb,
  3668. EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
  3669. sb->s_dirt = 1;
  3670. ext4_handle_sync(handle);
  3671. err = ext4_handle_dirty_metadata(handle, NULL,
  3672. EXT4_SB(sb)->s_sbh);
  3673. }
  3674. }
  3675. raw_inode->i_generation = cpu_to_le32(inode->i_generation);
  3676. if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
  3677. if (old_valid_dev(inode->i_rdev)) {
  3678. raw_inode->i_block[0] =
  3679. cpu_to_le32(old_encode_dev(inode->i_rdev));
  3680. raw_inode->i_block[1] = 0;
  3681. } else {
  3682. raw_inode->i_block[0] = 0;
  3683. raw_inode->i_block[1] =
  3684. cpu_to_le32(new_encode_dev(inode->i_rdev));
  3685. raw_inode->i_block[2] = 0;
  3686. }
  3687. } else
  3688. for (block = 0; block < EXT4_N_BLOCKS; block++)
  3689. raw_inode->i_block[block] = ei->i_data[block];
  3690. raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
  3691. if (ei->i_extra_isize) {
  3692. if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
  3693. raw_inode->i_version_hi =
  3694. cpu_to_le32(inode->i_version >> 32);
  3695. raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
  3696. }
  3697. BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
  3698. rc = ext4_handle_dirty_metadata(handle, NULL, bh);
  3699. if (!err)
  3700. err = rc;
  3701. ext4_clear_inode_state(inode, EXT4_STATE_NEW);
  3702. ext4_update_inode_fsync_trans(handle, inode, 0);
  3703. out_brelse:
  3704. brelse(bh);
  3705. ext4_std_error(inode->i_sb, err);
  3706. return err;
  3707. }
  3708. /*
  3709. * ext4_write_inode()
  3710. *
  3711. * We are called from a few places:
  3712. *
  3713. * - Within generic_file_write() for O_SYNC files.
  3714. * Here, there will be no transaction running. We wait for any running
  3715. * trasnaction to commit.
  3716. *
  3717. * - Within sys_sync(), kupdate and such.
  3718. * We wait on commit, if tol to.
  3719. *
  3720. * - Within prune_icache() (PF_MEMALLOC == true)
  3721. * Here we simply return. We can't afford to block kswapd on the
  3722. * journal commit.
  3723. *
  3724. * In all cases it is actually safe for us to return without doing anything,
  3725. * because the inode has been copied into a raw inode buffer in
  3726. * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
  3727. * knfsd.
  3728. *
  3729. * Note that we are absolutely dependent upon all inode dirtiers doing the
  3730. * right thing: they *must* call mark_inode_dirty() after dirtying info in
  3731. * which we are interested.
  3732. *
  3733. * It would be a bug for them to not do this. The code:
  3734. *
  3735. * mark_inode_dirty(inode)
  3736. * stuff();
  3737. * inode->i_size = expr;
  3738. *
  3739. * is in error because a kswapd-driven write_inode() could occur while
  3740. * `stuff()' is running, and the new i_size will be lost. Plus the inode
  3741. * will no longer be on the superblock's dirty inode list.
  3742. */
  3743. int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
  3744. {
  3745. int err;
  3746. if (current->flags & PF_MEMALLOC)
  3747. return 0;
  3748. if (EXT4_SB(inode->i_sb)->s_journal) {
  3749. if (ext4_journal_current_handle()) {
  3750. jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
  3751. dump_stack();
  3752. return -EIO;
  3753. }
  3754. if (wbc->sync_mode != WB_SYNC_ALL)
  3755. return 0;
  3756. err = ext4_force_commit(inode->i_sb);
  3757. } else {
  3758. struct ext4_iloc iloc;
  3759. err = __ext4_get_inode_loc(inode, &iloc, 0);
  3760. if (err)
  3761. return err;
  3762. if (wbc->sync_mode == WB_SYNC_ALL)
  3763. sync_dirty_buffer(iloc.bh);
  3764. if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
  3765. EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
  3766. "IO error syncing inode");
  3767. err = -EIO;
  3768. }
  3769. brelse(iloc.bh);
  3770. }
  3771. return err;
  3772. }
  3773. /*
  3774. * ext4_setattr()
  3775. *
  3776. * Called from notify_change.
  3777. *
  3778. * We want to trap VFS attempts to truncate the file as soon as
  3779. * possible. In particular, we want to make sure that when the VFS
  3780. * shrinks i_size, we put the inode on the orphan list and modify
  3781. * i_disksize immediately, so that during the subsequent flushing of
  3782. * dirty pages and freeing of disk blocks, we can guarantee that any
  3783. * commit will leave the blocks being flushed in an unused state on
  3784. * disk. (On recovery, the inode will get truncated and the blocks will
  3785. * be freed, so we have a strong guarantee that no future commit will
  3786. * leave these blocks visible to the user.)
  3787. *
  3788. * Another thing we have to assure is that if we are in ordered mode
  3789. * and inode is still attached to the committing transaction, we must
  3790. * we start writeout of all the dirty pages which are being truncated.
  3791. * This way we are sure that all the data written in the previous
  3792. * transaction are already on disk (truncate waits for pages under
  3793. * writeback).
  3794. *
  3795. * Called with inode->i_mutex down.
  3796. */
  3797. int ext4_setattr(struct dentry *dentry, struct iattr *attr)
  3798. {
  3799. struct inode *inode = dentry->d_inode;
  3800. int error, rc = 0;
  3801. int orphan = 0;
  3802. const unsigned int ia_valid = attr->ia_valid;
  3803. error = inode_change_ok(inode, attr);
  3804. if (error)
  3805. return error;
  3806. if (is_quota_modification(inode, attr))
  3807. dquot_initialize(inode);
  3808. if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
  3809. (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
  3810. handle_t *handle;
  3811. /* (user+group)*(old+new) structure, inode write (sb,
  3812. * inode block, ? - but truncate inode update has it) */
  3813. handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+
  3814. EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3);
  3815. if (IS_ERR(handle)) {
  3816. error = PTR_ERR(handle);
  3817. goto err_out;
  3818. }
  3819. error = dquot_transfer(inode, attr);
  3820. if (error) {
  3821. ext4_journal_stop(handle);
  3822. return error;
  3823. }
  3824. /* Update corresponding info in inode so that everything is in
  3825. * one transaction */
  3826. if (attr->ia_valid & ATTR_UID)
  3827. inode->i_uid = attr->ia_uid;
  3828. if (attr->ia_valid & ATTR_GID)
  3829. inode->i_gid = attr->ia_gid;
  3830. error = ext4_mark_inode_dirty(handle, inode);
  3831. ext4_journal_stop(handle);
  3832. }
  3833. if (attr->ia_valid & ATTR_SIZE) {
  3834. inode_dio_wait(inode);
  3835. if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
  3836. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  3837. if (attr->ia_size > sbi->s_bitmap_maxbytes)
  3838. return -EFBIG;
  3839. }
  3840. }
  3841. if (S_ISREG(inode->i_mode) &&
  3842. attr->ia_valid & ATTR_SIZE &&
  3843. (attr->ia_size < inode->i_size)) {
  3844. handle_t *handle;
  3845. handle = ext4_journal_start(inode, 3);
  3846. if (IS_ERR(handle)) {
  3847. error = PTR_ERR(handle);
  3848. goto err_out;
  3849. }
  3850. if (ext4_handle_valid(handle)) {
  3851. error = ext4_orphan_add(handle, inode);
  3852. orphan = 1;
  3853. }
  3854. EXT4_I(inode)->i_disksize = attr->ia_size;
  3855. rc = ext4_mark_inode_dirty(handle, inode);
  3856. if (!error)
  3857. error = rc;
  3858. ext4_journal_stop(handle);
  3859. if (ext4_should_order_data(inode)) {
  3860. error = ext4_begin_ordered_truncate(inode,
  3861. attr->ia_size);
  3862. if (error) {
  3863. /* Do as much error cleanup as possible */
  3864. handle = ext4_journal_start(inode, 3);
  3865. if (IS_ERR(handle)) {
  3866. ext4_orphan_del(NULL, inode);
  3867. goto err_out;
  3868. }
  3869. ext4_orphan_del(handle, inode);
  3870. orphan = 0;
  3871. ext4_journal_stop(handle);
  3872. goto err_out;
  3873. }
  3874. }
  3875. }
  3876. if (attr->ia_valid & ATTR_SIZE) {
  3877. if (attr->ia_size != i_size_read(inode)) {
  3878. truncate_setsize(inode, attr->ia_size);
  3879. ext4_truncate(inode);
  3880. } else if (ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
  3881. ext4_truncate(inode);
  3882. }
  3883. if (!rc) {
  3884. setattr_copy(inode, attr);
  3885. mark_inode_dirty(inode);
  3886. }
  3887. /*
  3888. * If the call to ext4_truncate failed to get a transaction handle at
  3889. * all, we need to clean up the in-core orphan list manually.
  3890. */
  3891. if (orphan && inode->i_nlink)
  3892. ext4_orphan_del(NULL, inode);
  3893. if (!rc && (ia_valid & ATTR_MODE))
  3894. rc = ext4_acl_chmod(inode);
  3895. err_out:
  3896. ext4_std_error(inode->i_sb, error);
  3897. if (!error)
  3898. error = rc;
  3899. return error;
  3900. }
  3901. int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
  3902. struct kstat *stat)
  3903. {
  3904. struct inode *inode;
  3905. unsigned long delalloc_blocks;
  3906. inode = dentry->d_inode;
  3907. generic_fillattr(inode, stat);
  3908. /*
  3909. * We can't update i_blocks if the block allocation is delayed
  3910. * otherwise in the case of system crash before the real block
  3911. * allocation is done, we will have i_blocks inconsistent with
  3912. * on-disk file blocks.
  3913. * We always keep i_blocks updated together with real
  3914. * allocation. But to not confuse with user, stat
  3915. * will return the blocks that include the delayed allocation
  3916. * blocks for this file.
  3917. */
  3918. delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
  3919. stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
  3920. return 0;
  3921. }
  3922. static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
  3923. {
  3924. if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
  3925. return ext4_ind_trans_blocks(inode, nrblocks, chunk);
  3926. return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
  3927. }
  3928. /*
  3929. * Account for index blocks, block groups bitmaps and block group
  3930. * descriptor blocks if modify datablocks and index blocks
  3931. * worse case, the indexs blocks spread over different block groups
  3932. *
  3933. * If datablocks are discontiguous, they are possible to spread over
  3934. * different block groups too. If they are contiuguous, with flexbg,
  3935. * they could still across block group boundary.
  3936. *
  3937. * Also account for superblock, inode, quota and xattr blocks
  3938. */
  3939. static int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
  3940. {
  3941. ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
  3942. int gdpblocks;
  3943. int idxblocks;
  3944. int ret = 0;
  3945. /*
  3946. * How many index blocks need to touch to modify nrblocks?
  3947. * The "Chunk" flag indicating whether the nrblocks is
  3948. * physically contiguous on disk
  3949. *
  3950. * For Direct IO and fallocate, they calls get_block to allocate
  3951. * one single extent at a time, so they could set the "Chunk" flag
  3952. */
  3953. idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
  3954. ret = idxblocks;
  3955. /*
  3956. * Now let's see how many group bitmaps and group descriptors need
  3957. * to account
  3958. */
  3959. groups = idxblocks;
  3960. if (chunk)
  3961. groups += 1;
  3962. else
  3963. groups += nrblocks;
  3964. gdpblocks = groups;
  3965. if (groups > ngroups)
  3966. groups = ngroups;
  3967. if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
  3968. gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
  3969. /* bitmaps and block group descriptor blocks */
  3970. ret += groups + gdpblocks;
  3971. /* Blocks for super block, inode, quota and xattr blocks */
  3972. ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
  3973. return ret;
  3974. }
  3975. /*
  3976. * Calculate the total number of credits to reserve to fit
  3977. * the modification of a single pages into a single transaction,
  3978. * which may include multiple chunks of block allocations.
  3979. *
  3980. * This could be called via ext4_write_begin()
  3981. *
  3982. * We need to consider the worse case, when
  3983. * one new block per extent.
  3984. */
  3985. int ext4_writepage_trans_blocks(struct inode *inode)
  3986. {
  3987. int bpp = ext4_journal_blocks_per_page(inode);
  3988. int ret;
  3989. ret = ext4_meta_trans_blocks(inode, bpp, 0);
  3990. /* Account for data blocks for journalled mode */
  3991. if (ext4_should_journal_data(inode))
  3992. ret += bpp;
  3993. return ret;
  3994. }
  3995. /*
  3996. * Calculate the journal credits for a chunk of data modification.
  3997. *
  3998. * This is called from DIO, fallocate or whoever calling
  3999. * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
  4000. *
  4001. * journal buffers for data blocks are not included here, as DIO
  4002. * and fallocate do no need to journal data buffers.
  4003. */
  4004. int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
  4005. {
  4006. return ext4_meta_trans_blocks(inode, nrblocks, 1);
  4007. }
  4008. /*
  4009. * The caller must have previously called ext4_reserve_inode_write().
  4010. * Give this, we know that the caller already has write access to iloc->bh.
  4011. */
  4012. int ext4_mark_iloc_dirty(handle_t *handle,
  4013. struct inode *inode, struct ext4_iloc *iloc)
  4014. {
  4015. int err = 0;
  4016. if (test_opt(inode->i_sb, I_VERSION))
  4017. inode_inc_iversion(inode);
  4018. /* the do_update_inode consumes one bh->b_count */
  4019. get_bh(iloc->bh);
  4020. /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
  4021. err = ext4_do_update_inode(handle, inode, iloc);
  4022. put_bh(iloc->bh);
  4023. return err;
  4024. }
  4025. /*
  4026. * On success, We end up with an outstanding reference count against
  4027. * iloc->bh. This _must_ be cleaned up later.
  4028. */
  4029. int
  4030. ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
  4031. struct ext4_iloc *iloc)
  4032. {
  4033. int err;
  4034. err = ext4_get_inode_loc(inode, iloc);
  4035. if (!err) {
  4036. BUFFER_TRACE(iloc->bh, "get_write_access");
  4037. err = ext4_journal_get_write_access(handle, iloc->bh);
  4038. if (err) {
  4039. brelse(iloc->bh);
  4040. iloc->bh = NULL;
  4041. }
  4042. }
  4043. ext4_std_error(inode->i_sb, err);
  4044. return err;
  4045. }
  4046. /*
  4047. * Expand an inode by new_extra_isize bytes.
  4048. * Returns 0 on success or negative error number on failure.
  4049. */
  4050. static int ext4_expand_extra_isize(struct inode *inode,
  4051. unsigned int new_extra_isize,
  4052. struct ext4_iloc iloc,
  4053. handle_t *handle)
  4054. {
  4055. struct ext4_inode *raw_inode;
  4056. struct ext4_xattr_ibody_header *header;
  4057. if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
  4058. return 0;
  4059. raw_inode = ext4_raw_inode(&iloc);
  4060. header = IHDR(inode, raw_inode);
  4061. /* No extended attributes present */
  4062. if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
  4063. header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
  4064. memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
  4065. new_extra_isize);
  4066. EXT4_I(inode)->i_extra_isize = new_extra_isize;
  4067. return 0;
  4068. }
  4069. /* try to expand with EAs present */
  4070. return ext4_expand_extra_isize_ea(inode, new_extra_isize,
  4071. raw_inode, handle);
  4072. }
  4073. /*
  4074. * What we do here is to mark the in-core inode as clean with respect to inode
  4075. * dirtiness (it may still be data-dirty).
  4076. * This means that the in-core inode may be reaped by prune_icache
  4077. * without having to perform any I/O. This is a very good thing,
  4078. * because *any* task may call prune_icache - even ones which
  4079. * have a transaction open against a different journal.
  4080. *
  4081. * Is this cheating? Not really. Sure, we haven't written the
  4082. * inode out, but prune_icache isn't a user-visible syncing function.
  4083. * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
  4084. * we start and wait on commits.
  4085. *
  4086. * Is this efficient/effective? Well, we're being nice to the system
  4087. * by cleaning up our inodes proactively so they can be reaped
  4088. * without I/O. But we are potentially leaving up to five seconds'
  4089. * worth of inodes floating about which prune_icache wants us to
  4090. * write out. One way to fix that would be to get prune_icache()
  4091. * to do a write_super() to free up some memory. It has the desired
  4092. * effect.
  4093. */
  4094. int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
  4095. {
  4096. struct ext4_iloc iloc;
  4097. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  4098. static unsigned int mnt_count;
  4099. int err, ret;
  4100. might_sleep();
  4101. trace_ext4_mark_inode_dirty(inode, _RET_IP_);
  4102. err = ext4_reserve_inode_write(handle, inode, &iloc);
  4103. if (ext4_handle_valid(handle) &&
  4104. EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
  4105. !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
  4106. /*
  4107. * We need extra buffer credits since we may write into EA block
  4108. * with this same handle. If journal_extend fails, then it will
  4109. * only result in a minor loss of functionality for that inode.
  4110. * If this is felt to be critical, then e2fsck should be run to
  4111. * force a large enough s_min_extra_isize.
  4112. */
  4113. if ((jbd2_journal_extend(handle,
  4114. EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
  4115. ret = ext4_expand_extra_isize(inode,
  4116. sbi->s_want_extra_isize,
  4117. iloc, handle);
  4118. if (ret) {
  4119. ext4_set_inode_state(inode,
  4120. EXT4_STATE_NO_EXPAND);
  4121. if (mnt_count !=
  4122. le16_to_cpu(sbi->s_es->s_mnt_count)) {
  4123. ext4_warning(inode->i_sb,
  4124. "Unable to expand inode %lu. Delete"
  4125. " some EAs or run e2fsck.",
  4126. inode->i_ino);
  4127. mnt_count =
  4128. le16_to_cpu(sbi->s_es->s_mnt_count);
  4129. }
  4130. }
  4131. }
  4132. }
  4133. if (!err)
  4134. err = ext4_mark_iloc_dirty(handle, inode, &iloc);
  4135. return err;
  4136. }
  4137. /*
  4138. * ext4_dirty_inode() is called from __mark_inode_dirty()
  4139. *
  4140. * We're really interested in the case where a file is being extended.
  4141. * i_size has been changed by generic_commit_write() and we thus need
  4142. * to include the updated inode in the current transaction.
  4143. *
  4144. * Also, dquot_alloc_block() will always dirty the inode when blocks
  4145. * are allocated to the file.
  4146. *
  4147. * If the inode is marked synchronous, we don't honour that here - doing
  4148. * so would cause a commit on atime updates, which we don't bother doing.
  4149. * We handle synchronous inodes at the highest possible level.
  4150. */
  4151. void ext4_dirty_inode(struct inode *inode, int flags)
  4152. {
  4153. handle_t *handle;
  4154. handle = ext4_journal_start(inode, 2);
  4155. if (IS_ERR(handle))
  4156. goto out;
  4157. ext4_mark_inode_dirty(handle, inode);
  4158. ext4_journal_stop(handle);
  4159. out:
  4160. return;
  4161. }
  4162. #if 0
  4163. /*
  4164. * Bind an inode's backing buffer_head into this transaction, to prevent
  4165. * it from being flushed to disk early. Unlike
  4166. * ext4_reserve_inode_write, this leaves behind no bh reference and
  4167. * returns no iloc structure, so the caller needs to repeat the iloc
  4168. * lookup to mark the inode dirty later.
  4169. */
  4170. static int ext4_pin_inode(handle_t *handle, struct inode *inode)
  4171. {
  4172. struct ext4_iloc iloc;
  4173. int err = 0;
  4174. if (handle) {
  4175. err = ext4_get_inode_loc(inode, &iloc);
  4176. if (!err) {
  4177. BUFFER_TRACE(iloc.bh, "get_write_access");
  4178. err = jbd2_journal_get_write_access(handle, iloc.bh);
  4179. if (!err)
  4180. err = ext4_handle_dirty_metadata(handle,
  4181. NULL,
  4182. iloc.bh);
  4183. brelse(iloc.bh);
  4184. }
  4185. }
  4186. ext4_std_error(inode->i_sb, err);
  4187. return err;
  4188. }
  4189. #endif
  4190. int ext4_change_inode_journal_flag(struct inode *inode, int val)
  4191. {
  4192. journal_t *journal;
  4193. handle_t *handle;
  4194. int err;
  4195. /*
  4196. * We have to be very careful here: changing a data block's
  4197. * journaling status dynamically is dangerous. If we write a
  4198. * data block to the journal, change the status and then delete
  4199. * that block, we risk forgetting to revoke the old log record
  4200. * from the journal and so a subsequent replay can corrupt data.
  4201. * So, first we make sure that the journal is empty and that
  4202. * nobody is changing anything.
  4203. */
  4204. journal = EXT4_JOURNAL(inode);
  4205. if (!journal)
  4206. return 0;
  4207. if (is_journal_aborted(journal))
  4208. return -EROFS;
  4209. jbd2_journal_lock_updates(journal);
  4210. jbd2_journal_flush(journal);
  4211. /*
  4212. * OK, there are no updates running now, and all cached data is
  4213. * synced to disk. We are now in a completely consistent state
  4214. * which doesn't have anything in the journal, and we know that
  4215. * no filesystem updates are running, so it is safe to modify
  4216. * the inode's in-core data-journaling state flag now.
  4217. */
  4218. if (val)
  4219. ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
  4220. else
  4221. ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
  4222. ext4_set_aops(inode);
  4223. jbd2_journal_unlock_updates(journal);
  4224. /* Finally we can mark the inode as dirty. */
  4225. handle = ext4_journal_start(inode, 1);
  4226. if (IS_ERR(handle))
  4227. return PTR_ERR(handle);
  4228. err = ext4_mark_inode_dirty(handle, inode);
  4229. ext4_handle_sync(handle);
  4230. ext4_journal_stop(handle);
  4231. ext4_std_error(inode->i_sb, err);
  4232. return err;
  4233. }
  4234. static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
  4235. {
  4236. return !buffer_mapped(bh);
  4237. }
  4238. int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
  4239. {
  4240. struct page *page = vmf->page;
  4241. loff_t size;
  4242. unsigned long len;
  4243. int ret;
  4244. struct file *file = vma->vm_file;
  4245. struct inode *inode = file->f_path.dentry->d_inode;
  4246. struct address_space *mapping = inode->i_mapping;
  4247. handle_t *handle;
  4248. get_block_t *get_block;
  4249. int retries = 0;
  4250. /*
  4251. * This check is racy but catches the common case. We rely on
  4252. * __block_page_mkwrite() to do a reliable check.
  4253. */
  4254. vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
  4255. /* Delalloc case is easy... */
  4256. if (test_opt(inode->i_sb, DELALLOC) &&
  4257. !ext4_should_journal_data(inode) &&
  4258. !ext4_nonda_switch(inode->i_sb)) {
  4259. do {
  4260. ret = __block_page_mkwrite(vma, vmf,
  4261. ext4_da_get_block_prep);
  4262. } while (ret == -ENOSPC &&
  4263. ext4_should_retry_alloc(inode->i_sb, &retries));
  4264. goto out_ret;
  4265. }
  4266. lock_page(page);
  4267. size = i_size_read(inode);
  4268. /* Page got truncated from under us? */
  4269. if (page->mapping != mapping || page_offset(page) > size) {
  4270. unlock_page(page);
  4271. ret = VM_FAULT_NOPAGE;
  4272. goto out;
  4273. }
  4274. if (page->index == size >> PAGE_CACHE_SHIFT)
  4275. len = size & ~PAGE_CACHE_MASK;
  4276. else
  4277. len = PAGE_CACHE_SIZE;
  4278. /*
  4279. * Return if we have all the buffers mapped. This avoids the need to do
  4280. * journal_start/journal_stop which can block and take a long time
  4281. */
  4282. if (page_has_buffers(page)) {
  4283. if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
  4284. ext4_bh_unmapped)) {
  4285. /* Wait so that we don't change page under IO */
  4286. wait_on_page_writeback(page);
  4287. ret = VM_FAULT_LOCKED;
  4288. goto out;
  4289. }
  4290. }
  4291. unlock_page(page);
  4292. /* OK, we need to fill the hole... */
  4293. if (ext4_should_dioread_nolock(inode))
  4294. get_block = ext4_get_block_write;
  4295. else
  4296. get_block = ext4_get_block;
  4297. retry_alloc:
  4298. handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
  4299. if (IS_ERR(handle)) {
  4300. ret = VM_FAULT_SIGBUS;
  4301. goto out;
  4302. }
  4303. ret = __block_page_mkwrite(vma, vmf, get_block);
  4304. if (!ret && ext4_should_journal_data(inode)) {
  4305. if (walk_page_buffers(handle, page_buffers(page), 0,
  4306. PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
  4307. unlock_page(page);
  4308. ret = VM_FAULT_SIGBUS;
  4309. ext4_journal_stop(handle);
  4310. goto out;
  4311. }
  4312. ext4_set_inode_state(inode, EXT4_STATE_JDATA);
  4313. }
  4314. ext4_journal_stop(handle);
  4315. if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
  4316. goto retry_alloc;
  4317. out_ret:
  4318. ret = block_page_mkwrite_return(ret);
  4319. out:
  4320. return ret;
  4321. }