extents.c 130 KB

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