dir.c 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * dir.c
  5. *
  6. * Creates, reads, walks and deletes directory-nodes
  7. *
  8. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  9. *
  10. * Portions of this code from linux/fs/ext3/dir.c
  11. *
  12. * Copyright (C) 1992, 1993, 1994, 1995
  13. * Remy Card (card@masi.ibp.fr)
  14. * Laboratoire MASI - Institut Blaise pascal
  15. * Universite Pierre et Marie Curie (Paris VI)
  16. *
  17. * from
  18. *
  19. * linux/fs/minix/dir.c
  20. *
  21. * Copyright (C) 1991, 1992 Linux Torvalds
  22. *
  23. * This program is free software; you can redistribute it and/or
  24. * modify it under the terms of the GNU General Public
  25. * License as published by the Free Software Foundation; either
  26. * version 2 of the License, or (at your option) any later version.
  27. *
  28. * This program is distributed in the hope that it will be useful,
  29. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  31. * General Public License for more details.
  32. *
  33. * You should have received a copy of the GNU General Public
  34. * License along with this program; if not, write to the
  35. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  36. * Boston, MA 021110-1307, USA.
  37. */
  38. #include <linux/fs.h>
  39. #include <linux/types.h>
  40. #include <linux/slab.h>
  41. #include <linux/highmem.h>
  42. #include <linux/quotaops.h>
  43. #include <linux/sort.h>
  44. #include <cluster/masklog.h>
  45. #include "ocfs2.h"
  46. #include "alloc.h"
  47. #include "blockcheck.h"
  48. #include "dir.h"
  49. #include "dlmglue.h"
  50. #include "extent_map.h"
  51. #include "file.h"
  52. #include "inode.h"
  53. #include "journal.h"
  54. #include "namei.h"
  55. #include "suballoc.h"
  56. #include "super.h"
  57. #include "sysfile.h"
  58. #include "uptodate.h"
  59. #include "ocfs2_trace.h"
  60. #include "buffer_head_io.h"
  61. #define NAMEI_RA_CHUNKS 2
  62. #define NAMEI_RA_BLOCKS 4
  63. #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
  64. static unsigned char ocfs2_filetype_table[] = {
  65. DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
  66. };
  67. static int ocfs2_do_extend_dir(struct super_block *sb,
  68. handle_t *handle,
  69. struct inode *dir,
  70. struct buffer_head *parent_fe_bh,
  71. struct ocfs2_alloc_context *data_ac,
  72. struct ocfs2_alloc_context *meta_ac,
  73. struct buffer_head **new_bh);
  74. static int ocfs2_dir_indexed(struct inode *inode);
  75. /*
  76. * These are distinct checks because future versions of the file system will
  77. * want to have a trailing dirent structure independent of indexing.
  78. */
  79. static int ocfs2_supports_dir_trailer(struct inode *dir)
  80. {
  81. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  82. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  83. return 0;
  84. return ocfs2_meta_ecc(osb) || ocfs2_dir_indexed(dir);
  85. }
  86. /*
  87. * "new' here refers to the point at which we're creating a new
  88. * directory via "mkdir()", but also when we're expanding an inline
  89. * directory. In either case, we don't yet have the indexing bit set
  90. * on the directory, so the standard checks will fail in when metaecc
  91. * is turned off. Only directory-initialization type functions should
  92. * use this then. Everything else wants ocfs2_supports_dir_trailer()
  93. */
  94. static int ocfs2_new_dir_wants_trailer(struct inode *dir)
  95. {
  96. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  97. return ocfs2_meta_ecc(osb) ||
  98. ocfs2_supports_indexed_dirs(osb);
  99. }
  100. static inline unsigned int ocfs2_dir_trailer_blk_off(struct super_block *sb)
  101. {
  102. return sb->s_blocksize - sizeof(struct ocfs2_dir_block_trailer);
  103. }
  104. #define ocfs2_trailer_from_bh(_bh, _sb) ((struct ocfs2_dir_block_trailer *) ((_bh)->b_data + ocfs2_dir_trailer_blk_off((_sb))))
  105. /* XXX ocfs2_block_dqtrailer() is similar but not quite - can we make
  106. * them more consistent? */
  107. struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize,
  108. void *data)
  109. {
  110. char *p = data;
  111. p += blocksize - sizeof(struct ocfs2_dir_block_trailer);
  112. return (struct ocfs2_dir_block_trailer *)p;
  113. }
  114. /*
  115. * XXX: This is executed once on every dirent. We should consider optimizing
  116. * it.
  117. */
  118. static int ocfs2_skip_dir_trailer(struct inode *dir,
  119. struct ocfs2_dir_entry *de,
  120. unsigned long offset,
  121. unsigned long blklen)
  122. {
  123. unsigned long toff = blklen - sizeof(struct ocfs2_dir_block_trailer);
  124. if (!ocfs2_supports_dir_trailer(dir))
  125. return 0;
  126. if (offset != toff)
  127. return 0;
  128. return 1;
  129. }
  130. static void ocfs2_init_dir_trailer(struct inode *inode,
  131. struct buffer_head *bh, u16 rec_len)
  132. {
  133. struct ocfs2_dir_block_trailer *trailer;
  134. trailer = ocfs2_trailer_from_bh(bh, inode->i_sb);
  135. strcpy(trailer->db_signature, OCFS2_DIR_TRAILER_SIGNATURE);
  136. trailer->db_compat_rec_len =
  137. cpu_to_le16(sizeof(struct ocfs2_dir_block_trailer));
  138. trailer->db_parent_dinode = cpu_to_le64(OCFS2_I(inode)->ip_blkno);
  139. trailer->db_blkno = cpu_to_le64(bh->b_blocknr);
  140. trailer->db_free_rec_len = cpu_to_le16(rec_len);
  141. }
  142. /*
  143. * Link an unindexed block with a dir trailer structure into the index free
  144. * list. This function will modify dirdata_bh, but assumes you've already
  145. * passed it to the journal.
  146. */
  147. static int ocfs2_dx_dir_link_trailer(struct inode *dir, handle_t *handle,
  148. struct buffer_head *dx_root_bh,
  149. struct buffer_head *dirdata_bh)
  150. {
  151. int ret;
  152. struct ocfs2_dx_root_block *dx_root;
  153. struct ocfs2_dir_block_trailer *trailer;
  154. ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
  155. OCFS2_JOURNAL_ACCESS_WRITE);
  156. if (ret) {
  157. mlog_errno(ret);
  158. goto out;
  159. }
  160. trailer = ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb);
  161. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  162. trailer->db_free_next = dx_root->dr_free_blk;
  163. dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr);
  164. ocfs2_journal_dirty(handle, dx_root_bh);
  165. out:
  166. return ret;
  167. }
  168. static int ocfs2_free_list_at_root(struct ocfs2_dir_lookup_result *res)
  169. {
  170. return res->dl_prev_leaf_bh == NULL;
  171. }
  172. void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res)
  173. {
  174. brelse(res->dl_dx_root_bh);
  175. brelse(res->dl_leaf_bh);
  176. brelse(res->dl_dx_leaf_bh);
  177. brelse(res->dl_prev_leaf_bh);
  178. }
  179. static int ocfs2_dir_indexed(struct inode *inode)
  180. {
  181. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INDEXED_DIR_FL)
  182. return 1;
  183. return 0;
  184. }
  185. static inline int ocfs2_dx_root_inline(struct ocfs2_dx_root_block *dx_root)
  186. {
  187. return dx_root->dr_flags & OCFS2_DX_FLAG_INLINE;
  188. }
  189. /*
  190. * Hashing code adapted from ext3
  191. */
  192. #define DELTA 0x9E3779B9
  193. static void TEA_transform(__u32 buf[4], __u32 const in[])
  194. {
  195. __u32 sum = 0;
  196. __u32 b0 = buf[0], b1 = buf[1];
  197. __u32 a = in[0], b = in[1], c = in[2], d = in[3];
  198. int n = 16;
  199. do {
  200. sum += DELTA;
  201. b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b);
  202. b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d);
  203. } while (--n);
  204. buf[0] += b0;
  205. buf[1] += b1;
  206. }
  207. static void str2hashbuf(const char *msg, int len, __u32 *buf, int num)
  208. {
  209. __u32 pad, val;
  210. int i;
  211. pad = (__u32)len | ((__u32)len << 8);
  212. pad |= pad << 16;
  213. val = pad;
  214. if (len > num*4)
  215. len = num * 4;
  216. for (i = 0; i < len; i++) {
  217. if ((i % 4) == 0)
  218. val = pad;
  219. val = msg[i] + (val << 8);
  220. if ((i % 4) == 3) {
  221. *buf++ = val;
  222. val = pad;
  223. num--;
  224. }
  225. }
  226. if (--num >= 0)
  227. *buf++ = val;
  228. while (--num >= 0)
  229. *buf++ = pad;
  230. }
  231. static void ocfs2_dx_dir_name_hash(struct inode *dir, const char *name, int len,
  232. struct ocfs2_dx_hinfo *hinfo)
  233. {
  234. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  235. const char *p;
  236. __u32 in[8], buf[4];
  237. /*
  238. * XXX: Is this really necessary, if the index is never looked
  239. * at by readdir? Is a hash value of '0' a bad idea?
  240. */
  241. if ((len == 1 && !strncmp(".", name, 1)) ||
  242. (len == 2 && !strncmp("..", name, 2))) {
  243. buf[0] = buf[1] = 0;
  244. goto out;
  245. }
  246. #ifdef OCFS2_DEBUG_DX_DIRS
  247. /*
  248. * This makes it very easy to debug indexing problems. We
  249. * should never allow this to be selected without hand editing
  250. * this file though.
  251. */
  252. buf[0] = buf[1] = len;
  253. goto out;
  254. #endif
  255. memcpy(buf, osb->osb_dx_seed, sizeof(buf));
  256. p = name;
  257. while (len > 0) {
  258. str2hashbuf(p, len, in, 4);
  259. TEA_transform(buf, in);
  260. len -= 16;
  261. p += 16;
  262. }
  263. out:
  264. hinfo->major_hash = buf[0];
  265. hinfo->minor_hash = buf[1];
  266. }
  267. /*
  268. * bh passed here can be an inode block or a dir data block, depending
  269. * on the inode inline data flag.
  270. */
  271. static int ocfs2_check_dir_entry(struct inode * dir,
  272. struct ocfs2_dir_entry * de,
  273. struct buffer_head * bh,
  274. unsigned long offset)
  275. {
  276. const char *error_msg = NULL;
  277. const int rlen = le16_to_cpu(de->rec_len);
  278. if (unlikely(rlen < OCFS2_DIR_REC_LEN(1)))
  279. error_msg = "rec_len is smaller than minimal";
  280. else if (unlikely(rlen % 4 != 0))
  281. error_msg = "rec_len % 4 != 0";
  282. else if (unlikely(rlen < OCFS2_DIR_REC_LEN(de->name_len)))
  283. error_msg = "rec_len is too small for name_len";
  284. else if (unlikely(
  285. ((char *) de - bh->b_data) + rlen > dir->i_sb->s_blocksize))
  286. error_msg = "directory entry across blocks";
  287. if (unlikely(error_msg != NULL))
  288. mlog(ML_ERROR, "bad entry in directory #%llu: %s - "
  289. "offset=%lu, inode=%llu, rec_len=%d, name_len=%d\n",
  290. (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg,
  291. offset, (unsigned long long)le64_to_cpu(de->inode), rlen,
  292. de->name_len);
  293. return error_msg == NULL ? 1 : 0;
  294. }
  295. static inline int ocfs2_match(int len,
  296. const char * const name,
  297. struct ocfs2_dir_entry *de)
  298. {
  299. if (len != de->name_len)
  300. return 0;
  301. if (!de->inode)
  302. return 0;
  303. return !memcmp(name, de->name, len);
  304. }
  305. /*
  306. * Returns 0 if not found, -1 on failure, and 1 on success
  307. */
  308. static inline int ocfs2_search_dirblock(struct buffer_head *bh,
  309. struct inode *dir,
  310. const char *name, int namelen,
  311. unsigned long offset,
  312. char *first_de,
  313. unsigned int bytes,
  314. struct ocfs2_dir_entry **res_dir)
  315. {
  316. struct ocfs2_dir_entry *de;
  317. char *dlimit, *de_buf;
  318. int de_len;
  319. int ret = 0;
  320. de_buf = first_de;
  321. dlimit = de_buf + bytes;
  322. while (de_buf < dlimit) {
  323. /* this code is executed quadratically often */
  324. /* do minimal checking `by hand' */
  325. de = (struct ocfs2_dir_entry *) de_buf;
  326. if (de_buf + namelen <= dlimit &&
  327. ocfs2_match(namelen, name, de)) {
  328. /* found a match - just to be sure, do a full check */
  329. if (!ocfs2_check_dir_entry(dir, de, bh, offset)) {
  330. ret = -1;
  331. goto bail;
  332. }
  333. *res_dir = de;
  334. ret = 1;
  335. goto bail;
  336. }
  337. /* prevent looping on a bad block */
  338. de_len = le16_to_cpu(de->rec_len);
  339. if (de_len <= 0) {
  340. ret = -1;
  341. goto bail;
  342. }
  343. de_buf += de_len;
  344. offset += de_len;
  345. }
  346. bail:
  347. trace_ocfs2_search_dirblock(ret);
  348. return ret;
  349. }
  350. static struct buffer_head *ocfs2_find_entry_id(const char *name,
  351. int namelen,
  352. struct inode *dir,
  353. struct ocfs2_dir_entry **res_dir)
  354. {
  355. int ret, found;
  356. struct buffer_head *di_bh = NULL;
  357. struct ocfs2_dinode *di;
  358. struct ocfs2_inline_data *data;
  359. ret = ocfs2_read_inode_block(dir, &di_bh);
  360. if (ret) {
  361. mlog_errno(ret);
  362. goto out;
  363. }
  364. di = (struct ocfs2_dinode *)di_bh->b_data;
  365. data = &di->id2.i_data;
  366. found = ocfs2_search_dirblock(di_bh, dir, name, namelen, 0,
  367. data->id_data, i_size_read(dir), res_dir);
  368. if (found == 1)
  369. return di_bh;
  370. brelse(di_bh);
  371. out:
  372. return NULL;
  373. }
  374. static int ocfs2_validate_dir_block(struct super_block *sb,
  375. struct buffer_head *bh)
  376. {
  377. int rc;
  378. struct ocfs2_dir_block_trailer *trailer =
  379. ocfs2_trailer_from_bh(bh, sb);
  380. /*
  381. * We don't validate dirents here, that's handled
  382. * in-place when the code walks them.
  383. */
  384. trace_ocfs2_validate_dir_block((unsigned long long)bh->b_blocknr);
  385. BUG_ON(!buffer_uptodate(bh));
  386. /*
  387. * If the ecc fails, we return the error but otherwise
  388. * leave the filesystem running. We know any error is
  389. * local to this block.
  390. *
  391. * Note that we are safe to call this even if the directory
  392. * doesn't have a trailer. Filesystems without metaecc will do
  393. * nothing, and filesystems with it will have one.
  394. */
  395. rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &trailer->db_check);
  396. if (rc)
  397. mlog(ML_ERROR, "Checksum failed for dinode %llu\n",
  398. (unsigned long long)bh->b_blocknr);
  399. return rc;
  400. }
  401. /*
  402. * Validate a directory trailer.
  403. *
  404. * We check the trailer here rather than in ocfs2_validate_dir_block()
  405. * because that function doesn't have the inode to test.
  406. */
  407. static int ocfs2_check_dir_trailer(struct inode *dir, struct buffer_head *bh)
  408. {
  409. int rc = 0;
  410. struct ocfs2_dir_block_trailer *trailer;
  411. trailer = ocfs2_trailer_from_bh(bh, dir->i_sb);
  412. if (!OCFS2_IS_VALID_DIR_TRAILER(trailer)) {
  413. rc = -EINVAL;
  414. ocfs2_error(dir->i_sb,
  415. "Invalid dirblock #%llu: "
  416. "signature = %.*s\n",
  417. (unsigned long long)bh->b_blocknr, 7,
  418. trailer->db_signature);
  419. goto out;
  420. }
  421. if (le64_to_cpu(trailer->db_blkno) != bh->b_blocknr) {
  422. rc = -EINVAL;
  423. ocfs2_error(dir->i_sb,
  424. "Directory block #%llu has an invalid "
  425. "db_blkno of %llu",
  426. (unsigned long long)bh->b_blocknr,
  427. (unsigned long long)le64_to_cpu(trailer->db_blkno));
  428. goto out;
  429. }
  430. if (le64_to_cpu(trailer->db_parent_dinode) !=
  431. OCFS2_I(dir)->ip_blkno) {
  432. rc = -EINVAL;
  433. ocfs2_error(dir->i_sb,
  434. "Directory block #%llu on dinode "
  435. "#%llu has an invalid parent_dinode "
  436. "of %llu",
  437. (unsigned long long)bh->b_blocknr,
  438. (unsigned long long)OCFS2_I(dir)->ip_blkno,
  439. (unsigned long long)le64_to_cpu(trailer->db_blkno));
  440. goto out;
  441. }
  442. out:
  443. return rc;
  444. }
  445. /*
  446. * This function forces all errors to -EIO for consistency with its
  447. * predecessor, ocfs2_bread(). We haven't audited what returning the
  448. * real error codes would do to callers. We log the real codes with
  449. * mlog_errno() before we squash them.
  450. */
  451. static int ocfs2_read_dir_block(struct inode *inode, u64 v_block,
  452. struct buffer_head **bh, int flags)
  453. {
  454. int rc = 0;
  455. struct buffer_head *tmp = *bh;
  456. rc = ocfs2_read_virt_blocks(inode, v_block, 1, &tmp, flags,
  457. ocfs2_validate_dir_block);
  458. if (rc) {
  459. mlog_errno(rc);
  460. goto out;
  461. }
  462. if (!(flags & OCFS2_BH_READAHEAD) &&
  463. ocfs2_supports_dir_trailer(inode)) {
  464. rc = ocfs2_check_dir_trailer(inode, tmp);
  465. if (rc) {
  466. if (!*bh)
  467. brelse(tmp);
  468. mlog_errno(rc);
  469. goto out;
  470. }
  471. }
  472. /* If ocfs2_read_virt_blocks() got us a new bh, pass it up. */
  473. if (!*bh)
  474. *bh = tmp;
  475. out:
  476. return rc ? -EIO : 0;
  477. }
  478. /*
  479. * Read the block at 'phys' which belongs to this directory
  480. * inode. This function does no virtual->physical block translation -
  481. * what's passed in is assumed to be a valid directory block.
  482. */
  483. static int ocfs2_read_dir_block_direct(struct inode *dir, u64 phys,
  484. struct buffer_head **bh)
  485. {
  486. int ret;
  487. struct buffer_head *tmp = *bh;
  488. ret = ocfs2_read_block(INODE_CACHE(dir), phys, &tmp,
  489. ocfs2_validate_dir_block);
  490. if (ret) {
  491. mlog_errno(ret);
  492. goto out;
  493. }
  494. if (ocfs2_supports_dir_trailer(dir)) {
  495. ret = ocfs2_check_dir_trailer(dir, tmp);
  496. if (ret) {
  497. if (!*bh)
  498. brelse(tmp);
  499. mlog_errno(ret);
  500. goto out;
  501. }
  502. }
  503. if (!ret && !*bh)
  504. *bh = tmp;
  505. out:
  506. return ret;
  507. }
  508. static int ocfs2_validate_dx_root(struct super_block *sb,
  509. struct buffer_head *bh)
  510. {
  511. int ret;
  512. struct ocfs2_dx_root_block *dx_root;
  513. BUG_ON(!buffer_uptodate(bh));
  514. dx_root = (struct ocfs2_dx_root_block *) bh->b_data;
  515. ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_root->dr_check);
  516. if (ret) {
  517. mlog(ML_ERROR,
  518. "Checksum failed for dir index root block %llu\n",
  519. (unsigned long long)bh->b_blocknr);
  520. return ret;
  521. }
  522. if (!OCFS2_IS_VALID_DX_ROOT(dx_root)) {
  523. ocfs2_error(sb,
  524. "Dir Index Root # %llu has bad signature %.*s",
  525. (unsigned long long)le64_to_cpu(dx_root->dr_blkno),
  526. 7, dx_root->dr_signature);
  527. return -EINVAL;
  528. }
  529. return 0;
  530. }
  531. static int ocfs2_read_dx_root(struct inode *dir, struct ocfs2_dinode *di,
  532. struct buffer_head **dx_root_bh)
  533. {
  534. int ret;
  535. u64 blkno = le64_to_cpu(di->i_dx_root);
  536. struct buffer_head *tmp = *dx_root_bh;
  537. ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp,
  538. ocfs2_validate_dx_root);
  539. /* If ocfs2_read_block() got us a new bh, pass it up. */
  540. if (!ret && !*dx_root_bh)
  541. *dx_root_bh = tmp;
  542. return ret;
  543. }
  544. static int ocfs2_validate_dx_leaf(struct super_block *sb,
  545. struct buffer_head *bh)
  546. {
  547. int ret;
  548. struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)bh->b_data;
  549. BUG_ON(!buffer_uptodate(bh));
  550. ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_leaf->dl_check);
  551. if (ret) {
  552. mlog(ML_ERROR,
  553. "Checksum failed for dir index leaf block %llu\n",
  554. (unsigned long long)bh->b_blocknr);
  555. return ret;
  556. }
  557. if (!OCFS2_IS_VALID_DX_LEAF(dx_leaf)) {
  558. ocfs2_error(sb, "Dir Index Leaf has bad signature %.*s",
  559. 7, dx_leaf->dl_signature);
  560. return -EROFS;
  561. }
  562. return 0;
  563. }
  564. static int ocfs2_read_dx_leaf(struct inode *dir, u64 blkno,
  565. struct buffer_head **dx_leaf_bh)
  566. {
  567. int ret;
  568. struct buffer_head *tmp = *dx_leaf_bh;
  569. ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp,
  570. ocfs2_validate_dx_leaf);
  571. /* If ocfs2_read_block() got us a new bh, pass it up. */
  572. if (!ret && !*dx_leaf_bh)
  573. *dx_leaf_bh = tmp;
  574. return ret;
  575. }
  576. /*
  577. * Read a series of dx_leaf blocks. This expects all buffer_head
  578. * pointers to be NULL on function entry.
  579. */
  580. static int ocfs2_read_dx_leaves(struct inode *dir, u64 start, int num,
  581. struct buffer_head **dx_leaf_bhs)
  582. {
  583. int ret;
  584. ret = ocfs2_read_blocks(INODE_CACHE(dir), start, num, dx_leaf_bhs, 0,
  585. ocfs2_validate_dx_leaf);
  586. if (ret)
  587. mlog_errno(ret);
  588. return ret;
  589. }
  590. static struct buffer_head *ocfs2_find_entry_el(const char *name, int namelen,
  591. struct inode *dir,
  592. struct ocfs2_dir_entry **res_dir)
  593. {
  594. struct super_block *sb;
  595. struct buffer_head *bh_use[NAMEI_RA_SIZE];
  596. struct buffer_head *bh, *ret = NULL;
  597. unsigned long start, block, b;
  598. int ra_max = 0; /* Number of bh's in the readahead
  599. buffer, bh_use[] */
  600. int ra_ptr = 0; /* Current index into readahead
  601. buffer */
  602. int num = 0;
  603. int nblocks, i, err;
  604. sb = dir->i_sb;
  605. nblocks = i_size_read(dir) >> sb->s_blocksize_bits;
  606. start = OCFS2_I(dir)->ip_dir_start_lookup;
  607. if (start >= nblocks)
  608. start = 0;
  609. block = start;
  610. restart:
  611. do {
  612. /*
  613. * We deal with the read-ahead logic here.
  614. */
  615. if (ra_ptr >= ra_max) {
  616. /* Refill the readahead buffer */
  617. ra_ptr = 0;
  618. b = block;
  619. for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
  620. /*
  621. * Terminate if we reach the end of the
  622. * directory and must wrap, or if our
  623. * search has finished at this block.
  624. */
  625. if (b >= nblocks || (num && block == start)) {
  626. bh_use[ra_max] = NULL;
  627. break;
  628. }
  629. num++;
  630. bh = NULL;
  631. err = ocfs2_read_dir_block(dir, b++, &bh,
  632. OCFS2_BH_READAHEAD);
  633. bh_use[ra_max] = bh;
  634. }
  635. }
  636. if ((bh = bh_use[ra_ptr++]) == NULL)
  637. goto next;
  638. if (ocfs2_read_dir_block(dir, block, &bh, 0)) {
  639. /* read error, skip block & hope for the best.
  640. * ocfs2_read_dir_block() has released the bh. */
  641. ocfs2_error(dir->i_sb, "reading directory %llu, "
  642. "offset %lu\n",
  643. (unsigned long long)OCFS2_I(dir)->ip_blkno,
  644. block);
  645. goto next;
  646. }
  647. i = ocfs2_search_dirblock(bh, dir, name, namelen,
  648. block << sb->s_blocksize_bits,
  649. bh->b_data, sb->s_blocksize,
  650. res_dir);
  651. if (i == 1) {
  652. OCFS2_I(dir)->ip_dir_start_lookup = block;
  653. ret = bh;
  654. goto cleanup_and_exit;
  655. } else {
  656. brelse(bh);
  657. if (i < 0)
  658. goto cleanup_and_exit;
  659. }
  660. next:
  661. if (++block >= nblocks)
  662. block = 0;
  663. } while (block != start);
  664. /*
  665. * If the directory has grown while we were searching, then
  666. * search the last part of the directory before giving up.
  667. */
  668. block = nblocks;
  669. nblocks = i_size_read(dir) >> sb->s_blocksize_bits;
  670. if (block < nblocks) {
  671. start = 0;
  672. goto restart;
  673. }
  674. cleanup_and_exit:
  675. /* Clean up the read-ahead blocks */
  676. for (; ra_ptr < ra_max; ra_ptr++)
  677. brelse(bh_use[ra_ptr]);
  678. trace_ocfs2_find_entry_el(ret);
  679. return ret;
  680. }
  681. static int ocfs2_dx_dir_lookup_rec(struct inode *inode,
  682. struct ocfs2_extent_list *el,
  683. u32 major_hash,
  684. u32 *ret_cpos,
  685. u64 *ret_phys_blkno,
  686. unsigned int *ret_clen)
  687. {
  688. int ret = 0, i, found;
  689. struct buffer_head *eb_bh = NULL;
  690. struct ocfs2_extent_block *eb;
  691. struct ocfs2_extent_rec *rec = NULL;
  692. if (el->l_tree_depth) {
  693. ret = ocfs2_find_leaf(INODE_CACHE(inode), el, major_hash,
  694. &eb_bh);
  695. if (ret) {
  696. mlog_errno(ret);
  697. goto out;
  698. }
  699. eb = (struct ocfs2_extent_block *) eb_bh->b_data;
  700. el = &eb->h_list;
  701. if (el->l_tree_depth) {
  702. ocfs2_error(inode->i_sb,
  703. "Inode %lu has non zero tree depth in "
  704. "btree tree block %llu\n", inode->i_ino,
  705. (unsigned long long)eb_bh->b_blocknr);
  706. ret = -EROFS;
  707. goto out;
  708. }
  709. }
  710. found = 0;
  711. for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
  712. rec = &el->l_recs[i];
  713. if (le32_to_cpu(rec->e_cpos) <= major_hash) {
  714. found = 1;
  715. break;
  716. }
  717. }
  718. if (!found) {
  719. ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
  720. "record (%u, %u, 0) in btree", inode->i_ino,
  721. le32_to_cpu(rec->e_cpos),
  722. ocfs2_rec_clusters(el, rec));
  723. ret = -EROFS;
  724. goto out;
  725. }
  726. if (ret_phys_blkno)
  727. *ret_phys_blkno = le64_to_cpu(rec->e_blkno);
  728. if (ret_cpos)
  729. *ret_cpos = le32_to_cpu(rec->e_cpos);
  730. if (ret_clen)
  731. *ret_clen = le16_to_cpu(rec->e_leaf_clusters);
  732. out:
  733. brelse(eb_bh);
  734. return ret;
  735. }
  736. /*
  737. * Returns the block index, from the start of the cluster which this
  738. * hash belongs too.
  739. */
  740. static inline unsigned int __ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb,
  741. u32 minor_hash)
  742. {
  743. return minor_hash & osb->osb_dx_mask;
  744. }
  745. static inline unsigned int ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb,
  746. struct ocfs2_dx_hinfo *hinfo)
  747. {
  748. return __ocfs2_dx_dir_hash_idx(osb, hinfo->minor_hash);
  749. }
  750. static int ocfs2_dx_dir_lookup(struct inode *inode,
  751. struct ocfs2_extent_list *el,
  752. struct ocfs2_dx_hinfo *hinfo,
  753. u32 *ret_cpos,
  754. u64 *ret_phys_blkno)
  755. {
  756. int ret = 0;
  757. unsigned int cend, uninitialized_var(clen);
  758. u32 uninitialized_var(cpos);
  759. u64 uninitialized_var(blkno);
  760. u32 name_hash = hinfo->major_hash;
  761. ret = ocfs2_dx_dir_lookup_rec(inode, el, name_hash, &cpos, &blkno,
  762. &clen);
  763. if (ret) {
  764. mlog_errno(ret);
  765. goto out;
  766. }
  767. cend = cpos + clen;
  768. if (name_hash >= cend) {
  769. /* We want the last cluster */
  770. blkno += ocfs2_clusters_to_blocks(inode->i_sb, clen - 1);
  771. cpos += clen - 1;
  772. } else {
  773. blkno += ocfs2_clusters_to_blocks(inode->i_sb,
  774. name_hash - cpos);
  775. cpos = name_hash;
  776. }
  777. /*
  778. * We now have the cluster which should hold our entry. To
  779. * find the exact block from the start of the cluster to
  780. * search, we take the lower bits of the hash.
  781. */
  782. blkno += ocfs2_dx_dir_hash_idx(OCFS2_SB(inode->i_sb), hinfo);
  783. if (ret_phys_blkno)
  784. *ret_phys_blkno = blkno;
  785. if (ret_cpos)
  786. *ret_cpos = cpos;
  787. out:
  788. return ret;
  789. }
  790. static int ocfs2_dx_dir_search(const char *name, int namelen,
  791. struct inode *dir,
  792. struct ocfs2_dx_root_block *dx_root,
  793. struct ocfs2_dir_lookup_result *res)
  794. {
  795. int ret, i, found;
  796. u64 uninitialized_var(phys);
  797. struct buffer_head *dx_leaf_bh = NULL;
  798. struct ocfs2_dx_leaf *dx_leaf;
  799. struct ocfs2_dx_entry *dx_entry = NULL;
  800. struct buffer_head *dir_ent_bh = NULL;
  801. struct ocfs2_dir_entry *dir_ent = NULL;
  802. struct ocfs2_dx_hinfo *hinfo = &res->dl_hinfo;
  803. struct ocfs2_extent_list *dr_el;
  804. struct ocfs2_dx_entry_list *entry_list;
  805. ocfs2_dx_dir_name_hash(dir, name, namelen, &res->dl_hinfo);
  806. if (ocfs2_dx_root_inline(dx_root)) {
  807. entry_list = &dx_root->dr_entries;
  808. goto search;
  809. }
  810. dr_el = &dx_root->dr_list;
  811. ret = ocfs2_dx_dir_lookup(dir, dr_el, hinfo, NULL, &phys);
  812. if (ret) {
  813. mlog_errno(ret);
  814. goto out;
  815. }
  816. trace_ocfs2_dx_dir_search((unsigned long long)OCFS2_I(dir)->ip_blkno,
  817. namelen, name, hinfo->major_hash,
  818. hinfo->minor_hash, (unsigned long long)phys);
  819. ret = ocfs2_read_dx_leaf(dir, phys, &dx_leaf_bh);
  820. if (ret) {
  821. mlog_errno(ret);
  822. goto out;
  823. }
  824. dx_leaf = (struct ocfs2_dx_leaf *) dx_leaf_bh->b_data;
  825. trace_ocfs2_dx_dir_search_leaf_info(
  826. le16_to_cpu(dx_leaf->dl_list.de_num_used),
  827. le16_to_cpu(dx_leaf->dl_list.de_count));
  828. entry_list = &dx_leaf->dl_list;
  829. search:
  830. /*
  831. * Empty leaf is legal, so no need to check for that.
  832. */
  833. found = 0;
  834. for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) {
  835. dx_entry = &entry_list->de_entries[i];
  836. if (hinfo->major_hash != le32_to_cpu(dx_entry->dx_major_hash)
  837. || hinfo->minor_hash != le32_to_cpu(dx_entry->dx_minor_hash))
  838. continue;
  839. /*
  840. * Search unindexed leaf block now. We're not
  841. * guaranteed to find anything.
  842. */
  843. ret = ocfs2_read_dir_block_direct(dir,
  844. le64_to_cpu(dx_entry->dx_dirent_blk),
  845. &dir_ent_bh);
  846. if (ret) {
  847. mlog_errno(ret);
  848. goto out;
  849. }
  850. /*
  851. * XXX: We should check the unindexed block here,
  852. * before using it.
  853. */
  854. found = ocfs2_search_dirblock(dir_ent_bh, dir, name, namelen,
  855. 0, dir_ent_bh->b_data,
  856. dir->i_sb->s_blocksize, &dir_ent);
  857. if (found == 1)
  858. break;
  859. if (found == -1) {
  860. /* This means we found a bad directory entry. */
  861. ret = -EIO;
  862. mlog_errno(ret);
  863. goto out;
  864. }
  865. brelse(dir_ent_bh);
  866. dir_ent_bh = NULL;
  867. }
  868. if (found <= 0) {
  869. ret = -ENOENT;
  870. goto out;
  871. }
  872. res->dl_leaf_bh = dir_ent_bh;
  873. res->dl_entry = dir_ent;
  874. res->dl_dx_leaf_bh = dx_leaf_bh;
  875. res->dl_dx_entry = dx_entry;
  876. ret = 0;
  877. out:
  878. if (ret) {
  879. brelse(dx_leaf_bh);
  880. brelse(dir_ent_bh);
  881. }
  882. return ret;
  883. }
  884. static int ocfs2_find_entry_dx(const char *name, int namelen,
  885. struct inode *dir,
  886. struct ocfs2_dir_lookup_result *lookup)
  887. {
  888. int ret;
  889. struct buffer_head *di_bh = NULL;
  890. struct ocfs2_dinode *di;
  891. struct buffer_head *dx_root_bh = NULL;
  892. struct ocfs2_dx_root_block *dx_root;
  893. ret = ocfs2_read_inode_block(dir, &di_bh);
  894. if (ret) {
  895. mlog_errno(ret);
  896. goto out;
  897. }
  898. di = (struct ocfs2_dinode *)di_bh->b_data;
  899. ret = ocfs2_read_dx_root(dir, di, &dx_root_bh);
  900. if (ret) {
  901. mlog_errno(ret);
  902. goto out;
  903. }
  904. dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
  905. ret = ocfs2_dx_dir_search(name, namelen, dir, dx_root, lookup);
  906. if (ret) {
  907. if (ret != -ENOENT)
  908. mlog_errno(ret);
  909. goto out;
  910. }
  911. lookup->dl_dx_root_bh = dx_root_bh;
  912. dx_root_bh = NULL;
  913. out:
  914. brelse(di_bh);
  915. brelse(dx_root_bh);
  916. return ret;
  917. }
  918. /*
  919. * Try to find an entry of the provided name within 'dir'.
  920. *
  921. * If nothing was found, -ENOENT is returned. Otherwise, zero is
  922. * returned and the struct 'res' will contain information useful to
  923. * other directory manipulation functions.
  924. *
  925. * Caller can NOT assume anything about the contents of the
  926. * buffer_heads - they are passed back only so that it can be passed
  927. * into any one of the manipulation functions (add entry, delete
  928. * entry, etc). As an example, bh in the extent directory case is a
  929. * data block, in the inline-data case it actually points to an inode,
  930. * in the indexed directory case, multiple buffers are involved.
  931. */
  932. int ocfs2_find_entry(const char *name, int namelen,
  933. struct inode *dir, struct ocfs2_dir_lookup_result *lookup)
  934. {
  935. struct buffer_head *bh;
  936. struct ocfs2_dir_entry *res_dir = NULL;
  937. if (ocfs2_dir_indexed(dir))
  938. return ocfs2_find_entry_dx(name, namelen, dir, lookup);
  939. /*
  940. * The unindexed dir code only uses part of the lookup
  941. * structure, so there's no reason to push it down further
  942. * than this.
  943. */
  944. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  945. bh = ocfs2_find_entry_id(name, namelen, dir, &res_dir);
  946. else
  947. bh = ocfs2_find_entry_el(name, namelen, dir, &res_dir);
  948. if (bh == NULL)
  949. return -ENOENT;
  950. lookup->dl_leaf_bh = bh;
  951. lookup->dl_entry = res_dir;
  952. return 0;
  953. }
  954. /*
  955. * Update inode number and type of a previously found directory entry.
  956. */
  957. int ocfs2_update_entry(struct inode *dir, handle_t *handle,
  958. struct ocfs2_dir_lookup_result *res,
  959. struct inode *new_entry_inode)
  960. {
  961. int ret;
  962. ocfs2_journal_access_func access = ocfs2_journal_access_db;
  963. struct ocfs2_dir_entry *de = res->dl_entry;
  964. struct buffer_head *de_bh = res->dl_leaf_bh;
  965. /*
  966. * The same code works fine for both inline-data and extent
  967. * based directories, so no need to split this up. The only
  968. * difference is the journal_access function.
  969. */
  970. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  971. access = ocfs2_journal_access_di;
  972. ret = access(handle, INODE_CACHE(dir), de_bh,
  973. OCFS2_JOURNAL_ACCESS_WRITE);
  974. if (ret) {
  975. mlog_errno(ret);
  976. goto out;
  977. }
  978. de->inode = cpu_to_le64(OCFS2_I(new_entry_inode)->ip_blkno);
  979. ocfs2_set_de_type(de, new_entry_inode->i_mode);
  980. ocfs2_journal_dirty(handle, de_bh);
  981. out:
  982. return ret;
  983. }
  984. /*
  985. * __ocfs2_delete_entry deletes a directory entry by merging it with the
  986. * previous entry
  987. */
  988. static int __ocfs2_delete_entry(handle_t *handle, struct inode *dir,
  989. struct ocfs2_dir_entry *de_del,
  990. struct buffer_head *bh, char *first_de,
  991. unsigned int bytes)
  992. {
  993. struct ocfs2_dir_entry *de, *pde;
  994. int i, status = -ENOENT;
  995. ocfs2_journal_access_func access = ocfs2_journal_access_db;
  996. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  997. access = ocfs2_journal_access_di;
  998. i = 0;
  999. pde = NULL;
  1000. de = (struct ocfs2_dir_entry *) first_de;
  1001. while (i < bytes) {
  1002. if (!ocfs2_check_dir_entry(dir, de, bh, i)) {
  1003. status = -EIO;
  1004. mlog_errno(status);
  1005. goto bail;
  1006. }
  1007. if (de == de_del) {
  1008. status = access(handle, INODE_CACHE(dir), bh,
  1009. OCFS2_JOURNAL_ACCESS_WRITE);
  1010. if (status < 0) {
  1011. status = -EIO;
  1012. mlog_errno(status);
  1013. goto bail;
  1014. }
  1015. if (pde)
  1016. le16_add_cpu(&pde->rec_len,
  1017. le16_to_cpu(de->rec_len));
  1018. de->inode = 0;
  1019. dir->i_version++;
  1020. ocfs2_journal_dirty(handle, bh);
  1021. goto bail;
  1022. }
  1023. i += le16_to_cpu(de->rec_len);
  1024. pde = de;
  1025. de = (struct ocfs2_dir_entry *)((char *)de + le16_to_cpu(de->rec_len));
  1026. }
  1027. bail:
  1028. return status;
  1029. }
  1030. static unsigned int ocfs2_figure_dirent_hole(struct ocfs2_dir_entry *de)
  1031. {
  1032. unsigned int hole;
  1033. if (le64_to_cpu(de->inode) == 0)
  1034. hole = le16_to_cpu(de->rec_len);
  1035. else
  1036. hole = le16_to_cpu(de->rec_len) -
  1037. OCFS2_DIR_REC_LEN(de->name_len);
  1038. return hole;
  1039. }
  1040. static int ocfs2_find_max_rec_len(struct super_block *sb,
  1041. struct buffer_head *dirblock_bh)
  1042. {
  1043. int size, this_hole, largest_hole = 0;
  1044. char *trailer, *de_buf, *limit, *start = dirblock_bh->b_data;
  1045. struct ocfs2_dir_entry *de;
  1046. trailer = (char *)ocfs2_trailer_from_bh(dirblock_bh, sb);
  1047. size = ocfs2_dir_trailer_blk_off(sb);
  1048. limit = start + size;
  1049. de_buf = start;
  1050. de = (struct ocfs2_dir_entry *)de_buf;
  1051. do {
  1052. if (de_buf != trailer) {
  1053. this_hole = ocfs2_figure_dirent_hole(de);
  1054. if (this_hole > largest_hole)
  1055. largest_hole = this_hole;
  1056. }
  1057. de_buf += le16_to_cpu(de->rec_len);
  1058. de = (struct ocfs2_dir_entry *)de_buf;
  1059. } while (de_buf < limit);
  1060. if (largest_hole >= OCFS2_DIR_MIN_REC_LEN)
  1061. return largest_hole;
  1062. return 0;
  1063. }
  1064. static void ocfs2_dx_list_remove_entry(struct ocfs2_dx_entry_list *entry_list,
  1065. int index)
  1066. {
  1067. int num_used = le16_to_cpu(entry_list->de_num_used);
  1068. if (num_used == 1 || index == (num_used - 1))
  1069. goto clear;
  1070. memmove(&entry_list->de_entries[index],
  1071. &entry_list->de_entries[index + 1],
  1072. (num_used - index - 1)*sizeof(struct ocfs2_dx_entry));
  1073. clear:
  1074. num_used--;
  1075. memset(&entry_list->de_entries[num_used], 0,
  1076. sizeof(struct ocfs2_dx_entry));
  1077. entry_list->de_num_used = cpu_to_le16(num_used);
  1078. }
  1079. static int ocfs2_delete_entry_dx(handle_t *handle, struct inode *dir,
  1080. struct ocfs2_dir_lookup_result *lookup)
  1081. {
  1082. int ret, index, max_rec_len, add_to_free_list = 0;
  1083. struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh;
  1084. struct buffer_head *leaf_bh = lookup->dl_leaf_bh;
  1085. struct ocfs2_dx_leaf *dx_leaf;
  1086. struct ocfs2_dx_entry *dx_entry = lookup->dl_dx_entry;
  1087. struct ocfs2_dir_block_trailer *trailer;
  1088. struct ocfs2_dx_root_block *dx_root;
  1089. struct ocfs2_dx_entry_list *entry_list;
  1090. /*
  1091. * This function gets a bit messy because we might have to
  1092. * modify the root block, regardless of whether the indexed
  1093. * entries are stored inline.
  1094. */
  1095. /*
  1096. * *Only* set 'entry_list' here, based on where we're looking
  1097. * for the indexed entries. Later, we might still want to
  1098. * journal both blocks, based on free list state.
  1099. */
  1100. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  1101. if (ocfs2_dx_root_inline(dx_root)) {
  1102. entry_list = &dx_root->dr_entries;
  1103. } else {
  1104. dx_leaf = (struct ocfs2_dx_leaf *) lookup->dl_dx_leaf_bh->b_data;
  1105. entry_list = &dx_leaf->dl_list;
  1106. }
  1107. /* Neither of these are a disk corruption - that should have
  1108. * been caught by lookup, before we got here. */
  1109. BUG_ON(le16_to_cpu(entry_list->de_count) <= 0);
  1110. BUG_ON(le16_to_cpu(entry_list->de_num_used) <= 0);
  1111. index = (char *)dx_entry - (char *)entry_list->de_entries;
  1112. index /= sizeof(*dx_entry);
  1113. if (index >= le16_to_cpu(entry_list->de_num_used)) {
  1114. mlog(ML_ERROR, "Dir %llu: Bad dx_entry ptr idx %d, (%p, %p)\n",
  1115. (unsigned long long)OCFS2_I(dir)->ip_blkno, index,
  1116. entry_list, dx_entry);
  1117. return -EIO;
  1118. }
  1119. /*
  1120. * We know that removal of this dirent will leave enough room
  1121. * for a new one, so add this block to the free list if it
  1122. * isn't already there.
  1123. */
  1124. trailer = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb);
  1125. if (trailer->db_free_rec_len == 0)
  1126. add_to_free_list = 1;
  1127. /*
  1128. * Add the block holding our index into the journal before
  1129. * removing the unindexed entry. If we get an error return
  1130. * from __ocfs2_delete_entry(), then it hasn't removed the
  1131. * entry yet. Likewise, successful return means we *must*
  1132. * remove the indexed entry.
  1133. *
  1134. * We're also careful to journal the root tree block here as
  1135. * the entry count needs to be updated. Also, we might be
  1136. * adding to the start of the free list.
  1137. */
  1138. ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
  1139. OCFS2_JOURNAL_ACCESS_WRITE);
  1140. if (ret) {
  1141. mlog_errno(ret);
  1142. goto out;
  1143. }
  1144. if (!ocfs2_dx_root_inline(dx_root)) {
  1145. ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir),
  1146. lookup->dl_dx_leaf_bh,
  1147. OCFS2_JOURNAL_ACCESS_WRITE);
  1148. if (ret) {
  1149. mlog_errno(ret);
  1150. goto out;
  1151. }
  1152. }
  1153. trace_ocfs2_delete_entry_dx((unsigned long long)OCFS2_I(dir)->ip_blkno,
  1154. index);
  1155. ret = __ocfs2_delete_entry(handle, dir, lookup->dl_entry,
  1156. leaf_bh, leaf_bh->b_data, leaf_bh->b_size);
  1157. if (ret) {
  1158. mlog_errno(ret);
  1159. goto out;
  1160. }
  1161. max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, leaf_bh);
  1162. trailer->db_free_rec_len = cpu_to_le16(max_rec_len);
  1163. if (add_to_free_list) {
  1164. trailer->db_free_next = dx_root->dr_free_blk;
  1165. dx_root->dr_free_blk = cpu_to_le64(leaf_bh->b_blocknr);
  1166. ocfs2_journal_dirty(handle, dx_root_bh);
  1167. }
  1168. /* leaf_bh was journal_accessed for us in __ocfs2_delete_entry */
  1169. ocfs2_journal_dirty(handle, leaf_bh);
  1170. le32_add_cpu(&dx_root->dr_num_entries, -1);
  1171. ocfs2_journal_dirty(handle, dx_root_bh);
  1172. ocfs2_dx_list_remove_entry(entry_list, index);
  1173. if (!ocfs2_dx_root_inline(dx_root))
  1174. ocfs2_journal_dirty(handle, lookup->dl_dx_leaf_bh);
  1175. out:
  1176. return ret;
  1177. }
  1178. static inline int ocfs2_delete_entry_id(handle_t *handle,
  1179. struct inode *dir,
  1180. struct ocfs2_dir_entry *de_del,
  1181. struct buffer_head *bh)
  1182. {
  1183. int ret;
  1184. struct buffer_head *di_bh = NULL;
  1185. struct ocfs2_dinode *di;
  1186. struct ocfs2_inline_data *data;
  1187. ret = ocfs2_read_inode_block(dir, &di_bh);
  1188. if (ret) {
  1189. mlog_errno(ret);
  1190. goto out;
  1191. }
  1192. di = (struct ocfs2_dinode *)di_bh->b_data;
  1193. data = &di->id2.i_data;
  1194. ret = __ocfs2_delete_entry(handle, dir, de_del, bh, data->id_data,
  1195. i_size_read(dir));
  1196. brelse(di_bh);
  1197. out:
  1198. return ret;
  1199. }
  1200. static inline int ocfs2_delete_entry_el(handle_t *handle,
  1201. struct inode *dir,
  1202. struct ocfs2_dir_entry *de_del,
  1203. struct buffer_head *bh)
  1204. {
  1205. return __ocfs2_delete_entry(handle, dir, de_del, bh, bh->b_data,
  1206. bh->b_size);
  1207. }
  1208. /*
  1209. * Delete a directory entry. Hide the details of directory
  1210. * implementation from the caller.
  1211. */
  1212. int ocfs2_delete_entry(handle_t *handle,
  1213. struct inode *dir,
  1214. struct ocfs2_dir_lookup_result *res)
  1215. {
  1216. if (ocfs2_dir_indexed(dir))
  1217. return ocfs2_delete_entry_dx(handle, dir, res);
  1218. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  1219. return ocfs2_delete_entry_id(handle, dir, res->dl_entry,
  1220. res->dl_leaf_bh);
  1221. return ocfs2_delete_entry_el(handle, dir, res->dl_entry,
  1222. res->dl_leaf_bh);
  1223. }
  1224. /*
  1225. * Check whether 'de' has enough room to hold an entry of
  1226. * 'new_rec_len' bytes.
  1227. */
  1228. static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry *de,
  1229. unsigned int new_rec_len)
  1230. {
  1231. unsigned int de_really_used;
  1232. /* Check whether this is an empty record with enough space */
  1233. if (le64_to_cpu(de->inode) == 0 &&
  1234. le16_to_cpu(de->rec_len) >= new_rec_len)
  1235. return 1;
  1236. /*
  1237. * Record might have free space at the end which we can
  1238. * use.
  1239. */
  1240. de_really_used = OCFS2_DIR_REC_LEN(de->name_len);
  1241. if (le16_to_cpu(de->rec_len) >= (de_really_used + new_rec_len))
  1242. return 1;
  1243. return 0;
  1244. }
  1245. static void ocfs2_dx_dir_leaf_insert_tail(struct ocfs2_dx_leaf *dx_leaf,
  1246. struct ocfs2_dx_entry *dx_new_entry)
  1247. {
  1248. int i;
  1249. i = le16_to_cpu(dx_leaf->dl_list.de_num_used);
  1250. dx_leaf->dl_list.de_entries[i] = *dx_new_entry;
  1251. le16_add_cpu(&dx_leaf->dl_list.de_num_used, 1);
  1252. }
  1253. static void ocfs2_dx_entry_list_insert(struct ocfs2_dx_entry_list *entry_list,
  1254. struct ocfs2_dx_hinfo *hinfo,
  1255. u64 dirent_blk)
  1256. {
  1257. int i;
  1258. struct ocfs2_dx_entry *dx_entry;
  1259. i = le16_to_cpu(entry_list->de_num_used);
  1260. dx_entry = &entry_list->de_entries[i];
  1261. memset(dx_entry, 0, sizeof(*dx_entry));
  1262. dx_entry->dx_major_hash = cpu_to_le32(hinfo->major_hash);
  1263. dx_entry->dx_minor_hash = cpu_to_le32(hinfo->minor_hash);
  1264. dx_entry->dx_dirent_blk = cpu_to_le64(dirent_blk);
  1265. le16_add_cpu(&entry_list->de_num_used, 1);
  1266. }
  1267. static int __ocfs2_dx_dir_leaf_insert(struct inode *dir, handle_t *handle,
  1268. struct ocfs2_dx_hinfo *hinfo,
  1269. u64 dirent_blk,
  1270. struct buffer_head *dx_leaf_bh)
  1271. {
  1272. int ret;
  1273. struct ocfs2_dx_leaf *dx_leaf;
  1274. ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh,
  1275. OCFS2_JOURNAL_ACCESS_WRITE);
  1276. if (ret) {
  1277. mlog_errno(ret);
  1278. goto out;
  1279. }
  1280. dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data;
  1281. ocfs2_dx_entry_list_insert(&dx_leaf->dl_list, hinfo, dirent_blk);
  1282. ocfs2_journal_dirty(handle, dx_leaf_bh);
  1283. out:
  1284. return ret;
  1285. }
  1286. static void ocfs2_dx_inline_root_insert(struct inode *dir, handle_t *handle,
  1287. struct ocfs2_dx_hinfo *hinfo,
  1288. u64 dirent_blk,
  1289. struct ocfs2_dx_root_block *dx_root)
  1290. {
  1291. ocfs2_dx_entry_list_insert(&dx_root->dr_entries, hinfo, dirent_blk);
  1292. }
  1293. static int ocfs2_dx_dir_insert(struct inode *dir, handle_t *handle,
  1294. struct ocfs2_dir_lookup_result *lookup)
  1295. {
  1296. int ret = 0;
  1297. struct ocfs2_dx_root_block *dx_root;
  1298. struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh;
  1299. ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
  1300. OCFS2_JOURNAL_ACCESS_WRITE);
  1301. if (ret) {
  1302. mlog_errno(ret);
  1303. goto out;
  1304. }
  1305. dx_root = (struct ocfs2_dx_root_block *)lookup->dl_dx_root_bh->b_data;
  1306. if (ocfs2_dx_root_inline(dx_root)) {
  1307. ocfs2_dx_inline_root_insert(dir, handle,
  1308. &lookup->dl_hinfo,
  1309. lookup->dl_leaf_bh->b_blocknr,
  1310. dx_root);
  1311. } else {
  1312. ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &lookup->dl_hinfo,
  1313. lookup->dl_leaf_bh->b_blocknr,
  1314. lookup->dl_dx_leaf_bh);
  1315. if (ret)
  1316. goto out;
  1317. }
  1318. le32_add_cpu(&dx_root->dr_num_entries, 1);
  1319. ocfs2_journal_dirty(handle, dx_root_bh);
  1320. out:
  1321. return ret;
  1322. }
  1323. static void ocfs2_remove_block_from_free_list(struct inode *dir,
  1324. handle_t *handle,
  1325. struct ocfs2_dir_lookup_result *lookup)
  1326. {
  1327. struct ocfs2_dir_block_trailer *trailer, *prev;
  1328. struct ocfs2_dx_root_block *dx_root;
  1329. struct buffer_head *bh;
  1330. trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb);
  1331. if (ocfs2_free_list_at_root(lookup)) {
  1332. bh = lookup->dl_dx_root_bh;
  1333. dx_root = (struct ocfs2_dx_root_block *)bh->b_data;
  1334. dx_root->dr_free_blk = trailer->db_free_next;
  1335. } else {
  1336. bh = lookup->dl_prev_leaf_bh;
  1337. prev = ocfs2_trailer_from_bh(bh, dir->i_sb);
  1338. prev->db_free_next = trailer->db_free_next;
  1339. }
  1340. trailer->db_free_rec_len = cpu_to_le16(0);
  1341. trailer->db_free_next = cpu_to_le64(0);
  1342. ocfs2_journal_dirty(handle, bh);
  1343. ocfs2_journal_dirty(handle, lookup->dl_leaf_bh);
  1344. }
  1345. /*
  1346. * This expects that a journal write has been reserved on
  1347. * lookup->dl_prev_leaf_bh or lookup->dl_dx_root_bh
  1348. */
  1349. static void ocfs2_recalc_free_list(struct inode *dir, handle_t *handle,
  1350. struct ocfs2_dir_lookup_result *lookup)
  1351. {
  1352. int max_rec_len;
  1353. struct ocfs2_dir_block_trailer *trailer;
  1354. /* Walk dl_leaf_bh to figure out what the new free rec_len is. */
  1355. max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, lookup->dl_leaf_bh);
  1356. if (max_rec_len) {
  1357. /*
  1358. * There's still room in this block, so no need to remove it
  1359. * from the free list. In this case, we just want to update
  1360. * the rec len accounting.
  1361. */
  1362. trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb);
  1363. trailer->db_free_rec_len = cpu_to_le16(max_rec_len);
  1364. ocfs2_journal_dirty(handle, lookup->dl_leaf_bh);
  1365. } else {
  1366. ocfs2_remove_block_from_free_list(dir, handle, lookup);
  1367. }
  1368. }
  1369. /* we don't always have a dentry for what we want to add, so people
  1370. * like orphan dir can call this instead.
  1371. *
  1372. * The lookup context must have been filled from
  1373. * ocfs2_prepare_dir_for_insert.
  1374. */
  1375. int __ocfs2_add_entry(handle_t *handle,
  1376. struct inode *dir,
  1377. const char *name, int namelen,
  1378. struct inode *inode, u64 blkno,
  1379. struct buffer_head *parent_fe_bh,
  1380. struct ocfs2_dir_lookup_result *lookup)
  1381. {
  1382. unsigned long offset;
  1383. unsigned short rec_len;
  1384. struct ocfs2_dir_entry *de, *de1;
  1385. struct ocfs2_dinode *di = (struct ocfs2_dinode *)parent_fe_bh->b_data;
  1386. struct super_block *sb = dir->i_sb;
  1387. int retval, status;
  1388. unsigned int size = sb->s_blocksize;
  1389. struct buffer_head *insert_bh = lookup->dl_leaf_bh;
  1390. char *data_start = insert_bh->b_data;
  1391. if (!namelen)
  1392. return -EINVAL;
  1393. if (ocfs2_dir_indexed(dir)) {
  1394. struct buffer_head *bh;
  1395. /*
  1396. * An indexed dir may require that we update the free space
  1397. * list. Reserve a write to the previous node in the list so
  1398. * that we don't fail later.
  1399. *
  1400. * XXX: This can be either a dx_root_block, or an unindexed
  1401. * directory tree leaf block.
  1402. */
  1403. if (ocfs2_free_list_at_root(lookup)) {
  1404. bh = lookup->dl_dx_root_bh;
  1405. retval = ocfs2_journal_access_dr(handle,
  1406. INODE_CACHE(dir), bh,
  1407. OCFS2_JOURNAL_ACCESS_WRITE);
  1408. } else {
  1409. bh = lookup->dl_prev_leaf_bh;
  1410. retval = ocfs2_journal_access_db(handle,
  1411. INODE_CACHE(dir), bh,
  1412. OCFS2_JOURNAL_ACCESS_WRITE);
  1413. }
  1414. if (retval) {
  1415. mlog_errno(retval);
  1416. return retval;
  1417. }
  1418. } else if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  1419. data_start = di->id2.i_data.id_data;
  1420. size = i_size_read(dir);
  1421. BUG_ON(insert_bh != parent_fe_bh);
  1422. }
  1423. rec_len = OCFS2_DIR_REC_LEN(namelen);
  1424. offset = 0;
  1425. de = (struct ocfs2_dir_entry *) data_start;
  1426. while (1) {
  1427. BUG_ON((char *)de >= (size + data_start));
  1428. /* These checks should've already been passed by the
  1429. * prepare function, but I guess we can leave them
  1430. * here anyway. */
  1431. if (!ocfs2_check_dir_entry(dir, de, insert_bh, offset)) {
  1432. retval = -ENOENT;
  1433. goto bail;
  1434. }
  1435. if (ocfs2_match(namelen, name, de)) {
  1436. retval = -EEXIST;
  1437. goto bail;
  1438. }
  1439. /* We're guaranteed that we should have space, so we
  1440. * can't possibly have hit the trailer...right? */
  1441. mlog_bug_on_msg(ocfs2_skip_dir_trailer(dir, de, offset, size),
  1442. "Hit dir trailer trying to insert %.*s "
  1443. "(namelen %d) into directory %llu. "
  1444. "offset is %lu, trailer offset is %d\n",
  1445. namelen, name, namelen,
  1446. (unsigned long long)parent_fe_bh->b_blocknr,
  1447. offset, ocfs2_dir_trailer_blk_off(dir->i_sb));
  1448. if (ocfs2_dirent_would_fit(de, rec_len)) {
  1449. dir->i_mtime = dir->i_ctime = CURRENT_TIME;
  1450. retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
  1451. if (retval < 0) {
  1452. mlog_errno(retval);
  1453. goto bail;
  1454. }
  1455. if (insert_bh == parent_fe_bh)
  1456. status = ocfs2_journal_access_di(handle,
  1457. INODE_CACHE(dir),
  1458. insert_bh,
  1459. OCFS2_JOURNAL_ACCESS_WRITE);
  1460. else {
  1461. status = ocfs2_journal_access_db(handle,
  1462. INODE_CACHE(dir),
  1463. insert_bh,
  1464. OCFS2_JOURNAL_ACCESS_WRITE);
  1465. if (ocfs2_dir_indexed(dir)) {
  1466. status = ocfs2_dx_dir_insert(dir,
  1467. handle,
  1468. lookup);
  1469. if (status) {
  1470. mlog_errno(status);
  1471. goto bail;
  1472. }
  1473. }
  1474. }
  1475. /* By now the buffer is marked for journaling */
  1476. offset += le16_to_cpu(de->rec_len);
  1477. if (le64_to_cpu(de->inode)) {
  1478. de1 = (struct ocfs2_dir_entry *)((char *) de +
  1479. OCFS2_DIR_REC_LEN(de->name_len));
  1480. de1->rec_len =
  1481. cpu_to_le16(le16_to_cpu(de->rec_len) -
  1482. OCFS2_DIR_REC_LEN(de->name_len));
  1483. de->rec_len = cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len));
  1484. de = de1;
  1485. }
  1486. de->file_type = OCFS2_FT_UNKNOWN;
  1487. if (blkno) {
  1488. de->inode = cpu_to_le64(blkno);
  1489. ocfs2_set_de_type(de, inode->i_mode);
  1490. } else
  1491. de->inode = 0;
  1492. de->name_len = namelen;
  1493. memcpy(de->name, name, namelen);
  1494. if (ocfs2_dir_indexed(dir))
  1495. ocfs2_recalc_free_list(dir, handle, lookup);
  1496. dir->i_version++;
  1497. ocfs2_journal_dirty(handle, insert_bh);
  1498. retval = 0;
  1499. goto bail;
  1500. }
  1501. offset += le16_to_cpu(de->rec_len);
  1502. de = (struct ocfs2_dir_entry *) ((char *) de + le16_to_cpu(de->rec_len));
  1503. }
  1504. /* when you think about it, the assert above should prevent us
  1505. * from ever getting here. */
  1506. retval = -ENOSPC;
  1507. bail:
  1508. if (retval)
  1509. mlog_errno(retval);
  1510. return retval;
  1511. }
  1512. static int ocfs2_dir_foreach_blk_id(struct inode *inode,
  1513. u64 *f_version,
  1514. struct dir_context *ctx)
  1515. {
  1516. int ret, i;
  1517. unsigned long offset = ctx->pos;
  1518. struct buffer_head *di_bh = NULL;
  1519. struct ocfs2_dinode *di;
  1520. struct ocfs2_inline_data *data;
  1521. struct ocfs2_dir_entry *de;
  1522. ret = ocfs2_read_inode_block(inode, &di_bh);
  1523. if (ret) {
  1524. mlog(ML_ERROR, "Unable to read inode block for dir %llu\n",
  1525. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  1526. goto out;
  1527. }
  1528. di = (struct ocfs2_dinode *)di_bh->b_data;
  1529. data = &di->id2.i_data;
  1530. while (ctx->pos < i_size_read(inode)) {
  1531. /* If the dir block has changed since the last call to
  1532. * readdir(2), then we might be pointing to an invalid
  1533. * dirent right now. Scan from the start of the block
  1534. * to make sure. */
  1535. if (*f_version != inode->i_version) {
  1536. for (i = 0; i < i_size_read(inode) && i < offset; ) {
  1537. de = (struct ocfs2_dir_entry *)
  1538. (data->id_data + i);
  1539. /* It's too expensive to do a full
  1540. * dirent test each time round this
  1541. * loop, but we do have to test at
  1542. * least that it is non-zero. A
  1543. * failure will be detected in the
  1544. * dirent test below. */
  1545. if (le16_to_cpu(de->rec_len) <
  1546. OCFS2_DIR_REC_LEN(1))
  1547. break;
  1548. i += le16_to_cpu(de->rec_len);
  1549. }
  1550. ctx->pos = offset = i;
  1551. *f_version = inode->i_version;
  1552. }
  1553. de = (struct ocfs2_dir_entry *) (data->id_data + ctx->pos);
  1554. if (!ocfs2_check_dir_entry(inode, de, di_bh, ctx->pos)) {
  1555. /* On error, skip the f_pos to the end. */
  1556. ctx->pos = i_size_read(inode);
  1557. break;
  1558. }
  1559. offset += le16_to_cpu(de->rec_len);
  1560. if (le64_to_cpu(de->inode)) {
  1561. unsigned char d_type = DT_UNKNOWN;
  1562. if (de->file_type < OCFS2_FT_MAX)
  1563. d_type = ocfs2_filetype_table[de->file_type];
  1564. if (!dir_emit(ctx, de->name, de->name_len,
  1565. le64_to_cpu(de->inode), d_type))
  1566. goto out;
  1567. }
  1568. ctx->pos += le16_to_cpu(de->rec_len);
  1569. }
  1570. out:
  1571. brelse(di_bh);
  1572. return 0;
  1573. }
  1574. /*
  1575. * NOTE: This function can be called against unindexed directories,
  1576. * and indexed ones.
  1577. */
  1578. static int ocfs2_dir_foreach_blk_el(struct inode *inode,
  1579. u64 *f_version,
  1580. struct dir_context *ctx,
  1581. bool persist)
  1582. {
  1583. unsigned long offset, blk, last_ra_blk = 0;
  1584. int i;
  1585. struct buffer_head * bh, * tmp;
  1586. struct ocfs2_dir_entry * de;
  1587. struct super_block * sb = inode->i_sb;
  1588. unsigned int ra_sectors = 16;
  1589. int stored = 0;
  1590. bh = NULL;
  1591. offset = ctx->pos & (sb->s_blocksize - 1);
  1592. while (ctx->pos < i_size_read(inode)) {
  1593. blk = ctx->pos >> sb->s_blocksize_bits;
  1594. if (ocfs2_read_dir_block(inode, blk, &bh, 0)) {
  1595. /* Skip the corrupt dirblock and keep trying */
  1596. ctx->pos += sb->s_blocksize - offset;
  1597. continue;
  1598. }
  1599. /* The idea here is to begin with 8k read-ahead and to stay
  1600. * 4k ahead of our current position.
  1601. *
  1602. * TODO: Use the pagecache for this. We just need to
  1603. * make sure it's cluster-safe... */
  1604. if (!last_ra_blk
  1605. || (((last_ra_blk - blk) << 9) <= (ra_sectors / 2))) {
  1606. for (i = ra_sectors >> (sb->s_blocksize_bits - 9);
  1607. i > 0; i--) {
  1608. tmp = NULL;
  1609. if (!ocfs2_read_dir_block(inode, ++blk, &tmp,
  1610. OCFS2_BH_READAHEAD))
  1611. brelse(tmp);
  1612. }
  1613. last_ra_blk = blk;
  1614. ra_sectors = 8;
  1615. }
  1616. /* If the dir block has changed since the last call to
  1617. * readdir(2), then we might be pointing to an invalid
  1618. * dirent right now. Scan from the start of the block
  1619. * to make sure. */
  1620. if (*f_version != inode->i_version) {
  1621. for (i = 0; i < sb->s_blocksize && i < offset; ) {
  1622. de = (struct ocfs2_dir_entry *) (bh->b_data + i);
  1623. /* It's too expensive to do a full
  1624. * dirent test each time round this
  1625. * loop, but we do have to test at
  1626. * least that it is non-zero. A
  1627. * failure will be detected in the
  1628. * dirent test below. */
  1629. if (le16_to_cpu(de->rec_len) <
  1630. OCFS2_DIR_REC_LEN(1))
  1631. break;
  1632. i += le16_to_cpu(de->rec_len);
  1633. }
  1634. offset = i;
  1635. ctx->pos = (ctx->pos & ~(sb->s_blocksize - 1))
  1636. | offset;
  1637. *f_version = inode->i_version;
  1638. }
  1639. while (ctx->pos < i_size_read(inode)
  1640. && offset < sb->s_blocksize) {
  1641. de = (struct ocfs2_dir_entry *) (bh->b_data + offset);
  1642. if (!ocfs2_check_dir_entry(inode, de, bh, offset)) {
  1643. /* On error, skip the f_pos to the
  1644. next block. */
  1645. ctx->pos = (ctx->pos | (sb->s_blocksize - 1)) + 1;
  1646. brelse(bh);
  1647. continue;
  1648. }
  1649. if (le64_to_cpu(de->inode)) {
  1650. unsigned char d_type = DT_UNKNOWN;
  1651. if (de->file_type < OCFS2_FT_MAX)
  1652. d_type = ocfs2_filetype_table[de->file_type];
  1653. if (!dir_emit(ctx, de->name,
  1654. de->name_len,
  1655. le64_to_cpu(de->inode),
  1656. d_type)) {
  1657. brelse(bh);
  1658. return 0;
  1659. }
  1660. stored++;
  1661. }
  1662. offset += le16_to_cpu(de->rec_len);
  1663. ctx->pos += le16_to_cpu(de->rec_len);
  1664. }
  1665. offset = 0;
  1666. brelse(bh);
  1667. bh = NULL;
  1668. if (!persist && stored)
  1669. break;
  1670. }
  1671. return 0;
  1672. }
  1673. static int ocfs2_dir_foreach_blk(struct inode *inode, u64 *f_version,
  1674. struct dir_context *ctx,
  1675. bool persist)
  1676. {
  1677. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  1678. return ocfs2_dir_foreach_blk_id(inode, f_version, ctx);
  1679. return ocfs2_dir_foreach_blk_el(inode, f_version, ctx, persist);
  1680. }
  1681. /*
  1682. * This is intended to be called from inside other kernel functions,
  1683. * so we fake some arguments.
  1684. */
  1685. int ocfs2_dir_foreach(struct inode *inode, struct dir_context *ctx)
  1686. {
  1687. u64 version = inode->i_version;
  1688. ocfs2_dir_foreach_blk(inode, &version, ctx, true);
  1689. return 0;
  1690. }
  1691. /*
  1692. * ocfs2_readdir()
  1693. *
  1694. */
  1695. int ocfs2_readdir(struct file *file, struct dir_context *ctx)
  1696. {
  1697. int error = 0;
  1698. struct inode *inode = file_inode(file);
  1699. int lock_level = 0;
  1700. trace_ocfs2_readdir((unsigned long long)OCFS2_I(inode)->ip_blkno);
  1701. error = ocfs2_inode_lock_atime(inode, file->f_path.mnt, &lock_level);
  1702. if (lock_level && error >= 0) {
  1703. /* We release EX lock which used to update atime
  1704. * and get PR lock again to reduce contention
  1705. * on commonly accessed directories. */
  1706. ocfs2_inode_unlock(inode, 1);
  1707. lock_level = 0;
  1708. error = ocfs2_inode_lock(inode, NULL, 0);
  1709. }
  1710. if (error < 0) {
  1711. if (error != -ENOENT)
  1712. mlog_errno(error);
  1713. /* we haven't got any yet, so propagate the error. */
  1714. goto bail_nolock;
  1715. }
  1716. error = ocfs2_dir_foreach_blk(inode, &file->f_version, ctx, false);
  1717. ocfs2_inode_unlock(inode, lock_level);
  1718. if (error)
  1719. mlog_errno(error);
  1720. bail_nolock:
  1721. return error;
  1722. }
  1723. /*
  1724. * NOTE: this should always be called with parent dir i_mutex taken.
  1725. */
  1726. int ocfs2_find_files_on_disk(const char *name,
  1727. int namelen,
  1728. u64 *blkno,
  1729. struct inode *inode,
  1730. struct ocfs2_dir_lookup_result *lookup)
  1731. {
  1732. int status = -ENOENT;
  1733. trace_ocfs2_find_files_on_disk(namelen, name, blkno,
  1734. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  1735. status = ocfs2_find_entry(name, namelen, inode, lookup);
  1736. if (status)
  1737. goto leave;
  1738. *blkno = le64_to_cpu(lookup->dl_entry->inode);
  1739. status = 0;
  1740. leave:
  1741. return status;
  1742. }
  1743. /*
  1744. * Convenience function for callers which just want the block number
  1745. * mapped to a name and don't require the full dirent info, etc.
  1746. */
  1747. int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name,
  1748. int namelen, u64 *blkno)
  1749. {
  1750. int ret;
  1751. struct ocfs2_dir_lookup_result lookup = { NULL, };
  1752. ret = ocfs2_find_files_on_disk(name, namelen, blkno, dir, &lookup);
  1753. ocfs2_free_dir_lookup_result(&lookup);
  1754. return ret;
  1755. }
  1756. /* Check for a name within a directory.
  1757. *
  1758. * Return 0 if the name does not exist
  1759. * Return -EEXIST if the directory contains the name
  1760. *
  1761. * Callers should have i_mutex + a cluster lock on dir
  1762. */
  1763. int ocfs2_check_dir_for_entry(struct inode *dir,
  1764. const char *name,
  1765. int namelen)
  1766. {
  1767. int ret;
  1768. struct ocfs2_dir_lookup_result lookup = { NULL, };
  1769. trace_ocfs2_check_dir_for_entry(
  1770. (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen, name);
  1771. ret = -EEXIST;
  1772. if (ocfs2_find_entry(name, namelen, dir, &lookup) == 0)
  1773. goto bail;
  1774. ret = 0;
  1775. bail:
  1776. ocfs2_free_dir_lookup_result(&lookup);
  1777. if (ret)
  1778. mlog_errno(ret);
  1779. return ret;
  1780. }
  1781. struct ocfs2_empty_dir_priv {
  1782. struct dir_context ctx;
  1783. unsigned seen_dot;
  1784. unsigned seen_dot_dot;
  1785. unsigned seen_other;
  1786. unsigned dx_dir;
  1787. };
  1788. static int ocfs2_empty_dir_filldir(void *priv, const char *name, int name_len,
  1789. loff_t pos, u64 ino, unsigned type)
  1790. {
  1791. struct ocfs2_empty_dir_priv *p = priv;
  1792. /*
  1793. * Check the positions of "." and ".." records to be sure
  1794. * they're in the correct place.
  1795. *
  1796. * Indexed directories don't need to proceed past the first
  1797. * two entries, so we end the scan after seeing '..'. Despite
  1798. * that, we allow the scan to proceed In the event that we
  1799. * have a corrupted indexed directory (no dot or dot dot
  1800. * entries). This allows us to double check for existing
  1801. * entries which might not have been found in the index.
  1802. */
  1803. if (name_len == 1 && !strncmp(".", name, 1) && pos == 0) {
  1804. p->seen_dot = 1;
  1805. return 0;
  1806. }
  1807. if (name_len == 2 && !strncmp("..", name, 2) &&
  1808. pos == OCFS2_DIR_REC_LEN(1)) {
  1809. p->seen_dot_dot = 1;
  1810. if (p->dx_dir && p->seen_dot)
  1811. return 1;
  1812. return 0;
  1813. }
  1814. p->seen_other = 1;
  1815. return 1;
  1816. }
  1817. static int ocfs2_empty_dir_dx(struct inode *inode,
  1818. struct ocfs2_empty_dir_priv *priv)
  1819. {
  1820. int ret;
  1821. struct buffer_head *di_bh = NULL;
  1822. struct buffer_head *dx_root_bh = NULL;
  1823. struct ocfs2_dinode *di;
  1824. struct ocfs2_dx_root_block *dx_root;
  1825. priv->dx_dir = 1;
  1826. ret = ocfs2_read_inode_block(inode, &di_bh);
  1827. if (ret) {
  1828. mlog_errno(ret);
  1829. goto out;
  1830. }
  1831. di = (struct ocfs2_dinode *)di_bh->b_data;
  1832. ret = ocfs2_read_dx_root(inode, di, &dx_root_bh);
  1833. if (ret) {
  1834. mlog_errno(ret);
  1835. goto out;
  1836. }
  1837. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  1838. if (le32_to_cpu(dx_root->dr_num_entries) != 2)
  1839. priv->seen_other = 1;
  1840. out:
  1841. brelse(di_bh);
  1842. brelse(dx_root_bh);
  1843. return ret;
  1844. }
  1845. /*
  1846. * routine to check that the specified directory is empty (for rmdir)
  1847. *
  1848. * Returns 1 if dir is empty, zero otherwise.
  1849. *
  1850. * XXX: This is a performance problem for unindexed directories.
  1851. */
  1852. int ocfs2_empty_dir(struct inode *inode)
  1853. {
  1854. int ret;
  1855. struct ocfs2_empty_dir_priv priv = {
  1856. .ctx.actor = ocfs2_empty_dir_filldir,
  1857. };
  1858. if (ocfs2_dir_indexed(inode)) {
  1859. ret = ocfs2_empty_dir_dx(inode, &priv);
  1860. if (ret)
  1861. mlog_errno(ret);
  1862. /*
  1863. * We still run ocfs2_dir_foreach to get the checks
  1864. * for "." and "..".
  1865. */
  1866. }
  1867. ret = ocfs2_dir_foreach(inode, &priv.ctx);
  1868. if (ret)
  1869. mlog_errno(ret);
  1870. if (!priv.seen_dot || !priv.seen_dot_dot) {
  1871. mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n",
  1872. (unsigned long long)OCFS2_I(inode)->ip_blkno);
  1873. /*
  1874. * XXX: Is it really safe to allow an unlink to continue?
  1875. */
  1876. return 1;
  1877. }
  1878. return !priv.seen_other;
  1879. }
  1880. /*
  1881. * Fills "." and ".." dirents in a new directory block. Returns dirent for
  1882. * "..", which might be used during creation of a directory with a trailing
  1883. * header. It is otherwise safe to ignore the return code.
  1884. */
  1885. static struct ocfs2_dir_entry *ocfs2_fill_initial_dirents(struct inode *inode,
  1886. struct inode *parent,
  1887. char *start,
  1888. unsigned int size)
  1889. {
  1890. struct ocfs2_dir_entry *de = (struct ocfs2_dir_entry *)start;
  1891. de->inode = cpu_to_le64(OCFS2_I(inode)->ip_blkno);
  1892. de->name_len = 1;
  1893. de->rec_len =
  1894. cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len));
  1895. strcpy(de->name, ".");
  1896. ocfs2_set_de_type(de, S_IFDIR);
  1897. de = (struct ocfs2_dir_entry *) ((char *)de + le16_to_cpu(de->rec_len));
  1898. de->inode = cpu_to_le64(OCFS2_I(parent)->ip_blkno);
  1899. de->rec_len = cpu_to_le16(size - OCFS2_DIR_REC_LEN(1));
  1900. de->name_len = 2;
  1901. strcpy(de->name, "..");
  1902. ocfs2_set_de_type(de, S_IFDIR);
  1903. return de;
  1904. }
  1905. /*
  1906. * This works together with code in ocfs2_mknod_locked() which sets
  1907. * the inline-data flag and initializes the inline-data section.
  1908. */
  1909. static int ocfs2_fill_new_dir_id(struct ocfs2_super *osb,
  1910. handle_t *handle,
  1911. struct inode *parent,
  1912. struct inode *inode,
  1913. struct buffer_head *di_bh)
  1914. {
  1915. int ret;
  1916. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  1917. struct ocfs2_inline_data *data = &di->id2.i_data;
  1918. unsigned int size = le16_to_cpu(data->id_count);
  1919. ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
  1920. OCFS2_JOURNAL_ACCESS_WRITE);
  1921. if (ret) {
  1922. mlog_errno(ret);
  1923. goto out;
  1924. }
  1925. ocfs2_fill_initial_dirents(inode, parent, data->id_data, size);
  1926. ocfs2_journal_dirty(handle, di_bh);
  1927. i_size_write(inode, size);
  1928. set_nlink(inode, 2);
  1929. inode->i_blocks = ocfs2_inode_sector_count(inode);
  1930. ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
  1931. if (ret < 0)
  1932. mlog_errno(ret);
  1933. out:
  1934. return ret;
  1935. }
  1936. static int ocfs2_fill_new_dir_el(struct ocfs2_super *osb,
  1937. handle_t *handle,
  1938. struct inode *parent,
  1939. struct inode *inode,
  1940. struct buffer_head *fe_bh,
  1941. struct ocfs2_alloc_context *data_ac,
  1942. struct buffer_head **ret_new_bh)
  1943. {
  1944. int status;
  1945. unsigned int size = osb->sb->s_blocksize;
  1946. struct buffer_head *new_bh = NULL;
  1947. struct ocfs2_dir_entry *de;
  1948. if (ocfs2_new_dir_wants_trailer(inode))
  1949. size = ocfs2_dir_trailer_blk_off(parent->i_sb);
  1950. status = ocfs2_do_extend_dir(osb->sb, handle, inode, fe_bh,
  1951. data_ac, NULL, &new_bh);
  1952. if (status < 0) {
  1953. mlog_errno(status);
  1954. goto bail;
  1955. }
  1956. ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh);
  1957. status = ocfs2_journal_access_db(handle, INODE_CACHE(inode), new_bh,
  1958. OCFS2_JOURNAL_ACCESS_CREATE);
  1959. if (status < 0) {
  1960. mlog_errno(status);
  1961. goto bail;
  1962. }
  1963. memset(new_bh->b_data, 0, osb->sb->s_blocksize);
  1964. de = ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data, size);
  1965. if (ocfs2_new_dir_wants_trailer(inode)) {
  1966. int size = le16_to_cpu(de->rec_len);
  1967. /*
  1968. * Figure out the size of the hole left over after
  1969. * insertion of '.' and '..'. The trailer wants this
  1970. * information.
  1971. */
  1972. size -= OCFS2_DIR_REC_LEN(2);
  1973. size -= sizeof(struct ocfs2_dir_block_trailer);
  1974. ocfs2_init_dir_trailer(inode, new_bh, size);
  1975. }
  1976. ocfs2_journal_dirty(handle, new_bh);
  1977. i_size_write(inode, inode->i_sb->s_blocksize);
  1978. set_nlink(inode, 2);
  1979. inode->i_blocks = ocfs2_inode_sector_count(inode);
  1980. status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
  1981. if (status < 0) {
  1982. mlog_errno(status);
  1983. goto bail;
  1984. }
  1985. status = 0;
  1986. if (ret_new_bh) {
  1987. *ret_new_bh = new_bh;
  1988. new_bh = NULL;
  1989. }
  1990. bail:
  1991. brelse(new_bh);
  1992. return status;
  1993. }
  1994. static int ocfs2_dx_dir_attach_index(struct ocfs2_super *osb,
  1995. handle_t *handle, struct inode *dir,
  1996. struct buffer_head *di_bh,
  1997. struct buffer_head *dirdata_bh,
  1998. struct ocfs2_alloc_context *meta_ac,
  1999. int dx_inline, u32 num_entries,
  2000. struct buffer_head **ret_dx_root_bh)
  2001. {
  2002. int ret;
  2003. struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
  2004. u16 dr_suballoc_bit;
  2005. u64 suballoc_loc, dr_blkno;
  2006. unsigned int num_bits;
  2007. struct buffer_head *dx_root_bh = NULL;
  2008. struct ocfs2_dx_root_block *dx_root;
  2009. struct ocfs2_dir_block_trailer *trailer =
  2010. ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb);
  2011. ret = ocfs2_claim_metadata(handle, meta_ac, 1, &suballoc_loc,
  2012. &dr_suballoc_bit, &num_bits, &dr_blkno);
  2013. if (ret) {
  2014. mlog_errno(ret);
  2015. goto out;
  2016. }
  2017. trace_ocfs2_dx_dir_attach_index(
  2018. (unsigned long long)OCFS2_I(dir)->ip_blkno,
  2019. (unsigned long long)dr_blkno);
  2020. dx_root_bh = sb_getblk(osb->sb, dr_blkno);
  2021. if (dx_root_bh == NULL) {
  2022. ret = -ENOMEM;
  2023. goto out;
  2024. }
  2025. ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dx_root_bh);
  2026. ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
  2027. OCFS2_JOURNAL_ACCESS_CREATE);
  2028. if (ret < 0) {
  2029. mlog_errno(ret);
  2030. goto out;
  2031. }
  2032. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  2033. memset(dx_root, 0, osb->sb->s_blocksize);
  2034. strcpy(dx_root->dr_signature, OCFS2_DX_ROOT_SIGNATURE);
  2035. dx_root->dr_suballoc_slot = cpu_to_le16(meta_ac->ac_alloc_slot);
  2036. dx_root->dr_suballoc_loc = cpu_to_le64(suballoc_loc);
  2037. dx_root->dr_suballoc_bit = cpu_to_le16(dr_suballoc_bit);
  2038. dx_root->dr_fs_generation = cpu_to_le32(osb->fs_generation);
  2039. dx_root->dr_blkno = cpu_to_le64(dr_blkno);
  2040. dx_root->dr_dir_blkno = cpu_to_le64(OCFS2_I(dir)->ip_blkno);
  2041. dx_root->dr_num_entries = cpu_to_le32(num_entries);
  2042. if (le16_to_cpu(trailer->db_free_rec_len))
  2043. dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr);
  2044. else
  2045. dx_root->dr_free_blk = cpu_to_le64(0);
  2046. if (dx_inline) {
  2047. dx_root->dr_flags |= OCFS2_DX_FLAG_INLINE;
  2048. dx_root->dr_entries.de_count =
  2049. cpu_to_le16(ocfs2_dx_entries_per_root(osb->sb));
  2050. } else {
  2051. dx_root->dr_list.l_count =
  2052. cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb));
  2053. }
  2054. ocfs2_journal_dirty(handle, dx_root_bh);
  2055. ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh,
  2056. OCFS2_JOURNAL_ACCESS_CREATE);
  2057. if (ret) {
  2058. mlog_errno(ret);
  2059. goto out;
  2060. }
  2061. di->i_dx_root = cpu_to_le64(dr_blkno);
  2062. spin_lock(&OCFS2_I(dir)->ip_lock);
  2063. OCFS2_I(dir)->ip_dyn_features |= OCFS2_INDEXED_DIR_FL;
  2064. di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features);
  2065. spin_unlock(&OCFS2_I(dir)->ip_lock);
  2066. ocfs2_journal_dirty(handle, di_bh);
  2067. *ret_dx_root_bh = dx_root_bh;
  2068. dx_root_bh = NULL;
  2069. out:
  2070. brelse(dx_root_bh);
  2071. return ret;
  2072. }
  2073. static int ocfs2_dx_dir_format_cluster(struct ocfs2_super *osb,
  2074. handle_t *handle, struct inode *dir,
  2075. struct buffer_head **dx_leaves,
  2076. int num_dx_leaves, u64 start_blk)
  2077. {
  2078. int ret, i;
  2079. struct ocfs2_dx_leaf *dx_leaf;
  2080. struct buffer_head *bh;
  2081. for (i = 0; i < num_dx_leaves; i++) {
  2082. bh = sb_getblk(osb->sb, start_blk + i);
  2083. if (bh == NULL) {
  2084. ret = -ENOMEM;
  2085. goto out;
  2086. }
  2087. dx_leaves[i] = bh;
  2088. ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), bh);
  2089. ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), bh,
  2090. OCFS2_JOURNAL_ACCESS_CREATE);
  2091. if (ret < 0) {
  2092. mlog_errno(ret);
  2093. goto out;
  2094. }
  2095. dx_leaf = (struct ocfs2_dx_leaf *) bh->b_data;
  2096. memset(dx_leaf, 0, osb->sb->s_blocksize);
  2097. strcpy(dx_leaf->dl_signature, OCFS2_DX_LEAF_SIGNATURE);
  2098. dx_leaf->dl_fs_generation = cpu_to_le32(osb->fs_generation);
  2099. dx_leaf->dl_blkno = cpu_to_le64(bh->b_blocknr);
  2100. dx_leaf->dl_list.de_count =
  2101. cpu_to_le16(ocfs2_dx_entries_per_leaf(osb->sb));
  2102. trace_ocfs2_dx_dir_format_cluster(
  2103. (unsigned long long)OCFS2_I(dir)->ip_blkno,
  2104. (unsigned long long)bh->b_blocknr,
  2105. le16_to_cpu(dx_leaf->dl_list.de_count));
  2106. ocfs2_journal_dirty(handle, bh);
  2107. }
  2108. ret = 0;
  2109. out:
  2110. return ret;
  2111. }
  2112. /*
  2113. * Allocates and formats a new cluster for use in an indexed dir
  2114. * leaf. This version will not do the extent insert, so that it can be
  2115. * used by operations which need careful ordering.
  2116. */
  2117. static int __ocfs2_dx_dir_new_cluster(struct inode *dir,
  2118. u32 cpos, handle_t *handle,
  2119. struct ocfs2_alloc_context *data_ac,
  2120. struct buffer_head **dx_leaves,
  2121. int num_dx_leaves, u64 *ret_phys_blkno)
  2122. {
  2123. int ret;
  2124. u32 phys, num;
  2125. u64 phys_blkno;
  2126. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  2127. /*
  2128. * XXX: For create, this should claim cluster for the index
  2129. * *before* the unindexed insert so that we have a better
  2130. * chance of contiguousness as the directory grows in number
  2131. * of entries.
  2132. */
  2133. ret = __ocfs2_claim_clusters(handle, data_ac, 1, 1, &phys, &num);
  2134. if (ret) {
  2135. mlog_errno(ret);
  2136. goto out;
  2137. }
  2138. /*
  2139. * Format the new cluster first. That way, we're inserting
  2140. * valid data.
  2141. */
  2142. phys_blkno = ocfs2_clusters_to_blocks(osb->sb, phys);
  2143. ret = ocfs2_dx_dir_format_cluster(osb, handle, dir, dx_leaves,
  2144. num_dx_leaves, phys_blkno);
  2145. if (ret) {
  2146. mlog_errno(ret);
  2147. goto out;
  2148. }
  2149. *ret_phys_blkno = phys_blkno;
  2150. out:
  2151. return ret;
  2152. }
  2153. static int ocfs2_dx_dir_new_cluster(struct inode *dir,
  2154. struct ocfs2_extent_tree *et,
  2155. u32 cpos, handle_t *handle,
  2156. struct ocfs2_alloc_context *data_ac,
  2157. struct ocfs2_alloc_context *meta_ac,
  2158. struct buffer_head **dx_leaves,
  2159. int num_dx_leaves)
  2160. {
  2161. int ret;
  2162. u64 phys_blkno;
  2163. ret = __ocfs2_dx_dir_new_cluster(dir, cpos, handle, data_ac, dx_leaves,
  2164. num_dx_leaves, &phys_blkno);
  2165. if (ret) {
  2166. mlog_errno(ret);
  2167. goto out;
  2168. }
  2169. ret = ocfs2_insert_extent(handle, et, cpos, phys_blkno, 1, 0,
  2170. meta_ac);
  2171. if (ret)
  2172. mlog_errno(ret);
  2173. out:
  2174. return ret;
  2175. }
  2176. static struct buffer_head **ocfs2_dx_dir_kmalloc_leaves(struct super_block *sb,
  2177. int *ret_num_leaves)
  2178. {
  2179. int num_dx_leaves = ocfs2_clusters_to_blocks(sb, 1);
  2180. struct buffer_head **dx_leaves;
  2181. dx_leaves = kcalloc(num_dx_leaves, sizeof(struct buffer_head *),
  2182. GFP_NOFS);
  2183. if (dx_leaves && ret_num_leaves)
  2184. *ret_num_leaves = num_dx_leaves;
  2185. return dx_leaves;
  2186. }
  2187. static int ocfs2_fill_new_dir_dx(struct ocfs2_super *osb,
  2188. handle_t *handle,
  2189. struct inode *parent,
  2190. struct inode *inode,
  2191. struct buffer_head *di_bh,
  2192. struct ocfs2_alloc_context *data_ac,
  2193. struct ocfs2_alloc_context *meta_ac)
  2194. {
  2195. int ret;
  2196. struct buffer_head *leaf_bh = NULL;
  2197. struct buffer_head *dx_root_bh = NULL;
  2198. struct ocfs2_dx_hinfo hinfo;
  2199. struct ocfs2_dx_root_block *dx_root;
  2200. struct ocfs2_dx_entry_list *entry_list;
  2201. /*
  2202. * Our strategy is to create the directory as though it were
  2203. * unindexed, then add the index block. This works with very
  2204. * little complication since the state of a new directory is a
  2205. * very well known quantity.
  2206. *
  2207. * Essentially, we have two dirents ("." and ".."), in the 1st
  2208. * block which need indexing. These are easily inserted into
  2209. * the index block.
  2210. */
  2211. ret = ocfs2_fill_new_dir_el(osb, handle, parent, inode, di_bh,
  2212. data_ac, &leaf_bh);
  2213. if (ret) {
  2214. mlog_errno(ret);
  2215. goto out;
  2216. }
  2217. ret = ocfs2_dx_dir_attach_index(osb, handle, inode, di_bh, leaf_bh,
  2218. meta_ac, 1, 2, &dx_root_bh);
  2219. if (ret) {
  2220. mlog_errno(ret);
  2221. goto out;
  2222. }
  2223. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  2224. entry_list = &dx_root->dr_entries;
  2225. /* Buffer has been journaled for us by ocfs2_dx_dir_attach_index */
  2226. ocfs2_dx_dir_name_hash(inode, ".", 1, &hinfo);
  2227. ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr);
  2228. ocfs2_dx_dir_name_hash(inode, "..", 2, &hinfo);
  2229. ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr);
  2230. out:
  2231. brelse(dx_root_bh);
  2232. brelse(leaf_bh);
  2233. return ret;
  2234. }
  2235. int ocfs2_fill_new_dir(struct ocfs2_super *osb,
  2236. handle_t *handle,
  2237. struct inode *parent,
  2238. struct inode *inode,
  2239. struct buffer_head *fe_bh,
  2240. struct ocfs2_alloc_context *data_ac,
  2241. struct ocfs2_alloc_context *meta_ac)
  2242. {
  2243. BUG_ON(!ocfs2_supports_inline_data(osb) && data_ac == NULL);
  2244. if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
  2245. return ocfs2_fill_new_dir_id(osb, handle, parent, inode, fe_bh);
  2246. if (ocfs2_supports_indexed_dirs(osb))
  2247. return ocfs2_fill_new_dir_dx(osb, handle, parent, inode, fe_bh,
  2248. data_ac, meta_ac);
  2249. return ocfs2_fill_new_dir_el(osb, handle, parent, inode, fe_bh,
  2250. data_ac, NULL);
  2251. }
  2252. static int ocfs2_dx_dir_index_block(struct inode *dir,
  2253. handle_t *handle,
  2254. struct buffer_head **dx_leaves,
  2255. int num_dx_leaves,
  2256. u32 *num_dx_entries,
  2257. struct buffer_head *dirent_bh)
  2258. {
  2259. int ret = 0, namelen, i;
  2260. char *de_buf, *limit;
  2261. struct ocfs2_dir_entry *de;
  2262. struct buffer_head *dx_leaf_bh;
  2263. struct ocfs2_dx_hinfo hinfo;
  2264. u64 dirent_blk = dirent_bh->b_blocknr;
  2265. de_buf = dirent_bh->b_data;
  2266. limit = de_buf + dir->i_sb->s_blocksize;
  2267. while (de_buf < limit) {
  2268. de = (struct ocfs2_dir_entry *)de_buf;
  2269. namelen = de->name_len;
  2270. if (!namelen || !de->inode)
  2271. goto inc;
  2272. ocfs2_dx_dir_name_hash(dir, de->name, namelen, &hinfo);
  2273. i = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb), &hinfo);
  2274. dx_leaf_bh = dx_leaves[i];
  2275. ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &hinfo,
  2276. dirent_blk, dx_leaf_bh);
  2277. if (ret) {
  2278. mlog_errno(ret);
  2279. goto out;
  2280. }
  2281. *num_dx_entries = *num_dx_entries + 1;
  2282. inc:
  2283. de_buf += le16_to_cpu(de->rec_len);
  2284. }
  2285. out:
  2286. return ret;
  2287. }
  2288. /*
  2289. * XXX: This expects dx_root_bh to already be part of the transaction.
  2290. */
  2291. static void ocfs2_dx_dir_index_root_block(struct inode *dir,
  2292. struct buffer_head *dx_root_bh,
  2293. struct buffer_head *dirent_bh)
  2294. {
  2295. char *de_buf, *limit;
  2296. struct ocfs2_dx_root_block *dx_root;
  2297. struct ocfs2_dir_entry *de;
  2298. struct ocfs2_dx_hinfo hinfo;
  2299. u64 dirent_blk = dirent_bh->b_blocknr;
  2300. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  2301. de_buf = dirent_bh->b_data;
  2302. limit = de_buf + dir->i_sb->s_blocksize;
  2303. while (de_buf < limit) {
  2304. de = (struct ocfs2_dir_entry *)de_buf;
  2305. if (!de->name_len || !de->inode)
  2306. goto inc;
  2307. ocfs2_dx_dir_name_hash(dir, de->name, de->name_len, &hinfo);
  2308. trace_ocfs2_dx_dir_index_root_block(
  2309. (unsigned long long)dir->i_ino,
  2310. hinfo.major_hash, hinfo.minor_hash,
  2311. de->name_len, de->name,
  2312. le16_to_cpu(dx_root->dr_entries.de_num_used));
  2313. ocfs2_dx_entry_list_insert(&dx_root->dr_entries, &hinfo,
  2314. dirent_blk);
  2315. le32_add_cpu(&dx_root->dr_num_entries, 1);
  2316. inc:
  2317. de_buf += le16_to_cpu(de->rec_len);
  2318. }
  2319. }
  2320. /*
  2321. * Count the number of inline directory entries in di_bh and compare
  2322. * them against the number of entries we can hold in an inline dx root
  2323. * block.
  2324. */
  2325. static int ocfs2_new_dx_should_be_inline(struct inode *dir,
  2326. struct buffer_head *di_bh)
  2327. {
  2328. int dirent_count = 0;
  2329. char *de_buf, *limit;
  2330. struct ocfs2_dir_entry *de;
  2331. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  2332. de_buf = di->id2.i_data.id_data;
  2333. limit = de_buf + i_size_read(dir);
  2334. while (de_buf < limit) {
  2335. de = (struct ocfs2_dir_entry *)de_buf;
  2336. if (de->name_len && de->inode)
  2337. dirent_count++;
  2338. de_buf += le16_to_cpu(de->rec_len);
  2339. }
  2340. /* We are careful to leave room for one extra record. */
  2341. return dirent_count < ocfs2_dx_entries_per_root(dir->i_sb);
  2342. }
  2343. /*
  2344. * Expand rec_len of the rightmost dirent in a directory block so that it
  2345. * contains the end of our valid space for dirents. We do this during
  2346. * expansion from an inline directory to one with extents. The first dir block
  2347. * in that case is taken from the inline data portion of the inode block.
  2348. *
  2349. * This will also return the largest amount of contiguous space for a dirent
  2350. * in the block. That value is *not* necessarily the last dirent, even after
  2351. * expansion. The directory indexing code wants this value for free space
  2352. * accounting. We do this here since we're already walking the entire dir
  2353. * block.
  2354. *
  2355. * We add the dir trailer if this filesystem wants it.
  2356. */
  2357. static unsigned int ocfs2_expand_last_dirent(char *start, unsigned int old_size,
  2358. struct inode *dir)
  2359. {
  2360. struct super_block *sb = dir->i_sb;
  2361. struct ocfs2_dir_entry *de;
  2362. struct ocfs2_dir_entry *prev_de;
  2363. char *de_buf, *limit;
  2364. unsigned int new_size = sb->s_blocksize;
  2365. unsigned int bytes, this_hole;
  2366. unsigned int largest_hole = 0;
  2367. if (ocfs2_new_dir_wants_trailer(dir))
  2368. new_size = ocfs2_dir_trailer_blk_off(sb);
  2369. bytes = new_size - old_size;
  2370. limit = start + old_size;
  2371. de_buf = start;
  2372. de = (struct ocfs2_dir_entry *)de_buf;
  2373. do {
  2374. this_hole = ocfs2_figure_dirent_hole(de);
  2375. if (this_hole > largest_hole)
  2376. largest_hole = this_hole;
  2377. prev_de = de;
  2378. de_buf += le16_to_cpu(de->rec_len);
  2379. de = (struct ocfs2_dir_entry *)de_buf;
  2380. } while (de_buf < limit);
  2381. le16_add_cpu(&prev_de->rec_len, bytes);
  2382. /* We need to double check this after modification of the final
  2383. * dirent. */
  2384. this_hole = ocfs2_figure_dirent_hole(prev_de);
  2385. if (this_hole > largest_hole)
  2386. largest_hole = this_hole;
  2387. if (largest_hole >= OCFS2_DIR_MIN_REC_LEN)
  2388. return largest_hole;
  2389. return 0;
  2390. }
  2391. /*
  2392. * We allocate enough clusters to fulfill "blocks_wanted", but set
  2393. * i_size to exactly one block. Ocfs2_extend_dir() will handle the
  2394. * rest automatically for us.
  2395. *
  2396. * *first_block_bh is a pointer to the 1st data block allocated to the
  2397. * directory.
  2398. */
  2399. static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
  2400. unsigned int blocks_wanted,
  2401. struct ocfs2_dir_lookup_result *lookup,
  2402. struct buffer_head **first_block_bh)
  2403. {
  2404. u32 alloc, dx_alloc, bit_off, len, num_dx_entries = 0;
  2405. struct super_block *sb = dir->i_sb;
  2406. int ret, i, num_dx_leaves = 0, dx_inline = 0,
  2407. credits = ocfs2_inline_to_extents_credits(sb);
  2408. u64 dx_insert_blkno, blkno,
  2409. bytes = blocks_wanted << sb->s_blocksize_bits;
  2410. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  2411. struct ocfs2_inode_info *oi = OCFS2_I(dir);
  2412. struct ocfs2_alloc_context *data_ac = NULL;
  2413. struct ocfs2_alloc_context *meta_ac = NULL;
  2414. struct buffer_head *dirdata_bh = NULL;
  2415. struct buffer_head *dx_root_bh = NULL;
  2416. struct buffer_head **dx_leaves = NULL;
  2417. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  2418. handle_t *handle;
  2419. struct ocfs2_extent_tree et;
  2420. struct ocfs2_extent_tree dx_et;
  2421. int did_quota = 0, bytes_allocated = 0;
  2422. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(dir), di_bh);
  2423. alloc = ocfs2_clusters_for_bytes(sb, bytes);
  2424. dx_alloc = 0;
  2425. down_write(&oi->ip_alloc_sem);
  2426. if (ocfs2_supports_indexed_dirs(osb)) {
  2427. credits += ocfs2_add_dir_index_credits(sb);
  2428. dx_inline = ocfs2_new_dx_should_be_inline(dir, di_bh);
  2429. if (!dx_inline) {
  2430. /* Add one more cluster for an index leaf */
  2431. dx_alloc++;
  2432. dx_leaves = ocfs2_dx_dir_kmalloc_leaves(sb,
  2433. &num_dx_leaves);
  2434. if (!dx_leaves) {
  2435. ret = -ENOMEM;
  2436. mlog_errno(ret);
  2437. goto out;
  2438. }
  2439. }
  2440. /* This gets us the dx_root */
  2441. ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac);
  2442. if (ret) {
  2443. mlog_errno(ret);
  2444. goto out;
  2445. }
  2446. }
  2447. /*
  2448. * We should never need more than 2 clusters for the unindexed
  2449. * tree - maximum dirent size is far less than one block. In
  2450. * fact, the only time we'd need more than one cluster is if
  2451. * blocksize == clustersize and the dirent won't fit in the
  2452. * extra space that the expansion to a single block gives. As
  2453. * of today, that only happens on 4k/4k file systems.
  2454. */
  2455. BUG_ON(alloc > 2);
  2456. ret = ocfs2_reserve_clusters(osb, alloc + dx_alloc, &data_ac);
  2457. if (ret) {
  2458. mlog_errno(ret);
  2459. goto out;
  2460. }
  2461. /*
  2462. * Prepare for worst case allocation scenario of two separate
  2463. * extents in the unindexed tree.
  2464. */
  2465. if (alloc == 2)
  2466. credits += OCFS2_SUBALLOC_ALLOC;
  2467. handle = ocfs2_start_trans(osb, credits);
  2468. if (IS_ERR(handle)) {
  2469. ret = PTR_ERR(handle);
  2470. mlog_errno(ret);
  2471. goto out;
  2472. }
  2473. ret = dquot_alloc_space_nodirty(dir,
  2474. ocfs2_clusters_to_bytes(osb->sb, alloc + dx_alloc));
  2475. if (ret)
  2476. goto out_commit;
  2477. did_quota = 1;
  2478. if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) {
  2479. /*
  2480. * Allocate our index cluster first, to maximize the
  2481. * possibility that unindexed leaves grow
  2482. * contiguously.
  2483. */
  2484. ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac,
  2485. dx_leaves, num_dx_leaves,
  2486. &dx_insert_blkno);
  2487. if (ret) {
  2488. mlog_errno(ret);
  2489. goto out_commit;
  2490. }
  2491. bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1);
  2492. }
  2493. /*
  2494. * Try to claim as many clusters as the bitmap can give though
  2495. * if we only get one now, that's enough to continue. The rest
  2496. * will be claimed after the conversion to extents.
  2497. */
  2498. if (ocfs2_dir_resv_allowed(osb))
  2499. data_ac->ac_resv = &oi->ip_la_data_resv;
  2500. ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off, &len);
  2501. if (ret) {
  2502. mlog_errno(ret);
  2503. goto out_commit;
  2504. }
  2505. bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1);
  2506. /*
  2507. * Operations are carefully ordered so that we set up the new
  2508. * data block first. The conversion from inline data to
  2509. * extents follows.
  2510. */
  2511. blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
  2512. dirdata_bh = sb_getblk(sb, blkno);
  2513. if (!dirdata_bh) {
  2514. ret = -ENOMEM;
  2515. mlog_errno(ret);
  2516. goto out_commit;
  2517. }
  2518. ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dirdata_bh);
  2519. ret = ocfs2_journal_access_db(handle, INODE_CACHE(dir), dirdata_bh,
  2520. OCFS2_JOURNAL_ACCESS_CREATE);
  2521. if (ret) {
  2522. mlog_errno(ret);
  2523. goto out_commit;
  2524. }
  2525. memcpy(dirdata_bh->b_data, di->id2.i_data.id_data, i_size_read(dir));
  2526. memset(dirdata_bh->b_data + i_size_read(dir), 0,
  2527. sb->s_blocksize - i_size_read(dir));
  2528. i = ocfs2_expand_last_dirent(dirdata_bh->b_data, i_size_read(dir), dir);
  2529. if (ocfs2_new_dir_wants_trailer(dir)) {
  2530. /*
  2531. * Prepare the dir trailer up front. It will otherwise look
  2532. * like a valid dirent. Even if inserting the index fails
  2533. * (unlikely), then all we'll have done is given first dir
  2534. * block a small amount of fragmentation.
  2535. */
  2536. ocfs2_init_dir_trailer(dir, dirdata_bh, i);
  2537. }
  2538. ocfs2_journal_dirty(handle, dirdata_bh);
  2539. if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) {
  2540. /*
  2541. * Dx dirs with an external cluster need to do this up
  2542. * front. Inline dx root's get handled later, after
  2543. * we've allocated our root block. We get passed back
  2544. * a total number of items so that dr_num_entries can
  2545. * be correctly set once the dx_root has been
  2546. * allocated.
  2547. */
  2548. ret = ocfs2_dx_dir_index_block(dir, handle, dx_leaves,
  2549. num_dx_leaves, &num_dx_entries,
  2550. dirdata_bh);
  2551. if (ret) {
  2552. mlog_errno(ret);
  2553. goto out_commit;
  2554. }
  2555. }
  2556. /*
  2557. * Set extent, i_size, etc on the directory. After this, the
  2558. * inode should contain the same exact dirents as before and
  2559. * be fully accessible from system calls.
  2560. *
  2561. * We let the later dirent insert modify c/mtime - to the user
  2562. * the data hasn't changed.
  2563. */
  2564. ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh,
  2565. OCFS2_JOURNAL_ACCESS_CREATE);
  2566. if (ret) {
  2567. mlog_errno(ret);
  2568. goto out_commit;
  2569. }
  2570. spin_lock(&oi->ip_lock);
  2571. oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL;
  2572. di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
  2573. spin_unlock(&oi->ip_lock);
  2574. ocfs2_dinode_new_extent_list(dir, di);
  2575. i_size_write(dir, sb->s_blocksize);
  2576. dir->i_mtime = dir->i_ctime = CURRENT_TIME;
  2577. di->i_size = cpu_to_le64(sb->s_blocksize);
  2578. di->i_ctime = di->i_mtime = cpu_to_le64(dir->i_ctime.tv_sec);
  2579. di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(dir->i_ctime.tv_nsec);
  2580. /*
  2581. * This should never fail as our extent list is empty and all
  2582. * related blocks have been journaled already.
  2583. */
  2584. ret = ocfs2_insert_extent(handle, &et, 0, blkno, len,
  2585. 0, NULL);
  2586. if (ret) {
  2587. mlog_errno(ret);
  2588. goto out_commit;
  2589. }
  2590. /*
  2591. * Set i_blocks after the extent insert for the most up to
  2592. * date ip_clusters value.
  2593. */
  2594. dir->i_blocks = ocfs2_inode_sector_count(dir);
  2595. ocfs2_journal_dirty(handle, di_bh);
  2596. if (ocfs2_supports_indexed_dirs(osb)) {
  2597. ret = ocfs2_dx_dir_attach_index(osb, handle, dir, di_bh,
  2598. dirdata_bh, meta_ac, dx_inline,
  2599. num_dx_entries, &dx_root_bh);
  2600. if (ret) {
  2601. mlog_errno(ret);
  2602. goto out_commit;
  2603. }
  2604. if (dx_inline) {
  2605. ocfs2_dx_dir_index_root_block(dir, dx_root_bh,
  2606. dirdata_bh);
  2607. } else {
  2608. ocfs2_init_dx_root_extent_tree(&dx_et,
  2609. INODE_CACHE(dir),
  2610. dx_root_bh);
  2611. ret = ocfs2_insert_extent(handle, &dx_et, 0,
  2612. dx_insert_blkno, 1, 0, NULL);
  2613. if (ret)
  2614. mlog_errno(ret);
  2615. }
  2616. }
  2617. /*
  2618. * We asked for two clusters, but only got one in the 1st
  2619. * pass. Claim the 2nd cluster as a separate extent.
  2620. */
  2621. if (alloc > len) {
  2622. ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off,
  2623. &len);
  2624. if (ret) {
  2625. mlog_errno(ret);
  2626. goto out_commit;
  2627. }
  2628. blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
  2629. ret = ocfs2_insert_extent(handle, &et, 1,
  2630. blkno, len, 0, NULL);
  2631. if (ret) {
  2632. mlog_errno(ret);
  2633. goto out_commit;
  2634. }
  2635. bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1);
  2636. }
  2637. *first_block_bh = dirdata_bh;
  2638. dirdata_bh = NULL;
  2639. if (ocfs2_supports_indexed_dirs(osb)) {
  2640. unsigned int off;
  2641. if (!dx_inline) {
  2642. /*
  2643. * We need to return the correct block within the
  2644. * cluster which should hold our entry.
  2645. */
  2646. off = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb),
  2647. &lookup->dl_hinfo);
  2648. get_bh(dx_leaves[off]);
  2649. lookup->dl_dx_leaf_bh = dx_leaves[off];
  2650. }
  2651. lookup->dl_dx_root_bh = dx_root_bh;
  2652. dx_root_bh = NULL;
  2653. }
  2654. out_commit:
  2655. if (ret < 0 && did_quota)
  2656. dquot_free_space_nodirty(dir, bytes_allocated);
  2657. ocfs2_commit_trans(osb, handle);
  2658. out:
  2659. up_write(&oi->ip_alloc_sem);
  2660. if (data_ac)
  2661. ocfs2_free_alloc_context(data_ac);
  2662. if (meta_ac)
  2663. ocfs2_free_alloc_context(meta_ac);
  2664. if (dx_leaves) {
  2665. for (i = 0; i < num_dx_leaves; i++)
  2666. brelse(dx_leaves[i]);
  2667. kfree(dx_leaves);
  2668. }
  2669. brelse(dirdata_bh);
  2670. brelse(dx_root_bh);
  2671. return ret;
  2672. }
  2673. /* returns a bh of the 1st new block in the allocation. */
  2674. static int ocfs2_do_extend_dir(struct super_block *sb,
  2675. handle_t *handle,
  2676. struct inode *dir,
  2677. struct buffer_head *parent_fe_bh,
  2678. struct ocfs2_alloc_context *data_ac,
  2679. struct ocfs2_alloc_context *meta_ac,
  2680. struct buffer_head **new_bh)
  2681. {
  2682. int status;
  2683. int extend, did_quota = 0;
  2684. u64 p_blkno, v_blkno;
  2685. spin_lock(&OCFS2_I(dir)->ip_lock);
  2686. extend = (i_size_read(dir) == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters));
  2687. spin_unlock(&OCFS2_I(dir)->ip_lock);
  2688. if (extend) {
  2689. u32 offset = OCFS2_I(dir)->ip_clusters;
  2690. status = dquot_alloc_space_nodirty(dir,
  2691. ocfs2_clusters_to_bytes(sb, 1));
  2692. if (status)
  2693. goto bail;
  2694. did_quota = 1;
  2695. status = ocfs2_add_inode_data(OCFS2_SB(sb), dir, &offset,
  2696. 1, 0, parent_fe_bh, handle,
  2697. data_ac, meta_ac, NULL);
  2698. BUG_ON(status == -EAGAIN);
  2699. if (status < 0) {
  2700. mlog_errno(status);
  2701. goto bail;
  2702. }
  2703. }
  2704. v_blkno = ocfs2_blocks_for_bytes(sb, i_size_read(dir));
  2705. status = ocfs2_extent_map_get_blocks(dir, v_blkno, &p_blkno, NULL, NULL);
  2706. if (status < 0) {
  2707. mlog_errno(status);
  2708. goto bail;
  2709. }
  2710. *new_bh = sb_getblk(sb, p_blkno);
  2711. if (!*new_bh) {
  2712. status = -ENOMEM;
  2713. mlog_errno(status);
  2714. goto bail;
  2715. }
  2716. status = 0;
  2717. bail:
  2718. if (did_quota && status < 0)
  2719. dquot_free_space_nodirty(dir, ocfs2_clusters_to_bytes(sb, 1));
  2720. return status;
  2721. }
  2722. /*
  2723. * Assumes you already have a cluster lock on the directory.
  2724. *
  2725. * 'blocks_wanted' is only used if we have an inline directory which
  2726. * is to be turned into an extent based one. The size of the dirent to
  2727. * insert might be larger than the space gained by growing to just one
  2728. * block, so we may have to grow the inode by two blocks in that case.
  2729. *
  2730. * If the directory is already indexed, dx_root_bh must be provided.
  2731. */
  2732. static int ocfs2_extend_dir(struct ocfs2_super *osb,
  2733. struct inode *dir,
  2734. struct buffer_head *parent_fe_bh,
  2735. unsigned int blocks_wanted,
  2736. struct ocfs2_dir_lookup_result *lookup,
  2737. struct buffer_head **new_de_bh)
  2738. {
  2739. int status = 0;
  2740. int credits, num_free_extents, drop_alloc_sem = 0;
  2741. loff_t dir_i_size;
  2742. struct ocfs2_dinode *fe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
  2743. struct ocfs2_extent_list *el = &fe->id2.i_list;
  2744. struct ocfs2_alloc_context *data_ac = NULL;
  2745. struct ocfs2_alloc_context *meta_ac = NULL;
  2746. handle_t *handle = NULL;
  2747. struct buffer_head *new_bh = NULL;
  2748. struct ocfs2_dir_entry * de;
  2749. struct super_block *sb = osb->sb;
  2750. struct ocfs2_extent_tree et;
  2751. struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh;
  2752. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  2753. /*
  2754. * This would be a code error as an inline directory should
  2755. * never have an index root.
  2756. */
  2757. BUG_ON(dx_root_bh);
  2758. status = ocfs2_expand_inline_dir(dir, parent_fe_bh,
  2759. blocks_wanted, lookup,
  2760. &new_bh);
  2761. if (status) {
  2762. mlog_errno(status);
  2763. goto bail;
  2764. }
  2765. /* Expansion from inline to an indexed directory will
  2766. * have given us this. */
  2767. dx_root_bh = lookup->dl_dx_root_bh;
  2768. if (blocks_wanted == 1) {
  2769. /*
  2770. * If the new dirent will fit inside the space
  2771. * created by pushing out to one block, then
  2772. * we can complete the operation
  2773. * here. Otherwise we have to expand i_size
  2774. * and format the 2nd block below.
  2775. */
  2776. BUG_ON(new_bh == NULL);
  2777. goto bail_bh;
  2778. }
  2779. /*
  2780. * Get rid of 'new_bh' - we want to format the 2nd
  2781. * data block and return that instead.
  2782. */
  2783. brelse(new_bh);
  2784. new_bh = NULL;
  2785. down_write(&OCFS2_I(dir)->ip_alloc_sem);
  2786. drop_alloc_sem = 1;
  2787. dir_i_size = i_size_read(dir);
  2788. credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS;
  2789. goto do_extend;
  2790. }
  2791. down_write(&OCFS2_I(dir)->ip_alloc_sem);
  2792. drop_alloc_sem = 1;
  2793. dir_i_size = i_size_read(dir);
  2794. trace_ocfs2_extend_dir((unsigned long long)OCFS2_I(dir)->ip_blkno,
  2795. dir_i_size);
  2796. /* dir->i_size is always block aligned. */
  2797. spin_lock(&OCFS2_I(dir)->ip_lock);
  2798. if (dir_i_size == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)) {
  2799. spin_unlock(&OCFS2_I(dir)->ip_lock);
  2800. ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(dir),
  2801. parent_fe_bh);
  2802. num_free_extents = ocfs2_num_free_extents(osb, &et);
  2803. if (num_free_extents < 0) {
  2804. status = num_free_extents;
  2805. mlog_errno(status);
  2806. goto bail;
  2807. }
  2808. if (!num_free_extents) {
  2809. status = ocfs2_reserve_new_metadata(osb, el, &meta_ac);
  2810. if (status < 0) {
  2811. if (status != -ENOSPC)
  2812. mlog_errno(status);
  2813. goto bail;
  2814. }
  2815. }
  2816. status = ocfs2_reserve_clusters(osb, 1, &data_ac);
  2817. if (status < 0) {
  2818. if (status != -ENOSPC)
  2819. mlog_errno(status);
  2820. goto bail;
  2821. }
  2822. if (ocfs2_dir_resv_allowed(osb))
  2823. data_ac->ac_resv = &OCFS2_I(dir)->ip_la_data_resv;
  2824. credits = ocfs2_calc_extend_credits(sb, el);
  2825. } else {
  2826. spin_unlock(&OCFS2_I(dir)->ip_lock);
  2827. credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS;
  2828. }
  2829. do_extend:
  2830. if (ocfs2_dir_indexed(dir))
  2831. credits++; /* For attaching the new dirent block to the
  2832. * dx_root */
  2833. handle = ocfs2_start_trans(osb, credits);
  2834. if (IS_ERR(handle)) {
  2835. status = PTR_ERR(handle);
  2836. handle = NULL;
  2837. mlog_errno(status);
  2838. goto bail;
  2839. }
  2840. status = ocfs2_do_extend_dir(osb->sb, handle, dir, parent_fe_bh,
  2841. data_ac, meta_ac, &new_bh);
  2842. if (status < 0) {
  2843. mlog_errno(status);
  2844. goto bail;
  2845. }
  2846. ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), new_bh);
  2847. status = ocfs2_journal_access_db(handle, INODE_CACHE(dir), new_bh,
  2848. OCFS2_JOURNAL_ACCESS_CREATE);
  2849. if (status < 0) {
  2850. mlog_errno(status);
  2851. goto bail;
  2852. }
  2853. memset(new_bh->b_data, 0, sb->s_blocksize);
  2854. de = (struct ocfs2_dir_entry *) new_bh->b_data;
  2855. de->inode = 0;
  2856. if (ocfs2_supports_dir_trailer(dir)) {
  2857. de->rec_len = cpu_to_le16(ocfs2_dir_trailer_blk_off(sb));
  2858. ocfs2_init_dir_trailer(dir, new_bh, le16_to_cpu(de->rec_len));
  2859. if (ocfs2_dir_indexed(dir)) {
  2860. status = ocfs2_dx_dir_link_trailer(dir, handle,
  2861. dx_root_bh, new_bh);
  2862. if (status) {
  2863. mlog_errno(status);
  2864. goto bail;
  2865. }
  2866. }
  2867. } else {
  2868. de->rec_len = cpu_to_le16(sb->s_blocksize);
  2869. }
  2870. ocfs2_journal_dirty(handle, new_bh);
  2871. dir_i_size += dir->i_sb->s_blocksize;
  2872. i_size_write(dir, dir_i_size);
  2873. dir->i_blocks = ocfs2_inode_sector_count(dir);
  2874. status = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
  2875. if (status < 0) {
  2876. mlog_errno(status);
  2877. goto bail;
  2878. }
  2879. bail_bh:
  2880. *new_de_bh = new_bh;
  2881. get_bh(*new_de_bh);
  2882. bail:
  2883. if (handle)
  2884. ocfs2_commit_trans(osb, handle);
  2885. if (drop_alloc_sem)
  2886. up_write(&OCFS2_I(dir)->ip_alloc_sem);
  2887. if (data_ac)
  2888. ocfs2_free_alloc_context(data_ac);
  2889. if (meta_ac)
  2890. ocfs2_free_alloc_context(meta_ac);
  2891. brelse(new_bh);
  2892. return status;
  2893. }
  2894. static int ocfs2_find_dir_space_id(struct inode *dir, struct buffer_head *di_bh,
  2895. const char *name, int namelen,
  2896. struct buffer_head **ret_de_bh,
  2897. unsigned int *blocks_wanted)
  2898. {
  2899. int ret;
  2900. struct super_block *sb = dir->i_sb;
  2901. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  2902. struct ocfs2_dir_entry *de, *last_de = NULL;
  2903. char *de_buf, *limit;
  2904. unsigned long offset = 0;
  2905. unsigned int rec_len, new_rec_len, free_space = dir->i_sb->s_blocksize;
  2906. /*
  2907. * This calculates how many free bytes we'd have in block zero, should
  2908. * this function force expansion to an extent tree.
  2909. */
  2910. if (ocfs2_new_dir_wants_trailer(dir))
  2911. free_space = ocfs2_dir_trailer_blk_off(sb) - i_size_read(dir);
  2912. else
  2913. free_space = dir->i_sb->s_blocksize - i_size_read(dir);
  2914. de_buf = di->id2.i_data.id_data;
  2915. limit = de_buf + i_size_read(dir);
  2916. rec_len = OCFS2_DIR_REC_LEN(namelen);
  2917. while (de_buf < limit) {
  2918. de = (struct ocfs2_dir_entry *)de_buf;
  2919. if (!ocfs2_check_dir_entry(dir, de, di_bh, offset)) {
  2920. ret = -ENOENT;
  2921. goto out;
  2922. }
  2923. if (ocfs2_match(namelen, name, de)) {
  2924. ret = -EEXIST;
  2925. goto out;
  2926. }
  2927. /*
  2928. * No need to check for a trailing dirent record here as
  2929. * they're not used for inline dirs.
  2930. */
  2931. if (ocfs2_dirent_would_fit(de, rec_len)) {
  2932. /* Ok, we found a spot. Return this bh and let
  2933. * the caller actually fill it in. */
  2934. *ret_de_bh = di_bh;
  2935. get_bh(*ret_de_bh);
  2936. ret = 0;
  2937. goto out;
  2938. }
  2939. last_de = de;
  2940. de_buf += le16_to_cpu(de->rec_len);
  2941. offset += le16_to_cpu(de->rec_len);
  2942. }
  2943. /*
  2944. * We're going to require expansion of the directory - figure
  2945. * out how many blocks we'll need so that a place for the
  2946. * dirent can be found.
  2947. */
  2948. *blocks_wanted = 1;
  2949. new_rec_len = le16_to_cpu(last_de->rec_len) + free_space;
  2950. if (new_rec_len < (rec_len + OCFS2_DIR_REC_LEN(last_de->name_len)))
  2951. *blocks_wanted = 2;
  2952. ret = -ENOSPC;
  2953. out:
  2954. return ret;
  2955. }
  2956. static int ocfs2_find_dir_space_el(struct inode *dir, const char *name,
  2957. int namelen, struct buffer_head **ret_de_bh)
  2958. {
  2959. unsigned long offset;
  2960. struct buffer_head *bh = NULL;
  2961. unsigned short rec_len;
  2962. struct ocfs2_dir_entry *de;
  2963. struct super_block *sb = dir->i_sb;
  2964. int status;
  2965. int blocksize = dir->i_sb->s_blocksize;
  2966. status = ocfs2_read_dir_block(dir, 0, &bh, 0);
  2967. if (status) {
  2968. mlog_errno(status);
  2969. goto bail;
  2970. }
  2971. rec_len = OCFS2_DIR_REC_LEN(namelen);
  2972. offset = 0;
  2973. de = (struct ocfs2_dir_entry *) bh->b_data;
  2974. while (1) {
  2975. if ((char *)de >= sb->s_blocksize + bh->b_data) {
  2976. brelse(bh);
  2977. bh = NULL;
  2978. if (i_size_read(dir) <= offset) {
  2979. /*
  2980. * Caller will have to expand this
  2981. * directory.
  2982. */
  2983. status = -ENOSPC;
  2984. goto bail;
  2985. }
  2986. status = ocfs2_read_dir_block(dir,
  2987. offset >> sb->s_blocksize_bits,
  2988. &bh, 0);
  2989. if (status) {
  2990. mlog_errno(status);
  2991. goto bail;
  2992. }
  2993. /* move to next block */
  2994. de = (struct ocfs2_dir_entry *) bh->b_data;
  2995. }
  2996. if (!ocfs2_check_dir_entry(dir, de, bh, offset)) {
  2997. status = -ENOENT;
  2998. goto bail;
  2999. }
  3000. if (ocfs2_match(namelen, name, de)) {
  3001. status = -EEXIST;
  3002. goto bail;
  3003. }
  3004. if (ocfs2_skip_dir_trailer(dir, de, offset % blocksize,
  3005. blocksize))
  3006. goto next;
  3007. if (ocfs2_dirent_would_fit(de, rec_len)) {
  3008. /* Ok, we found a spot. Return this bh and let
  3009. * the caller actually fill it in. */
  3010. *ret_de_bh = bh;
  3011. get_bh(*ret_de_bh);
  3012. status = 0;
  3013. goto bail;
  3014. }
  3015. next:
  3016. offset += le16_to_cpu(de->rec_len);
  3017. de = (struct ocfs2_dir_entry *)((char *) de + le16_to_cpu(de->rec_len));
  3018. }
  3019. status = 0;
  3020. bail:
  3021. brelse(bh);
  3022. if (status)
  3023. mlog_errno(status);
  3024. return status;
  3025. }
  3026. static int dx_leaf_sort_cmp(const void *a, const void *b)
  3027. {
  3028. const struct ocfs2_dx_entry *entry1 = a;
  3029. const struct ocfs2_dx_entry *entry2 = b;
  3030. u32 major_hash1 = le32_to_cpu(entry1->dx_major_hash);
  3031. u32 major_hash2 = le32_to_cpu(entry2->dx_major_hash);
  3032. u32 minor_hash1 = le32_to_cpu(entry1->dx_minor_hash);
  3033. u32 minor_hash2 = le32_to_cpu(entry2->dx_minor_hash);
  3034. if (major_hash1 > major_hash2)
  3035. return 1;
  3036. if (major_hash1 < major_hash2)
  3037. return -1;
  3038. /*
  3039. * It is not strictly necessary to sort by minor
  3040. */
  3041. if (minor_hash1 > minor_hash2)
  3042. return 1;
  3043. if (minor_hash1 < minor_hash2)
  3044. return -1;
  3045. return 0;
  3046. }
  3047. static void dx_leaf_sort_swap(void *a, void *b, int size)
  3048. {
  3049. struct ocfs2_dx_entry *entry1 = a;
  3050. struct ocfs2_dx_entry *entry2 = b;
  3051. struct ocfs2_dx_entry tmp;
  3052. BUG_ON(size != sizeof(*entry1));
  3053. tmp = *entry1;
  3054. *entry1 = *entry2;
  3055. *entry2 = tmp;
  3056. }
  3057. static int ocfs2_dx_leaf_same_major(struct ocfs2_dx_leaf *dx_leaf)
  3058. {
  3059. struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list;
  3060. int i, num = le16_to_cpu(dl_list->de_num_used);
  3061. for (i = 0; i < (num - 1); i++) {
  3062. if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) !=
  3063. le32_to_cpu(dl_list->de_entries[i + 1].dx_major_hash))
  3064. return 0;
  3065. }
  3066. return 1;
  3067. }
  3068. /*
  3069. * Find the optimal value to split this leaf on. This expects the leaf
  3070. * entries to be in sorted order.
  3071. *
  3072. * leaf_cpos is the cpos of the leaf we're splitting. insert_hash is
  3073. * the hash we want to insert.
  3074. *
  3075. * This function is only concerned with the major hash - that which
  3076. * determines which cluster an item belongs to.
  3077. */
  3078. static int ocfs2_dx_dir_find_leaf_split(struct ocfs2_dx_leaf *dx_leaf,
  3079. u32 leaf_cpos, u32 insert_hash,
  3080. u32 *split_hash)
  3081. {
  3082. struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list;
  3083. int i, num_used = le16_to_cpu(dl_list->de_num_used);
  3084. int allsame;
  3085. /*
  3086. * There's a couple rare, but nasty corner cases we have to
  3087. * check for here. All of them involve a leaf where all value
  3088. * have the same hash, which is what we look for first.
  3089. *
  3090. * Most of the time, all of the above is false, and we simply
  3091. * pick the median value for a split.
  3092. */
  3093. allsame = ocfs2_dx_leaf_same_major(dx_leaf);
  3094. if (allsame) {
  3095. u32 val = le32_to_cpu(dl_list->de_entries[0].dx_major_hash);
  3096. if (val == insert_hash) {
  3097. /*
  3098. * No matter where we would choose to split,
  3099. * the new entry would want to occupy the same
  3100. * block as these. Since there's no space left
  3101. * in their existing block, we know there
  3102. * won't be space after the split.
  3103. */
  3104. return -ENOSPC;
  3105. }
  3106. if (val == leaf_cpos) {
  3107. /*
  3108. * Because val is the same as leaf_cpos (which
  3109. * is the smallest value this leaf can have),
  3110. * yet is not equal to insert_hash, then we
  3111. * know that insert_hash *must* be larger than
  3112. * val (and leaf_cpos). At least cpos+1 in value.
  3113. *
  3114. * We also know then, that there cannot be an
  3115. * adjacent extent (otherwise we'd be looking
  3116. * at it). Choosing this value gives us a
  3117. * chance to get some contiguousness.
  3118. */
  3119. *split_hash = leaf_cpos + 1;
  3120. return 0;
  3121. }
  3122. if (val > insert_hash) {
  3123. /*
  3124. * val can not be the same as insert hash, and
  3125. * also must be larger than leaf_cpos. Also,
  3126. * we know that there can't be a leaf between
  3127. * cpos and val, otherwise the entries with
  3128. * hash 'val' would be there.
  3129. */
  3130. *split_hash = val;
  3131. return 0;
  3132. }
  3133. *split_hash = insert_hash;
  3134. return 0;
  3135. }
  3136. /*
  3137. * Since the records are sorted and the checks above
  3138. * guaranteed that not all records in this block are the same,
  3139. * we simple travel forward, from the median, and pick the 1st
  3140. * record whose value is larger than leaf_cpos.
  3141. */
  3142. for (i = (num_used / 2); i < num_used; i++)
  3143. if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) >
  3144. leaf_cpos)
  3145. break;
  3146. BUG_ON(i == num_used); /* Should be impossible */
  3147. *split_hash = le32_to_cpu(dl_list->de_entries[i].dx_major_hash);
  3148. return 0;
  3149. }
  3150. /*
  3151. * Transfer all entries in orig_dx_leaves whose major hash is equal to or
  3152. * larger than split_hash into new_dx_leaves. We use a temporary
  3153. * buffer (tmp_dx_leaf) to make the changes to the original leaf blocks.
  3154. *
  3155. * Since the block offset inside a leaf (cluster) is a constant mask
  3156. * of minor_hash, we can optimize - an item at block offset X within
  3157. * the original cluster, will be at offset X within the new cluster.
  3158. */
  3159. static void ocfs2_dx_dir_transfer_leaf(struct inode *dir, u32 split_hash,
  3160. handle_t *handle,
  3161. struct ocfs2_dx_leaf *tmp_dx_leaf,
  3162. struct buffer_head **orig_dx_leaves,
  3163. struct buffer_head **new_dx_leaves,
  3164. int num_dx_leaves)
  3165. {
  3166. int i, j, num_used;
  3167. u32 major_hash;
  3168. struct ocfs2_dx_leaf *orig_dx_leaf, *new_dx_leaf;
  3169. struct ocfs2_dx_entry_list *orig_list, *new_list, *tmp_list;
  3170. struct ocfs2_dx_entry *dx_entry;
  3171. tmp_list = &tmp_dx_leaf->dl_list;
  3172. for (i = 0; i < num_dx_leaves; i++) {
  3173. orig_dx_leaf = (struct ocfs2_dx_leaf *) orig_dx_leaves[i]->b_data;
  3174. orig_list = &orig_dx_leaf->dl_list;
  3175. new_dx_leaf = (struct ocfs2_dx_leaf *) new_dx_leaves[i]->b_data;
  3176. new_list = &new_dx_leaf->dl_list;
  3177. num_used = le16_to_cpu(orig_list->de_num_used);
  3178. memcpy(tmp_dx_leaf, orig_dx_leaf, dir->i_sb->s_blocksize);
  3179. tmp_list->de_num_used = cpu_to_le16(0);
  3180. memset(&tmp_list->de_entries, 0, sizeof(*dx_entry)*num_used);
  3181. for (j = 0; j < num_used; j++) {
  3182. dx_entry = &orig_list->de_entries[j];
  3183. major_hash = le32_to_cpu(dx_entry->dx_major_hash);
  3184. if (major_hash >= split_hash)
  3185. ocfs2_dx_dir_leaf_insert_tail(new_dx_leaf,
  3186. dx_entry);
  3187. else
  3188. ocfs2_dx_dir_leaf_insert_tail(tmp_dx_leaf,
  3189. dx_entry);
  3190. }
  3191. memcpy(orig_dx_leaf, tmp_dx_leaf, dir->i_sb->s_blocksize);
  3192. ocfs2_journal_dirty(handle, orig_dx_leaves[i]);
  3193. ocfs2_journal_dirty(handle, new_dx_leaves[i]);
  3194. }
  3195. }
  3196. static int ocfs2_dx_dir_rebalance_credits(struct ocfs2_super *osb,
  3197. struct ocfs2_dx_root_block *dx_root)
  3198. {
  3199. int credits = ocfs2_clusters_to_blocks(osb->sb, 2);
  3200. credits += ocfs2_calc_extend_credits(osb->sb, &dx_root->dr_list);
  3201. credits += ocfs2_quota_trans_credits(osb->sb);
  3202. return credits;
  3203. }
  3204. /*
  3205. * Find the median value in dx_leaf_bh and allocate a new leaf to move
  3206. * half our entries into.
  3207. */
  3208. static int ocfs2_dx_dir_rebalance(struct ocfs2_super *osb, struct inode *dir,
  3209. struct buffer_head *dx_root_bh,
  3210. struct buffer_head *dx_leaf_bh,
  3211. struct ocfs2_dx_hinfo *hinfo, u32 leaf_cpos,
  3212. u64 leaf_blkno)
  3213. {
  3214. struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data;
  3215. int credits, ret, i, num_used, did_quota = 0;
  3216. u32 cpos, split_hash, insert_hash = hinfo->major_hash;
  3217. u64 orig_leaves_start;
  3218. int num_dx_leaves;
  3219. struct buffer_head **orig_dx_leaves = NULL;
  3220. struct buffer_head **new_dx_leaves = NULL;
  3221. struct ocfs2_alloc_context *data_ac = NULL, *meta_ac = NULL;
  3222. struct ocfs2_extent_tree et;
  3223. handle_t *handle = NULL;
  3224. struct ocfs2_dx_root_block *dx_root;
  3225. struct ocfs2_dx_leaf *tmp_dx_leaf = NULL;
  3226. trace_ocfs2_dx_dir_rebalance((unsigned long long)OCFS2_I(dir)->ip_blkno,
  3227. (unsigned long long)leaf_blkno,
  3228. insert_hash);
  3229. ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh);
  3230. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  3231. /*
  3232. * XXX: This is a rather large limit. We should use a more
  3233. * realistic value.
  3234. */
  3235. if (le32_to_cpu(dx_root->dr_clusters) == UINT_MAX)
  3236. return -ENOSPC;
  3237. num_used = le16_to_cpu(dx_leaf->dl_list.de_num_used);
  3238. if (num_used < le16_to_cpu(dx_leaf->dl_list.de_count)) {
  3239. mlog(ML_ERROR, "DX Dir: %llu, Asked to rebalance empty leaf: "
  3240. "%llu, %d\n", (unsigned long long)OCFS2_I(dir)->ip_blkno,
  3241. (unsigned long long)leaf_blkno, num_used);
  3242. ret = -EIO;
  3243. goto out;
  3244. }
  3245. orig_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves);
  3246. if (!orig_dx_leaves) {
  3247. ret = -ENOMEM;
  3248. mlog_errno(ret);
  3249. goto out;
  3250. }
  3251. new_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, NULL);
  3252. if (!new_dx_leaves) {
  3253. ret = -ENOMEM;
  3254. mlog_errno(ret);
  3255. goto out;
  3256. }
  3257. ret = ocfs2_lock_allocators(dir, &et, 1, 0, &data_ac, &meta_ac);
  3258. if (ret) {
  3259. if (ret != -ENOSPC)
  3260. mlog_errno(ret);
  3261. goto out;
  3262. }
  3263. credits = ocfs2_dx_dir_rebalance_credits(osb, dx_root);
  3264. handle = ocfs2_start_trans(osb, credits);
  3265. if (IS_ERR(handle)) {
  3266. ret = PTR_ERR(handle);
  3267. handle = NULL;
  3268. mlog_errno(ret);
  3269. goto out;
  3270. }
  3271. ret = dquot_alloc_space_nodirty(dir,
  3272. ocfs2_clusters_to_bytes(dir->i_sb, 1));
  3273. if (ret)
  3274. goto out_commit;
  3275. did_quota = 1;
  3276. ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh,
  3277. OCFS2_JOURNAL_ACCESS_WRITE);
  3278. if (ret) {
  3279. mlog_errno(ret);
  3280. goto out_commit;
  3281. }
  3282. /*
  3283. * This block is changing anyway, so we can sort it in place.
  3284. */
  3285. sort(dx_leaf->dl_list.de_entries, num_used,
  3286. sizeof(struct ocfs2_dx_entry), dx_leaf_sort_cmp,
  3287. dx_leaf_sort_swap);
  3288. ocfs2_journal_dirty(handle, dx_leaf_bh);
  3289. ret = ocfs2_dx_dir_find_leaf_split(dx_leaf, leaf_cpos, insert_hash,
  3290. &split_hash);
  3291. if (ret) {
  3292. mlog_errno(ret);
  3293. goto out_commit;
  3294. }
  3295. trace_ocfs2_dx_dir_rebalance_split(leaf_cpos, split_hash, insert_hash);
  3296. /*
  3297. * We have to carefully order operations here. There are items
  3298. * which want to be in the new cluster before insert, but in
  3299. * order to put those items in the new cluster, we alter the
  3300. * old cluster. A failure to insert gets nasty.
  3301. *
  3302. * So, start by reserving writes to the old
  3303. * cluster. ocfs2_dx_dir_new_cluster will reserve writes on
  3304. * the new cluster for us, before inserting it. The insert
  3305. * won't happen if there's an error before that. Once the
  3306. * insert is done then, we can transfer from one leaf into the
  3307. * other without fear of hitting any error.
  3308. */
  3309. /*
  3310. * The leaf transfer wants some scratch space so that we don't
  3311. * wind up doing a bunch of expensive memmove().
  3312. */
  3313. tmp_dx_leaf = kmalloc(osb->sb->s_blocksize, GFP_NOFS);
  3314. if (!tmp_dx_leaf) {
  3315. ret = -ENOMEM;
  3316. mlog_errno(ret);
  3317. goto out_commit;
  3318. }
  3319. orig_leaves_start = ocfs2_block_to_cluster_start(dir->i_sb, leaf_blkno);
  3320. ret = ocfs2_read_dx_leaves(dir, orig_leaves_start, num_dx_leaves,
  3321. orig_dx_leaves);
  3322. if (ret) {
  3323. mlog_errno(ret);
  3324. goto out_commit;
  3325. }
  3326. cpos = split_hash;
  3327. ret = ocfs2_dx_dir_new_cluster(dir, &et, cpos, handle,
  3328. data_ac, meta_ac, new_dx_leaves,
  3329. num_dx_leaves);
  3330. if (ret) {
  3331. mlog_errno(ret);
  3332. goto out_commit;
  3333. }
  3334. for (i = 0; i < num_dx_leaves; i++) {
  3335. ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir),
  3336. orig_dx_leaves[i],
  3337. OCFS2_JOURNAL_ACCESS_WRITE);
  3338. if (ret) {
  3339. mlog_errno(ret);
  3340. goto out_commit;
  3341. }
  3342. ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir),
  3343. new_dx_leaves[i],
  3344. OCFS2_JOURNAL_ACCESS_WRITE);
  3345. if (ret) {
  3346. mlog_errno(ret);
  3347. goto out_commit;
  3348. }
  3349. }
  3350. ocfs2_dx_dir_transfer_leaf(dir, split_hash, handle, tmp_dx_leaf,
  3351. orig_dx_leaves, new_dx_leaves, num_dx_leaves);
  3352. out_commit:
  3353. if (ret < 0 && did_quota)
  3354. dquot_free_space_nodirty(dir,
  3355. ocfs2_clusters_to_bytes(dir->i_sb, 1));
  3356. ocfs2_commit_trans(osb, handle);
  3357. out:
  3358. if (orig_dx_leaves || new_dx_leaves) {
  3359. for (i = 0; i < num_dx_leaves; i++) {
  3360. if (orig_dx_leaves)
  3361. brelse(orig_dx_leaves[i]);
  3362. if (new_dx_leaves)
  3363. brelse(new_dx_leaves[i]);
  3364. }
  3365. kfree(orig_dx_leaves);
  3366. kfree(new_dx_leaves);
  3367. }
  3368. if (meta_ac)
  3369. ocfs2_free_alloc_context(meta_ac);
  3370. if (data_ac)
  3371. ocfs2_free_alloc_context(data_ac);
  3372. kfree(tmp_dx_leaf);
  3373. return ret;
  3374. }
  3375. static int ocfs2_find_dir_space_dx(struct ocfs2_super *osb, struct inode *dir,
  3376. struct buffer_head *di_bh,
  3377. struct buffer_head *dx_root_bh,
  3378. const char *name, int namelen,
  3379. struct ocfs2_dir_lookup_result *lookup)
  3380. {
  3381. int ret, rebalanced = 0;
  3382. struct ocfs2_dx_root_block *dx_root;
  3383. struct buffer_head *dx_leaf_bh = NULL;
  3384. struct ocfs2_dx_leaf *dx_leaf;
  3385. u64 blkno;
  3386. u32 leaf_cpos;
  3387. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  3388. restart_search:
  3389. ret = ocfs2_dx_dir_lookup(dir, &dx_root->dr_list, &lookup->dl_hinfo,
  3390. &leaf_cpos, &blkno);
  3391. if (ret) {
  3392. mlog_errno(ret);
  3393. goto out;
  3394. }
  3395. ret = ocfs2_read_dx_leaf(dir, blkno, &dx_leaf_bh);
  3396. if (ret) {
  3397. mlog_errno(ret);
  3398. goto out;
  3399. }
  3400. dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data;
  3401. if (le16_to_cpu(dx_leaf->dl_list.de_num_used) >=
  3402. le16_to_cpu(dx_leaf->dl_list.de_count)) {
  3403. if (rebalanced) {
  3404. /*
  3405. * Rebalancing should have provided us with
  3406. * space in an appropriate leaf.
  3407. *
  3408. * XXX: Is this an abnormal condition then?
  3409. * Should we print a message here?
  3410. */
  3411. ret = -ENOSPC;
  3412. goto out;
  3413. }
  3414. ret = ocfs2_dx_dir_rebalance(osb, dir, dx_root_bh, dx_leaf_bh,
  3415. &lookup->dl_hinfo, leaf_cpos,
  3416. blkno);
  3417. if (ret) {
  3418. if (ret != -ENOSPC)
  3419. mlog_errno(ret);
  3420. goto out;
  3421. }
  3422. /*
  3423. * Restart the lookup. The rebalance might have
  3424. * changed which block our item fits into. Mark our
  3425. * progress, so we only execute this once.
  3426. */
  3427. brelse(dx_leaf_bh);
  3428. dx_leaf_bh = NULL;
  3429. rebalanced = 1;
  3430. goto restart_search;
  3431. }
  3432. lookup->dl_dx_leaf_bh = dx_leaf_bh;
  3433. dx_leaf_bh = NULL;
  3434. out:
  3435. brelse(dx_leaf_bh);
  3436. return ret;
  3437. }
  3438. static int ocfs2_search_dx_free_list(struct inode *dir,
  3439. struct buffer_head *dx_root_bh,
  3440. int namelen,
  3441. struct ocfs2_dir_lookup_result *lookup)
  3442. {
  3443. int ret = -ENOSPC;
  3444. struct buffer_head *leaf_bh = NULL, *prev_leaf_bh = NULL;
  3445. struct ocfs2_dir_block_trailer *db;
  3446. u64 next_block;
  3447. int rec_len = OCFS2_DIR_REC_LEN(namelen);
  3448. struct ocfs2_dx_root_block *dx_root;
  3449. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  3450. next_block = le64_to_cpu(dx_root->dr_free_blk);
  3451. while (next_block) {
  3452. brelse(prev_leaf_bh);
  3453. prev_leaf_bh = leaf_bh;
  3454. leaf_bh = NULL;
  3455. ret = ocfs2_read_dir_block_direct(dir, next_block, &leaf_bh);
  3456. if (ret) {
  3457. mlog_errno(ret);
  3458. goto out;
  3459. }
  3460. db = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb);
  3461. if (rec_len <= le16_to_cpu(db->db_free_rec_len)) {
  3462. lookup->dl_leaf_bh = leaf_bh;
  3463. lookup->dl_prev_leaf_bh = prev_leaf_bh;
  3464. leaf_bh = NULL;
  3465. prev_leaf_bh = NULL;
  3466. break;
  3467. }
  3468. next_block = le64_to_cpu(db->db_free_next);
  3469. }
  3470. if (!next_block)
  3471. ret = -ENOSPC;
  3472. out:
  3473. brelse(leaf_bh);
  3474. brelse(prev_leaf_bh);
  3475. return ret;
  3476. }
  3477. static int ocfs2_expand_inline_dx_root(struct inode *dir,
  3478. struct buffer_head *dx_root_bh)
  3479. {
  3480. int ret, num_dx_leaves, i, j, did_quota = 0;
  3481. struct buffer_head **dx_leaves = NULL;
  3482. struct ocfs2_extent_tree et;
  3483. u64 insert_blkno;
  3484. struct ocfs2_alloc_context *data_ac = NULL;
  3485. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  3486. handle_t *handle = NULL;
  3487. struct ocfs2_dx_root_block *dx_root;
  3488. struct ocfs2_dx_entry_list *entry_list;
  3489. struct ocfs2_dx_entry *dx_entry;
  3490. struct ocfs2_dx_leaf *target_leaf;
  3491. ret = ocfs2_reserve_clusters(osb, 1, &data_ac);
  3492. if (ret) {
  3493. mlog_errno(ret);
  3494. goto out;
  3495. }
  3496. dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves);
  3497. if (!dx_leaves) {
  3498. ret = -ENOMEM;
  3499. mlog_errno(ret);
  3500. goto out;
  3501. }
  3502. handle = ocfs2_start_trans(osb, ocfs2_calc_dxi_expand_credits(osb->sb));
  3503. if (IS_ERR(handle)) {
  3504. ret = PTR_ERR(handle);
  3505. mlog_errno(ret);
  3506. goto out;
  3507. }
  3508. ret = dquot_alloc_space_nodirty(dir,
  3509. ocfs2_clusters_to_bytes(osb->sb, 1));
  3510. if (ret)
  3511. goto out_commit;
  3512. did_quota = 1;
  3513. /*
  3514. * We do this up front, before the allocation, so that a
  3515. * failure to add the dx_root_bh to the journal won't result
  3516. * us losing clusters.
  3517. */
  3518. ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh,
  3519. OCFS2_JOURNAL_ACCESS_WRITE);
  3520. if (ret) {
  3521. mlog_errno(ret);
  3522. goto out_commit;
  3523. }
  3524. ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac, dx_leaves,
  3525. num_dx_leaves, &insert_blkno);
  3526. if (ret) {
  3527. mlog_errno(ret);
  3528. goto out_commit;
  3529. }
  3530. /*
  3531. * Transfer the entries from our dx_root into the appropriate
  3532. * block
  3533. */
  3534. dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
  3535. entry_list = &dx_root->dr_entries;
  3536. for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) {
  3537. dx_entry = &entry_list->de_entries[i];
  3538. j = __ocfs2_dx_dir_hash_idx(osb,
  3539. le32_to_cpu(dx_entry->dx_minor_hash));
  3540. target_leaf = (struct ocfs2_dx_leaf *)dx_leaves[j]->b_data;
  3541. ocfs2_dx_dir_leaf_insert_tail(target_leaf, dx_entry);
  3542. /* Each leaf has been passed to the journal already
  3543. * via __ocfs2_dx_dir_new_cluster() */
  3544. }
  3545. dx_root->dr_flags &= ~OCFS2_DX_FLAG_INLINE;
  3546. memset(&dx_root->dr_list, 0, osb->sb->s_blocksize -
  3547. offsetof(struct ocfs2_dx_root_block, dr_list));
  3548. dx_root->dr_list.l_count =
  3549. cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb));
  3550. /* This should never fail considering we start with an empty
  3551. * dx_root. */
  3552. ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh);
  3553. ret = ocfs2_insert_extent(handle, &et, 0, insert_blkno, 1, 0, NULL);
  3554. if (ret)
  3555. mlog_errno(ret);
  3556. did_quota = 0;
  3557. ocfs2_journal_dirty(handle, dx_root_bh);
  3558. out_commit:
  3559. if (ret < 0 && did_quota)
  3560. dquot_free_space_nodirty(dir,
  3561. ocfs2_clusters_to_bytes(dir->i_sb, 1));
  3562. ocfs2_commit_trans(osb, handle);
  3563. out:
  3564. if (data_ac)
  3565. ocfs2_free_alloc_context(data_ac);
  3566. if (dx_leaves) {
  3567. for (i = 0; i < num_dx_leaves; i++)
  3568. brelse(dx_leaves[i]);
  3569. kfree(dx_leaves);
  3570. }
  3571. return ret;
  3572. }
  3573. static int ocfs2_inline_dx_has_space(struct buffer_head *dx_root_bh)
  3574. {
  3575. struct ocfs2_dx_root_block *dx_root;
  3576. struct ocfs2_dx_entry_list *entry_list;
  3577. dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
  3578. entry_list = &dx_root->dr_entries;
  3579. if (le16_to_cpu(entry_list->de_num_used) >=
  3580. le16_to_cpu(entry_list->de_count))
  3581. return -ENOSPC;
  3582. return 0;
  3583. }
  3584. static int ocfs2_prepare_dx_dir_for_insert(struct inode *dir,
  3585. struct buffer_head *di_bh,
  3586. const char *name,
  3587. int namelen,
  3588. struct ocfs2_dir_lookup_result *lookup)
  3589. {
  3590. int ret, free_dx_root = 1;
  3591. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  3592. struct buffer_head *dx_root_bh = NULL;
  3593. struct buffer_head *leaf_bh = NULL;
  3594. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  3595. struct ocfs2_dx_root_block *dx_root;
  3596. ret = ocfs2_read_dx_root(dir, di, &dx_root_bh);
  3597. if (ret) {
  3598. mlog_errno(ret);
  3599. goto out;
  3600. }
  3601. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  3602. if (le32_to_cpu(dx_root->dr_num_entries) == OCFS2_DX_ENTRIES_MAX) {
  3603. ret = -ENOSPC;
  3604. mlog_errno(ret);
  3605. goto out;
  3606. }
  3607. if (ocfs2_dx_root_inline(dx_root)) {
  3608. ret = ocfs2_inline_dx_has_space(dx_root_bh);
  3609. if (ret == 0)
  3610. goto search_el;
  3611. /*
  3612. * We ran out of room in the root block. Expand it to
  3613. * an extent, then allow ocfs2_find_dir_space_dx to do
  3614. * the rest.
  3615. */
  3616. ret = ocfs2_expand_inline_dx_root(dir, dx_root_bh);
  3617. if (ret) {
  3618. mlog_errno(ret);
  3619. goto out;
  3620. }
  3621. }
  3622. /*
  3623. * Insert preparation for an indexed directory is split into two
  3624. * steps. The call to find_dir_space_dx reserves room in the index for
  3625. * an additional item. If we run out of space there, it's a real error
  3626. * we can't continue on.
  3627. */
  3628. ret = ocfs2_find_dir_space_dx(osb, dir, di_bh, dx_root_bh, name,
  3629. namelen, lookup);
  3630. if (ret) {
  3631. mlog_errno(ret);
  3632. goto out;
  3633. }
  3634. search_el:
  3635. /*
  3636. * Next, we need to find space in the unindexed tree. This call
  3637. * searches using the free space linked list. If the unindexed tree
  3638. * lacks sufficient space, we'll expand it below. The expansion code
  3639. * is smart enough to add any new blocks to the free space list.
  3640. */
  3641. ret = ocfs2_search_dx_free_list(dir, dx_root_bh, namelen, lookup);
  3642. if (ret && ret != -ENOSPC) {
  3643. mlog_errno(ret);
  3644. goto out;
  3645. }
  3646. /* Do this up here - ocfs2_extend_dir might need the dx_root */
  3647. lookup->dl_dx_root_bh = dx_root_bh;
  3648. free_dx_root = 0;
  3649. if (ret == -ENOSPC) {
  3650. ret = ocfs2_extend_dir(osb, dir, di_bh, 1, lookup, &leaf_bh);
  3651. if (ret) {
  3652. mlog_errno(ret);
  3653. goto out;
  3654. }
  3655. /*
  3656. * We make the assumption here that new leaf blocks are added
  3657. * to the front of our free list.
  3658. */
  3659. lookup->dl_prev_leaf_bh = NULL;
  3660. lookup->dl_leaf_bh = leaf_bh;
  3661. }
  3662. out:
  3663. if (free_dx_root)
  3664. brelse(dx_root_bh);
  3665. return ret;
  3666. }
  3667. /*
  3668. * Get a directory ready for insert. Any directory allocation required
  3669. * happens here. Success returns zero, and enough context in the dir
  3670. * lookup result that ocfs2_add_entry() will be able complete the task
  3671. * with minimal performance impact.
  3672. */
  3673. int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb,
  3674. struct inode *dir,
  3675. struct buffer_head *parent_fe_bh,
  3676. const char *name,
  3677. int namelen,
  3678. struct ocfs2_dir_lookup_result *lookup)
  3679. {
  3680. int ret;
  3681. unsigned int blocks_wanted = 1;
  3682. struct buffer_head *bh = NULL;
  3683. trace_ocfs2_prepare_dir_for_insert(
  3684. (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen);
  3685. if (!namelen) {
  3686. ret = -EINVAL;
  3687. mlog_errno(ret);
  3688. goto out;
  3689. }
  3690. /*
  3691. * Do this up front to reduce confusion.
  3692. *
  3693. * The directory might start inline, then be turned into an
  3694. * indexed one, in which case we'd need to hash deep inside
  3695. * ocfs2_find_dir_space_id(). Since
  3696. * ocfs2_prepare_dx_dir_for_insert() also needs this hash
  3697. * done, there seems no point in spreading out the calls. We
  3698. * can optimize away the case where the file system doesn't
  3699. * support indexing.
  3700. */
  3701. if (ocfs2_supports_indexed_dirs(osb))
  3702. ocfs2_dx_dir_name_hash(dir, name, namelen, &lookup->dl_hinfo);
  3703. if (ocfs2_dir_indexed(dir)) {
  3704. ret = ocfs2_prepare_dx_dir_for_insert(dir, parent_fe_bh,
  3705. name, namelen, lookup);
  3706. if (ret)
  3707. mlog_errno(ret);
  3708. goto out;
  3709. }
  3710. if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
  3711. ret = ocfs2_find_dir_space_id(dir, parent_fe_bh, name,
  3712. namelen, &bh, &blocks_wanted);
  3713. } else
  3714. ret = ocfs2_find_dir_space_el(dir, name, namelen, &bh);
  3715. if (ret && ret != -ENOSPC) {
  3716. mlog_errno(ret);
  3717. goto out;
  3718. }
  3719. if (ret == -ENOSPC) {
  3720. /*
  3721. * We have to expand the directory to add this name.
  3722. */
  3723. BUG_ON(bh);
  3724. ret = ocfs2_extend_dir(osb, dir, parent_fe_bh, blocks_wanted,
  3725. lookup, &bh);
  3726. if (ret) {
  3727. if (ret != -ENOSPC)
  3728. mlog_errno(ret);
  3729. goto out;
  3730. }
  3731. BUG_ON(!bh);
  3732. }
  3733. lookup->dl_leaf_bh = bh;
  3734. bh = NULL;
  3735. out:
  3736. brelse(bh);
  3737. return ret;
  3738. }
  3739. static int ocfs2_dx_dir_remove_index(struct inode *dir,
  3740. struct buffer_head *di_bh,
  3741. struct buffer_head *dx_root_bh)
  3742. {
  3743. int ret;
  3744. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  3745. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  3746. struct ocfs2_dx_root_block *dx_root;
  3747. struct inode *dx_alloc_inode = NULL;
  3748. struct buffer_head *dx_alloc_bh = NULL;
  3749. handle_t *handle;
  3750. u64 blk;
  3751. u16 bit;
  3752. u64 bg_blkno;
  3753. dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data;
  3754. dx_alloc_inode = ocfs2_get_system_file_inode(osb,
  3755. EXTENT_ALLOC_SYSTEM_INODE,
  3756. le16_to_cpu(dx_root->dr_suballoc_slot));
  3757. if (!dx_alloc_inode) {
  3758. ret = -ENOMEM;
  3759. mlog_errno(ret);
  3760. goto out;
  3761. }
  3762. mutex_lock(&dx_alloc_inode->i_mutex);
  3763. ret = ocfs2_inode_lock(dx_alloc_inode, &dx_alloc_bh, 1);
  3764. if (ret) {
  3765. mlog_errno(ret);
  3766. goto out_mutex;
  3767. }
  3768. handle = ocfs2_start_trans(osb, OCFS2_DX_ROOT_REMOVE_CREDITS);
  3769. if (IS_ERR(handle)) {
  3770. ret = PTR_ERR(handle);
  3771. mlog_errno(ret);
  3772. goto out_unlock;
  3773. }
  3774. ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh,
  3775. OCFS2_JOURNAL_ACCESS_WRITE);
  3776. if (ret) {
  3777. mlog_errno(ret);
  3778. goto out_commit;
  3779. }
  3780. spin_lock(&OCFS2_I(dir)->ip_lock);
  3781. OCFS2_I(dir)->ip_dyn_features &= ~OCFS2_INDEXED_DIR_FL;
  3782. di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features);
  3783. spin_unlock(&OCFS2_I(dir)->ip_lock);
  3784. di->i_dx_root = cpu_to_le64(0ULL);
  3785. ocfs2_journal_dirty(handle, di_bh);
  3786. blk = le64_to_cpu(dx_root->dr_blkno);
  3787. bit = le16_to_cpu(dx_root->dr_suballoc_bit);
  3788. if (dx_root->dr_suballoc_loc)
  3789. bg_blkno = le64_to_cpu(dx_root->dr_suballoc_loc);
  3790. else
  3791. bg_blkno = ocfs2_which_suballoc_group(blk, bit);
  3792. ret = ocfs2_free_suballoc_bits(handle, dx_alloc_inode, dx_alloc_bh,
  3793. bit, bg_blkno, 1);
  3794. if (ret)
  3795. mlog_errno(ret);
  3796. out_commit:
  3797. ocfs2_commit_trans(osb, handle);
  3798. out_unlock:
  3799. ocfs2_inode_unlock(dx_alloc_inode, 1);
  3800. out_mutex:
  3801. mutex_unlock(&dx_alloc_inode->i_mutex);
  3802. brelse(dx_alloc_bh);
  3803. out:
  3804. iput(dx_alloc_inode);
  3805. return ret;
  3806. }
  3807. int ocfs2_dx_dir_truncate(struct inode *dir, struct buffer_head *di_bh)
  3808. {
  3809. int ret;
  3810. unsigned int uninitialized_var(clen);
  3811. u32 major_hash = UINT_MAX, p_cpos, uninitialized_var(cpos);
  3812. u64 uninitialized_var(blkno);
  3813. struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
  3814. struct buffer_head *dx_root_bh = NULL;
  3815. struct ocfs2_dx_root_block *dx_root;
  3816. struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
  3817. struct ocfs2_cached_dealloc_ctxt dealloc;
  3818. struct ocfs2_extent_tree et;
  3819. ocfs2_init_dealloc_ctxt(&dealloc);
  3820. if (!ocfs2_dir_indexed(dir))
  3821. return 0;
  3822. ret = ocfs2_read_dx_root(dir, di, &dx_root_bh);
  3823. if (ret) {
  3824. mlog_errno(ret);
  3825. goto out;
  3826. }
  3827. dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
  3828. if (ocfs2_dx_root_inline(dx_root))
  3829. goto remove_index;
  3830. ocfs2_init_dx_root_extent_tree(&et, INODE_CACHE(dir), dx_root_bh);
  3831. /* XXX: What if dr_clusters is too large? */
  3832. while (le32_to_cpu(dx_root->dr_clusters)) {
  3833. ret = ocfs2_dx_dir_lookup_rec(dir, &dx_root->dr_list,
  3834. major_hash, &cpos, &blkno, &clen);
  3835. if (ret) {
  3836. mlog_errno(ret);
  3837. goto out;
  3838. }
  3839. p_cpos = ocfs2_blocks_to_clusters(dir->i_sb, blkno);
  3840. ret = ocfs2_remove_btree_range(dir, &et, cpos, p_cpos, clen, 0,
  3841. &dealloc, 0);
  3842. if (ret) {
  3843. mlog_errno(ret);
  3844. goto out;
  3845. }
  3846. if (cpos == 0)
  3847. break;
  3848. major_hash = cpos - 1;
  3849. }
  3850. remove_index:
  3851. ret = ocfs2_dx_dir_remove_index(dir, di_bh, dx_root_bh);
  3852. if (ret) {
  3853. mlog_errno(ret);
  3854. goto out;
  3855. }
  3856. ocfs2_remove_from_cache(INODE_CACHE(dir), dx_root_bh);
  3857. out:
  3858. ocfs2_schedule_truncate_log_flush(osb, 1);
  3859. ocfs2_run_deallocs(osb, &dealloc);
  3860. brelse(dx_root_bh);
  3861. return ret;
  3862. }