extents.c 132 KB

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