extents.c 136 KB

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