extents.c 131 KB

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