extents.c 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947
  1. /*
  2. * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
  3. * Written by Alex Tomas <alex@clusterfs.com>
  4. *
  5. * Architecture independence:
  6. * Copyright (c) 2005, Bull S.A.
  7. * Written by Pierre Peiffer <pierre.peiffer@bull.net>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public Licens
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
  21. */
  22. /*
  23. * Extents support for EXT4
  24. *
  25. * TODO:
  26. * - ext4*_error() should be used in some situations
  27. * - analyze all BUG()/BUG_ON(), use -EIO where appropriate
  28. * - smart tree reduction
  29. */
  30. #include <linux/fs.h>
  31. #include <linux/time.h>
  32. #include <linux/jbd2.h>
  33. #include <linux/highuid.h>
  34. #include <linux/pagemap.h>
  35. #include <linux/quotaops.h>
  36. #include <linux/string.h>
  37. #include <linux/slab.h>
  38. #include <linux/falloc.h>
  39. #include <asm/uaccess.h>
  40. #include <linux/fiemap.h>
  41. #include "ext4_jbd2.h"
  42. #include <trace/events/ext4.h>
  43. /*
  44. * used by extent splitting.
  45. */
  46. #define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \
  47. due to ENOSPC */
  48. #define EXT4_EXT_MARK_UNINIT1 0x2 /* mark first half uninitialized */
  49. #define EXT4_EXT_MARK_UNINIT2 0x4 /* mark second half uninitialized */
  50. static __le32 ext4_extent_block_csum(struct inode *inode,
  51. struct ext4_extent_header *eh)
  52. {
  53. struct ext4_inode_info *ei = EXT4_I(inode);
  54. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  55. __u32 csum;
  56. csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)eh,
  57. EXT4_EXTENT_TAIL_OFFSET(eh));
  58. return cpu_to_le32(csum);
  59. }
  60. static int ext4_extent_block_csum_verify(struct inode *inode,
  61. struct ext4_extent_header *eh)
  62. {
  63. struct ext4_extent_tail *et;
  64. if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
  65. EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
  66. return 1;
  67. et = find_ext4_extent_tail(eh);
  68. if (et->et_checksum != ext4_extent_block_csum(inode, eh))
  69. return 0;
  70. return 1;
  71. }
  72. static void ext4_extent_block_csum_set(struct inode *inode,
  73. struct ext4_extent_header *eh)
  74. {
  75. struct ext4_extent_tail *et;
  76. if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
  77. EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
  78. return;
  79. et = find_ext4_extent_tail(eh);
  80. et->et_checksum = ext4_extent_block_csum(inode, eh);
  81. }
  82. static int ext4_split_extent(handle_t *handle,
  83. struct inode *inode,
  84. struct ext4_ext_path *path,
  85. struct ext4_map_blocks *map,
  86. int split_flag,
  87. int flags);
  88. static int ext4_split_extent_at(handle_t *handle,
  89. struct inode *inode,
  90. struct ext4_ext_path *path,
  91. ext4_lblk_t split,
  92. int split_flag,
  93. int flags);
  94. static int ext4_ext_truncate_extend_restart(handle_t *handle,
  95. struct inode *inode,
  96. int needed)
  97. {
  98. int err;
  99. if (!ext4_handle_valid(handle))
  100. return 0;
  101. if (handle->h_buffer_credits > needed)
  102. return 0;
  103. err = ext4_journal_extend(handle, needed);
  104. if (err <= 0)
  105. return err;
  106. err = ext4_truncate_restart_trans(handle, inode, needed);
  107. if (err == 0)
  108. err = -EAGAIN;
  109. return err;
  110. }
  111. /*
  112. * could return:
  113. * - EROFS
  114. * - ENOMEM
  115. */
  116. static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
  117. struct ext4_ext_path *path)
  118. {
  119. if (path->p_bh) {
  120. /* path points to block */
  121. return ext4_journal_get_write_access(handle, path->p_bh);
  122. }
  123. /* path points to leaf/index in inode body */
  124. /* we use in-core data, no need to protect them */
  125. return 0;
  126. }
  127. /*
  128. * could return:
  129. * - EROFS
  130. * - ENOMEM
  131. * - EIO
  132. */
  133. #define ext4_ext_dirty(handle, inode, path) \
  134. __ext4_ext_dirty(__func__, __LINE__, (handle), (inode), (path))
  135. static int __ext4_ext_dirty(const char *where, unsigned int line,
  136. handle_t *handle, struct inode *inode,
  137. struct ext4_ext_path *path)
  138. {
  139. int err;
  140. if (path->p_bh) {
  141. ext4_extent_block_csum_set(inode, ext_block_hdr(path->p_bh));
  142. /* path points to block */
  143. err = __ext4_handle_dirty_metadata(where, line, handle,
  144. inode, path->p_bh);
  145. } else {
  146. /* path points to leaf/index in inode body */
  147. err = ext4_mark_inode_dirty(handle, inode);
  148. }
  149. return err;
  150. }
  151. static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
  152. struct ext4_ext_path *path,
  153. ext4_lblk_t block)
  154. {
  155. if (path) {
  156. int depth = path->p_depth;
  157. struct ext4_extent *ex;
  158. /*
  159. * Try to predict block placement assuming that we are
  160. * filling in a file which will eventually be
  161. * non-sparse --- i.e., in the case of libbfd writing
  162. * an ELF object sections out-of-order but in a way
  163. * the eventually results in a contiguous object or
  164. * executable file, or some database extending a table
  165. * space file. However, this is actually somewhat
  166. * non-ideal if we are writing a sparse file such as
  167. * qemu or KVM writing a raw image file that is going
  168. * to stay fairly sparse, since it will end up
  169. * fragmenting the file system's free space. Maybe we
  170. * should have some hueristics or some way to allow
  171. * userspace to pass a hint to file system,
  172. * especially if the latter case turns out to be
  173. * common.
  174. */
  175. ex = path[depth].p_ext;
  176. if (ex) {
  177. ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex);
  178. ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block);
  179. if (block > ext_block)
  180. return ext_pblk + (block - ext_block);
  181. else
  182. return ext_pblk - (ext_block - block);
  183. }
  184. /* it looks like index is empty;
  185. * try to find starting block from index itself */
  186. if (path[depth].p_bh)
  187. return path[depth].p_bh->b_blocknr;
  188. }
  189. /* OK. use inode's group */
  190. return ext4_inode_to_goal_block(inode);
  191. }
  192. /*
  193. * Allocation for a meta data block
  194. */
  195. static ext4_fsblk_t
  196. ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
  197. struct ext4_ext_path *path,
  198. struct ext4_extent *ex, int *err, unsigned int flags)
  199. {
  200. ext4_fsblk_t goal, newblock;
  201. goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
  202. newblock = ext4_new_meta_blocks(handle, inode, goal, flags,
  203. NULL, err);
  204. return newblock;
  205. }
  206. static inline int ext4_ext_space_block(struct inode *inode, int check)
  207. {
  208. int size;
  209. size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
  210. / sizeof(struct ext4_extent);
  211. #ifdef AGGRESSIVE_TEST
  212. if (!check && size > 6)
  213. size = 6;
  214. #endif
  215. return size;
  216. }
  217. static inline int ext4_ext_space_block_idx(struct inode *inode, int check)
  218. {
  219. int size;
  220. size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
  221. / sizeof(struct ext4_extent_idx);
  222. #ifdef AGGRESSIVE_TEST
  223. if (!check && size > 5)
  224. size = 5;
  225. #endif
  226. return size;
  227. }
  228. static inline int ext4_ext_space_root(struct inode *inode, int check)
  229. {
  230. int size;
  231. size = sizeof(EXT4_I(inode)->i_data);
  232. size -= sizeof(struct ext4_extent_header);
  233. size /= sizeof(struct ext4_extent);
  234. #ifdef AGGRESSIVE_TEST
  235. if (!check && size > 3)
  236. size = 3;
  237. #endif
  238. return size;
  239. }
  240. static inline int ext4_ext_space_root_idx(struct inode *inode, int check)
  241. {
  242. int size;
  243. size = sizeof(EXT4_I(inode)->i_data);
  244. size -= sizeof(struct ext4_extent_header);
  245. size /= sizeof(struct ext4_extent_idx);
  246. #ifdef AGGRESSIVE_TEST
  247. if (!check && size > 4)
  248. size = 4;
  249. #endif
  250. return size;
  251. }
  252. /*
  253. * Calculate the number of metadata blocks needed
  254. * to allocate @blocks
  255. * Worse case is one block per extent
  256. */
  257. int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
  258. {
  259. struct ext4_inode_info *ei = EXT4_I(inode);
  260. int idxs;
  261. idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
  262. / sizeof(struct ext4_extent_idx));
  263. /*
  264. * If the new delayed allocation block is contiguous with the
  265. * previous da block, it can share index blocks with the
  266. * previous block, so we only need to allocate a new index
  267. * block every idxs leaf blocks. At ldxs**2 blocks, we need
  268. * an additional index block, and at ldxs**3 blocks, yet
  269. * another index blocks.
  270. */
  271. if (ei->i_da_metadata_calc_len &&
  272. ei->i_da_metadata_calc_last_lblock+1 == lblock) {
  273. int num = 0;
  274. if ((ei->i_da_metadata_calc_len % idxs) == 0)
  275. num++;
  276. if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0)
  277. num++;
  278. if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) {
  279. num++;
  280. ei->i_da_metadata_calc_len = 0;
  281. } else
  282. ei->i_da_metadata_calc_len++;
  283. ei->i_da_metadata_calc_last_lblock++;
  284. return num;
  285. }
  286. /*
  287. * In the worst case we need a new set of index blocks at
  288. * every level of the inode's extent tree.
  289. */
  290. ei->i_da_metadata_calc_len = 1;
  291. ei->i_da_metadata_calc_last_lblock = lblock;
  292. return ext_depth(inode) + 1;
  293. }
  294. static int
  295. ext4_ext_max_entries(struct inode *inode, int depth)
  296. {
  297. int max;
  298. if (depth == ext_depth(inode)) {
  299. if (depth == 0)
  300. max = ext4_ext_space_root(inode, 1);
  301. else
  302. max = ext4_ext_space_root_idx(inode, 1);
  303. } else {
  304. if (depth == 0)
  305. max = ext4_ext_space_block(inode, 1);
  306. else
  307. max = ext4_ext_space_block_idx(inode, 1);
  308. }
  309. return max;
  310. }
  311. static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext)
  312. {
  313. ext4_fsblk_t block = ext4_ext_pblock(ext);
  314. int len = ext4_ext_get_actual_len(ext);
  315. if (len == 0)
  316. return 0;
  317. return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len);
  318. }
  319. static int ext4_valid_extent_idx(struct inode *inode,
  320. struct ext4_extent_idx *ext_idx)
  321. {
  322. ext4_fsblk_t block = ext4_idx_pblock(ext_idx);
  323. return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1);
  324. }
  325. static int ext4_valid_extent_entries(struct inode *inode,
  326. struct ext4_extent_header *eh,
  327. int depth)
  328. {
  329. unsigned short entries;
  330. if (eh->eh_entries == 0)
  331. return 1;
  332. entries = le16_to_cpu(eh->eh_entries);
  333. if (depth == 0) {
  334. /* leaf entries */
  335. struct ext4_extent *ext = EXT_FIRST_EXTENT(eh);
  336. while (entries) {
  337. if (!ext4_valid_extent(inode, ext))
  338. return 0;
  339. ext++;
  340. entries--;
  341. }
  342. } else {
  343. struct ext4_extent_idx *ext_idx = EXT_FIRST_INDEX(eh);
  344. while (entries) {
  345. if (!ext4_valid_extent_idx(inode, ext_idx))
  346. return 0;
  347. ext_idx++;
  348. entries--;
  349. }
  350. }
  351. return 1;
  352. }
  353. static int __ext4_ext_check(const char *function, unsigned int line,
  354. struct inode *inode, struct ext4_extent_header *eh,
  355. int depth)
  356. {
  357. const char *error_msg;
  358. int max = 0;
  359. if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
  360. error_msg = "invalid magic";
  361. goto corrupted;
  362. }
  363. if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
  364. error_msg = "unexpected eh_depth";
  365. goto corrupted;
  366. }
  367. if (unlikely(eh->eh_max == 0)) {
  368. error_msg = "invalid eh_max";
  369. goto corrupted;
  370. }
  371. max = ext4_ext_max_entries(inode, depth);
  372. if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
  373. error_msg = "too large eh_max";
  374. goto corrupted;
  375. }
  376. if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
  377. error_msg = "invalid eh_entries";
  378. goto corrupted;
  379. }
  380. if (!ext4_valid_extent_entries(inode, eh, depth)) {
  381. error_msg = "invalid extent entries";
  382. goto corrupted;
  383. }
  384. /* Verify checksum on non-root extent tree nodes */
  385. if (ext_depth(inode) != depth &&
  386. !ext4_extent_block_csum_verify(inode, eh)) {
  387. error_msg = "extent tree corrupted";
  388. goto corrupted;
  389. }
  390. return 0;
  391. corrupted:
  392. ext4_error_inode(inode, function, line, 0,
  393. "bad header/extent: %s - magic %x, "
  394. "entries %u, max %u(%u), depth %u(%u)",
  395. error_msg, le16_to_cpu(eh->eh_magic),
  396. le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
  397. max, le16_to_cpu(eh->eh_depth), depth);
  398. return -EIO;
  399. }
  400. #define ext4_ext_check(inode, eh, depth) \
  401. __ext4_ext_check(__func__, __LINE__, inode, eh, depth)
  402. int ext4_ext_check_inode(struct inode *inode)
  403. {
  404. return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode));
  405. }
  406. static int __ext4_ext_check_block(const char *function, unsigned int line,
  407. struct inode *inode,
  408. struct ext4_extent_header *eh,
  409. int depth,
  410. struct buffer_head *bh)
  411. {
  412. int ret;
  413. if (buffer_verified(bh))
  414. return 0;
  415. ret = ext4_ext_check(inode, eh, depth);
  416. if (ret)
  417. return ret;
  418. set_buffer_verified(bh);
  419. return ret;
  420. }
  421. #define ext4_ext_check_block(inode, eh, depth, bh) \
  422. __ext4_ext_check_block(__func__, __LINE__, inode, eh, depth, bh)
  423. #ifdef EXT_DEBUG
  424. static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
  425. {
  426. int k, l = path->p_depth;
  427. ext_debug("path:");
  428. for (k = 0; k <= l; k++, path++) {
  429. if (path->p_idx) {
  430. ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block),
  431. ext4_idx_pblock(path->p_idx));
  432. } else if (path->p_ext) {
  433. ext_debug(" %d:[%d]%d:%llu ",
  434. le32_to_cpu(path->p_ext->ee_block),
  435. ext4_ext_is_uninitialized(path->p_ext),
  436. ext4_ext_get_actual_len(path->p_ext),
  437. ext4_ext_pblock(path->p_ext));
  438. } else
  439. ext_debug(" []");
  440. }
  441. ext_debug("\n");
  442. }
  443. static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
  444. {
  445. int depth = ext_depth(inode);
  446. struct ext4_extent_header *eh;
  447. struct ext4_extent *ex;
  448. int i;
  449. if (!path)
  450. return;
  451. eh = path[depth].p_hdr;
  452. ex = EXT_FIRST_EXTENT(eh);
  453. ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino);
  454. for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
  455. ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block),
  456. ext4_ext_is_uninitialized(ex),
  457. ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex));
  458. }
  459. ext_debug("\n");
  460. }
  461. static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path,
  462. ext4_fsblk_t newblock, int level)
  463. {
  464. int depth = ext_depth(inode);
  465. struct ext4_extent *ex;
  466. if (depth != level) {
  467. struct ext4_extent_idx *idx;
  468. idx = path[level].p_idx;
  469. while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) {
  470. ext_debug("%d: move %d:%llu in new index %llu\n", level,
  471. le32_to_cpu(idx->ei_block),
  472. ext4_idx_pblock(idx),
  473. newblock);
  474. idx++;
  475. }
  476. return;
  477. }
  478. ex = path[depth].p_ext;
  479. while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) {
  480. ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
  481. le32_to_cpu(ex->ee_block),
  482. ext4_ext_pblock(ex),
  483. ext4_ext_is_uninitialized(ex),
  484. ext4_ext_get_actual_len(ex),
  485. newblock);
  486. ex++;
  487. }
  488. }
  489. #else
  490. #define ext4_ext_show_path(inode, path)
  491. #define ext4_ext_show_leaf(inode, path)
  492. #define ext4_ext_show_move(inode, path, newblock, level)
  493. #endif
  494. void ext4_ext_drop_refs(struct ext4_ext_path *path)
  495. {
  496. int depth = path->p_depth;
  497. int i;
  498. for (i = 0; i <= depth; i++, path++)
  499. if (path->p_bh) {
  500. brelse(path->p_bh);
  501. path->p_bh = NULL;
  502. }
  503. }
  504. /*
  505. * ext4_ext_binsearch_idx:
  506. * binary search for the closest index of the given block
  507. * the header must be checked before calling this
  508. */
  509. static void
  510. ext4_ext_binsearch_idx(struct inode *inode,
  511. struct ext4_ext_path *path, ext4_lblk_t block)
  512. {
  513. struct ext4_extent_header *eh = path->p_hdr;
  514. struct ext4_extent_idx *r, *l, *m;
  515. ext_debug("binsearch for %u(idx): ", block);
  516. l = EXT_FIRST_INDEX(eh) + 1;
  517. r = EXT_LAST_INDEX(eh);
  518. while (l <= r) {
  519. m = l + (r - l) / 2;
  520. if (block < le32_to_cpu(m->ei_block))
  521. r = m - 1;
  522. else
  523. l = m + 1;
  524. ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
  525. m, le32_to_cpu(m->ei_block),
  526. r, le32_to_cpu(r->ei_block));
  527. }
  528. path->p_idx = l - 1;
  529. ext_debug(" -> %u->%lld ", le32_to_cpu(path->p_idx->ei_block),
  530. ext4_idx_pblock(path->p_idx));
  531. #ifdef CHECK_BINSEARCH
  532. {
  533. struct ext4_extent_idx *chix, *ix;
  534. int k;
  535. chix = ix = EXT_FIRST_INDEX(eh);
  536. for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
  537. if (k != 0 &&
  538. le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
  539. printk(KERN_DEBUG "k=%d, ix=0x%p, "
  540. "first=0x%p\n", k,
  541. ix, EXT_FIRST_INDEX(eh));
  542. printk(KERN_DEBUG "%u <= %u\n",
  543. le32_to_cpu(ix->ei_block),
  544. le32_to_cpu(ix[-1].ei_block));
  545. }
  546. BUG_ON(k && le32_to_cpu(ix->ei_block)
  547. <= le32_to_cpu(ix[-1].ei_block));
  548. if (block < le32_to_cpu(ix->ei_block))
  549. break;
  550. chix = ix;
  551. }
  552. BUG_ON(chix != path->p_idx);
  553. }
  554. #endif
  555. }
  556. /*
  557. * ext4_ext_binsearch:
  558. * binary search for closest extent of the given block
  559. * the header must be checked before calling this
  560. */
  561. static void
  562. ext4_ext_binsearch(struct inode *inode,
  563. struct ext4_ext_path *path, ext4_lblk_t block)
  564. {
  565. struct ext4_extent_header *eh = path->p_hdr;
  566. struct ext4_extent *r, *l, *m;
  567. if (eh->eh_entries == 0) {
  568. /*
  569. * this leaf is empty:
  570. * we get such a leaf in split/add case
  571. */
  572. return;
  573. }
  574. ext_debug("binsearch for %u: ", block);
  575. l = EXT_FIRST_EXTENT(eh) + 1;
  576. r = EXT_LAST_EXTENT(eh);
  577. while (l <= r) {
  578. m = l + (r - l) / 2;
  579. if (block < le32_to_cpu(m->ee_block))
  580. r = m - 1;
  581. else
  582. l = m + 1;
  583. ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
  584. m, le32_to_cpu(m->ee_block),
  585. r, le32_to_cpu(r->ee_block));
  586. }
  587. path->p_ext = l - 1;
  588. ext_debug(" -> %d:%llu:[%d]%d ",
  589. le32_to_cpu(path->p_ext->ee_block),
  590. ext4_ext_pblock(path->p_ext),
  591. ext4_ext_is_uninitialized(path->p_ext),
  592. ext4_ext_get_actual_len(path->p_ext));
  593. #ifdef CHECK_BINSEARCH
  594. {
  595. struct ext4_extent *chex, *ex;
  596. int k;
  597. chex = ex = EXT_FIRST_EXTENT(eh);
  598. for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
  599. BUG_ON(k && le32_to_cpu(ex->ee_block)
  600. <= le32_to_cpu(ex[-1].ee_block));
  601. if (block < le32_to_cpu(ex->ee_block))
  602. break;
  603. chex = ex;
  604. }
  605. BUG_ON(chex != path->p_ext);
  606. }
  607. #endif
  608. }
  609. int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
  610. {
  611. struct ext4_extent_header *eh;
  612. eh = ext_inode_hdr(inode);
  613. eh->eh_depth = 0;
  614. eh->eh_entries = 0;
  615. eh->eh_magic = EXT4_EXT_MAGIC;
  616. eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0));
  617. ext4_mark_inode_dirty(handle, inode);
  618. ext4_ext_invalidate_cache(inode);
  619. return 0;
  620. }
  621. struct ext4_ext_path *
  622. ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
  623. struct ext4_ext_path *path)
  624. {
  625. struct ext4_extent_header *eh;
  626. struct buffer_head *bh;
  627. short int depth, i, ppos = 0, alloc = 0;
  628. eh = ext_inode_hdr(inode);
  629. depth = ext_depth(inode);
  630. /* account possible depth increase */
  631. if (!path) {
  632. path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
  633. GFP_NOFS);
  634. if (!path)
  635. return ERR_PTR(-ENOMEM);
  636. alloc = 1;
  637. }
  638. path[0].p_hdr = eh;
  639. path[0].p_bh = NULL;
  640. i = depth;
  641. /* walk through the tree */
  642. while (i) {
  643. ext_debug("depth %d: num %d, max %d\n",
  644. ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
  645. ext4_ext_binsearch_idx(inode, path + ppos, block);
  646. path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx);
  647. path[ppos].p_depth = i;
  648. path[ppos].p_ext = NULL;
  649. bh = sb_getblk(inode->i_sb, path[ppos].p_block);
  650. if (unlikely(!bh))
  651. goto err;
  652. if (!bh_uptodate_or_lock(bh)) {
  653. trace_ext4_ext_load_extent(inode, block,
  654. path[ppos].p_block);
  655. if (bh_submit_read(bh) < 0) {
  656. put_bh(bh);
  657. goto err;
  658. }
  659. }
  660. eh = ext_block_hdr(bh);
  661. ppos++;
  662. if (unlikely(ppos > depth)) {
  663. put_bh(bh);
  664. EXT4_ERROR_INODE(inode,
  665. "ppos %d > depth %d", ppos, depth);
  666. goto err;
  667. }
  668. path[ppos].p_bh = bh;
  669. path[ppos].p_hdr = eh;
  670. i--;
  671. if (ext4_ext_check_block(inode, eh, i, bh))
  672. goto err;
  673. }
  674. path[ppos].p_depth = i;
  675. path[ppos].p_ext = NULL;
  676. path[ppos].p_idx = NULL;
  677. /* find extent */
  678. ext4_ext_binsearch(inode, path + ppos, block);
  679. /* if not an empty leaf */
  680. if (path[ppos].p_ext)
  681. path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext);
  682. ext4_ext_show_path(inode, path);
  683. return path;
  684. err:
  685. ext4_ext_drop_refs(path);
  686. if (alloc)
  687. kfree(path);
  688. return ERR_PTR(-EIO);
  689. }
  690. /*
  691. * ext4_ext_insert_index:
  692. * insert new index [@logical;@ptr] into the block at @curp;
  693. * check where to insert: before @curp or after @curp
  694. */
  695. static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
  696. struct ext4_ext_path *curp,
  697. int logical, ext4_fsblk_t ptr)
  698. {
  699. struct ext4_extent_idx *ix;
  700. int len, err;
  701. err = ext4_ext_get_access(handle, inode, curp);
  702. if (err)
  703. return err;
  704. if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) {
  705. EXT4_ERROR_INODE(inode,
  706. "logical %d == ei_block %d!",
  707. logical, le32_to_cpu(curp->p_idx->ei_block));
  708. return -EIO;
  709. }
  710. if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries)
  711. >= le16_to_cpu(curp->p_hdr->eh_max))) {
  712. EXT4_ERROR_INODE(inode,
  713. "eh_entries %d >= eh_max %d!",
  714. le16_to_cpu(curp->p_hdr->eh_entries),
  715. le16_to_cpu(curp->p_hdr->eh_max));
  716. return -EIO;
  717. }
  718. if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
  719. /* insert after */
  720. ext_debug("insert new index %d after: %llu\n", logical, ptr);
  721. ix = curp->p_idx + 1;
  722. } else {
  723. /* insert before */
  724. ext_debug("insert new index %d before: %llu\n", logical, ptr);
  725. ix = curp->p_idx;
  726. }
  727. len = EXT_LAST_INDEX(curp->p_hdr) - ix + 1;
  728. BUG_ON(len < 0);
  729. if (len > 0) {
  730. ext_debug("insert new index %d: "
  731. "move %d indices from 0x%p to 0x%p\n",
  732. logical, len, ix, ix + 1);
  733. memmove(ix + 1, ix, len * sizeof(struct ext4_extent_idx));
  734. }
  735. if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) {
  736. EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!");
  737. return -EIO;
  738. }
  739. ix->ei_block = cpu_to_le32(logical);
  740. ext4_idx_store_pblock(ix, ptr);
  741. le16_add_cpu(&curp->p_hdr->eh_entries, 1);
  742. if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) {
  743. EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!");
  744. return -EIO;
  745. }
  746. err = ext4_ext_dirty(handle, inode, curp);
  747. ext4_std_error(inode->i_sb, err);
  748. return err;
  749. }
  750. /*
  751. * ext4_ext_split:
  752. * inserts new subtree into the path, using free index entry
  753. * at depth @at:
  754. * - allocates all needed blocks (new leaf and all intermediate index blocks)
  755. * - makes decision where to split
  756. * - moves remaining extents and index entries (right to the split point)
  757. * into the newly allocated blocks
  758. * - initializes subtree
  759. */
  760. static int ext4_ext_split(handle_t *handle, struct inode *inode,
  761. unsigned int flags,
  762. struct ext4_ext_path *path,
  763. struct ext4_extent *newext, int at)
  764. {
  765. struct buffer_head *bh = NULL;
  766. int depth = ext_depth(inode);
  767. struct ext4_extent_header *neh;
  768. struct ext4_extent_idx *fidx;
  769. int i = at, k, m, a;
  770. ext4_fsblk_t newblock, oldblock;
  771. __le32 border;
  772. ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
  773. int err = 0;
  774. /* make decision: where to split? */
  775. /* FIXME: now decision is simplest: at current extent */
  776. /* if current leaf will be split, then we should use
  777. * border from split point */
  778. if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) {
  779. EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!");
  780. return -EIO;
  781. }
  782. if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
  783. border = path[depth].p_ext[1].ee_block;
  784. ext_debug("leaf will be split."
  785. " next leaf starts at %d\n",
  786. le32_to_cpu(border));
  787. } else {
  788. border = newext->ee_block;
  789. ext_debug("leaf will be added."
  790. " next leaf starts at %d\n",
  791. le32_to_cpu(border));
  792. }
  793. /*
  794. * If error occurs, then we break processing
  795. * and mark filesystem read-only. index won't
  796. * be inserted and tree will be in consistent
  797. * state. Next mount will repair buffers too.
  798. */
  799. /*
  800. * Get array to track all allocated blocks.
  801. * We need this to handle errors and free blocks
  802. * upon them.
  803. */
  804. ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
  805. if (!ablocks)
  806. return -ENOMEM;
  807. /* allocate all needed blocks */
  808. ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
  809. for (a = 0; a < depth - at; a++) {
  810. newblock = ext4_ext_new_meta_block(handle, inode, path,
  811. newext, &err, flags);
  812. if (newblock == 0)
  813. goto cleanup;
  814. ablocks[a] = newblock;
  815. }
  816. /* initialize new leaf */
  817. newblock = ablocks[--a];
  818. if (unlikely(newblock == 0)) {
  819. EXT4_ERROR_INODE(inode, "newblock == 0!");
  820. err = -EIO;
  821. goto cleanup;
  822. }
  823. bh = sb_getblk(inode->i_sb, newblock);
  824. if (!bh) {
  825. err = -EIO;
  826. goto cleanup;
  827. }
  828. lock_buffer(bh);
  829. err = ext4_journal_get_create_access(handle, bh);
  830. if (err)
  831. goto cleanup;
  832. neh = ext_block_hdr(bh);
  833. neh->eh_entries = 0;
  834. neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
  835. neh->eh_magic = EXT4_EXT_MAGIC;
  836. neh->eh_depth = 0;
  837. /* move remainder of path[depth] to the new leaf */
  838. if (unlikely(path[depth].p_hdr->eh_entries !=
  839. path[depth].p_hdr->eh_max)) {
  840. EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!",
  841. path[depth].p_hdr->eh_entries,
  842. path[depth].p_hdr->eh_max);
  843. err = -EIO;
  844. goto cleanup;
  845. }
  846. /* start copy from next extent */
  847. m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++;
  848. ext4_ext_show_move(inode, path, newblock, depth);
  849. if (m) {
  850. struct ext4_extent *ex;
  851. ex = EXT_FIRST_EXTENT(neh);
  852. memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m);
  853. le16_add_cpu(&neh->eh_entries, m);
  854. }
  855. ext4_extent_block_csum_set(inode, neh);
  856. set_buffer_uptodate(bh);
  857. unlock_buffer(bh);
  858. err = ext4_handle_dirty_metadata(handle, inode, bh);
  859. if (err)
  860. goto cleanup;
  861. brelse(bh);
  862. bh = NULL;
  863. /* correct old leaf */
  864. if (m) {
  865. err = ext4_ext_get_access(handle, inode, path + depth);
  866. if (err)
  867. goto cleanup;
  868. le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
  869. err = ext4_ext_dirty(handle, inode, path + depth);
  870. if (err)
  871. goto cleanup;
  872. }
  873. /* create intermediate indexes */
  874. k = depth - at - 1;
  875. if (unlikely(k < 0)) {
  876. EXT4_ERROR_INODE(inode, "k %d < 0!", k);
  877. err = -EIO;
  878. goto cleanup;
  879. }
  880. if (k)
  881. ext_debug("create %d intermediate indices\n", k);
  882. /* insert new index into current index block */
  883. /* current depth stored in i var */
  884. i = depth - 1;
  885. while (k--) {
  886. oldblock = newblock;
  887. newblock = ablocks[--a];
  888. bh = sb_getblk(inode->i_sb, newblock);
  889. if (!bh) {
  890. err = -EIO;
  891. goto cleanup;
  892. }
  893. lock_buffer(bh);
  894. err = ext4_journal_get_create_access(handle, bh);
  895. if (err)
  896. goto cleanup;
  897. neh = ext_block_hdr(bh);
  898. neh->eh_entries = cpu_to_le16(1);
  899. neh->eh_magic = EXT4_EXT_MAGIC;
  900. neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
  901. neh->eh_depth = cpu_to_le16(depth - i);
  902. fidx = EXT_FIRST_INDEX(neh);
  903. fidx->ei_block = border;
  904. ext4_idx_store_pblock(fidx, oldblock);
  905. ext_debug("int.index at %d (block %llu): %u -> %llu\n",
  906. i, newblock, le32_to_cpu(border), oldblock);
  907. /* move remainder of path[i] to the new index block */
  908. if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) !=
  909. EXT_LAST_INDEX(path[i].p_hdr))) {
  910. EXT4_ERROR_INODE(inode,
  911. "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!",
  912. le32_to_cpu(path[i].p_ext->ee_block));
  913. err = -EIO;
  914. goto cleanup;
  915. }
  916. /* start copy indexes */
  917. m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++;
  918. ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
  919. EXT_MAX_INDEX(path[i].p_hdr));
  920. ext4_ext_show_move(inode, path, newblock, i);
  921. if (m) {
  922. memmove(++fidx, path[i].p_idx,
  923. sizeof(struct ext4_extent_idx) * m);
  924. le16_add_cpu(&neh->eh_entries, m);
  925. }
  926. ext4_extent_block_csum_set(inode, neh);
  927. set_buffer_uptodate(bh);
  928. unlock_buffer(bh);
  929. err = ext4_handle_dirty_metadata(handle, inode, bh);
  930. if (err)
  931. goto cleanup;
  932. brelse(bh);
  933. bh = NULL;
  934. /* correct old index */
  935. if (m) {
  936. err = ext4_ext_get_access(handle, inode, path + i);
  937. if (err)
  938. goto cleanup;
  939. le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
  940. err = ext4_ext_dirty(handle, inode, path + i);
  941. if (err)
  942. goto cleanup;
  943. }
  944. i--;
  945. }
  946. /* insert new index */
  947. err = ext4_ext_insert_index(handle, inode, path + at,
  948. le32_to_cpu(border), newblock);
  949. cleanup:
  950. if (bh) {
  951. if (buffer_locked(bh))
  952. unlock_buffer(bh);
  953. brelse(bh);
  954. }
  955. if (err) {
  956. /* free all allocated blocks in error case */
  957. for (i = 0; i < depth; i++) {
  958. if (!ablocks[i])
  959. continue;
  960. ext4_free_blocks(handle, inode, NULL, ablocks[i], 1,
  961. EXT4_FREE_BLOCKS_METADATA);
  962. }
  963. }
  964. kfree(ablocks);
  965. return err;
  966. }
  967. /*
  968. * ext4_ext_grow_indepth:
  969. * implements tree growing procedure:
  970. * - allocates new block
  971. * - moves top-level data (index block or leaf) into the new block
  972. * - initializes new top-level, creating index that points to the
  973. * just created block
  974. */
  975. static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
  976. unsigned int flags,
  977. struct ext4_extent *newext)
  978. {
  979. struct ext4_extent_header *neh;
  980. struct buffer_head *bh;
  981. ext4_fsblk_t newblock;
  982. int err = 0;
  983. newblock = ext4_ext_new_meta_block(handle, inode, NULL,
  984. newext, &err, flags);
  985. if (newblock == 0)
  986. return err;
  987. bh = sb_getblk(inode->i_sb, newblock);
  988. if (!bh) {
  989. err = -EIO;
  990. ext4_std_error(inode->i_sb, err);
  991. return err;
  992. }
  993. lock_buffer(bh);
  994. err = ext4_journal_get_create_access(handle, bh);
  995. if (err) {
  996. unlock_buffer(bh);
  997. goto out;
  998. }
  999. /* move top-level index/leaf into new block */
  1000. memmove(bh->b_data, EXT4_I(inode)->i_data,
  1001. sizeof(EXT4_I(inode)->i_data));
  1002. /* set size of new block */
  1003. neh = ext_block_hdr(bh);
  1004. /* old root could have indexes or leaves
  1005. * so calculate e_max right way */
  1006. if (ext_depth(inode))
  1007. neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
  1008. else
  1009. neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
  1010. neh->eh_magic = EXT4_EXT_MAGIC;
  1011. ext4_extent_block_csum_set(inode, neh);
  1012. set_buffer_uptodate(bh);
  1013. unlock_buffer(bh);
  1014. err = ext4_handle_dirty_metadata(handle, inode, bh);
  1015. if (err)
  1016. goto out;
  1017. /* Update top-level index: num,max,pointer */
  1018. neh = ext_inode_hdr(inode);
  1019. neh->eh_entries = cpu_to_le16(1);
  1020. ext4_idx_store_pblock(EXT_FIRST_INDEX(neh), newblock);
  1021. if (neh->eh_depth == 0) {
  1022. /* Root extent block becomes index block */
  1023. neh->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0));
  1024. EXT_FIRST_INDEX(neh)->ei_block =
  1025. EXT_FIRST_EXTENT(neh)->ee_block;
  1026. }
  1027. ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
  1028. le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
  1029. le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
  1030. ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
  1031. neh->eh_depth = cpu_to_le16(le16_to_cpu(neh->eh_depth) + 1);
  1032. ext4_mark_inode_dirty(handle, inode);
  1033. out:
  1034. brelse(bh);
  1035. return err;
  1036. }
  1037. /*
  1038. * ext4_ext_create_new_leaf:
  1039. * finds empty index and adds new leaf.
  1040. * if no free index is found, then it requests in-depth growing.
  1041. */
  1042. static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
  1043. unsigned int flags,
  1044. struct ext4_ext_path *path,
  1045. struct ext4_extent *newext)
  1046. {
  1047. struct ext4_ext_path *curp;
  1048. int depth, i, err = 0;
  1049. repeat:
  1050. i = depth = ext_depth(inode);
  1051. /* walk up to the tree and look for free index entry */
  1052. curp = path + depth;
  1053. while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
  1054. i--;
  1055. curp--;
  1056. }
  1057. /* we use already allocated block for index block,
  1058. * so subsequent data blocks should be contiguous */
  1059. if (EXT_HAS_FREE_INDEX(curp)) {
  1060. /* if we found index with free entry, then use that
  1061. * entry: create all needed subtree and add new leaf */
  1062. err = ext4_ext_split(handle, inode, flags, path, newext, i);
  1063. if (err)
  1064. goto out;
  1065. /* refill path */
  1066. ext4_ext_drop_refs(path);
  1067. path = ext4_ext_find_extent(inode,
  1068. (ext4_lblk_t)le32_to_cpu(newext->ee_block),
  1069. path);
  1070. if (IS_ERR(path))
  1071. err = PTR_ERR(path);
  1072. } else {
  1073. /* tree is full, time to grow in depth */
  1074. err = ext4_ext_grow_indepth(handle, inode, flags, newext);
  1075. if (err)
  1076. goto out;
  1077. /* refill path */
  1078. ext4_ext_drop_refs(path);
  1079. path = ext4_ext_find_extent(inode,
  1080. (ext4_lblk_t)le32_to_cpu(newext->ee_block),
  1081. path);
  1082. if (IS_ERR(path)) {
  1083. err = PTR_ERR(path);
  1084. goto out;
  1085. }
  1086. /*
  1087. * only first (depth 0 -> 1) produces free space;
  1088. * in all other cases we have to split the grown tree
  1089. */
  1090. depth = ext_depth(inode);
  1091. if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
  1092. /* now we need to split */
  1093. goto repeat;
  1094. }
  1095. }
  1096. out:
  1097. return err;
  1098. }
  1099. /*
  1100. * search the closest allocated block to the left for *logical
  1101. * and returns it at @logical + it's physical address at @phys
  1102. * if *logical is the smallest allocated block, the function
  1103. * returns 0 at @phys
  1104. * return value contains 0 (success) or error code
  1105. */
  1106. static int ext4_ext_search_left(struct inode *inode,
  1107. struct ext4_ext_path *path,
  1108. ext4_lblk_t *logical, ext4_fsblk_t *phys)
  1109. {
  1110. struct ext4_extent_idx *ix;
  1111. struct ext4_extent *ex;
  1112. int depth, ee_len;
  1113. if (unlikely(path == NULL)) {
  1114. EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
  1115. return -EIO;
  1116. }
  1117. depth = path->p_depth;
  1118. *phys = 0;
  1119. if (depth == 0 && path->p_ext == NULL)
  1120. return 0;
  1121. /* usually extent in the path covers blocks smaller
  1122. * then *logical, but it can be that extent is the
  1123. * first one in the file */
  1124. ex = path[depth].p_ext;
  1125. ee_len = ext4_ext_get_actual_len(ex);
  1126. if (*logical < le32_to_cpu(ex->ee_block)) {
  1127. if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
  1128. EXT4_ERROR_INODE(inode,
  1129. "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!",
  1130. *logical, le32_to_cpu(ex->ee_block));
  1131. return -EIO;
  1132. }
  1133. while (--depth >= 0) {
  1134. ix = path[depth].p_idx;
  1135. if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
  1136. EXT4_ERROR_INODE(inode,
  1137. "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
  1138. ix != NULL ? le32_to_cpu(ix->ei_block) : 0,
  1139. EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
  1140. le32_to_cpu(EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block) : 0,
  1141. depth);
  1142. return -EIO;
  1143. }
  1144. }
  1145. return 0;
  1146. }
  1147. if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
  1148. EXT4_ERROR_INODE(inode,
  1149. "logical %d < ee_block %d + ee_len %d!",
  1150. *logical, le32_to_cpu(ex->ee_block), ee_len);
  1151. return -EIO;
  1152. }
  1153. *logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
  1154. *phys = ext4_ext_pblock(ex) + ee_len - 1;
  1155. return 0;
  1156. }
  1157. /*
  1158. * search the closest allocated block to the right for *logical
  1159. * and returns it at @logical + it's physical address at @phys
  1160. * if *logical is the largest allocated block, the function
  1161. * returns 0 at @phys
  1162. * return value contains 0 (success) or error code
  1163. */
  1164. static int ext4_ext_search_right(struct inode *inode,
  1165. struct ext4_ext_path *path,
  1166. ext4_lblk_t *logical, ext4_fsblk_t *phys,
  1167. struct ext4_extent **ret_ex)
  1168. {
  1169. struct buffer_head *bh = NULL;
  1170. struct ext4_extent_header *eh;
  1171. struct ext4_extent_idx *ix;
  1172. struct ext4_extent *ex;
  1173. ext4_fsblk_t block;
  1174. int depth; /* Note, NOT eh_depth; depth from top of tree */
  1175. int ee_len;
  1176. if (unlikely(path == NULL)) {
  1177. EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
  1178. return -EIO;
  1179. }
  1180. depth = path->p_depth;
  1181. *phys = 0;
  1182. if (depth == 0 && path->p_ext == NULL)
  1183. return 0;
  1184. /* usually extent in the path covers blocks smaller
  1185. * then *logical, but it can be that extent is the
  1186. * first one in the file */
  1187. ex = path[depth].p_ext;
  1188. ee_len = ext4_ext_get_actual_len(ex);
  1189. if (*logical < le32_to_cpu(ex->ee_block)) {
  1190. if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
  1191. EXT4_ERROR_INODE(inode,
  1192. "first_extent(path[%d].p_hdr) != ex",
  1193. depth);
  1194. return -EIO;
  1195. }
  1196. while (--depth >= 0) {
  1197. ix = path[depth].p_idx;
  1198. if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
  1199. EXT4_ERROR_INODE(inode,
  1200. "ix != EXT_FIRST_INDEX *logical %d!",
  1201. *logical);
  1202. return -EIO;
  1203. }
  1204. }
  1205. goto found_extent;
  1206. }
  1207. if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
  1208. EXT4_ERROR_INODE(inode,
  1209. "logical %d < ee_block %d + ee_len %d!",
  1210. *logical, le32_to_cpu(ex->ee_block), ee_len);
  1211. return -EIO;
  1212. }
  1213. if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
  1214. /* next allocated block in this leaf */
  1215. ex++;
  1216. goto found_extent;
  1217. }
  1218. /* go up and search for index to the right */
  1219. while (--depth >= 0) {
  1220. ix = path[depth].p_idx;
  1221. if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
  1222. goto got_index;
  1223. }
  1224. /* we've gone up to the root and found no index to the right */
  1225. return 0;
  1226. got_index:
  1227. /* we've found index to the right, let's
  1228. * follow it and find the closest allocated
  1229. * block to the right */
  1230. ix++;
  1231. block = ext4_idx_pblock(ix);
  1232. while (++depth < path->p_depth) {
  1233. bh = sb_bread(inode->i_sb, block);
  1234. if (bh == NULL)
  1235. return -EIO;
  1236. eh = ext_block_hdr(bh);
  1237. /* subtract from p_depth to get proper eh_depth */
  1238. if (ext4_ext_check_block(inode, eh,
  1239. path->p_depth - depth, bh)) {
  1240. put_bh(bh);
  1241. return -EIO;
  1242. }
  1243. ix = EXT_FIRST_INDEX(eh);
  1244. block = ext4_idx_pblock(ix);
  1245. put_bh(bh);
  1246. }
  1247. bh = sb_bread(inode->i_sb, block);
  1248. if (bh == NULL)
  1249. return -EIO;
  1250. eh = ext_block_hdr(bh);
  1251. if (ext4_ext_check_block(inode, eh, path->p_depth - depth, bh)) {
  1252. put_bh(bh);
  1253. return -EIO;
  1254. }
  1255. ex = EXT_FIRST_EXTENT(eh);
  1256. found_extent:
  1257. *logical = le32_to_cpu(ex->ee_block);
  1258. *phys = ext4_ext_pblock(ex);
  1259. *ret_ex = ex;
  1260. if (bh)
  1261. put_bh(bh);
  1262. return 0;
  1263. }
  1264. /*
  1265. * ext4_ext_next_allocated_block:
  1266. * returns allocated block in subsequent extent or EXT_MAX_BLOCKS.
  1267. * NOTE: it considers block number from index entry as
  1268. * allocated block. Thus, index entries have to be consistent
  1269. * with leaves.
  1270. */
  1271. static ext4_lblk_t
  1272. ext4_ext_next_allocated_block(struct ext4_ext_path *path)
  1273. {
  1274. int depth;
  1275. BUG_ON(path == NULL);
  1276. depth = path->p_depth;
  1277. if (depth == 0 && path->p_ext == NULL)
  1278. return EXT_MAX_BLOCKS;
  1279. while (depth >= 0) {
  1280. if (depth == path->p_depth) {
  1281. /* leaf */
  1282. if (path[depth].p_ext &&
  1283. path[depth].p_ext !=
  1284. EXT_LAST_EXTENT(path[depth].p_hdr))
  1285. return le32_to_cpu(path[depth].p_ext[1].ee_block);
  1286. } else {
  1287. /* index */
  1288. if (path[depth].p_idx !=
  1289. EXT_LAST_INDEX(path[depth].p_hdr))
  1290. return le32_to_cpu(path[depth].p_idx[1].ei_block);
  1291. }
  1292. depth--;
  1293. }
  1294. return EXT_MAX_BLOCKS;
  1295. }
  1296. /*
  1297. * ext4_ext_next_leaf_block:
  1298. * returns first allocated block from next leaf or EXT_MAX_BLOCKS
  1299. */
  1300. static ext4_lblk_t ext4_ext_next_leaf_block(struct ext4_ext_path *path)
  1301. {
  1302. int depth;
  1303. BUG_ON(path == NULL);
  1304. depth = path->p_depth;
  1305. /* zero-tree has no leaf blocks at all */
  1306. if (depth == 0)
  1307. return EXT_MAX_BLOCKS;
  1308. /* go to index block */
  1309. depth--;
  1310. while (depth >= 0) {
  1311. if (path[depth].p_idx !=
  1312. EXT_LAST_INDEX(path[depth].p_hdr))
  1313. return (ext4_lblk_t)
  1314. le32_to_cpu(path[depth].p_idx[1].ei_block);
  1315. depth--;
  1316. }
  1317. return EXT_MAX_BLOCKS;
  1318. }
  1319. /*
  1320. * ext4_ext_correct_indexes:
  1321. * if leaf gets modified and modified extent is first in the leaf,
  1322. * then we have to correct all indexes above.
  1323. * TODO: do we need to correct tree in all cases?
  1324. */
  1325. static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
  1326. struct ext4_ext_path *path)
  1327. {
  1328. struct ext4_extent_header *eh;
  1329. int depth = ext_depth(inode);
  1330. struct ext4_extent *ex;
  1331. __le32 border;
  1332. int k, err = 0;
  1333. eh = path[depth].p_hdr;
  1334. ex = path[depth].p_ext;
  1335. if (unlikely(ex == NULL || eh == NULL)) {
  1336. EXT4_ERROR_INODE(inode,
  1337. "ex %p == NULL or eh %p == NULL", ex, eh);
  1338. return -EIO;
  1339. }
  1340. if (depth == 0) {
  1341. /* there is no tree at all */
  1342. return 0;
  1343. }
  1344. if (ex != EXT_FIRST_EXTENT(eh)) {
  1345. /* we correct tree if first leaf got modified only */
  1346. return 0;
  1347. }
  1348. /*
  1349. * TODO: we need correction if border is smaller than current one
  1350. */
  1351. k = depth - 1;
  1352. border = path[depth].p_ext->ee_block;
  1353. err = ext4_ext_get_access(handle, inode, path + k);
  1354. if (err)
  1355. return err;
  1356. path[k].p_idx->ei_block = border;
  1357. err = ext4_ext_dirty(handle, inode, path + k);
  1358. if (err)
  1359. return err;
  1360. while (k--) {
  1361. /* change all left-side indexes */
  1362. if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
  1363. break;
  1364. err = ext4_ext_get_access(handle, inode, path + k);
  1365. if (err)
  1366. break;
  1367. path[k].p_idx->ei_block = border;
  1368. err = ext4_ext_dirty(handle, inode, path + k);
  1369. if (err)
  1370. break;
  1371. }
  1372. return err;
  1373. }
  1374. int
  1375. ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
  1376. struct ext4_extent *ex2)
  1377. {
  1378. unsigned short ext1_ee_len, ext2_ee_len, max_len;
  1379. /*
  1380. * Make sure that either both extents are uninitialized, or
  1381. * both are _not_.
  1382. */
  1383. if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2))
  1384. return 0;
  1385. if (ext4_ext_is_uninitialized(ex1))
  1386. max_len = EXT_UNINIT_MAX_LEN;
  1387. else
  1388. max_len = EXT_INIT_MAX_LEN;
  1389. ext1_ee_len = ext4_ext_get_actual_len(ex1);
  1390. ext2_ee_len = ext4_ext_get_actual_len(ex2);
  1391. if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
  1392. le32_to_cpu(ex2->ee_block))
  1393. return 0;
  1394. /*
  1395. * To allow future support for preallocated extents to be added
  1396. * as an RO_COMPAT feature, refuse to merge to extents if
  1397. * this can result in the top bit of ee_len being set.
  1398. */
  1399. if (ext1_ee_len + ext2_ee_len > max_len)
  1400. return 0;
  1401. #ifdef AGGRESSIVE_TEST
  1402. if (ext1_ee_len >= 4)
  1403. return 0;
  1404. #endif
  1405. if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2))
  1406. return 1;
  1407. return 0;
  1408. }
  1409. /*
  1410. * This function tries to merge the "ex" extent to the next extent in the tree.
  1411. * It always tries to merge towards right. If you want to merge towards
  1412. * left, pass "ex - 1" as argument instead of "ex".
  1413. * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
  1414. * 1 if they got merged.
  1415. */
  1416. static int ext4_ext_try_to_merge_right(struct inode *inode,
  1417. struct ext4_ext_path *path,
  1418. struct ext4_extent *ex)
  1419. {
  1420. struct ext4_extent_header *eh;
  1421. unsigned int depth, len;
  1422. int merge_done = 0;
  1423. int uninitialized = 0;
  1424. depth = ext_depth(inode);
  1425. BUG_ON(path[depth].p_hdr == NULL);
  1426. eh = path[depth].p_hdr;
  1427. while (ex < EXT_LAST_EXTENT(eh)) {
  1428. if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
  1429. break;
  1430. /* merge with next extent! */
  1431. if (ext4_ext_is_uninitialized(ex))
  1432. uninitialized = 1;
  1433. ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
  1434. + ext4_ext_get_actual_len(ex + 1));
  1435. if (uninitialized)
  1436. ext4_ext_mark_uninitialized(ex);
  1437. if (ex + 1 < EXT_LAST_EXTENT(eh)) {
  1438. len = (EXT_LAST_EXTENT(eh) - ex - 1)
  1439. * sizeof(struct ext4_extent);
  1440. memmove(ex + 1, ex + 2, len);
  1441. }
  1442. le16_add_cpu(&eh->eh_entries, -1);
  1443. merge_done = 1;
  1444. WARN_ON(eh->eh_entries == 0);
  1445. if (!eh->eh_entries)
  1446. EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!");
  1447. }
  1448. return merge_done;
  1449. }
  1450. /*
  1451. * This function tries to merge the @ex extent to neighbours in the tree.
  1452. * return 1 if merge left else 0.
  1453. */
  1454. static int ext4_ext_try_to_merge(struct inode *inode,
  1455. struct ext4_ext_path *path,
  1456. struct ext4_extent *ex) {
  1457. struct ext4_extent_header *eh;
  1458. unsigned int depth;
  1459. int merge_done = 0;
  1460. int ret = 0;
  1461. depth = ext_depth(inode);
  1462. BUG_ON(path[depth].p_hdr == NULL);
  1463. eh = path[depth].p_hdr;
  1464. if (ex > EXT_FIRST_EXTENT(eh))
  1465. merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1);
  1466. if (!merge_done)
  1467. ret = ext4_ext_try_to_merge_right(inode, path, ex);
  1468. return ret;
  1469. }
  1470. /*
  1471. * check if a portion of the "newext" extent overlaps with an
  1472. * existing extent.
  1473. *
  1474. * If there is an overlap discovered, it updates the length of the newext
  1475. * such that there will be no overlap, and then returns 1.
  1476. * If there is no overlap found, it returns 0.
  1477. */
  1478. static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi,
  1479. struct inode *inode,
  1480. struct ext4_extent *newext,
  1481. struct ext4_ext_path *path)
  1482. {
  1483. ext4_lblk_t b1, b2;
  1484. unsigned int depth, len1;
  1485. unsigned int ret = 0;
  1486. b1 = le32_to_cpu(newext->ee_block);
  1487. len1 = ext4_ext_get_actual_len(newext);
  1488. depth = ext_depth(inode);
  1489. if (!path[depth].p_ext)
  1490. goto out;
  1491. b2 = le32_to_cpu(path[depth].p_ext->ee_block);
  1492. b2 &= ~(sbi->s_cluster_ratio - 1);
  1493. /*
  1494. * get the next allocated block if the extent in the path
  1495. * is before the requested block(s)
  1496. */
  1497. if (b2 < b1) {
  1498. b2 = ext4_ext_next_allocated_block(path);
  1499. if (b2 == EXT_MAX_BLOCKS)
  1500. goto out;
  1501. b2 &= ~(sbi->s_cluster_ratio - 1);
  1502. }
  1503. /* check for wrap through zero on extent logical start block*/
  1504. if (b1 + len1 < b1) {
  1505. len1 = EXT_MAX_BLOCKS - b1;
  1506. newext->ee_len = cpu_to_le16(len1);
  1507. ret = 1;
  1508. }
  1509. /* check for overlap */
  1510. if (b1 + len1 > b2) {
  1511. newext->ee_len = cpu_to_le16(b2 - b1);
  1512. ret = 1;
  1513. }
  1514. out:
  1515. return ret;
  1516. }
  1517. /*
  1518. * ext4_ext_insert_extent:
  1519. * tries to merge requsted extent into the existing extent or
  1520. * inserts requested extent as new one into the tree,
  1521. * creating new leaf in the no-space case.
  1522. */
  1523. int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
  1524. struct ext4_ext_path *path,
  1525. struct ext4_extent *newext, int flag)
  1526. {
  1527. struct ext4_extent_header *eh;
  1528. struct ext4_extent *ex, *fex;
  1529. struct ext4_extent *nearex; /* nearest extent */
  1530. struct ext4_ext_path *npath = NULL;
  1531. int depth, len, err;
  1532. ext4_lblk_t next;
  1533. unsigned uninitialized = 0;
  1534. int flags = 0;
  1535. if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
  1536. EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
  1537. return -EIO;
  1538. }
  1539. depth = ext_depth(inode);
  1540. ex = path[depth].p_ext;
  1541. if (unlikely(path[depth].p_hdr == NULL)) {
  1542. EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
  1543. return -EIO;
  1544. }
  1545. /* try to insert block into found extent and return */
  1546. if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO)
  1547. && ext4_can_extents_be_merged(inode, ex, newext)) {
  1548. ext_debug("append [%d]%d block to %u:[%d]%d (from %llu)\n",
  1549. ext4_ext_is_uninitialized(newext),
  1550. ext4_ext_get_actual_len(newext),
  1551. le32_to_cpu(ex->ee_block),
  1552. ext4_ext_is_uninitialized(ex),
  1553. ext4_ext_get_actual_len(ex),
  1554. ext4_ext_pblock(ex));
  1555. err = ext4_ext_get_access(handle, inode, path + depth);
  1556. if (err)
  1557. return err;
  1558. /*
  1559. * ext4_can_extents_be_merged should have checked that either
  1560. * both extents are uninitialized, or both aren't. Thus we
  1561. * need to check only one of them here.
  1562. */
  1563. if (ext4_ext_is_uninitialized(ex))
  1564. uninitialized = 1;
  1565. ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
  1566. + ext4_ext_get_actual_len(newext));
  1567. if (uninitialized)
  1568. ext4_ext_mark_uninitialized(ex);
  1569. eh = path[depth].p_hdr;
  1570. nearex = ex;
  1571. goto merge;
  1572. }
  1573. depth = ext_depth(inode);
  1574. eh = path[depth].p_hdr;
  1575. if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
  1576. goto has_space;
  1577. /* probably next leaf has space for us? */
  1578. fex = EXT_LAST_EXTENT(eh);
  1579. next = EXT_MAX_BLOCKS;
  1580. if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block))
  1581. next = ext4_ext_next_leaf_block(path);
  1582. if (next != EXT_MAX_BLOCKS) {
  1583. ext_debug("next leaf block - %u\n", next);
  1584. BUG_ON(npath != NULL);
  1585. npath = ext4_ext_find_extent(inode, next, NULL);
  1586. if (IS_ERR(npath))
  1587. return PTR_ERR(npath);
  1588. BUG_ON(npath->p_depth != path->p_depth);
  1589. eh = npath[depth].p_hdr;
  1590. if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
  1591. ext_debug("next leaf isn't full(%d)\n",
  1592. le16_to_cpu(eh->eh_entries));
  1593. path = npath;
  1594. goto has_space;
  1595. }
  1596. ext_debug("next leaf has no free space(%d,%d)\n",
  1597. le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
  1598. }
  1599. /*
  1600. * There is no free space in the found leaf.
  1601. * We're gonna add a new leaf in the tree.
  1602. */
  1603. if (flag & EXT4_GET_BLOCKS_PUNCH_OUT_EXT)
  1604. flags = EXT4_MB_USE_ROOT_BLOCKS;
  1605. err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext);
  1606. if (err)
  1607. goto cleanup;
  1608. depth = ext_depth(inode);
  1609. eh = path[depth].p_hdr;
  1610. has_space:
  1611. nearex = path[depth].p_ext;
  1612. err = ext4_ext_get_access(handle, inode, path + depth);
  1613. if (err)
  1614. goto cleanup;
  1615. if (!nearex) {
  1616. /* there is no extent in this leaf, create first one */
  1617. ext_debug("first extent in the leaf: %u:%llu:[%d]%d\n",
  1618. le32_to_cpu(newext->ee_block),
  1619. ext4_ext_pblock(newext),
  1620. ext4_ext_is_uninitialized(newext),
  1621. ext4_ext_get_actual_len(newext));
  1622. nearex = EXT_FIRST_EXTENT(eh);
  1623. } else {
  1624. if (le32_to_cpu(newext->ee_block)
  1625. > le32_to_cpu(nearex->ee_block)) {
  1626. /* Insert after */
  1627. ext_debug("insert %u:%llu:[%d]%d before: "
  1628. "nearest %p\n",
  1629. le32_to_cpu(newext->ee_block),
  1630. ext4_ext_pblock(newext),
  1631. ext4_ext_is_uninitialized(newext),
  1632. ext4_ext_get_actual_len(newext),
  1633. nearex);
  1634. nearex++;
  1635. } else {
  1636. /* Insert before */
  1637. BUG_ON(newext->ee_block == nearex->ee_block);
  1638. ext_debug("insert %u:%llu:[%d]%d after: "
  1639. "nearest %p\n",
  1640. le32_to_cpu(newext->ee_block),
  1641. ext4_ext_pblock(newext),
  1642. ext4_ext_is_uninitialized(newext),
  1643. ext4_ext_get_actual_len(newext),
  1644. nearex);
  1645. }
  1646. len = EXT_LAST_EXTENT(eh) - nearex + 1;
  1647. if (len > 0) {
  1648. ext_debug("insert %u:%llu:[%d]%d: "
  1649. "move %d extents from 0x%p to 0x%p\n",
  1650. le32_to_cpu(newext->ee_block),
  1651. ext4_ext_pblock(newext),
  1652. ext4_ext_is_uninitialized(newext),
  1653. ext4_ext_get_actual_len(newext),
  1654. len, nearex, nearex + 1);
  1655. memmove(nearex + 1, nearex,
  1656. len * sizeof(struct ext4_extent));
  1657. }
  1658. }
  1659. le16_add_cpu(&eh->eh_entries, 1);
  1660. path[depth].p_ext = nearex;
  1661. nearex->ee_block = newext->ee_block;
  1662. ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext));
  1663. nearex->ee_len = newext->ee_len;
  1664. merge:
  1665. /* try to merge extents */
  1666. if (!(flag & EXT4_GET_BLOCKS_PRE_IO))
  1667. ext4_ext_try_to_merge(inode, path, nearex);
  1668. /* time to correct all indexes above */
  1669. err = ext4_ext_correct_indexes(handle, inode, path);
  1670. if (err)
  1671. goto cleanup;
  1672. err = ext4_ext_dirty(handle, inode, path + depth);
  1673. cleanup:
  1674. if (npath) {
  1675. ext4_ext_drop_refs(npath);
  1676. kfree(npath);
  1677. }
  1678. ext4_ext_invalidate_cache(inode);
  1679. return err;
  1680. }
  1681. static int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block,
  1682. ext4_lblk_t num, ext_prepare_callback func,
  1683. void *cbdata)
  1684. {
  1685. struct ext4_ext_path *path = NULL;
  1686. struct ext4_ext_cache cbex;
  1687. struct ext4_extent *ex;
  1688. ext4_lblk_t next, start = 0, end = 0;
  1689. ext4_lblk_t last = block + num;
  1690. int depth, exists, err = 0;
  1691. BUG_ON(func == NULL);
  1692. BUG_ON(inode == NULL);
  1693. while (block < last && block != EXT_MAX_BLOCKS) {
  1694. num = last - block;
  1695. /* find extent for this block */
  1696. down_read(&EXT4_I(inode)->i_data_sem);
  1697. path = ext4_ext_find_extent(inode, block, path);
  1698. up_read(&EXT4_I(inode)->i_data_sem);
  1699. if (IS_ERR(path)) {
  1700. err = PTR_ERR(path);
  1701. path = NULL;
  1702. break;
  1703. }
  1704. depth = ext_depth(inode);
  1705. if (unlikely(path[depth].p_hdr == NULL)) {
  1706. EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
  1707. err = -EIO;
  1708. break;
  1709. }
  1710. ex = path[depth].p_ext;
  1711. next = ext4_ext_next_allocated_block(path);
  1712. exists = 0;
  1713. if (!ex) {
  1714. /* there is no extent yet, so try to allocate
  1715. * all requested space */
  1716. start = block;
  1717. end = block + num;
  1718. } else if (le32_to_cpu(ex->ee_block) > block) {
  1719. /* need to allocate space before found extent */
  1720. start = block;
  1721. end = le32_to_cpu(ex->ee_block);
  1722. if (block + num < end)
  1723. end = block + num;
  1724. } else if (block >= le32_to_cpu(ex->ee_block)
  1725. + ext4_ext_get_actual_len(ex)) {
  1726. /* need to allocate space after found extent */
  1727. start = block;
  1728. end = block + num;
  1729. if (end >= next)
  1730. end = next;
  1731. } else if (block >= le32_to_cpu(ex->ee_block)) {
  1732. /*
  1733. * some part of requested space is covered
  1734. * by found extent
  1735. */
  1736. start = block;
  1737. end = le32_to_cpu(ex->ee_block)
  1738. + ext4_ext_get_actual_len(ex);
  1739. if (block + num < end)
  1740. end = block + num;
  1741. exists = 1;
  1742. } else {
  1743. BUG();
  1744. }
  1745. BUG_ON(end <= start);
  1746. if (!exists) {
  1747. cbex.ec_block = start;
  1748. cbex.ec_len = end - start;
  1749. cbex.ec_start = 0;
  1750. } else {
  1751. cbex.ec_block = le32_to_cpu(ex->ee_block);
  1752. cbex.ec_len = ext4_ext_get_actual_len(ex);
  1753. cbex.ec_start = ext4_ext_pblock(ex);
  1754. }
  1755. if (unlikely(cbex.ec_len == 0)) {
  1756. EXT4_ERROR_INODE(inode, "cbex.ec_len == 0");
  1757. err = -EIO;
  1758. break;
  1759. }
  1760. err = func(inode, next, &cbex, ex, cbdata);
  1761. ext4_ext_drop_refs(path);
  1762. if (err < 0)
  1763. break;
  1764. if (err == EXT_REPEAT)
  1765. continue;
  1766. else if (err == EXT_BREAK) {
  1767. err = 0;
  1768. break;
  1769. }
  1770. if (ext_depth(inode) != depth) {
  1771. /* depth was changed. we have to realloc path */
  1772. kfree(path);
  1773. path = NULL;
  1774. }
  1775. block = cbex.ec_block + cbex.ec_len;
  1776. }
  1777. if (path) {
  1778. ext4_ext_drop_refs(path);
  1779. kfree(path);
  1780. }
  1781. return err;
  1782. }
  1783. static void
  1784. ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block,
  1785. __u32 len, ext4_fsblk_t start)
  1786. {
  1787. struct ext4_ext_cache *cex;
  1788. BUG_ON(len == 0);
  1789. spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
  1790. trace_ext4_ext_put_in_cache(inode, block, len, start);
  1791. cex = &EXT4_I(inode)->i_cached_extent;
  1792. cex->ec_block = block;
  1793. cex->ec_len = len;
  1794. cex->ec_start = start;
  1795. spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
  1796. }
  1797. /*
  1798. * ext4_ext_put_gap_in_cache:
  1799. * calculate boundaries of the gap that the requested block fits into
  1800. * and cache this gap
  1801. */
  1802. static void
  1803. ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
  1804. ext4_lblk_t block)
  1805. {
  1806. int depth = ext_depth(inode);
  1807. unsigned long len;
  1808. ext4_lblk_t lblock;
  1809. struct ext4_extent *ex;
  1810. ex = path[depth].p_ext;
  1811. if (ex == NULL) {
  1812. /* there is no extent yet, so gap is [0;-] */
  1813. lblock = 0;
  1814. len = EXT_MAX_BLOCKS;
  1815. ext_debug("cache gap(whole file):");
  1816. } else if (block < le32_to_cpu(ex->ee_block)) {
  1817. lblock = block;
  1818. len = le32_to_cpu(ex->ee_block) - block;
  1819. ext_debug("cache gap(before): %u [%u:%u]",
  1820. block,
  1821. le32_to_cpu(ex->ee_block),
  1822. ext4_ext_get_actual_len(ex));
  1823. } else if (block >= le32_to_cpu(ex->ee_block)
  1824. + ext4_ext_get_actual_len(ex)) {
  1825. ext4_lblk_t next;
  1826. lblock = le32_to_cpu(ex->ee_block)
  1827. + ext4_ext_get_actual_len(ex);
  1828. next = ext4_ext_next_allocated_block(path);
  1829. ext_debug("cache gap(after): [%u:%u] %u",
  1830. le32_to_cpu(ex->ee_block),
  1831. ext4_ext_get_actual_len(ex),
  1832. block);
  1833. BUG_ON(next == lblock);
  1834. len = next - lblock;
  1835. } else {
  1836. lblock = len = 0;
  1837. BUG();
  1838. }
  1839. ext_debug(" -> %u:%lu\n", lblock, len);
  1840. ext4_ext_put_in_cache(inode, lblock, len, 0);
  1841. }
  1842. /*
  1843. * ext4_ext_check_cache()
  1844. * Checks to see if the given block is in the cache.
  1845. * If it is, the cached extent is stored in the given
  1846. * cache extent pointer. If the cached extent is a hole,
  1847. * this routine should be used instead of
  1848. * ext4_ext_in_cache if the calling function needs to
  1849. * know the size of the hole.
  1850. *
  1851. * @inode: The files inode
  1852. * @block: The block to look for in the cache
  1853. * @ex: Pointer where the cached extent will be stored
  1854. * if it contains block
  1855. *
  1856. * Return 0 if cache is invalid; 1 if the cache is valid
  1857. */
  1858. static int ext4_ext_check_cache(struct inode *inode, ext4_lblk_t block,
  1859. struct ext4_ext_cache *ex){
  1860. struct ext4_ext_cache *cex;
  1861. struct ext4_sb_info *sbi;
  1862. int ret = 0;
  1863. /*
  1864. * We borrow i_block_reservation_lock to protect i_cached_extent
  1865. */
  1866. spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
  1867. cex = &EXT4_I(inode)->i_cached_extent;
  1868. sbi = EXT4_SB(inode->i_sb);
  1869. /* has cache valid data? */
  1870. if (cex->ec_len == 0)
  1871. goto errout;
  1872. if (in_range(block, cex->ec_block, cex->ec_len)) {
  1873. memcpy(ex, cex, sizeof(struct ext4_ext_cache));
  1874. ext_debug("%u cached by %u:%u:%llu\n",
  1875. block,
  1876. cex->ec_block, cex->ec_len, cex->ec_start);
  1877. ret = 1;
  1878. }
  1879. errout:
  1880. trace_ext4_ext_in_cache(inode, block, ret);
  1881. spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
  1882. return ret;
  1883. }
  1884. /*
  1885. * ext4_ext_in_cache()
  1886. * Checks to see if the given block is in the cache.
  1887. * If it is, the cached extent is stored in the given
  1888. * extent pointer.
  1889. *
  1890. * @inode: The files inode
  1891. * @block: The block to look for in the cache
  1892. * @ex: Pointer where the cached extent will be stored
  1893. * if it contains block
  1894. *
  1895. * Return 0 if cache is invalid; 1 if the cache is valid
  1896. */
  1897. static int
  1898. ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block,
  1899. struct ext4_extent *ex)
  1900. {
  1901. struct ext4_ext_cache cex;
  1902. int ret = 0;
  1903. if (ext4_ext_check_cache(inode, block, &cex)) {
  1904. ex->ee_block = cpu_to_le32(cex.ec_block);
  1905. ext4_ext_store_pblock(ex, cex.ec_start);
  1906. ex->ee_len = cpu_to_le16(cex.ec_len);
  1907. ret = 1;
  1908. }
  1909. return ret;
  1910. }
  1911. /*
  1912. * ext4_ext_rm_idx:
  1913. * removes index from the index block.
  1914. */
  1915. static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
  1916. struct ext4_ext_path *path)
  1917. {
  1918. int err;
  1919. ext4_fsblk_t leaf;
  1920. /* free index block */
  1921. path--;
  1922. leaf = ext4_idx_pblock(path->p_idx);
  1923. if (unlikely(path->p_hdr->eh_entries == 0)) {
  1924. EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0");
  1925. return -EIO;
  1926. }
  1927. err = ext4_ext_get_access(handle, inode, path);
  1928. if (err)
  1929. return err;
  1930. if (path->p_idx != EXT_LAST_INDEX(path->p_hdr)) {
  1931. int len = EXT_LAST_INDEX(path->p_hdr) - path->p_idx;
  1932. len *= sizeof(struct ext4_extent_idx);
  1933. memmove(path->p_idx, path->p_idx + 1, len);
  1934. }
  1935. le16_add_cpu(&path->p_hdr->eh_entries, -1);
  1936. err = ext4_ext_dirty(handle, inode, path);
  1937. if (err)
  1938. return err;
  1939. ext_debug("index is empty, remove it, free block %llu\n", leaf);
  1940. trace_ext4_ext_rm_idx(inode, leaf);
  1941. ext4_free_blocks(handle, inode, NULL, leaf, 1,
  1942. EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
  1943. return err;
  1944. }
  1945. /*
  1946. * ext4_ext_calc_credits_for_single_extent:
  1947. * This routine returns max. credits that needed to insert an extent
  1948. * to the extent tree.
  1949. * When pass the actual path, the caller should calculate credits
  1950. * under i_data_sem.
  1951. */
  1952. int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
  1953. struct ext4_ext_path *path)
  1954. {
  1955. if (path) {
  1956. int depth = ext_depth(inode);
  1957. int ret = 0;
  1958. /* probably there is space in leaf? */
  1959. if (le16_to_cpu(path[depth].p_hdr->eh_entries)
  1960. < le16_to_cpu(path[depth].p_hdr->eh_max)) {
  1961. /*
  1962. * There are some space in the leaf tree, no
  1963. * need to account for leaf block credit
  1964. *
  1965. * bitmaps and block group descriptor blocks
  1966. * and other metadata blocks still need to be
  1967. * accounted.
  1968. */
  1969. /* 1 bitmap, 1 block group descriptor */
  1970. ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
  1971. return ret;
  1972. }
  1973. }
  1974. return ext4_chunk_trans_blocks(inode, nrblocks);
  1975. }
  1976. /*
  1977. * How many index/leaf blocks need to change/allocate to modify nrblocks?
  1978. *
  1979. * if nrblocks are fit in a single extent (chunk flag is 1), then
  1980. * in the worse case, each tree level index/leaf need to be changed
  1981. * if the tree split due to insert a new extent, then the old tree
  1982. * index/leaf need to be updated too
  1983. *
  1984. * If the nrblocks are discontiguous, they could cause
  1985. * the whole tree split more than once, but this is really rare.
  1986. */
  1987. int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
  1988. {
  1989. int index;
  1990. int depth = ext_depth(inode);
  1991. if (chunk)
  1992. index = depth * 2;
  1993. else
  1994. index = depth * 3;
  1995. return index;
  1996. }
  1997. static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
  1998. struct ext4_extent *ex,
  1999. ext4_fsblk_t *partial_cluster,
  2000. ext4_lblk_t from, ext4_lblk_t to)
  2001. {
  2002. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  2003. unsigned short ee_len = ext4_ext_get_actual_len(ex);
  2004. ext4_fsblk_t pblk;
  2005. int flags = EXT4_FREE_BLOCKS_FORGET;
  2006. if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
  2007. flags |= EXT4_FREE_BLOCKS_METADATA;
  2008. /*
  2009. * For bigalloc file systems, we never free a partial cluster
  2010. * at the beginning of the extent. Instead, we make a note
  2011. * that we tried freeing the cluster, and check to see if we
  2012. * need to free it on a subsequent call to ext4_remove_blocks,
  2013. * or at the end of the ext4_truncate() operation.
  2014. */
  2015. flags |= EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER;
  2016. trace_ext4_remove_blocks(inode, ex, from, to, *partial_cluster);
  2017. /*
  2018. * If we have a partial cluster, and it's different from the
  2019. * cluster of the last block, we need to explicitly free the
  2020. * partial cluster here.
  2021. */
  2022. pblk = ext4_ext_pblock(ex) + ee_len - 1;
  2023. if (*partial_cluster && (EXT4_B2C(sbi, pblk) != *partial_cluster)) {
  2024. ext4_free_blocks(handle, inode, NULL,
  2025. EXT4_C2B(sbi, *partial_cluster),
  2026. sbi->s_cluster_ratio, flags);
  2027. *partial_cluster = 0;
  2028. }
  2029. #ifdef EXTENTS_STATS
  2030. {
  2031. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  2032. spin_lock(&sbi->s_ext_stats_lock);
  2033. sbi->s_ext_blocks += ee_len;
  2034. sbi->s_ext_extents++;
  2035. if (ee_len < sbi->s_ext_min)
  2036. sbi->s_ext_min = ee_len;
  2037. if (ee_len > sbi->s_ext_max)
  2038. sbi->s_ext_max = ee_len;
  2039. if (ext_depth(inode) > sbi->s_depth_max)
  2040. sbi->s_depth_max = ext_depth(inode);
  2041. spin_unlock(&sbi->s_ext_stats_lock);
  2042. }
  2043. #endif
  2044. if (from >= le32_to_cpu(ex->ee_block)
  2045. && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
  2046. /* tail removal */
  2047. ext4_lblk_t num;
  2048. num = le32_to_cpu(ex->ee_block) + ee_len - from;
  2049. pblk = ext4_ext_pblock(ex) + ee_len - num;
  2050. ext_debug("free last %u blocks starting %llu\n", num, pblk);
  2051. ext4_free_blocks(handle, inode, NULL, pblk, num, flags);
  2052. /*
  2053. * If the block range to be freed didn't start at the
  2054. * beginning of a cluster, and we removed the entire
  2055. * extent, save the partial cluster here, since we
  2056. * might need to delete if we determine that the
  2057. * truncate operation has removed all of the blocks in
  2058. * the cluster.
  2059. */
  2060. if (pblk & (sbi->s_cluster_ratio - 1) &&
  2061. (ee_len == num))
  2062. *partial_cluster = EXT4_B2C(sbi, pblk);
  2063. else
  2064. *partial_cluster = 0;
  2065. } else if (from == le32_to_cpu(ex->ee_block)
  2066. && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) {
  2067. /* head removal */
  2068. ext4_lblk_t num;
  2069. ext4_fsblk_t start;
  2070. num = to - from;
  2071. start = ext4_ext_pblock(ex);
  2072. ext_debug("free first %u blocks starting %llu\n", num, start);
  2073. ext4_free_blocks(handle, inode, NULL, start, num, flags);
  2074. } else {
  2075. printk(KERN_INFO "strange request: removal(2) "
  2076. "%u-%u from %u:%u\n",
  2077. from, to, le32_to_cpu(ex->ee_block), ee_len);
  2078. }
  2079. return 0;
  2080. }
  2081. /*
  2082. * ext4_ext_rm_leaf() Removes the extents associated with the
  2083. * blocks appearing between "start" and "end", and splits the extents
  2084. * if "start" and "end" appear in the same extent
  2085. *
  2086. * @handle: The journal handle
  2087. * @inode: The files inode
  2088. * @path: The path to the leaf
  2089. * @start: The first block to remove
  2090. * @end: The last block to remove
  2091. */
  2092. static int
  2093. ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
  2094. struct ext4_ext_path *path, ext4_fsblk_t *partial_cluster,
  2095. ext4_lblk_t start, ext4_lblk_t end)
  2096. {
  2097. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  2098. int err = 0, correct_index = 0;
  2099. int depth = ext_depth(inode), credits;
  2100. struct ext4_extent_header *eh;
  2101. ext4_lblk_t a, b;
  2102. unsigned num;
  2103. ext4_lblk_t ex_ee_block;
  2104. unsigned short ex_ee_len;
  2105. unsigned uninitialized = 0;
  2106. struct ext4_extent *ex;
  2107. /* the header must be checked already in ext4_ext_remove_space() */
  2108. ext_debug("truncate since %u in leaf to %u\n", start, end);
  2109. if (!path[depth].p_hdr)
  2110. path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
  2111. eh = path[depth].p_hdr;
  2112. if (unlikely(path[depth].p_hdr == NULL)) {
  2113. EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
  2114. return -EIO;
  2115. }
  2116. /* find where to start removing */
  2117. ex = EXT_LAST_EXTENT(eh);
  2118. ex_ee_block = le32_to_cpu(ex->ee_block);
  2119. ex_ee_len = ext4_ext_get_actual_len(ex);
  2120. trace_ext4_ext_rm_leaf(inode, start, ex, *partial_cluster);
  2121. while (ex >= EXT_FIRST_EXTENT(eh) &&
  2122. ex_ee_block + ex_ee_len > start) {
  2123. if (ext4_ext_is_uninitialized(ex))
  2124. uninitialized = 1;
  2125. else
  2126. uninitialized = 0;
  2127. ext_debug("remove ext %u:[%d]%d\n", ex_ee_block,
  2128. uninitialized, ex_ee_len);
  2129. path[depth].p_ext = ex;
  2130. a = ex_ee_block > start ? ex_ee_block : start;
  2131. b = ex_ee_block+ex_ee_len - 1 < end ?
  2132. ex_ee_block+ex_ee_len - 1 : end;
  2133. ext_debug(" border %u:%u\n", a, b);
  2134. /* If this extent is beyond the end of the hole, skip it */
  2135. if (end < ex_ee_block) {
  2136. ex--;
  2137. ex_ee_block = le32_to_cpu(ex->ee_block);
  2138. ex_ee_len = ext4_ext_get_actual_len(ex);
  2139. continue;
  2140. } else if (b != ex_ee_block + ex_ee_len - 1) {
  2141. EXT4_ERROR_INODE(inode,
  2142. "can not handle truncate %u:%u "
  2143. "on extent %u:%u",
  2144. start, end, ex_ee_block,
  2145. ex_ee_block + ex_ee_len - 1);
  2146. err = -EIO;
  2147. goto out;
  2148. } else if (a != ex_ee_block) {
  2149. /* remove tail of the extent */
  2150. num = a - ex_ee_block;
  2151. } else {
  2152. /* remove whole extent: excellent! */
  2153. num = 0;
  2154. }
  2155. /*
  2156. * 3 for leaf, sb, and inode plus 2 (bmap and group
  2157. * descriptor) for each block group; assume two block
  2158. * groups plus ex_ee_len/blocks_per_block_group for
  2159. * the worst case
  2160. */
  2161. credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
  2162. if (ex == EXT_FIRST_EXTENT(eh)) {
  2163. correct_index = 1;
  2164. credits += (ext_depth(inode)) + 1;
  2165. }
  2166. credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
  2167. err = ext4_ext_truncate_extend_restart(handle, inode, credits);
  2168. if (err)
  2169. goto out;
  2170. err = ext4_ext_get_access(handle, inode, path + depth);
  2171. if (err)
  2172. goto out;
  2173. err = ext4_remove_blocks(handle, inode, ex, partial_cluster,
  2174. a, b);
  2175. if (err)
  2176. goto out;
  2177. if (num == 0)
  2178. /* this extent is removed; mark slot entirely unused */
  2179. ext4_ext_store_pblock(ex, 0);
  2180. ex->ee_len = cpu_to_le16(num);
  2181. /*
  2182. * Do not mark uninitialized if all the blocks in the
  2183. * extent have been removed.
  2184. */
  2185. if (uninitialized && num)
  2186. ext4_ext_mark_uninitialized(ex);
  2187. /*
  2188. * If the extent was completely released,
  2189. * we need to remove it from the leaf
  2190. */
  2191. if (num == 0) {
  2192. if (end != EXT_MAX_BLOCKS - 1) {
  2193. /*
  2194. * For hole punching, we need to scoot all the
  2195. * extents up when an extent is removed so that
  2196. * we dont have blank extents in the middle
  2197. */
  2198. memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) *
  2199. sizeof(struct ext4_extent));
  2200. /* Now get rid of the one at the end */
  2201. memset(EXT_LAST_EXTENT(eh), 0,
  2202. sizeof(struct ext4_extent));
  2203. }
  2204. le16_add_cpu(&eh->eh_entries, -1);
  2205. } else
  2206. *partial_cluster = 0;
  2207. err = ext4_ext_dirty(handle, inode, path + depth);
  2208. if (err)
  2209. goto out;
  2210. ext_debug("new extent: %u:%u:%llu\n", ex_ee_block, num,
  2211. ext4_ext_pblock(ex));
  2212. ex--;
  2213. ex_ee_block = le32_to_cpu(ex->ee_block);
  2214. ex_ee_len = ext4_ext_get_actual_len(ex);
  2215. }
  2216. if (correct_index && eh->eh_entries)
  2217. err = ext4_ext_correct_indexes(handle, inode, path);
  2218. /*
  2219. * If there is still a entry in the leaf node, check to see if
  2220. * it references the partial cluster. This is the only place
  2221. * where it could; if it doesn't, we can free the cluster.
  2222. */
  2223. if (*partial_cluster && ex >= EXT_FIRST_EXTENT(eh) &&
  2224. (EXT4_B2C(sbi, ext4_ext_pblock(ex) + ex_ee_len - 1) !=
  2225. *partial_cluster)) {
  2226. int flags = EXT4_FREE_BLOCKS_FORGET;
  2227. if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
  2228. flags |= EXT4_FREE_BLOCKS_METADATA;
  2229. ext4_free_blocks(handle, inode, NULL,
  2230. EXT4_C2B(sbi, *partial_cluster),
  2231. sbi->s_cluster_ratio, flags);
  2232. *partial_cluster = 0;
  2233. }
  2234. /* if this leaf is free, then we should
  2235. * remove it from index block above */
  2236. if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
  2237. err = ext4_ext_rm_idx(handle, inode, path + depth);
  2238. out:
  2239. return err;
  2240. }
  2241. /*
  2242. * ext4_ext_more_to_rm:
  2243. * returns 1 if current index has to be freed (even partial)
  2244. */
  2245. static int
  2246. ext4_ext_more_to_rm(struct ext4_ext_path *path)
  2247. {
  2248. BUG_ON(path->p_idx == NULL);
  2249. if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
  2250. return 0;
  2251. /*
  2252. * if truncate on deeper level happened, it wasn't partial,
  2253. * so we have to consider current index for truncation
  2254. */
  2255. if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
  2256. return 0;
  2257. return 1;
  2258. }
  2259. static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
  2260. ext4_lblk_t end)
  2261. {
  2262. struct super_block *sb = inode->i_sb;
  2263. int depth = ext_depth(inode);
  2264. struct ext4_ext_path *path = NULL;
  2265. ext4_fsblk_t partial_cluster = 0;
  2266. handle_t *handle;
  2267. int i = 0, err;
  2268. ext_debug("truncate since %u to %u\n", start, end);
  2269. /* probably first extent we're gonna free will be last in block */
  2270. handle = ext4_journal_start(inode, depth + 1);
  2271. if (IS_ERR(handle))
  2272. return PTR_ERR(handle);
  2273. again:
  2274. ext4_ext_invalidate_cache(inode);
  2275. trace_ext4_ext_remove_space(inode, start, depth);
  2276. /*
  2277. * Check if we are removing extents inside the extent tree. If that
  2278. * is the case, we are going to punch a hole inside the extent tree
  2279. * so we have to check whether we need to split the extent covering
  2280. * the last block to remove so we can easily remove the part of it
  2281. * in ext4_ext_rm_leaf().
  2282. */
  2283. if (end < EXT_MAX_BLOCKS - 1) {
  2284. struct ext4_extent *ex;
  2285. ext4_lblk_t ee_block;
  2286. /* find extent for this block */
  2287. path = ext4_ext_find_extent(inode, end, NULL);
  2288. if (IS_ERR(path)) {
  2289. ext4_journal_stop(handle);
  2290. return PTR_ERR(path);
  2291. }
  2292. depth = ext_depth(inode);
  2293. ex = path[depth].p_ext;
  2294. if (!ex) {
  2295. ext4_ext_drop_refs(path);
  2296. kfree(path);
  2297. path = NULL;
  2298. goto cont;
  2299. }
  2300. ee_block = le32_to_cpu(ex->ee_block);
  2301. /*
  2302. * See if the last block is inside the extent, if so split
  2303. * the extent at 'end' block so we can easily remove the
  2304. * tail of the first part of the split extent in
  2305. * ext4_ext_rm_leaf().
  2306. */
  2307. if (end >= ee_block &&
  2308. end < ee_block + ext4_ext_get_actual_len(ex) - 1) {
  2309. int split_flag = 0;
  2310. if (ext4_ext_is_uninitialized(ex))
  2311. split_flag = EXT4_EXT_MARK_UNINIT1 |
  2312. EXT4_EXT_MARK_UNINIT2;
  2313. /*
  2314. * Split the extent in two so that 'end' is the last
  2315. * block in the first new extent
  2316. */
  2317. err = ext4_split_extent_at(handle, inode, path,
  2318. end + 1, split_flag,
  2319. EXT4_GET_BLOCKS_PRE_IO |
  2320. EXT4_GET_BLOCKS_PUNCH_OUT_EXT);
  2321. if (err < 0)
  2322. goto out;
  2323. }
  2324. }
  2325. cont:
  2326. /*
  2327. * We start scanning from right side, freeing all the blocks
  2328. * after i_size and walking into the tree depth-wise.
  2329. */
  2330. depth = ext_depth(inode);
  2331. if (path) {
  2332. int k = i = depth;
  2333. while (--k > 0)
  2334. path[k].p_block =
  2335. le16_to_cpu(path[k].p_hdr->eh_entries)+1;
  2336. } else {
  2337. path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1),
  2338. GFP_NOFS);
  2339. if (path == NULL) {
  2340. ext4_journal_stop(handle);
  2341. return -ENOMEM;
  2342. }
  2343. path[0].p_depth = depth;
  2344. path[0].p_hdr = ext_inode_hdr(inode);
  2345. i = 0;
  2346. if (ext4_ext_check(inode, path[0].p_hdr, depth)) {
  2347. err = -EIO;
  2348. goto out;
  2349. }
  2350. }
  2351. err = 0;
  2352. while (i >= 0 && err == 0) {
  2353. if (i == depth) {
  2354. /* this is leaf block */
  2355. err = ext4_ext_rm_leaf(handle, inode, path,
  2356. &partial_cluster, start,
  2357. end);
  2358. /* root level has p_bh == NULL, brelse() eats this */
  2359. brelse(path[i].p_bh);
  2360. path[i].p_bh = NULL;
  2361. i--;
  2362. continue;
  2363. }
  2364. /* this is index block */
  2365. if (!path[i].p_hdr) {
  2366. ext_debug("initialize header\n");
  2367. path[i].p_hdr = ext_block_hdr(path[i].p_bh);
  2368. }
  2369. if (!path[i].p_idx) {
  2370. /* this level hasn't been touched yet */
  2371. path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
  2372. path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
  2373. ext_debug("init index ptr: hdr 0x%p, num %d\n",
  2374. path[i].p_hdr,
  2375. le16_to_cpu(path[i].p_hdr->eh_entries));
  2376. } else {
  2377. /* we were already here, see at next index */
  2378. path[i].p_idx--;
  2379. }
  2380. ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
  2381. i, EXT_FIRST_INDEX(path[i].p_hdr),
  2382. path[i].p_idx);
  2383. if (ext4_ext_more_to_rm(path + i)) {
  2384. struct buffer_head *bh;
  2385. /* go to the next level */
  2386. ext_debug("move to level %d (block %llu)\n",
  2387. i + 1, ext4_idx_pblock(path[i].p_idx));
  2388. memset(path + i + 1, 0, sizeof(*path));
  2389. bh = sb_bread(sb, ext4_idx_pblock(path[i].p_idx));
  2390. if (!bh) {
  2391. /* should we reset i_size? */
  2392. err = -EIO;
  2393. break;
  2394. }
  2395. if (WARN_ON(i + 1 > depth)) {
  2396. err = -EIO;
  2397. break;
  2398. }
  2399. if (ext4_ext_check_block(inode, ext_block_hdr(bh),
  2400. depth - i - 1, bh)) {
  2401. err = -EIO;
  2402. break;
  2403. }
  2404. path[i + 1].p_bh = bh;
  2405. /* save actual number of indexes since this
  2406. * number is changed at the next iteration */
  2407. path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
  2408. i++;
  2409. } else {
  2410. /* we finished processing this index, go up */
  2411. if (path[i].p_hdr->eh_entries == 0 && i > 0) {
  2412. /* index is empty, remove it;
  2413. * handle must be already prepared by the
  2414. * truncatei_leaf() */
  2415. err = ext4_ext_rm_idx(handle, inode, path + i);
  2416. }
  2417. /* root level has p_bh == NULL, brelse() eats this */
  2418. brelse(path[i].p_bh);
  2419. path[i].p_bh = NULL;
  2420. i--;
  2421. ext_debug("return to level %d\n", i);
  2422. }
  2423. }
  2424. trace_ext4_ext_remove_space_done(inode, start, depth, partial_cluster,
  2425. path->p_hdr->eh_entries);
  2426. /* If we still have something in the partial cluster and we have removed
  2427. * even the first extent, then we should free the blocks in the partial
  2428. * cluster as well. */
  2429. if (partial_cluster && path->p_hdr->eh_entries == 0) {
  2430. int flags = EXT4_FREE_BLOCKS_FORGET;
  2431. if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
  2432. flags |= EXT4_FREE_BLOCKS_METADATA;
  2433. ext4_free_blocks(handle, inode, NULL,
  2434. EXT4_C2B(EXT4_SB(sb), partial_cluster),
  2435. EXT4_SB(sb)->s_cluster_ratio, flags);
  2436. partial_cluster = 0;
  2437. }
  2438. /* TODO: flexible tree reduction should be here */
  2439. if (path->p_hdr->eh_entries == 0) {
  2440. /*
  2441. * truncate to zero freed all the tree,
  2442. * so we need to correct eh_depth
  2443. */
  2444. err = ext4_ext_get_access(handle, inode, path);
  2445. if (err == 0) {
  2446. ext_inode_hdr(inode)->eh_depth = 0;
  2447. ext_inode_hdr(inode)->eh_max =
  2448. cpu_to_le16(ext4_ext_space_root(inode, 0));
  2449. err = ext4_ext_dirty(handle, inode, path);
  2450. }
  2451. }
  2452. out:
  2453. ext4_ext_drop_refs(path);
  2454. kfree(path);
  2455. if (err == -EAGAIN) {
  2456. path = NULL;
  2457. goto again;
  2458. }
  2459. ext4_journal_stop(handle);
  2460. return err;
  2461. }
  2462. /*
  2463. * called at mount time
  2464. */
  2465. void ext4_ext_init(struct super_block *sb)
  2466. {
  2467. /*
  2468. * possible initialization would be here
  2469. */
  2470. if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
  2471. #if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
  2472. printk(KERN_INFO "EXT4-fs: file extents enabled"
  2473. #ifdef AGGRESSIVE_TEST
  2474. ", aggressive tests"
  2475. #endif
  2476. #ifdef CHECK_BINSEARCH
  2477. ", check binsearch"
  2478. #endif
  2479. #ifdef EXTENTS_STATS
  2480. ", stats"
  2481. #endif
  2482. "\n");
  2483. #endif
  2484. #ifdef EXTENTS_STATS
  2485. spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
  2486. EXT4_SB(sb)->s_ext_min = 1 << 30;
  2487. EXT4_SB(sb)->s_ext_max = 0;
  2488. #endif
  2489. }
  2490. }
  2491. /*
  2492. * called at umount time
  2493. */
  2494. void ext4_ext_release(struct super_block *sb)
  2495. {
  2496. if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
  2497. return;
  2498. #ifdef EXTENTS_STATS
  2499. if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
  2500. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2501. printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
  2502. sbi->s_ext_blocks, sbi->s_ext_extents,
  2503. sbi->s_ext_blocks / sbi->s_ext_extents);
  2504. printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
  2505. sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
  2506. }
  2507. #endif
  2508. }
  2509. /* FIXME!! we need to try to merge to left or right after zero-out */
  2510. static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
  2511. {
  2512. ext4_fsblk_t ee_pblock;
  2513. unsigned int ee_len;
  2514. int ret;
  2515. ee_len = ext4_ext_get_actual_len(ex);
  2516. ee_pblock = ext4_ext_pblock(ex);
  2517. ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS);
  2518. if (ret > 0)
  2519. ret = 0;
  2520. return ret;
  2521. }
  2522. /*
  2523. * ext4_split_extent_at() splits an extent at given block.
  2524. *
  2525. * @handle: the journal handle
  2526. * @inode: the file inode
  2527. * @path: the path to the extent
  2528. * @split: the logical block where the extent is splitted.
  2529. * @split_flags: indicates if the extent could be zeroout if split fails, and
  2530. * the states(init or uninit) of new extents.
  2531. * @flags: flags used to insert new extent to extent tree.
  2532. *
  2533. *
  2534. * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
  2535. * of which are deterimined by split_flag.
  2536. *
  2537. * There are two cases:
  2538. * a> the extent are splitted into two extent.
  2539. * b> split is not needed, and just mark the extent.
  2540. *
  2541. * return 0 on success.
  2542. */
  2543. static int ext4_split_extent_at(handle_t *handle,
  2544. struct inode *inode,
  2545. struct ext4_ext_path *path,
  2546. ext4_lblk_t split,
  2547. int split_flag,
  2548. int flags)
  2549. {
  2550. ext4_fsblk_t newblock;
  2551. ext4_lblk_t ee_block;
  2552. struct ext4_extent *ex, newex, orig_ex;
  2553. struct ext4_extent *ex2 = NULL;
  2554. unsigned int ee_len, depth;
  2555. int err = 0;
  2556. ext_debug("ext4_split_extents_at: inode %lu, logical"
  2557. "block %llu\n", inode->i_ino, (unsigned long long)split);
  2558. ext4_ext_show_leaf(inode, path);
  2559. depth = ext_depth(inode);
  2560. ex = path[depth].p_ext;
  2561. ee_block = le32_to_cpu(ex->ee_block);
  2562. ee_len = ext4_ext_get_actual_len(ex);
  2563. newblock = split - ee_block + ext4_ext_pblock(ex);
  2564. BUG_ON(split < ee_block || split >= (ee_block + ee_len));
  2565. err = ext4_ext_get_access(handle, inode, path + depth);
  2566. if (err)
  2567. goto out;
  2568. if (split == ee_block) {
  2569. /*
  2570. * case b: block @split is the block that the extent begins with
  2571. * then we just change the state of the extent, and splitting
  2572. * is not needed.
  2573. */
  2574. if (split_flag & EXT4_EXT_MARK_UNINIT2)
  2575. ext4_ext_mark_uninitialized(ex);
  2576. else
  2577. ext4_ext_mark_initialized(ex);
  2578. if (!(flags & EXT4_GET_BLOCKS_PRE_IO))
  2579. ext4_ext_try_to_merge(inode, path, ex);
  2580. err = ext4_ext_dirty(handle, inode, path + depth);
  2581. goto out;
  2582. }
  2583. /* case a */
  2584. memcpy(&orig_ex, ex, sizeof(orig_ex));
  2585. ex->ee_len = cpu_to_le16(split - ee_block);
  2586. if (split_flag & EXT4_EXT_MARK_UNINIT1)
  2587. ext4_ext_mark_uninitialized(ex);
  2588. /*
  2589. * path may lead to new leaf, not to original leaf any more
  2590. * after ext4_ext_insert_extent() returns,
  2591. */
  2592. err = ext4_ext_dirty(handle, inode, path + depth);
  2593. if (err)
  2594. goto fix_extent_len;
  2595. ex2 = &newex;
  2596. ex2->ee_block = cpu_to_le32(split);
  2597. ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block));
  2598. ext4_ext_store_pblock(ex2, newblock);
  2599. if (split_flag & EXT4_EXT_MARK_UNINIT2)
  2600. ext4_ext_mark_uninitialized(ex2);
  2601. err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
  2602. if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
  2603. err = ext4_ext_zeroout(inode, &orig_ex);
  2604. if (err)
  2605. goto fix_extent_len;
  2606. /* update the extent length and mark as initialized */
  2607. ex->ee_len = cpu_to_le16(ee_len);
  2608. ext4_ext_try_to_merge(inode, path, ex);
  2609. err = ext4_ext_dirty(handle, inode, path + depth);
  2610. goto out;
  2611. } else if (err)
  2612. goto fix_extent_len;
  2613. out:
  2614. ext4_ext_show_leaf(inode, path);
  2615. return err;
  2616. fix_extent_len:
  2617. ex->ee_len = orig_ex.ee_len;
  2618. ext4_ext_dirty(handle, inode, path + depth);
  2619. return err;
  2620. }
  2621. /*
  2622. * ext4_split_extents() splits an extent and mark extent which is covered
  2623. * by @map as split_flags indicates
  2624. *
  2625. * It may result in splitting the extent into multiple extents (upto three)
  2626. * There are three possibilities:
  2627. * a> There is no split required
  2628. * b> Splits in two extents: Split is happening at either end of the extent
  2629. * c> Splits in three extents: Somone is splitting in middle of the extent
  2630. *
  2631. */
  2632. static int ext4_split_extent(handle_t *handle,
  2633. struct inode *inode,
  2634. struct ext4_ext_path *path,
  2635. struct ext4_map_blocks *map,
  2636. int split_flag,
  2637. int flags)
  2638. {
  2639. ext4_lblk_t ee_block;
  2640. struct ext4_extent *ex;
  2641. unsigned int ee_len, depth;
  2642. int err = 0;
  2643. int uninitialized;
  2644. int split_flag1, flags1;
  2645. depth = ext_depth(inode);
  2646. ex = path[depth].p_ext;
  2647. ee_block = le32_to_cpu(ex->ee_block);
  2648. ee_len = ext4_ext_get_actual_len(ex);
  2649. uninitialized = ext4_ext_is_uninitialized(ex);
  2650. if (map->m_lblk + map->m_len < ee_block + ee_len) {
  2651. split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
  2652. EXT4_EXT_MAY_ZEROOUT : 0;
  2653. flags1 = flags | EXT4_GET_BLOCKS_PRE_IO;
  2654. if (uninitialized)
  2655. split_flag1 |= EXT4_EXT_MARK_UNINIT1 |
  2656. EXT4_EXT_MARK_UNINIT2;
  2657. err = ext4_split_extent_at(handle, inode, path,
  2658. map->m_lblk + map->m_len, split_flag1, flags1);
  2659. if (err)
  2660. goto out;
  2661. }
  2662. ext4_ext_drop_refs(path);
  2663. path = ext4_ext_find_extent(inode, map->m_lblk, path);
  2664. if (IS_ERR(path))
  2665. return PTR_ERR(path);
  2666. if (map->m_lblk >= ee_block) {
  2667. split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
  2668. EXT4_EXT_MAY_ZEROOUT : 0;
  2669. if (uninitialized)
  2670. split_flag1 |= EXT4_EXT_MARK_UNINIT1;
  2671. if (split_flag & EXT4_EXT_MARK_UNINIT2)
  2672. split_flag1 |= EXT4_EXT_MARK_UNINIT2;
  2673. err = ext4_split_extent_at(handle, inode, path,
  2674. map->m_lblk, split_flag1, flags);
  2675. if (err)
  2676. goto out;
  2677. }
  2678. ext4_ext_show_leaf(inode, path);
  2679. out:
  2680. return err ? err : map->m_len;
  2681. }
  2682. #define EXT4_EXT_ZERO_LEN 7
  2683. /*
  2684. * This function is called by ext4_ext_map_blocks() if someone tries to write
  2685. * to an uninitialized extent. It may result in splitting the uninitialized
  2686. * extent into multiple extents (up to three - one initialized and two
  2687. * uninitialized).
  2688. * There are three possibilities:
  2689. * a> There is no split required: Entire extent should be initialized
  2690. * b> Splits in two extents: Write is happening at either end of the extent
  2691. * c> Splits in three extents: Somone is writing in middle of the extent
  2692. *
  2693. * Pre-conditions:
  2694. * - The extent pointed to by 'path' is uninitialized.
  2695. * - The extent pointed to by 'path' contains a superset
  2696. * of the logical span [map->m_lblk, map->m_lblk + map->m_len).
  2697. *
  2698. * Post-conditions on success:
  2699. * - the returned value is the number of blocks beyond map->l_lblk
  2700. * that are allocated and initialized.
  2701. * It is guaranteed to be >= map->m_len.
  2702. */
  2703. static int ext4_ext_convert_to_initialized(handle_t *handle,
  2704. struct inode *inode,
  2705. struct ext4_map_blocks *map,
  2706. struct ext4_ext_path *path)
  2707. {
  2708. struct ext4_extent_header *eh;
  2709. struct ext4_map_blocks split_map;
  2710. struct ext4_extent zero_ex;
  2711. struct ext4_extent *ex;
  2712. ext4_lblk_t ee_block, eof_block;
  2713. unsigned int ee_len, depth;
  2714. int allocated;
  2715. int err = 0;
  2716. int split_flag = 0;
  2717. ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
  2718. "block %llu, max_blocks %u\n", inode->i_ino,
  2719. (unsigned long long)map->m_lblk, map->m_len);
  2720. eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
  2721. inode->i_sb->s_blocksize_bits;
  2722. if (eof_block < map->m_lblk + map->m_len)
  2723. eof_block = map->m_lblk + map->m_len;
  2724. depth = ext_depth(inode);
  2725. eh = path[depth].p_hdr;
  2726. ex = path[depth].p_ext;
  2727. ee_block = le32_to_cpu(ex->ee_block);
  2728. ee_len = ext4_ext_get_actual_len(ex);
  2729. allocated = ee_len - (map->m_lblk - ee_block);
  2730. trace_ext4_ext_convert_to_initialized_enter(inode, map, ex);
  2731. /* Pre-conditions */
  2732. BUG_ON(!ext4_ext_is_uninitialized(ex));
  2733. BUG_ON(!in_range(map->m_lblk, ee_block, ee_len));
  2734. /*
  2735. * Attempt to transfer newly initialized blocks from the currently
  2736. * uninitialized extent to its left neighbor. This is much cheaper
  2737. * than an insertion followed by a merge as those involve costly
  2738. * memmove() calls. This is the common case in steady state for
  2739. * workloads doing fallocate(FALLOC_FL_KEEP_SIZE) followed by append
  2740. * writes.
  2741. *
  2742. * Limitations of the current logic:
  2743. * - L1: we only deal with writes at the start of the extent.
  2744. * The approach could be extended to writes at the end
  2745. * of the extent but this scenario was deemed less common.
  2746. * - L2: we do not deal with writes covering the whole extent.
  2747. * This would require removing the extent if the transfer
  2748. * is possible.
  2749. * - L3: we only attempt to merge with an extent stored in the
  2750. * same extent tree node.
  2751. */
  2752. if ((map->m_lblk == ee_block) && /*L1*/
  2753. (map->m_len < ee_len) && /*L2*/
  2754. (ex > EXT_FIRST_EXTENT(eh))) { /*L3*/
  2755. struct ext4_extent *prev_ex;
  2756. ext4_lblk_t prev_lblk;
  2757. ext4_fsblk_t prev_pblk, ee_pblk;
  2758. unsigned int prev_len, write_len;
  2759. prev_ex = ex - 1;
  2760. prev_lblk = le32_to_cpu(prev_ex->ee_block);
  2761. prev_len = ext4_ext_get_actual_len(prev_ex);
  2762. prev_pblk = ext4_ext_pblock(prev_ex);
  2763. ee_pblk = ext4_ext_pblock(ex);
  2764. write_len = map->m_len;
  2765. /*
  2766. * A transfer of blocks from 'ex' to 'prev_ex' is allowed
  2767. * upon those conditions:
  2768. * - C1: prev_ex is initialized,
  2769. * - C2: prev_ex is logically abutting ex,
  2770. * - C3: prev_ex is physically abutting ex,
  2771. * - C4: prev_ex can receive the additional blocks without
  2772. * overflowing the (initialized) length limit.
  2773. */
  2774. if ((!ext4_ext_is_uninitialized(prev_ex)) && /*C1*/
  2775. ((prev_lblk + prev_len) == ee_block) && /*C2*/
  2776. ((prev_pblk + prev_len) == ee_pblk) && /*C3*/
  2777. (prev_len < (EXT_INIT_MAX_LEN - write_len))) { /*C4*/
  2778. err = ext4_ext_get_access(handle, inode, path + depth);
  2779. if (err)
  2780. goto out;
  2781. trace_ext4_ext_convert_to_initialized_fastpath(inode,
  2782. map, ex, prev_ex);
  2783. /* Shift the start of ex by 'write_len' blocks */
  2784. ex->ee_block = cpu_to_le32(ee_block + write_len);
  2785. ext4_ext_store_pblock(ex, ee_pblk + write_len);
  2786. ex->ee_len = cpu_to_le16(ee_len - write_len);
  2787. ext4_ext_mark_uninitialized(ex); /* Restore the flag */
  2788. /* Extend prev_ex by 'write_len' blocks */
  2789. prev_ex->ee_len = cpu_to_le16(prev_len + write_len);
  2790. /* Mark the block containing both extents as dirty */
  2791. ext4_ext_dirty(handle, inode, path + depth);
  2792. /* Update path to point to the right extent */
  2793. path[depth].p_ext = prev_ex;
  2794. /* Result: number of initialized blocks past m_lblk */
  2795. allocated = write_len;
  2796. goto out;
  2797. }
  2798. }
  2799. WARN_ON(map->m_lblk < ee_block);
  2800. /*
  2801. * It is safe to convert extent to initialized via explicit
  2802. * zeroout only if extent is fully insde i_size or new_size.
  2803. */
  2804. split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
  2805. /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
  2806. if (ee_len <= 2*EXT4_EXT_ZERO_LEN &&
  2807. (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
  2808. err = ext4_ext_zeroout(inode, ex);
  2809. if (err)
  2810. goto out;
  2811. err = ext4_ext_get_access(handle, inode, path + depth);
  2812. if (err)
  2813. goto out;
  2814. ext4_ext_mark_initialized(ex);
  2815. ext4_ext_try_to_merge(inode, path, ex);
  2816. err = ext4_ext_dirty(handle, inode, path + depth);
  2817. goto out;
  2818. }
  2819. /*
  2820. * four cases:
  2821. * 1. split the extent into three extents.
  2822. * 2. split the extent into two extents, zeroout the first half.
  2823. * 3. split the extent into two extents, zeroout the second half.
  2824. * 4. split the extent into two extents with out zeroout.
  2825. */
  2826. split_map.m_lblk = map->m_lblk;
  2827. split_map.m_len = map->m_len;
  2828. if (allocated > map->m_len) {
  2829. if (allocated <= EXT4_EXT_ZERO_LEN &&
  2830. (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
  2831. /* case 3 */
  2832. zero_ex.ee_block =
  2833. cpu_to_le32(map->m_lblk);
  2834. zero_ex.ee_len = cpu_to_le16(allocated);
  2835. ext4_ext_store_pblock(&zero_ex,
  2836. ext4_ext_pblock(ex) + map->m_lblk - ee_block);
  2837. err = ext4_ext_zeroout(inode, &zero_ex);
  2838. if (err)
  2839. goto out;
  2840. split_map.m_lblk = map->m_lblk;
  2841. split_map.m_len = allocated;
  2842. } else if ((map->m_lblk - ee_block + map->m_len <
  2843. EXT4_EXT_ZERO_LEN) &&
  2844. (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
  2845. /* case 2 */
  2846. if (map->m_lblk != ee_block) {
  2847. zero_ex.ee_block = ex->ee_block;
  2848. zero_ex.ee_len = cpu_to_le16(map->m_lblk -
  2849. ee_block);
  2850. ext4_ext_store_pblock(&zero_ex,
  2851. ext4_ext_pblock(ex));
  2852. err = ext4_ext_zeroout(inode, &zero_ex);
  2853. if (err)
  2854. goto out;
  2855. }
  2856. split_map.m_lblk = ee_block;
  2857. split_map.m_len = map->m_lblk - ee_block + map->m_len;
  2858. allocated = map->m_len;
  2859. }
  2860. }
  2861. allocated = ext4_split_extent(handle, inode, path,
  2862. &split_map, split_flag, 0);
  2863. if (allocated < 0)
  2864. err = allocated;
  2865. out:
  2866. return err ? err : allocated;
  2867. }
  2868. /*
  2869. * This function is called by ext4_ext_map_blocks() from
  2870. * ext4_get_blocks_dio_write() when DIO to write
  2871. * to an uninitialized extent.
  2872. *
  2873. * Writing to an uninitialized extent may result in splitting the uninitialized
  2874. * extent into multiple /initialized uninitialized extents (up to three)
  2875. * There are three possibilities:
  2876. * a> There is no split required: Entire extent should be uninitialized
  2877. * b> Splits in two extents: Write is happening at either end of the extent
  2878. * c> Splits in three extents: Somone is writing in middle of the extent
  2879. *
  2880. * One of more index blocks maybe needed if the extent tree grow after
  2881. * the uninitialized extent split. To prevent ENOSPC occur at the IO
  2882. * complete, we need to split the uninitialized extent before DIO submit
  2883. * the IO. The uninitialized extent called at this time will be split
  2884. * into three uninitialized extent(at most). After IO complete, the part
  2885. * being filled will be convert to initialized by the end_io callback function
  2886. * via ext4_convert_unwritten_extents().
  2887. *
  2888. * Returns the size of uninitialized extent to be written on success.
  2889. */
  2890. static int ext4_split_unwritten_extents(handle_t *handle,
  2891. struct inode *inode,
  2892. struct ext4_map_blocks *map,
  2893. struct ext4_ext_path *path,
  2894. int flags)
  2895. {
  2896. ext4_lblk_t eof_block;
  2897. ext4_lblk_t ee_block;
  2898. struct ext4_extent *ex;
  2899. unsigned int ee_len;
  2900. int split_flag = 0, depth;
  2901. ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
  2902. "block %llu, max_blocks %u\n", inode->i_ino,
  2903. (unsigned long long)map->m_lblk, map->m_len);
  2904. eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
  2905. inode->i_sb->s_blocksize_bits;
  2906. if (eof_block < map->m_lblk + map->m_len)
  2907. eof_block = map->m_lblk + map->m_len;
  2908. /*
  2909. * It is safe to convert extent to initialized via explicit
  2910. * zeroout only if extent is fully insde i_size or new_size.
  2911. */
  2912. depth = ext_depth(inode);
  2913. ex = path[depth].p_ext;
  2914. ee_block = le32_to_cpu(ex->ee_block);
  2915. ee_len = ext4_ext_get_actual_len(ex);
  2916. split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
  2917. split_flag |= EXT4_EXT_MARK_UNINIT2;
  2918. flags |= EXT4_GET_BLOCKS_PRE_IO;
  2919. return ext4_split_extent(handle, inode, path, map, split_flag, flags);
  2920. }
  2921. static int ext4_convert_unwritten_extents_endio(handle_t *handle,
  2922. struct inode *inode,
  2923. struct ext4_ext_path *path)
  2924. {
  2925. struct ext4_extent *ex;
  2926. int depth;
  2927. int err = 0;
  2928. depth = ext_depth(inode);
  2929. ex = path[depth].p_ext;
  2930. ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical"
  2931. "block %llu, max_blocks %u\n", inode->i_ino,
  2932. (unsigned long long)le32_to_cpu(ex->ee_block),
  2933. ext4_ext_get_actual_len(ex));
  2934. err = ext4_ext_get_access(handle, inode, path + depth);
  2935. if (err)
  2936. goto out;
  2937. /* first mark the extent as initialized */
  2938. ext4_ext_mark_initialized(ex);
  2939. /* note: ext4_ext_correct_indexes() isn't needed here because
  2940. * borders are not changed
  2941. */
  2942. ext4_ext_try_to_merge(inode, path, ex);
  2943. /* Mark modified extent as dirty */
  2944. err = ext4_ext_dirty(handle, inode, path + depth);
  2945. out:
  2946. ext4_ext_show_leaf(inode, path);
  2947. return err;
  2948. }
  2949. static void unmap_underlying_metadata_blocks(struct block_device *bdev,
  2950. sector_t block, int count)
  2951. {
  2952. int i;
  2953. for (i = 0; i < count; i++)
  2954. unmap_underlying_metadata(bdev, block + i);
  2955. }
  2956. /*
  2957. * Handle EOFBLOCKS_FL flag, clearing it if necessary
  2958. */
  2959. static int check_eofblocks_fl(handle_t *handle, struct inode *inode,
  2960. ext4_lblk_t lblk,
  2961. struct ext4_ext_path *path,
  2962. unsigned int len)
  2963. {
  2964. int i, depth;
  2965. struct ext4_extent_header *eh;
  2966. struct ext4_extent *last_ex;
  2967. if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
  2968. return 0;
  2969. depth = ext_depth(inode);
  2970. eh = path[depth].p_hdr;
  2971. /*
  2972. * We're going to remove EOFBLOCKS_FL entirely in future so we
  2973. * do not care for this case anymore. Simply remove the flag
  2974. * if there are no extents.
  2975. */
  2976. if (unlikely(!eh->eh_entries))
  2977. goto out;
  2978. last_ex = EXT_LAST_EXTENT(eh);
  2979. /*
  2980. * We should clear the EOFBLOCKS_FL flag if we are writing the
  2981. * last block in the last extent in the file. We test this by
  2982. * first checking to see if the caller to
  2983. * ext4_ext_get_blocks() was interested in the last block (or
  2984. * a block beyond the last block) in the current extent. If
  2985. * this turns out to be false, we can bail out from this
  2986. * function immediately.
  2987. */
  2988. if (lblk + len < le32_to_cpu(last_ex->ee_block) +
  2989. ext4_ext_get_actual_len(last_ex))
  2990. return 0;
  2991. /*
  2992. * If the caller does appear to be planning to write at or
  2993. * beyond the end of the current extent, we then test to see
  2994. * if the current extent is the last extent in the file, by
  2995. * checking to make sure it was reached via the rightmost node
  2996. * at each level of the tree.
  2997. */
  2998. for (i = depth-1; i >= 0; i--)
  2999. if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr))
  3000. return 0;
  3001. out:
  3002. ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
  3003. return ext4_mark_inode_dirty(handle, inode);
  3004. }
  3005. /**
  3006. * ext4_find_delalloc_range: find delayed allocated block in the given range.
  3007. *
  3008. * Goes through the buffer heads in the range [lblk_start, lblk_end] and returns
  3009. * whether there are any buffers marked for delayed allocation. It returns '1'
  3010. * on the first delalloc'ed buffer head found. If no buffer head in the given
  3011. * range is marked for delalloc, it returns 0.
  3012. * lblk_start should always be <= lblk_end.
  3013. * search_hint_reverse is to indicate that searching in reverse from lblk_end to
  3014. * lblk_start might be more efficient (i.e., we will likely hit the delalloc'ed
  3015. * block sooner). This is useful when blocks are truncated sequentially from
  3016. * lblk_start towards lblk_end.
  3017. */
  3018. static int ext4_find_delalloc_range(struct inode *inode,
  3019. ext4_lblk_t lblk_start,
  3020. ext4_lblk_t lblk_end,
  3021. int search_hint_reverse)
  3022. {
  3023. struct address_space *mapping = inode->i_mapping;
  3024. struct buffer_head *head, *bh = NULL;
  3025. struct page *page;
  3026. ext4_lblk_t i, pg_lblk;
  3027. pgoff_t index;
  3028. if (!test_opt(inode->i_sb, DELALLOC))
  3029. return 0;
  3030. /* reverse search wont work if fs block size is less than page size */
  3031. if (inode->i_blkbits < PAGE_CACHE_SHIFT)
  3032. search_hint_reverse = 0;
  3033. if (search_hint_reverse)
  3034. i = lblk_end;
  3035. else
  3036. i = lblk_start;
  3037. index = i >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
  3038. while ((i >= lblk_start) && (i <= lblk_end)) {
  3039. page = find_get_page(mapping, index);
  3040. if (!page)
  3041. goto nextpage;
  3042. if (!page_has_buffers(page))
  3043. goto nextpage;
  3044. head = page_buffers(page);
  3045. if (!head)
  3046. goto nextpage;
  3047. bh = head;
  3048. pg_lblk = index << (PAGE_CACHE_SHIFT -
  3049. inode->i_blkbits);
  3050. do {
  3051. if (unlikely(pg_lblk < lblk_start)) {
  3052. /*
  3053. * This is possible when fs block size is less
  3054. * than page size and our cluster starts/ends in
  3055. * middle of the page. So we need to skip the
  3056. * initial few blocks till we reach the 'lblk'
  3057. */
  3058. pg_lblk++;
  3059. continue;
  3060. }
  3061. /* Check if the buffer is delayed allocated and that it
  3062. * is not yet mapped. (when da-buffers are mapped during
  3063. * their writeout, their da_mapped bit is set.)
  3064. */
  3065. if (buffer_delay(bh) && !buffer_da_mapped(bh)) {
  3066. page_cache_release(page);
  3067. trace_ext4_find_delalloc_range(inode,
  3068. lblk_start, lblk_end,
  3069. search_hint_reverse,
  3070. 1, i);
  3071. return 1;
  3072. }
  3073. if (search_hint_reverse)
  3074. i--;
  3075. else
  3076. i++;
  3077. } while ((i >= lblk_start) && (i <= lblk_end) &&
  3078. ((bh = bh->b_this_page) != head));
  3079. nextpage:
  3080. if (page)
  3081. page_cache_release(page);
  3082. /*
  3083. * Move to next page. 'i' will be the first lblk in the next
  3084. * page.
  3085. */
  3086. if (search_hint_reverse)
  3087. index--;
  3088. else
  3089. index++;
  3090. i = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
  3091. }
  3092. trace_ext4_find_delalloc_range(inode, lblk_start, lblk_end,
  3093. search_hint_reverse, 0, 0);
  3094. return 0;
  3095. }
  3096. int ext4_find_delalloc_cluster(struct inode *inode, ext4_lblk_t lblk,
  3097. int search_hint_reverse)
  3098. {
  3099. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  3100. ext4_lblk_t lblk_start, lblk_end;
  3101. lblk_start = lblk & (~(sbi->s_cluster_ratio - 1));
  3102. lblk_end = lblk_start + sbi->s_cluster_ratio - 1;
  3103. return ext4_find_delalloc_range(inode, lblk_start, lblk_end,
  3104. search_hint_reverse);
  3105. }
  3106. /**
  3107. * Determines how many complete clusters (out of those specified by the 'map')
  3108. * are under delalloc and were reserved quota for.
  3109. * This function is called when we are writing out the blocks that were
  3110. * originally written with their allocation delayed, but then the space was
  3111. * allocated using fallocate() before the delayed allocation could be resolved.
  3112. * The cases to look for are:
  3113. * ('=' indicated delayed allocated blocks
  3114. * '-' indicates non-delayed allocated blocks)
  3115. * (a) partial clusters towards beginning and/or end outside of allocated range
  3116. * are not delalloc'ed.
  3117. * Ex:
  3118. * |----c---=|====c====|====c====|===-c----|
  3119. * |++++++ allocated ++++++|
  3120. * ==> 4 complete clusters in above example
  3121. *
  3122. * (b) partial cluster (outside of allocated range) towards either end is
  3123. * marked for delayed allocation. In this case, we will exclude that
  3124. * cluster.
  3125. * Ex:
  3126. * |----====c========|========c========|
  3127. * |++++++ allocated ++++++|
  3128. * ==> 1 complete clusters in above example
  3129. *
  3130. * Ex:
  3131. * |================c================|
  3132. * |++++++ allocated ++++++|
  3133. * ==> 0 complete clusters in above example
  3134. *
  3135. * The ext4_da_update_reserve_space will be called only if we
  3136. * determine here that there were some "entire" clusters that span
  3137. * this 'allocated' range.
  3138. * In the non-bigalloc case, this function will just end up returning num_blks
  3139. * without ever calling ext4_find_delalloc_range.
  3140. */
  3141. static unsigned int
  3142. get_reserved_cluster_alloc(struct inode *inode, ext4_lblk_t lblk_start,
  3143. unsigned int num_blks)
  3144. {
  3145. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  3146. ext4_lblk_t alloc_cluster_start, alloc_cluster_end;
  3147. ext4_lblk_t lblk_from, lblk_to, c_offset;
  3148. unsigned int allocated_clusters = 0;
  3149. alloc_cluster_start = EXT4_B2C(sbi, lblk_start);
  3150. alloc_cluster_end = EXT4_B2C(sbi, lblk_start + num_blks - 1);
  3151. /* max possible clusters for this allocation */
  3152. allocated_clusters = alloc_cluster_end - alloc_cluster_start + 1;
  3153. trace_ext4_get_reserved_cluster_alloc(inode, lblk_start, num_blks);
  3154. /* Check towards left side */
  3155. c_offset = lblk_start & (sbi->s_cluster_ratio - 1);
  3156. if (c_offset) {
  3157. lblk_from = lblk_start & (~(sbi->s_cluster_ratio - 1));
  3158. lblk_to = lblk_from + c_offset - 1;
  3159. if (ext4_find_delalloc_range(inode, lblk_from, lblk_to, 0))
  3160. allocated_clusters--;
  3161. }
  3162. /* Now check towards right. */
  3163. c_offset = (lblk_start + num_blks) & (sbi->s_cluster_ratio - 1);
  3164. if (allocated_clusters && c_offset) {
  3165. lblk_from = lblk_start + num_blks;
  3166. lblk_to = lblk_from + (sbi->s_cluster_ratio - c_offset) - 1;
  3167. if (ext4_find_delalloc_range(inode, lblk_from, lblk_to, 0))
  3168. allocated_clusters--;
  3169. }
  3170. return allocated_clusters;
  3171. }
  3172. static int
  3173. ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
  3174. struct ext4_map_blocks *map,
  3175. struct ext4_ext_path *path, int flags,
  3176. unsigned int allocated, ext4_fsblk_t newblock)
  3177. {
  3178. int ret = 0;
  3179. int err = 0;
  3180. ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
  3181. ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical "
  3182. "block %llu, max_blocks %u, flags %x, allocated %u\n",
  3183. inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
  3184. flags, allocated);
  3185. ext4_ext_show_leaf(inode, path);
  3186. trace_ext4_ext_handle_uninitialized_extents(inode, map, allocated,
  3187. newblock);
  3188. /* get_block() before submit the IO, split the extent */
  3189. if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
  3190. ret = ext4_split_unwritten_extents(handle, inode, map,
  3191. path, flags);
  3192. /*
  3193. * Flag the inode(non aio case) or end_io struct (aio case)
  3194. * that this IO needs to conversion to written when IO is
  3195. * completed
  3196. */
  3197. if (io)
  3198. ext4_set_io_unwritten_flag(inode, io);
  3199. else
  3200. ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
  3201. if (ext4_should_dioread_nolock(inode))
  3202. map->m_flags |= EXT4_MAP_UNINIT;
  3203. goto out;
  3204. }
  3205. /* IO end_io complete, convert the filled extent to written */
  3206. if ((flags & EXT4_GET_BLOCKS_CONVERT)) {
  3207. ret = ext4_convert_unwritten_extents_endio(handle, inode,
  3208. path);
  3209. if (ret >= 0) {
  3210. ext4_update_inode_fsync_trans(handle, inode, 1);
  3211. err = check_eofblocks_fl(handle, inode, map->m_lblk,
  3212. path, map->m_len);
  3213. } else
  3214. err = ret;
  3215. goto out2;
  3216. }
  3217. /* buffered IO case */
  3218. /*
  3219. * repeat fallocate creation request
  3220. * we already have an unwritten extent
  3221. */
  3222. if (flags & EXT4_GET_BLOCKS_UNINIT_EXT)
  3223. goto map_out;
  3224. /* buffered READ or buffered write_begin() lookup */
  3225. if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
  3226. /*
  3227. * We have blocks reserved already. We
  3228. * return allocated blocks so that delalloc
  3229. * won't do block reservation for us. But
  3230. * the buffer head will be unmapped so that
  3231. * a read from the block returns 0s.
  3232. */
  3233. map->m_flags |= EXT4_MAP_UNWRITTEN;
  3234. goto out1;
  3235. }
  3236. /* buffered write, writepage time, convert*/
  3237. ret = ext4_ext_convert_to_initialized(handle, inode, map, path);
  3238. if (ret >= 0)
  3239. ext4_update_inode_fsync_trans(handle, inode, 1);
  3240. out:
  3241. if (ret <= 0) {
  3242. err = ret;
  3243. goto out2;
  3244. } else
  3245. allocated = ret;
  3246. map->m_flags |= EXT4_MAP_NEW;
  3247. /*
  3248. * if we allocated more blocks than requested
  3249. * we need to make sure we unmap the extra block
  3250. * allocated. The actual needed block will get
  3251. * unmapped later when we find the buffer_head marked
  3252. * new.
  3253. */
  3254. if (allocated > map->m_len) {
  3255. unmap_underlying_metadata_blocks(inode->i_sb->s_bdev,
  3256. newblock + map->m_len,
  3257. allocated - map->m_len);
  3258. allocated = map->m_len;
  3259. }
  3260. /*
  3261. * If we have done fallocate with the offset that is already
  3262. * delayed allocated, we would have block reservation
  3263. * and quota reservation done in the delayed write path.
  3264. * But fallocate would have already updated quota and block
  3265. * count for this offset. So cancel these reservation
  3266. */
  3267. if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
  3268. unsigned int reserved_clusters;
  3269. reserved_clusters = get_reserved_cluster_alloc(inode,
  3270. map->m_lblk, map->m_len);
  3271. if (reserved_clusters)
  3272. ext4_da_update_reserve_space(inode,
  3273. reserved_clusters,
  3274. 0);
  3275. }
  3276. map_out:
  3277. map->m_flags |= EXT4_MAP_MAPPED;
  3278. if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) {
  3279. err = check_eofblocks_fl(handle, inode, map->m_lblk, path,
  3280. map->m_len);
  3281. if (err < 0)
  3282. goto out2;
  3283. }
  3284. out1:
  3285. if (allocated > map->m_len)
  3286. allocated = map->m_len;
  3287. ext4_ext_show_leaf(inode, path);
  3288. map->m_pblk = newblock;
  3289. map->m_len = allocated;
  3290. out2:
  3291. if (path) {
  3292. ext4_ext_drop_refs(path);
  3293. kfree(path);
  3294. }
  3295. return err ? err : allocated;
  3296. }
  3297. /*
  3298. * get_implied_cluster_alloc - check to see if the requested
  3299. * allocation (in the map structure) overlaps with a cluster already
  3300. * allocated in an extent.
  3301. * @sb The filesystem superblock structure
  3302. * @map The requested lblk->pblk mapping
  3303. * @ex The extent structure which might contain an implied
  3304. * cluster allocation
  3305. *
  3306. * This function is called by ext4_ext_map_blocks() after we failed to
  3307. * find blocks that were already in the inode's extent tree. Hence,
  3308. * we know that the beginning of the requested region cannot overlap
  3309. * the extent from the inode's extent tree. There are three cases we
  3310. * want to catch. The first is this case:
  3311. *
  3312. * |--- cluster # N--|
  3313. * |--- extent ---| |---- requested region ---|
  3314. * |==========|
  3315. *
  3316. * The second case that we need to test for is this one:
  3317. *
  3318. * |--------- cluster # N ----------------|
  3319. * |--- requested region --| |------- extent ----|
  3320. * |=======================|
  3321. *
  3322. * The third case is when the requested region lies between two extents
  3323. * within the same cluster:
  3324. * |------------- cluster # N-------------|
  3325. * |----- ex -----| |---- ex_right ----|
  3326. * |------ requested region ------|
  3327. * |================|
  3328. *
  3329. * In each of the above cases, we need to set the map->m_pblk and
  3330. * map->m_len so it corresponds to the return the extent labelled as
  3331. * "|====|" from cluster #N, since it is already in use for data in
  3332. * cluster EXT4_B2C(sbi, map->m_lblk). We will then return 1 to
  3333. * signal to ext4_ext_map_blocks() that map->m_pblk should be treated
  3334. * as a new "allocated" block region. Otherwise, we will return 0 and
  3335. * ext4_ext_map_blocks() will then allocate one or more new clusters
  3336. * by calling ext4_mb_new_blocks().
  3337. */
  3338. static int get_implied_cluster_alloc(struct super_block *sb,
  3339. struct ext4_map_blocks *map,
  3340. struct ext4_extent *ex,
  3341. struct ext4_ext_path *path)
  3342. {
  3343. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3344. ext4_lblk_t c_offset = map->m_lblk & (sbi->s_cluster_ratio-1);
  3345. ext4_lblk_t ex_cluster_start, ex_cluster_end;
  3346. ext4_lblk_t rr_cluster_start;
  3347. ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
  3348. ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
  3349. unsigned short ee_len = ext4_ext_get_actual_len(ex);
  3350. /* The extent passed in that we are trying to match */
  3351. ex_cluster_start = EXT4_B2C(sbi, ee_block);
  3352. ex_cluster_end = EXT4_B2C(sbi, ee_block + ee_len - 1);
  3353. /* The requested region passed into ext4_map_blocks() */
  3354. rr_cluster_start = EXT4_B2C(sbi, map->m_lblk);
  3355. if ((rr_cluster_start == ex_cluster_end) ||
  3356. (rr_cluster_start == ex_cluster_start)) {
  3357. if (rr_cluster_start == ex_cluster_end)
  3358. ee_start += ee_len - 1;
  3359. map->m_pblk = (ee_start & ~(sbi->s_cluster_ratio - 1)) +
  3360. c_offset;
  3361. map->m_len = min(map->m_len,
  3362. (unsigned) sbi->s_cluster_ratio - c_offset);
  3363. /*
  3364. * Check for and handle this case:
  3365. *
  3366. * |--------- cluster # N-------------|
  3367. * |------- extent ----|
  3368. * |--- requested region ---|
  3369. * |===========|
  3370. */
  3371. if (map->m_lblk < ee_block)
  3372. map->m_len = min(map->m_len, ee_block - map->m_lblk);
  3373. /*
  3374. * Check for the case where there is already another allocated
  3375. * block to the right of 'ex' but before the end of the cluster.
  3376. *
  3377. * |------------- cluster # N-------------|
  3378. * |----- ex -----| |---- ex_right ----|
  3379. * |------ requested region ------|
  3380. * |================|
  3381. */
  3382. if (map->m_lblk > ee_block) {
  3383. ext4_lblk_t next = ext4_ext_next_allocated_block(path);
  3384. map->m_len = min(map->m_len, next - map->m_lblk);
  3385. }
  3386. trace_ext4_get_implied_cluster_alloc_exit(sb, map, 1);
  3387. return 1;
  3388. }
  3389. trace_ext4_get_implied_cluster_alloc_exit(sb, map, 0);
  3390. return 0;
  3391. }
  3392. /*
  3393. * Block allocation/map/preallocation routine for extents based files
  3394. *
  3395. *
  3396. * Need to be called with
  3397. * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
  3398. * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
  3399. *
  3400. * return > 0, number of of blocks already mapped/allocated
  3401. * if create == 0 and these are pre-allocated blocks
  3402. * buffer head is unmapped
  3403. * otherwise blocks are mapped
  3404. *
  3405. * return = 0, if plain look up failed (blocks have not been allocated)
  3406. * buffer head is unmapped
  3407. *
  3408. * return < 0, error case.
  3409. */
  3410. int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
  3411. struct ext4_map_blocks *map, int flags)
  3412. {
  3413. struct ext4_ext_path *path = NULL;
  3414. struct ext4_extent newex, *ex, *ex2;
  3415. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  3416. ext4_fsblk_t newblock = 0;
  3417. int free_on_err = 0, err = 0, depth, ret;
  3418. unsigned int allocated = 0, offset = 0;
  3419. unsigned int allocated_clusters = 0;
  3420. struct ext4_allocation_request ar;
  3421. ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
  3422. ext4_lblk_t cluster_offset;
  3423. ext_debug("blocks %u/%u requested for inode %lu\n",
  3424. map->m_lblk, map->m_len, inode->i_ino);
  3425. trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags);
  3426. /* check in cache */
  3427. if (ext4_ext_in_cache(inode, map->m_lblk, &newex)) {
  3428. if (!newex.ee_start_lo && !newex.ee_start_hi) {
  3429. if ((sbi->s_cluster_ratio > 1) &&
  3430. ext4_find_delalloc_cluster(inode, map->m_lblk, 0))
  3431. map->m_flags |= EXT4_MAP_FROM_CLUSTER;
  3432. if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
  3433. /*
  3434. * block isn't allocated yet and
  3435. * user doesn't want to allocate it
  3436. */
  3437. goto out2;
  3438. }
  3439. /* we should allocate requested block */
  3440. } else {
  3441. /* block is already allocated */
  3442. if (sbi->s_cluster_ratio > 1)
  3443. map->m_flags |= EXT4_MAP_FROM_CLUSTER;
  3444. newblock = map->m_lblk
  3445. - le32_to_cpu(newex.ee_block)
  3446. + ext4_ext_pblock(&newex);
  3447. /* number of remaining blocks in the extent */
  3448. allocated = ext4_ext_get_actual_len(&newex) -
  3449. (map->m_lblk - le32_to_cpu(newex.ee_block));
  3450. goto out;
  3451. }
  3452. }
  3453. /* find extent for this block */
  3454. path = ext4_ext_find_extent(inode, map->m_lblk, NULL);
  3455. if (IS_ERR(path)) {
  3456. err = PTR_ERR(path);
  3457. path = NULL;
  3458. goto out2;
  3459. }
  3460. depth = ext_depth(inode);
  3461. /*
  3462. * consistent leaf must not be empty;
  3463. * this situation is possible, though, _during_ tree modification;
  3464. * this is why assert can't be put in ext4_ext_find_extent()
  3465. */
  3466. if (unlikely(path[depth].p_ext == NULL && depth != 0)) {
  3467. EXT4_ERROR_INODE(inode, "bad extent address "
  3468. "lblock: %lu, depth: %d pblock %lld",
  3469. (unsigned long) map->m_lblk, depth,
  3470. path[depth].p_block);
  3471. err = -EIO;
  3472. goto out2;
  3473. }
  3474. ex = path[depth].p_ext;
  3475. if (ex) {
  3476. ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
  3477. ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
  3478. unsigned short ee_len;
  3479. /*
  3480. * Uninitialized extents are treated as holes, except that
  3481. * we split out initialized portions during a write.
  3482. */
  3483. ee_len = ext4_ext_get_actual_len(ex);
  3484. trace_ext4_ext_show_extent(inode, ee_block, ee_start, ee_len);
  3485. /* if found extent covers block, simply return it */
  3486. if (in_range(map->m_lblk, ee_block, ee_len)) {
  3487. newblock = map->m_lblk - ee_block + ee_start;
  3488. /* number of remaining blocks in the extent */
  3489. allocated = ee_len - (map->m_lblk - ee_block);
  3490. ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk,
  3491. ee_block, ee_len, newblock);
  3492. /*
  3493. * Do not put uninitialized extent
  3494. * in the cache
  3495. */
  3496. if (!ext4_ext_is_uninitialized(ex)) {
  3497. ext4_ext_put_in_cache(inode, ee_block,
  3498. ee_len, ee_start);
  3499. goto out;
  3500. }
  3501. ret = ext4_ext_handle_uninitialized_extents(
  3502. handle, inode, map, path, flags,
  3503. allocated, newblock);
  3504. return ret;
  3505. }
  3506. }
  3507. if ((sbi->s_cluster_ratio > 1) &&
  3508. ext4_find_delalloc_cluster(inode, map->m_lblk, 0))
  3509. map->m_flags |= EXT4_MAP_FROM_CLUSTER;
  3510. /*
  3511. * requested block isn't allocated yet;
  3512. * we couldn't try to create block if create flag is zero
  3513. */
  3514. if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
  3515. /*
  3516. * put just found gap into cache to speed up
  3517. * subsequent requests
  3518. */
  3519. ext4_ext_put_gap_in_cache(inode, path, map->m_lblk);
  3520. goto out2;
  3521. }
  3522. /*
  3523. * Okay, we need to do block allocation.
  3524. */
  3525. map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
  3526. newex.ee_block = cpu_to_le32(map->m_lblk);
  3527. cluster_offset = map->m_lblk & (sbi->s_cluster_ratio-1);
  3528. /*
  3529. * If we are doing bigalloc, check to see if the extent returned
  3530. * by ext4_ext_find_extent() implies a cluster we can use.
  3531. */
  3532. if (cluster_offset && ex &&
  3533. get_implied_cluster_alloc(inode->i_sb, map, ex, path)) {
  3534. ar.len = allocated = map->m_len;
  3535. newblock = map->m_pblk;
  3536. map->m_flags |= EXT4_MAP_FROM_CLUSTER;
  3537. goto got_allocated_blocks;
  3538. }
  3539. /* find neighbour allocated blocks */
  3540. ar.lleft = map->m_lblk;
  3541. err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
  3542. if (err)
  3543. goto out2;
  3544. ar.lright = map->m_lblk;
  3545. ex2 = NULL;
  3546. err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright, &ex2);
  3547. if (err)
  3548. goto out2;
  3549. /* Check if the extent after searching to the right implies a
  3550. * cluster we can use. */
  3551. if ((sbi->s_cluster_ratio > 1) && ex2 &&
  3552. get_implied_cluster_alloc(inode->i_sb, map, ex2, path)) {
  3553. ar.len = allocated = map->m_len;
  3554. newblock = map->m_pblk;
  3555. map->m_flags |= EXT4_MAP_FROM_CLUSTER;
  3556. goto got_allocated_blocks;
  3557. }
  3558. /*
  3559. * See if request is beyond maximum number of blocks we can have in
  3560. * a single extent. For an initialized extent this limit is
  3561. * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
  3562. * EXT_UNINIT_MAX_LEN.
  3563. */
  3564. if (map->m_len > EXT_INIT_MAX_LEN &&
  3565. !(flags & EXT4_GET_BLOCKS_UNINIT_EXT))
  3566. map->m_len = EXT_INIT_MAX_LEN;
  3567. else if (map->m_len > EXT_UNINIT_MAX_LEN &&
  3568. (flags & EXT4_GET_BLOCKS_UNINIT_EXT))
  3569. map->m_len = EXT_UNINIT_MAX_LEN;
  3570. /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */
  3571. newex.ee_len = cpu_to_le16(map->m_len);
  3572. err = ext4_ext_check_overlap(sbi, inode, &newex, path);
  3573. if (err)
  3574. allocated = ext4_ext_get_actual_len(&newex);
  3575. else
  3576. allocated = map->m_len;
  3577. /* allocate new block */
  3578. ar.inode = inode;
  3579. ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk);
  3580. ar.logical = map->m_lblk;
  3581. /*
  3582. * We calculate the offset from the beginning of the cluster
  3583. * for the logical block number, since when we allocate a
  3584. * physical cluster, the physical block should start at the
  3585. * same offset from the beginning of the cluster. This is
  3586. * needed so that future calls to get_implied_cluster_alloc()
  3587. * work correctly.
  3588. */
  3589. offset = map->m_lblk & (sbi->s_cluster_ratio - 1);
  3590. ar.len = EXT4_NUM_B2C(sbi, offset+allocated);
  3591. ar.goal -= offset;
  3592. ar.logical -= offset;
  3593. if (S_ISREG(inode->i_mode))
  3594. ar.flags = EXT4_MB_HINT_DATA;
  3595. else
  3596. /* disable in-core preallocation for non-regular files */
  3597. ar.flags = 0;
  3598. if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
  3599. ar.flags |= EXT4_MB_HINT_NOPREALLOC;
  3600. newblock = ext4_mb_new_blocks(handle, &ar, &err);
  3601. if (!newblock)
  3602. goto out2;
  3603. ext_debug("allocate new block: goal %llu, found %llu/%u\n",
  3604. ar.goal, newblock, allocated);
  3605. free_on_err = 1;
  3606. allocated_clusters = ar.len;
  3607. ar.len = EXT4_C2B(sbi, ar.len) - offset;
  3608. if (ar.len > allocated)
  3609. ar.len = allocated;
  3610. got_allocated_blocks:
  3611. /* try to insert new extent into found leaf and return */
  3612. ext4_ext_store_pblock(&newex, newblock + offset);
  3613. newex.ee_len = cpu_to_le16(ar.len);
  3614. /* Mark uninitialized */
  3615. if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){
  3616. ext4_ext_mark_uninitialized(&newex);
  3617. /*
  3618. * io_end structure was created for every IO write to an
  3619. * uninitialized extent. To avoid unnecessary conversion,
  3620. * here we flag the IO that really needs the conversion.
  3621. * For non asycn direct IO case, flag the inode state
  3622. * that we need to perform conversion when IO is done.
  3623. */
  3624. if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
  3625. if (io)
  3626. ext4_set_io_unwritten_flag(inode, io);
  3627. else
  3628. ext4_set_inode_state(inode,
  3629. EXT4_STATE_DIO_UNWRITTEN);
  3630. }
  3631. if (ext4_should_dioread_nolock(inode))
  3632. map->m_flags |= EXT4_MAP_UNINIT;
  3633. }
  3634. err = 0;
  3635. if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0)
  3636. err = check_eofblocks_fl(handle, inode, map->m_lblk,
  3637. path, ar.len);
  3638. if (!err)
  3639. err = ext4_ext_insert_extent(handle, inode, path,
  3640. &newex, flags);
  3641. if (err && free_on_err) {
  3642. int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ?
  3643. EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0;
  3644. /* free data blocks we just allocated */
  3645. /* not a good idea to call discard here directly,
  3646. * but otherwise we'd need to call it every free() */
  3647. ext4_discard_preallocations(inode);
  3648. ext4_free_blocks(handle, inode, NULL, ext4_ext_pblock(&newex),
  3649. ext4_ext_get_actual_len(&newex), fb_flags);
  3650. goto out2;
  3651. }
  3652. /* previous routine could use block we allocated */
  3653. newblock = ext4_ext_pblock(&newex);
  3654. allocated = ext4_ext_get_actual_len(&newex);
  3655. if (allocated > map->m_len)
  3656. allocated = map->m_len;
  3657. map->m_flags |= EXT4_MAP_NEW;
  3658. /*
  3659. * Update reserved blocks/metadata blocks after successful
  3660. * block allocation which had been deferred till now.
  3661. */
  3662. if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
  3663. unsigned int reserved_clusters;
  3664. /*
  3665. * Check how many clusters we had reserved this allocated range
  3666. */
  3667. reserved_clusters = get_reserved_cluster_alloc(inode,
  3668. map->m_lblk, allocated);
  3669. if (map->m_flags & EXT4_MAP_FROM_CLUSTER) {
  3670. if (reserved_clusters) {
  3671. /*
  3672. * We have clusters reserved for this range.
  3673. * But since we are not doing actual allocation
  3674. * and are simply using blocks from previously
  3675. * allocated cluster, we should release the
  3676. * reservation and not claim quota.
  3677. */
  3678. ext4_da_update_reserve_space(inode,
  3679. reserved_clusters, 0);
  3680. }
  3681. } else {
  3682. BUG_ON(allocated_clusters < reserved_clusters);
  3683. /* We will claim quota for all newly allocated blocks.*/
  3684. ext4_da_update_reserve_space(inode, allocated_clusters,
  3685. 1);
  3686. if (reserved_clusters < allocated_clusters) {
  3687. struct ext4_inode_info *ei = EXT4_I(inode);
  3688. int reservation = allocated_clusters -
  3689. reserved_clusters;
  3690. /*
  3691. * It seems we claimed few clusters outside of
  3692. * the range of this allocation. We should give
  3693. * it back to the reservation pool. This can
  3694. * happen in the following case:
  3695. *
  3696. * * Suppose s_cluster_ratio is 4 (i.e., each
  3697. * cluster has 4 blocks. Thus, the clusters
  3698. * are [0-3],[4-7],[8-11]...
  3699. * * First comes delayed allocation write for
  3700. * logical blocks 10 & 11. Since there were no
  3701. * previous delayed allocated blocks in the
  3702. * range [8-11], we would reserve 1 cluster
  3703. * for this write.
  3704. * * Next comes write for logical blocks 3 to 8.
  3705. * In this case, we will reserve 2 clusters
  3706. * (for [0-3] and [4-7]; and not for [8-11] as
  3707. * that range has a delayed allocated blocks.
  3708. * Thus total reserved clusters now becomes 3.
  3709. * * Now, during the delayed allocation writeout
  3710. * time, we will first write blocks [3-8] and
  3711. * allocate 3 clusters for writing these
  3712. * blocks. Also, we would claim all these
  3713. * three clusters above.
  3714. * * Now when we come here to writeout the
  3715. * blocks [10-11], we would expect to claim
  3716. * the reservation of 1 cluster we had made
  3717. * (and we would claim it since there are no
  3718. * more delayed allocated blocks in the range
  3719. * [8-11]. But our reserved cluster count had
  3720. * already gone to 0.
  3721. *
  3722. * Thus, at the step 4 above when we determine
  3723. * that there are still some unwritten delayed
  3724. * allocated blocks outside of our current
  3725. * block range, we should increment the
  3726. * reserved clusters count so that when the
  3727. * remaining blocks finally gets written, we
  3728. * could claim them.
  3729. */
  3730. dquot_reserve_block(inode,
  3731. EXT4_C2B(sbi, reservation));
  3732. spin_lock(&ei->i_block_reservation_lock);
  3733. ei->i_reserved_data_blocks += reservation;
  3734. spin_unlock(&ei->i_block_reservation_lock);
  3735. }
  3736. }
  3737. }
  3738. /*
  3739. * Cache the extent and update transaction to commit on fdatasync only
  3740. * when it is _not_ an uninitialized extent.
  3741. */
  3742. if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0) {
  3743. ext4_ext_put_in_cache(inode, map->m_lblk, allocated, newblock);
  3744. ext4_update_inode_fsync_trans(handle, inode, 1);
  3745. } else
  3746. ext4_update_inode_fsync_trans(handle, inode, 0);
  3747. out:
  3748. if (allocated > map->m_len)
  3749. allocated = map->m_len;
  3750. ext4_ext_show_leaf(inode, path);
  3751. map->m_flags |= EXT4_MAP_MAPPED;
  3752. map->m_pblk = newblock;
  3753. map->m_len = allocated;
  3754. out2:
  3755. if (path) {
  3756. ext4_ext_drop_refs(path);
  3757. kfree(path);
  3758. }
  3759. trace_ext4_ext_map_blocks_exit(inode, map->m_lblk,
  3760. newblock, map->m_len, err ? err : allocated);
  3761. return err ? err : allocated;
  3762. }
  3763. void ext4_ext_truncate(struct inode *inode)
  3764. {
  3765. struct address_space *mapping = inode->i_mapping;
  3766. struct super_block *sb = inode->i_sb;
  3767. ext4_lblk_t last_block;
  3768. handle_t *handle;
  3769. loff_t page_len;
  3770. int err = 0;
  3771. /*
  3772. * finish any pending end_io work so we won't run the risk of
  3773. * converting any truncated blocks to initialized later
  3774. */
  3775. ext4_flush_completed_IO(inode);
  3776. /*
  3777. * probably first extent we're gonna free will be last in block
  3778. */
  3779. err = ext4_writepage_trans_blocks(inode);
  3780. handle = ext4_journal_start(inode, err);
  3781. if (IS_ERR(handle))
  3782. return;
  3783. if (inode->i_size % PAGE_CACHE_SIZE != 0) {
  3784. page_len = PAGE_CACHE_SIZE -
  3785. (inode->i_size & (PAGE_CACHE_SIZE - 1));
  3786. err = ext4_discard_partial_page_buffers(handle,
  3787. mapping, inode->i_size, page_len, 0);
  3788. if (err)
  3789. goto out_stop;
  3790. }
  3791. if (ext4_orphan_add(handle, inode))
  3792. goto out_stop;
  3793. down_write(&EXT4_I(inode)->i_data_sem);
  3794. ext4_ext_invalidate_cache(inode);
  3795. ext4_discard_preallocations(inode);
  3796. /*
  3797. * TODO: optimization is possible here.
  3798. * Probably we need not scan at all,
  3799. * because page truncation is enough.
  3800. */
  3801. /* we have to know where to truncate from in crash case */
  3802. EXT4_I(inode)->i_disksize = inode->i_size;
  3803. ext4_mark_inode_dirty(handle, inode);
  3804. last_block = (inode->i_size + sb->s_blocksize - 1)
  3805. >> EXT4_BLOCK_SIZE_BITS(sb);
  3806. err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1);
  3807. /* In a multi-transaction truncate, we only make the final
  3808. * transaction synchronous.
  3809. */
  3810. if (IS_SYNC(inode))
  3811. ext4_handle_sync(handle);
  3812. up_write(&EXT4_I(inode)->i_data_sem);
  3813. out_stop:
  3814. /*
  3815. * If this was a simple ftruncate() and the file will remain alive,
  3816. * then we need to clear up the orphan record which we created above.
  3817. * However, if this was a real unlink then we were called by
  3818. * ext4_delete_inode(), and we allow that function to clean up the
  3819. * orphan info for us.
  3820. */
  3821. if (inode->i_nlink)
  3822. ext4_orphan_del(handle, inode);
  3823. inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
  3824. ext4_mark_inode_dirty(handle, inode);
  3825. ext4_journal_stop(handle);
  3826. }
  3827. static void ext4_falloc_update_inode(struct inode *inode,
  3828. int mode, loff_t new_size, int update_ctime)
  3829. {
  3830. struct timespec now;
  3831. if (update_ctime) {
  3832. now = current_fs_time(inode->i_sb);
  3833. if (!timespec_equal(&inode->i_ctime, &now))
  3834. inode->i_ctime = now;
  3835. }
  3836. /*
  3837. * Update only when preallocation was requested beyond
  3838. * the file size.
  3839. */
  3840. if (!(mode & FALLOC_FL_KEEP_SIZE)) {
  3841. if (new_size > i_size_read(inode))
  3842. i_size_write(inode, new_size);
  3843. if (new_size > EXT4_I(inode)->i_disksize)
  3844. ext4_update_i_disksize(inode, new_size);
  3845. } else {
  3846. /*
  3847. * Mark that we allocate beyond EOF so the subsequent truncate
  3848. * can proceed even if the new size is the same as i_size.
  3849. */
  3850. if (new_size > i_size_read(inode))
  3851. ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
  3852. }
  3853. }
  3854. /*
  3855. * preallocate space for a file. This implements ext4's fallocate file
  3856. * operation, which gets called from sys_fallocate system call.
  3857. * For block-mapped files, posix_fallocate should fall back to the method
  3858. * of writing zeroes to the required new blocks (the same behavior which is
  3859. * expected for file systems which do not support fallocate() system call).
  3860. */
  3861. long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
  3862. {
  3863. struct inode *inode = file->f_path.dentry->d_inode;
  3864. handle_t *handle;
  3865. loff_t new_size;
  3866. unsigned int max_blocks;
  3867. int ret = 0;
  3868. int ret2 = 0;
  3869. int retries = 0;
  3870. int flags;
  3871. struct ext4_map_blocks map;
  3872. unsigned int credits, blkbits = inode->i_blkbits;
  3873. /*
  3874. * currently supporting (pre)allocate mode for extent-based
  3875. * files _only_
  3876. */
  3877. if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
  3878. return -EOPNOTSUPP;
  3879. /* Return error if mode is not supported */
  3880. if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
  3881. return -EOPNOTSUPP;
  3882. if (mode & FALLOC_FL_PUNCH_HOLE)
  3883. return ext4_punch_hole(file, offset, len);
  3884. trace_ext4_fallocate_enter(inode, offset, len, mode);
  3885. map.m_lblk = offset >> blkbits;
  3886. /*
  3887. * We can't just convert len to max_blocks because
  3888. * If blocksize = 4096 offset = 3072 and len = 2048
  3889. */
  3890. max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
  3891. - map.m_lblk;
  3892. /*
  3893. * credits to insert 1 extent into extent tree
  3894. */
  3895. credits = ext4_chunk_trans_blocks(inode, max_blocks);
  3896. mutex_lock(&inode->i_mutex);
  3897. ret = inode_newsize_ok(inode, (len + offset));
  3898. if (ret) {
  3899. mutex_unlock(&inode->i_mutex);
  3900. trace_ext4_fallocate_exit(inode, offset, max_blocks, ret);
  3901. return ret;
  3902. }
  3903. flags = EXT4_GET_BLOCKS_CREATE_UNINIT_EXT;
  3904. if (mode & FALLOC_FL_KEEP_SIZE)
  3905. flags |= EXT4_GET_BLOCKS_KEEP_SIZE;
  3906. /*
  3907. * Don't normalize the request if it can fit in one extent so
  3908. * that it doesn't get unnecessarily split into multiple
  3909. * extents.
  3910. */
  3911. if (len <= EXT_UNINIT_MAX_LEN << blkbits)
  3912. flags |= EXT4_GET_BLOCKS_NO_NORMALIZE;
  3913. retry:
  3914. while (ret >= 0 && ret < max_blocks) {
  3915. map.m_lblk = map.m_lblk + ret;
  3916. map.m_len = max_blocks = max_blocks - ret;
  3917. handle = ext4_journal_start(inode, credits);
  3918. if (IS_ERR(handle)) {
  3919. ret = PTR_ERR(handle);
  3920. break;
  3921. }
  3922. ret = ext4_map_blocks(handle, inode, &map, flags);
  3923. if (ret <= 0) {
  3924. #ifdef EXT4FS_DEBUG
  3925. WARN_ON(ret <= 0);
  3926. printk(KERN_ERR "%s: ext4_ext_map_blocks "
  3927. "returned error inode#%lu, block=%u, "
  3928. "max_blocks=%u", __func__,
  3929. inode->i_ino, map.m_lblk, max_blocks);
  3930. #endif
  3931. ext4_mark_inode_dirty(handle, inode);
  3932. ret2 = ext4_journal_stop(handle);
  3933. break;
  3934. }
  3935. if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
  3936. blkbits) >> blkbits))
  3937. new_size = offset + len;
  3938. else
  3939. new_size = ((loff_t) map.m_lblk + ret) << blkbits;
  3940. ext4_falloc_update_inode(inode, mode, new_size,
  3941. (map.m_flags & EXT4_MAP_NEW));
  3942. ext4_mark_inode_dirty(handle, inode);
  3943. if ((file->f_flags & O_SYNC) && ret >= max_blocks)
  3944. ext4_handle_sync(handle);
  3945. ret2 = ext4_journal_stop(handle);
  3946. if (ret2)
  3947. break;
  3948. }
  3949. if (ret == -ENOSPC &&
  3950. ext4_should_retry_alloc(inode->i_sb, &retries)) {
  3951. ret = 0;
  3952. goto retry;
  3953. }
  3954. mutex_unlock(&inode->i_mutex);
  3955. trace_ext4_fallocate_exit(inode, offset, max_blocks,
  3956. ret > 0 ? ret2 : ret);
  3957. return ret > 0 ? ret2 : ret;
  3958. }
  3959. /*
  3960. * This function convert a range of blocks to written extents
  3961. * The caller of this function will pass the start offset and the size.
  3962. * all unwritten extents within this range will be converted to
  3963. * written extents.
  3964. *
  3965. * This function is called from the direct IO end io call back
  3966. * function, to convert the fallocated extents after IO is completed.
  3967. * Returns 0 on success.
  3968. */
  3969. int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset,
  3970. ssize_t len)
  3971. {
  3972. handle_t *handle;
  3973. unsigned int max_blocks;
  3974. int ret = 0;
  3975. int ret2 = 0;
  3976. struct ext4_map_blocks map;
  3977. unsigned int credits, blkbits = inode->i_blkbits;
  3978. map.m_lblk = offset >> blkbits;
  3979. /*
  3980. * We can't just convert len to max_blocks because
  3981. * If blocksize = 4096 offset = 3072 and len = 2048
  3982. */
  3983. max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) -
  3984. map.m_lblk);
  3985. /*
  3986. * credits to insert 1 extent into extent tree
  3987. */
  3988. credits = ext4_chunk_trans_blocks(inode, max_blocks);
  3989. while (ret >= 0 && ret < max_blocks) {
  3990. map.m_lblk += ret;
  3991. map.m_len = (max_blocks -= ret);
  3992. handle = ext4_journal_start(inode, credits);
  3993. if (IS_ERR(handle)) {
  3994. ret = PTR_ERR(handle);
  3995. break;
  3996. }
  3997. ret = ext4_map_blocks(handle, inode, &map,
  3998. EXT4_GET_BLOCKS_IO_CONVERT_EXT);
  3999. if (ret <= 0) {
  4000. WARN_ON(ret <= 0);
  4001. ext4_msg(inode->i_sb, KERN_ERR,
  4002. "%s:%d: inode #%lu: block %u: len %u: "
  4003. "ext4_ext_map_blocks returned %d",
  4004. __func__, __LINE__, inode->i_ino, map.m_lblk,
  4005. map.m_len, ret);
  4006. }
  4007. ext4_mark_inode_dirty(handle, inode);
  4008. ret2 = ext4_journal_stop(handle);
  4009. if (ret <= 0 || ret2 )
  4010. break;
  4011. }
  4012. return ret > 0 ? ret2 : ret;
  4013. }
  4014. /*
  4015. * Callback function called for each extent to gather FIEMAP information.
  4016. */
  4017. static int ext4_ext_fiemap_cb(struct inode *inode, ext4_lblk_t next,
  4018. struct ext4_ext_cache *newex, struct ext4_extent *ex,
  4019. void *data)
  4020. {
  4021. __u64 logical;
  4022. __u64 physical;
  4023. __u64 length;
  4024. __u32 flags = 0;
  4025. int ret = 0;
  4026. struct fiemap_extent_info *fieinfo = data;
  4027. unsigned char blksize_bits;
  4028. blksize_bits = inode->i_sb->s_blocksize_bits;
  4029. logical = (__u64)newex->ec_block << blksize_bits;
  4030. if (newex->ec_start == 0) {
  4031. /*
  4032. * No extent in extent-tree contains block @newex->ec_start,
  4033. * then the block may stay in 1)a hole or 2)delayed-extent.
  4034. *
  4035. * Holes or delayed-extents are processed as follows.
  4036. * 1. lookup dirty pages with specified range in pagecache.
  4037. * If no page is got, then there is no delayed-extent and
  4038. * return with EXT_CONTINUE.
  4039. * 2. find the 1st mapped buffer,
  4040. * 3. check if the mapped buffer is both in the request range
  4041. * and a delayed buffer. If not, there is no delayed-extent,
  4042. * then return.
  4043. * 4. a delayed-extent is found, the extent will be collected.
  4044. */
  4045. ext4_lblk_t end = 0;
  4046. pgoff_t last_offset;
  4047. pgoff_t offset;
  4048. pgoff_t index;
  4049. pgoff_t start_index = 0;
  4050. struct page **pages = NULL;
  4051. struct buffer_head *bh = NULL;
  4052. struct buffer_head *head = NULL;
  4053. unsigned int nr_pages = PAGE_SIZE / sizeof(struct page *);
  4054. pages = kmalloc(PAGE_SIZE, GFP_KERNEL);
  4055. if (pages == NULL)
  4056. return -ENOMEM;
  4057. offset = logical >> PAGE_SHIFT;
  4058. repeat:
  4059. last_offset = offset;
  4060. head = NULL;
  4061. ret = find_get_pages_tag(inode->i_mapping, &offset,
  4062. PAGECACHE_TAG_DIRTY, nr_pages, pages);
  4063. if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
  4064. /* First time, try to find a mapped buffer. */
  4065. if (ret == 0) {
  4066. out:
  4067. for (index = 0; index < ret; index++)
  4068. page_cache_release(pages[index]);
  4069. /* just a hole. */
  4070. kfree(pages);
  4071. return EXT_CONTINUE;
  4072. }
  4073. index = 0;
  4074. next_page:
  4075. /* Try to find the 1st mapped buffer. */
  4076. end = ((__u64)pages[index]->index << PAGE_SHIFT) >>
  4077. blksize_bits;
  4078. if (!page_has_buffers(pages[index]))
  4079. goto out;
  4080. head = page_buffers(pages[index]);
  4081. if (!head)
  4082. goto out;
  4083. index++;
  4084. bh = head;
  4085. do {
  4086. if (end >= newex->ec_block +
  4087. newex->ec_len)
  4088. /* The buffer is out of
  4089. * the request range.
  4090. */
  4091. goto out;
  4092. if (buffer_mapped(bh) &&
  4093. end >= newex->ec_block) {
  4094. start_index = index - 1;
  4095. /* get the 1st mapped buffer. */
  4096. goto found_mapped_buffer;
  4097. }
  4098. bh = bh->b_this_page;
  4099. end++;
  4100. } while (bh != head);
  4101. /* No mapped buffer in the range found in this page,
  4102. * We need to look up next page.
  4103. */
  4104. if (index >= ret) {
  4105. /* There is no page left, but we need to limit
  4106. * newex->ec_len.
  4107. */
  4108. newex->ec_len = end - newex->ec_block;
  4109. goto out;
  4110. }
  4111. goto next_page;
  4112. } else {
  4113. /*Find contiguous delayed buffers. */
  4114. if (ret > 0 && pages[0]->index == last_offset)
  4115. head = page_buffers(pages[0]);
  4116. bh = head;
  4117. index = 1;
  4118. start_index = 0;
  4119. }
  4120. found_mapped_buffer:
  4121. if (bh != NULL && buffer_delay(bh)) {
  4122. /* 1st or contiguous delayed buffer found. */
  4123. if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
  4124. /*
  4125. * 1st delayed buffer found, record
  4126. * the start of extent.
  4127. */
  4128. flags |= FIEMAP_EXTENT_DELALLOC;
  4129. newex->ec_block = end;
  4130. logical = (__u64)end << blksize_bits;
  4131. }
  4132. /* Find contiguous delayed buffers. */
  4133. do {
  4134. if (!buffer_delay(bh))
  4135. goto found_delayed_extent;
  4136. bh = bh->b_this_page;
  4137. end++;
  4138. } while (bh != head);
  4139. for (; index < ret; index++) {
  4140. if (!page_has_buffers(pages[index])) {
  4141. bh = NULL;
  4142. break;
  4143. }
  4144. head = page_buffers(pages[index]);
  4145. if (!head) {
  4146. bh = NULL;
  4147. break;
  4148. }
  4149. if (pages[index]->index !=
  4150. pages[start_index]->index + index
  4151. - start_index) {
  4152. /* Blocks are not contiguous. */
  4153. bh = NULL;
  4154. break;
  4155. }
  4156. bh = head;
  4157. do {
  4158. if (!buffer_delay(bh))
  4159. /* Delayed-extent ends. */
  4160. goto found_delayed_extent;
  4161. bh = bh->b_this_page;
  4162. end++;
  4163. } while (bh != head);
  4164. }
  4165. } else if (!(flags & FIEMAP_EXTENT_DELALLOC))
  4166. /* a hole found. */
  4167. goto out;
  4168. found_delayed_extent:
  4169. newex->ec_len = min(end - newex->ec_block,
  4170. (ext4_lblk_t)EXT_INIT_MAX_LEN);
  4171. if (ret == nr_pages && bh != NULL &&
  4172. newex->ec_len < EXT_INIT_MAX_LEN &&
  4173. buffer_delay(bh)) {
  4174. /* Have not collected an extent and continue. */
  4175. for (index = 0; index < ret; index++)
  4176. page_cache_release(pages[index]);
  4177. goto repeat;
  4178. }
  4179. for (index = 0; index < ret; index++)
  4180. page_cache_release(pages[index]);
  4181. kfree(pages);
  4182. }
  4183. physical = (__u64)newex->ec_start << blksize_bits;
  4184. length = (__u64)newex->ec_len << blksize_bits;
  4185. if (ex && ext4_ext_is_uninitialized(ex))
  4186. flags |= FIEMAP_EXTENT_UNWRITTEN;
  4187. if (next == EXT_MAX_BLOCKS)
  4188. flags |= FIEMAP_EXTENT_LAST;
  4189. ret = fiemap_fill_next_extent(fieinfo, logical, physical,
  4190. length, flags);
  4191. if (ret < 0)
  4192. return ret;
  4193. if (ret == 1)
  4194. return EXT_BREAK;
  4195. return EXT_CONTINUE;
  4196. }
  4197. /* fiemap flags we can handle specified here */
  4198. #define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
  4199. static int ext4_xattr_fiemap(struct inode *inode,
  4200. struct fiemap_extent_info *fieinfo)
  4201. {
  4202. __u64 physical = 0;
  4203. __u64 length;
  4204. __u32 flags = FIEMAP_EXTENT_LAST;
  4205. int blockbits = inode->i_sb->s_blocksize_bits;
  4206. int error = 0;
  4207. /* in-inode? */
  4208. if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
  4209. struct ext4_iloc iloc;
  4210. int offset; /* offset of xattr in inode */
  4211. error = ext4_get_inode_loc(inode, &iloc);
  4212. if (error)
  4213. return error;
  4214. physical = iloc.bh->b_blocknr << blockbits;
  4215. offset = EXT4_GOOD_OLD_INODE_SIZE +
  4216. EXT4_I(inode)->i_extra_isize;
  4217. physical += offset;
  4218. length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
  4219. flags |= FIEMAP_EXTENT_DATA_INLINE;
  4220. brelse(iloc.bh);
  4221. } else { /* external block */
  4222. physical = EXT4_I(inode)->i_file_acl << blockbits;
  4223. length = inode->i_sb->s_blocksize;
  4224. }
  4225. if (physical)
  4226. error = fiemap_fill_next_extent(fieinfo, 0, physical,
  4227. length, flags);
  4228. return (error < 0 ? error : 0);
  4229. }
  4230. /*
  4231. * ext4_ext_punch_hole
  4232. *
  4233. * Punches a hole of "length" bytes in a file starting
  4234. * at byte "offset"
  4235. *
  4236. * @inode: The inode of the file to punch a hole in
  4237. * @offset: The starting byte offset of the hole
  4238. * @length: The length of the hole
  4239. *
  4240. * Returns the number of blocks removed or negative on err
  4241. */
  4242. int ext4_ext_punch_hole(struct file *file, loff_t offset, loff_t length)
  4243. {
  4244. struct inode *inode = file->f_path.dentry->d_inode;
  4245. struct super_block *sb = inode->i_sb;
  4246. ext4_lblk_t first_block, stop_block;
  4247. struct address_space *mapping = inode->i_mapping;
  4248. handle_t *handle;
  4249. loff_t first_page, last_page, page_len;
  4250. loff_t first_page_offset, last_page_offset;
  4251. int credits, err = 0;
  4252. /* No need to punch hole beyond i_size */
  4253. if (offset >= inode->i_size)
  4254. return 0;
  4255. /*
  4256. * If the hole extends beyond i_size, set the hole
  4257. * to end after the page that contains i_size
  4258. */
  4259. if (offset + length > inode->i_size) {
  4260. length = inode->i_size +
  4261. PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
  4262. offset;
  4263. }
  4264. first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  4265. last_page = (offset + length) >> PAGE_CACHE_SHIFT;
  4266. first_page_offset = first_page << PAGE_CACHE_SHIFT;
  4267. last_page_offset = last_page << PAGE_CACHE_SHIFT;
  4268. /*
  4269. * Write out all dirty pages to avoid race conditions
  4270. * Then release them.
  4271. */
  4272. if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
  4273. err = filemap_write_and_wait_range(mapping,
  4274. offset, offset + length - 1);
  4275. if (err)
  4276. return err;
  4277. }
  4278. /* Now release the pages */
  4279. if (last_page_offset > first_page_offset) {
  4280. truncate_pagecache_range(inode, first_page_offset,
  4281. last_page_offset - 1);
  4282. }
  4283. /* finish any pending end_io work */
  4284. ext4_flush_completed_IO(inode);
  4285. credits = ext4_writepage_trans_blocks(inode);
  4286. handle = ext4_journal_start(inode, credits);
  4287. if (IS_ERR(handle))
  4288. return PTR_ERR(handle);
  4289. err = ext4_orphan_add(handle, inode);
  4290. if (err)
  4291. goto out;
  4292. /*
  4293. * Now we need to zero out the non-page-aligned data in the
  4294. * pages at the start and tail of the hole, and unmap the buffer
  4295. * heads for the block aligned regions of the page that were
  4296. * completely zeroed.
  4297. */
  4298. if (first_page > last_page) {
  4299. /*
  4300. * If the file space being truncated is contained within a page
  4301. * just zero out and unmap the middle of that page
  4302. */
  4303. err = ext4_discard_partial_page_buffers(handle,
  4304. mapping, offset, length, 0);
  4305. if (err)
  4306. goto out;
  4307. } else {
  4308. /*
  4309. * zero out and unmap the partial page that contains
  4310. * the start of the hole
  4311. */
  4312. page_len = first_page_offset - offset;
  4313. if (page_len > 0) {
  4314. err = ext4_discard_partial_page_buffers(handle, mapping,
  4315. offset, page_len, 0);
  4316. if (err)
  4317. goto out;
  4318. }
  4319. /*
  4320. * zero out and unmap the partial page that contains
  4321. * the end of the hole
  4322. */
  4323. page_len = offset + length - last_page_offset;
  4324. if (page_len > 0) {
  4325. err = ext4_discard_partial_page_buffers(handle, mapping,
  4326. last_page_offset, page_len, 0);
  4327. if (err)
  4328. goto out;
  4329. }
  4330. }
  4331. /*
  4332. * If i_size is contained in the last page, we need to
  4333. * unmap and zero the partial page after i_size
  4334. */
  4335. if (inode->i_size >> PAGE_CACHE_SHIFT == last_page &&
  4336. inode->i_size % PAGE_CACHE_SIZE != 0) {
  4337. page_len = PAGE_CACHE_SIZE -
  4338. (inode->i_size & (PAGE_CACHE_SIZE - 1));
  4339. if (page_len > 0) {
  4340. err = ext4_discard_partial_page_buffers(handle,
  4341. mapping, inode->i_size, page_len, 0);
  4342. if (err)
  4343. goto out;
  4344. }
  4345. }
  4346. first_block = (offset + sb->s_blocksize - 1) >>
  4347. EXT4_BLOCK_SIZE_BITS(sb);
  4348. stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
  4349. /* If there are no blocks to remove, return now */
  4350. if (first_block >= stop_block)
  4351. goto out;
  4352. down_write(&EXT4_I(inode)->i_data_sem);
  4353. ext4_ext_invalidate_cache(inode);
  4354. ext4_discard_preallocations(inode);
  4355. err = ext4_ext_remove_space(inode, first_block, stop_block - 1);
  4356. ext4_ext_invalidate_cache(inode);
  4357. ext4_discard_preallocations(inode);
  4358. if (IS_SYNC(inode))
  4359. ext4_handle_sync(handle);
  4360. up_write(&EXT4_I(inode)->i_data_sem);
  4361. out:
  4362. ext4_orphan_del(handle, inode);
  4363. inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
  4364. ext4_mark_inode_dirty(handle, inode);
  4365. ext4_journal_stop(handle);
  4366. return err;
  4367. }
  4368. int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  4369. __u64 start, __u64 len)
  4370. {
  4371. ext4_lblk_t start_blk;
  4372. int error = 0;
  4373. /* fallback to generic here if not in extents fmt */
  4374. if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
  4375. return generic_block_fiemap(inode, fieinfo, start, len,
  4376. ext4_get_block);
  4377. if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
  4378. return -EBADR;
  4379. if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
  4380. error = ext4_xattr_fiemap(inode, fieinfo);
  4381. } else {
  4382. ext4_lblk_t len_blks;
  4383. __u64 last_blk;
  4384. start_blk = start >> inode->i_sb->s_blocksize_bits;
  4385. last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits;
  4386. if (last_blk >= EXT_MAX_BLOCKS)
  4387. last_blk = EXT_MAX_BLOCKS-1;
  4388. len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1;
  4389. /*
  4390. * Walk the extent tree gathering extent information.
  4391. * ext4_ext_fiemap_cb will push extents back to user.
  4392. */
  4393. error = ext4_ext_walk_space(inode, start_blk, len_blks,
  4394. ext4_ext_fiemap_cb, fieinfo);
  4395. }
  4396. return error;
  4397. }