tnc.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261
  1. /*
  2. * This file is part of UBIFS.
  3. *
  4. * Copyright (C) 2006-2008 Nokia Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 51
  17. * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. * Authors: Adrian Hunter
  20. * Artem Bityutskiy (Битюцкий Артём)
  21. */
  22. /*
  23. * This file implements TNC (Tree Node Cache) which caches indexing nodes of
  24. * the UBIFS B-tree.
  25. *
  26. * At the moment the locking rules of the TNC tree are quite simple and
  27. * straightforward. We just have a mutex and lock it when we traverse the
  28. * tree. If a znode is not in memory, we read it from flash while still having
  29. * the mutex locked.
  30. */
  31. #include <linux/crc32.h>
  32. #include "ubifs.h"
  33. /*
  34. * Returned codes of 'matches_name()' and 'fallible_matches_name()' functions.
  35. * @NAME_LESS: name corresponding to the first argument is less than second
  36. * @NAME_MATCHES: names match
  37. * @NAME_GREATER: name corresponding to the second argument is greater than
  38. * first
  39. * @NOT_ON_MEDIA: node referred by zbranch does not exist on the media
  40. *
  41. * These constants were introduce to improve readability.
  42. */
  43. enum {
  44. NAME_LESS = 0,
  45. NAME_MATCHES = 1,
  46. NAME_GREATER = 2,
  47. NOT_ON_MEDIA = 3,
  48. };
  49. /**
  50. * insert_old_idx - record an index node obsoleted since the last commit start.
  51. * @c: UBIFS file-system description object
  52. * @lnum: LEB number of obsoleted index node
  53. * @offs: offset of obsoleted index node
  54. *
  55. * Returns %0 on success, and a negative error code on failure.
  56. *
  57. * For recovery, there must always be a complete intact version of the index on
  58. * flash at all times. That is called the "old index". It is the index as at the
  59. * time of the last successful commit. Many of the index nodes in the old index
  60. * may be dirty, but they must not be erased until the next successful commit
  61. * (at which point that index becomes the old index).
  62. *
  63. * That means that the garbage collection and the in-the-gaps method of
  64. * committing must be able to determine if an index node is in the old index.
  65. * Most of the old index nodes can be found by looking up the TNC using the
  66. * 'lookup_znode()' function. However, some of the old index nodes may have
  67. * been deleted from the current index or may have been changed so much that
  68. * they cannot be easily found. In those cases, an entry is added to an RB-tree.
  69. * That is what this function does. The RB-tree is ordered by LEB number and
  70. * offset because they uniquely identify the old index node.
  71. */
  72. static int insert_old_idx(struct ubifs_info *c, int lnum, int offs)
  73. {
  74. struct ubifs_old_idx *old_idx, *o;
  75. struct rb_node **p, *parent = NULL;
  76. old_idx = kmalloc(sizeof(struct ubifs_old_idx), GFP_NOFS);
  77. if (unlikely(!old_idx))
  78. return -ENOMEM;
  79. old_idx->lnum = lnum;
  80. old_idx->offs = offs;
  81. p = &c->old_idx.rb_node;
  82. while (*p) {
  83. parent = *p;
  84. o = rb_entry(parent, struct ubifs_old_idx, rb);
  85. if (lnum < o->lnum)
  86. p = &(*p)->rb_left;
  87. else if (lnum > o->lnum)
  88. p = &(*p)->rb_right;
  89. else if (offs < o->offs)
  90. p = &(*p)->rb_left;
  91. else if (offs > o->offs)
  92. p = &(*p)->rb_right;
  93. else {
  94. ubifs_err("old idx added twice!");
  95. kfree(old_idx);
  96. return 0;
  97. }
  98. }
  99. rb_link_node(&old_idx->rb, parent, p);
  100. rb_insert_color(&old_idx->rb, &c->old_idx);
  101. return 0;
  102. }
  103. /**
  104. * insert_old_idx_znode - record a znode obsoleted since last commit start.
  105. * @c: UBIFS file-system description object
  106. * @znode: znode of obsoleted index node
  107. *
  108. * Returns %0 on success, and a negative error code on failure.
  109. */
  110. int insert_old_idx_znode(struct ubifs_info *c, struct ubifs_znode *znode)
  111. {
  112. if (znode->parent) {
  113. struct ubifs_zbranch *zbr;
  114. zbr = &znode->parent->zbranch[znode->iip];
  115. if (zbr->len)
  116. return insert_old_idx(c, zbr->lnum, zbr->offs);
  117. } else
  118. if (c->zroot.len)
  119. return insert_old_idx(c, c->zroot.lnum,
  120. c->zroot.offs);
  121. return 0;
  122. }
  123. /**
  124. * ins_clr_old_idx_znode - record a znode obsoleted since last commit start.
  125. * @c: UBIFS file-system description object
  126. * @znode: znode of obsoleted index node
  127. *
  128. * Returns %0 on success, and a negative error code on failure.
  129. */
  130. static int ins_clr_old_idx_znode(struct ubifs_info *c,
  131. struct ubifs_znode *znode)
  132. {
  133. int err;
  134. if (znode->parent) {
  135. struct ubifs_zbranch *zbr;
  136. zbr = &znode->parent->zbranch[znode->iip];
  137. if (zbr->len) {
  138. err = insert_old_idx(c, zbr->lnum, zbr->offs);
  139. if (err)
  140. return err;
  141. zbr->lnum = 0;
  142. zbr->offs = 0;
  143. zbr->len = 0;
  144. }
  145. } else
  146. if (c->zroot.len) {
  147. err = insert_old_idx(c, c->zroot.lnum, c->zroot.offs);
  148. if (err)
  149. return err;
  150. c->zroot.lnum = 0;
  151. c->zroot.offs = 0;
  152. c->zroot.len = 0;
  153. }
  154. return 0;
  155. }
  156. /**
  157. * destroy_old_idx - destroy the old_idx RB-tree.
  158. * @c: UBIFS file-system description object
  159. *
  160. * During start commit, the old_idx RB-tree is used to avoid overwriting index
  161. * nodes that were in the index last commit but have since been deleted. This
  162. * is necessary for recovery i.e. the old index must be kept intact until the
  163. * new index is successfully written. The old-idx RB-tree is used for the
  164. * in-the-gaps method of writing index nodes and is destroyed every commit.
  165. */
  166. void destroy_old_idx(struct ubifs_info *c)
  167. {
  168. struct rb_node *this = c->old_idx.rb_node;
  169. struct ubifs_old_idx *old_idx;
  170. while (this) {
  171. if (this->rb_left) {
  172. this = this->rb_left;
  173. continue;
  174. } else if (this->rb_right) {
  175. this = this->rb_right;
  176. continue;
  177. }
  178. old_idx = rb_entry(this, struct ubifs_old_idx, rb);
  179. this = rb_parent(this);
  180. if (this) {
  181. if (this->rb_left == &old_idx->rb)
  182. this->rb_left = NULL;
  183. else
  184. this->rb_right = NULL;
  185. }
  186. kfree(old_idx);
  187. }
  188. c->old_idx = RB_ROOT;
  189. }
  190. /**
  191. * copy_znode - copy a dirty znode.
  192. * @c: UBIFS file-system description object
  193. * @znode: znode to copy
  194. *
  195. * A dirty znode being committed may not be changed, so it is copied.
  196. */
  197. static struct ubifs_znode *copy_znode(struct ubifs_info *c,
  198. struct ubifs_znode *znode)
  199. {
  200. struct ubifs_znode *zn;
  201. zn = kmalloc(c->max_znode_sz, GFP_NOFS);
  202. if (unlikely(!zn))
  203. return ERR_PTR(-ENOMEM);
  204. memcpy(zn, znode, c->max_znode_sz);
  205. zn->cnext = NULL;
  206. __set_bit(DIRTY_ZNODE, &zn->flags);
  207. __clear_bit(COW_ZNODE, &zn->flags);
  208. ubifs_assert(!test_bit(OBSOLETE_ZNODE, &znode->flags));
  209. __set_bit(OBSOLETE_ZNODE, &znode->flags);
  210. if (znode->level != 0) {
  211. int i;
  212. const int n = zn->child_cnt;
  213. /* The children now have new parent */
  214. for (i = 0; i < n; i++) {
  215. struct ubifs_zbranch *zbr = &zn->zbranch[i];
  216. if (zbr->znode)
  217. zbr->znode->parent = zn;
  218. }
  219. }
  220. atomic_long_inc(&c->dirty_zn_cnt);
  221. return zn;
  222. }
  223. /**
  224. * add_idx_dirt - add dirt due to a dirty znode.
  225. * @c: UBIFS file-system description object
  226. * @lnum: LEB number of index node
  227. * @dirt: size of index node
  228. *
  229. * This function updates lprops dirty space and the new size of the index.
  230. */
  231. static int add_idx_dirt(struct ubifs_info *c, int lnum, int dirt)
  232. {
  233. c->calc_idx_sz -= ALIGN(dirt, 8);
  234. return ubifs_add_dirt(c, lnum, dirt);
  235. }
  236. /**
  237. * dirty_cow_znode - ensure a znode is not being committed.
  238. * @c: UBIFS file-system description object
  239. * @zbr: branch of znode to check
  240. *
  241. * Returns dirtied znode on success or negative error code on failure.
  242. */
  243. static struct ubifs_znode *dirty_cow_znode(struct ubifs_info *c,
  244. struct ubifs_zbranch *zbr)
  245. {
  246. struct ubifs_znode *znode = zbr->znode;
  247. struct ubifs_znode *zn;
  248. int err;
  249. if (!test_bit(COW_ZNODE, &znode->flags)) {
  250. /* znode is not being committed */
  251. if (!test_and_set_bit(DIRTY_ZNODE, &znode->flags)) {
  252. atomic_long_inc(&c->dirty_zn_cnt);
  253. atomic_long_dec(&c->clean_zn_cnt);
  254. atomic_long_dec(&ubifs_clean_zn_cnt);
  255. err = add_idx_dirt(c, zbr->lnum, zbr->len);
  256. if (unlikely(err))
  257. return ERR_PTR(err);
  258. }
  259. return znode;
  260. }
  261. zn = copy_znode(c, znode);
  262. if (IS_ERR(zn))
  263. return zn;
  264. if (zbr->len) {
  265. err = insert_old_idx(c, zbr->lnum, zbr->offs);
  266. if (unlikely(err))
  267. return ERR_PTR(err);
  268. err = add_idx_dirt(c, zbr->lnum, zbr->len);
  269. } else
  270. err = 0;
  271. zbr->znode = zn;
  272. zbr->lnum = 0;
  273. zbr->offs = 0;
  274. zbr->len = 0;
  275. if (unlikely(err))
  276. return ERR_PTR(err);
  277. return zn;
  278. }
  279. /**
  280. * lnc_add - add a leaf node to the leaf node cache.
  281. * @c: UBIFS file-system description object
  282. * @zbr: zbranch of leaf node
  283. * @node: leaf node
  284. *
  285. * Leaf nodes are non-index nodes directory entry nodes or data nodes. The
  286. * purpose of the leaf node cache is to save re-reading the same leaf node over
  287. * and over again. Most things are cached by VFS, however the file system must
  288. * cache directory entries for readdir and for resolving hash collisions. The
  289. * present implementation of the leaf node cache is extremely simple, and
  290. * allows for error returns that are not used but that may be needed if a more
  291. * complex implementation is created.
  292. *
  293. * Note, this function does not add the @node object to LNC directly, but
  294. * allocates a copy of the object and adds the copy to LNC. The reason for this
  295. * is that @node has been allocated outside of the TNC subsystem and will be
  296. * used with @c->tnc_mutex unlock upon return from the TNC subsystem. But LNC
  297. * may be changed at any time, e.g. freed by the shrinker.
  298. */
  299. static int lnc_add(struct ubifs_info *c, struct ubifs_zbranch *zbr,
  300. const void *node)
  301. {
  302. int err;
  303. void *lnc_node;
  304. const struct ubifs_dent_node *dent = node;
  305. ubifs_assert(!zbr->leaf);
  306. ubifs_assert(zbr->len != 0);
  307. ubifs_assert(is_hash_key(c, &zbr->key));
  308. err = ubifs_validate_entry(c, dent);
  309. if (err) {
  310. dbg_dump_stack();
  311. dbg_dump_node(c, dent);
  312. return err;
  313. }
  314. lnc_node = kmalloc(zbr->len, GFP_NOFS);
  315. if (!lnc_node)
  316. /* We don't have to have the cache, so no error */
  317. return 0;
  318. memcpy(lnc_node, node, zbr->len);
  319. zbr->leaf = lnc_node;
  320. return 0;
  321. }
  322. /**
  323. * lnc_add_directly - add a leaf node to the leaf-node-cache.
  324. * @c: UBIFS file-system description object
  325. * @zbr: zbranch of leaf node
  326. * @node: leaf node
  327. *
  328. * This function is similar to 'lnc_add()', but it does not create a copy of
  329. * @node but inserts @node to TNC directly.
  330. */
  331. static int lnc_add_directly(struct ubifs_info *c, struct ubifs_zbranch *zbr,
  332. void *node)
  333. {
  334. int err;
  335. ubifs_assert(!zbr->leaf);
  336. ubifs_assert(zbr->len != 0);
  337. err = ubifs_validate_entry(c, node);
  338. if (err) {
  339. dbg_dump_stack();
  340. dbg_dump_node(c, node);
  341. return err;
  342. }
  343. zbr->leaf = node;
  344. return 0;
  345. }
  346. /**
  347. * lnc_free - remove a leaf node from the leaf node cache.
  348. * @zbr: zbranch of leaf node
  349. * @node: leaf node
  350. */
  351. static void lnc_free(struct ubifs_zbranch *zbr)
  352. {
  353. if (!zbr->leaf)
  354. return;
  355. kfree(zbr->leaf);
  356. zbr->leaf = NULL;
  357. }
  358. /**
  359. * tnc_read_node_nm - read a "hashed" leaf node.
  360. * @c: UBIFS file-system description object
  361. * @zbr: key and position of the node
  362. * @node: node is returned here
  363. *
  364. * This function reads a "hashed" node defined by @zbr from the leaf node cache
  365. * (in it is there) or from the hash media, in which case the node is also
  366. * added to LNC. Returns zero in case of success or a negative negative error
  367. * code in case of failure.
  368. */
  369. static int tnc_read_node_nm(struct ubifs_info *c, struct ubifs_zbranch *zbr,
  370. void *node)
  371. {
  372. int err;
  373. ubifs_assert(is_hash_key(c, &zbr->key));
  374. if (zbr->leaf) {
  375. /* Read from the leaf node cache */
  376. ubifs_assert(zbr->len != 0);
  377. memcpy(node, zbr->leaf, zbr->len);
  378. return 0;
  379. }
  380. err = ubifs_tnc_read_node(c, zbr, node);
  381. if (err)
  382. return err;
  383. /* Add the node to the leaf node cache */
  384. err = lnc_add(c, zbr, node);
  385. return err;
  386. }
  387. /**
  388. * try_read_node - read a node if it is a node.
  389. * @c: UBIFS file-system description object
  390. * @buf: buffer to read to
  391. * @type: node type
  392. * @len: node length (not aligned)
  393. * @lnum: LEB number of node to read
  394. * @offs: offset of node to read
  395. *
  396. * This function tries to read a node of known type and length, checks it and
  397. * stores it in @buf. This function returns %1 if a node is present and %0 if
  398. * a node is not present. A negative error code is returned for I/O errors.
  399. * This function performs that same function as ubifs_read_node except that
  400. * it does not require that there is actually a node present and instead
  401. * the return code indicates if a node was read.
  402. */
  403. static int try_read_node(const struct ubifs_info *c, void *buf, int type,
  404. int len, int lnum, int offs)
  405. {
  406. int err, node_len;
  407. struct ubifs_ch *ch = buf;
  408. uint32_t crc, node_crc;
  409. dbg_io("LEB %d:%d, %s, length %d", lnum, offs, dbg_ntype(type), len);
  410. err = ubi_read(c->ubi, lnum, buf, offs, len);
  411. if (err) {
  412. ubifs_err("cannot read node type %d from LEB %d:%d, error %d",
  413. type, lnum, offs, err);
  414. return err;
  415. }
  416. if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC)
  417. return 0;
  418. if (ch->node_type != type)
  419. return 0;
  420. node_len = le32_to_cpu(ch->len);
  421. if (node_len != len)
  422. return 0;
  423. if (type == UBIFS_DATA_NODE && !c->always_chk_crc)
  424. if (c->no_chk_data_crc)
  425. return 0;
  426. crc = crc32(UBIFS_CRC32_INIT, buf + 8, node_len - 8);
  427. node_crc = le32_to_cpu(ch->crc);
  428. if (crc != node_crc)
  429. return 0;
  430. return 1;
  431. }
  432. /**
  433. * fallible_read_node - try to read a leaf node.
  434. * @c: UBIFS file-system description object
  435. * @key: key of node to read
  436. * @zbr: position of node
  437. * @node: node returned
  438. *
  439. * This function tries to read a node and returns %1 if the node is read, %0
  440. * if the node is not present, and a negative error code in the case of error.
  441. */
  442. static int fallible_read_node(struct ubifs_info *c, const union ubifs_key *key,
  443. struct ubifs_zbranch *zbr, void *node)
  444. {
  445. int ret;
  446. dbg_tnc("LEB %d:%d, key %s", zbr->lnum, zbr->offs, DBGKEY(key));
  447. ret = try_read_node(c, node, key_type(c, key), zbr->len, zbr->lnum,
  448. zbr->offs);
  449. if (ret == 1) {
  450. union ubifs_key node_key;
  451. struct ubifs_dent_node *dent = node;
  452. /* All nodes have key in the same place */
  453. key_read(c, &dent->key, &node_key);
  454. if (keys_cmp(c, key, &node_key) != 0)
  455. ret = 0;
  456. }
  457. if (ret == 0 && c->replaying)
  458. dbg_mnt("dangling branch LEB %d:%d len %d, key %s",
  459. zbr->lnum, zbr->offs, zbr->len, DBGKEY(key));
  460. return ret;
  461. }
  462. /**
  463. * matches_name - determine if a direntry or xattr entry matches a given name.
  464. * @c: UBIFS file-system description object
  465. * @zbr: zbranch of dent
  466. * @nm: name to match
  467. *
  468. * This function checks if xentry/direntry referred by zbranch @zbr matches name
  469. * @nm. Returns %NAME_MATCHES if it does, %NAME_LESS if the name referred by
  470. * @zbr is less than @nm, and %NAME_GREATER if it is greater than @nm. In case
  471. * of failure, a negative error code is returned.
  472. */
  473. static int matches_name(struct ubifs_info *c, struct ubifs_zbranch *zbr,
  474. const struct qstr *nm)
  475. {
  476. struct ubifs_dent_node *dent;
  477. int nlen, err;
  478. /* If possible, match against the dent in the leaf node cache */
  479. if (!zbr->leaf) {
  480. dent = kmalloc(zbr->len, GFP_NOFS);
  481. if (!dent)
  482. return -ENOMEM;
  483. err = ubifs_tnc_read_node(c, zbr, dent);
  484. if (err)
  485. goto out_free;
  486. /* Add the node to the leaf node cache */
  487. err = lnc_add_directly(c, zbr, dent);
  488. if (err)
  489. goto out_free;
  490. } else
  491. dent = zbr->leaf;
  492. nlen = le16_to_cpu(dent->nlen);
  493. err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len));
  494. if (err == 0) {
  495. if (nlen == nm->len)
  496. return NAME_MATCHES;
  497. else if (nlen < nm->len)
  498. return NAME_LESS;
  499. else
  500. return NAME_GREATER;
  501. } else if (err < 0)
  502. return NAME_LESS;
  503. else
  504. return NAME_GREATER;
  505. out_free:
  506. kfree(dent);
  507. return err;
  508. }
  509. /**
  510. * get_znode - get a TNC znode that may not be loaded yet.
  511. * @c: UBIFS file-system description object
  512. * @znode: parent znode
  513. * @n: znode branch slot number
  514. *
  515. * This function returns the znode or a negative error code.
  516. */
  517. static struct ubifs_znode *get_znode(struct ubifs_info *c,
  518. struct ubifs_znode *znode, int n)
  519. {
  520. struct ubifs_zbranch *zbr;
  521. zbr = &znode->zbranch[n];
  522. if (zbr->znode)
  523. znode = zbr->znode;
  524. else
  525. znode = ubifs_load_znode(c, zbr, znode, n);
  526. return znode;
  527. }
  528. /**
  529. * tnc_next - find next TNC entry.
  530. * @c: UBIFS file-system description object
  531. * @zn: znode is passed and returned here
  532. * @n: znode branch slot number is passed and returned here
  533. *
  534. * This function returns %0 if the next TNC entry is found, %-ENOENT if there is
  535. * no next entry, or a negative error code otherwise.
  536. */
  537. static int tnc_next(struct ubifs_info *c, struct ubifs_znode **zn, int *n)
  538. {
  539. struct ubifs_znode *znode = *zn;
  540. int nn = *n;
  541. nn += 1;
  542. if (nn < znode->child_cnt) {
  543. *n = nn;
  544. return 0;
  545. }
  546. while (1) {
  547. struct ubifs_znode *zp;
  548. zp = znode->parent;
  549. if (!zp)
  550. return -ENOENT;
  551. nn = znode->iip + 1;
  552. znode = zp;
  553. if (nn < znode->child_cnt) {
  554. znode = get_znode(c, znode, nn);
  555. if (IS_ERR(znode))
  556. return PTR_ERR(znode);
  557. while (znode->level != 0) {
  558. znode = get_znode(c, znode, 0);
  559. if (IS_ERR(znode))
  560. return PTR_ERR(znode);
  561. }
  562. nn = 0;
  563. break;
  564. }
  565. }
  566. *zn = znode;
  567. *n = nn;
  568. return 0;
  569. }
  570. /**
  571. * tnc_prev - find previous TNC entry.
  572. * @c: UBIFS file-system description object
  573. * @zn: znode is returned here
  574. * @n: znode branch slot number is passed and returned here
  575. *
  576. * This function returns %0 if the previous TNC entry is found, %-ENOENT if
  577. * there is no next entry, or a negative error code otherwise.
  578. */
  579. static int tnc_prev(struct ubifs_info *c, struct ubifs_znode **zn, int *n)
  580. {
  581. struct ubifs_znode *znode = *zn;
  582. int nn = *n;
  583. if (nn > 0) {
  584. *n = nn - 1;
  585. return 0;
  586. }
  587. while (1) {
  588. struct ubifs_znode *zp;
  589. zp = znode->parent;
  590. if (!zp)
  591. return -ENOENT;
  592. nn = znode->iip - 1;
  593. znode = zp;
  594. if (nn >= 0) {
  595. znode = get_znode(c, znode, nn);
  596. if (IS_ERR(znode))
  597. return PTR_ERR(znode);
  598. while (znode->level != 0) {
  599. nn = znode->child_cnt - 1;
  600. znode = get_znode(c, znode, nn);
  601. if (IS_ERR(znode))
  602. return PTR_ERR(znode);
  603. }
  604. nn = znode->child_cnt - 1;
  605. break;
  606. }
  607. }
  608. *zn = znode;
  609. *n = nn;
  610. return 0;
  611. }
  612. /**
  613. * resolve_collision - resolve a collision.
  614. * @c: UBIFS file-system description object
  615. * @key: key of a directory or extended attribute entry
  616. * @zn: znode is returned here
  617. * @n: zbranch number is passed and returned here
  618. * @nm: name of the entry
  619. *
  620. * This function is called for "hashed" keys to make sure that the found key
  621. * really corresponds to the looked up node (directory or extended attribute
  622. * entry). It returns %1 and sets @zn and @n if the collision is resolved.
  623. * %0 is returned if @nm is not found and @zn and @n are set to the previous
  624. * entry, i.e. to the entry after which @nm could follow if it were in TNC.
  625. * This means that @n may be set to %-1 if the leftmost key in @zn is the
  626. * previous one. A negative error code is returned on failures.
  627. */
  628. static int resolve_collision(struct ubifs_info *c, const union ubifs_key *key,
  629. struct ubifs_znode **zn, int *n,
  630. const struct qstr *nm)
  631. {
  632. int err;
  633. err = matches_name(c, &(*zn)->zbranch[*n], nm);
  634. if (unlikely(err < 0))
  635. return err;
  636. if (err == NAME_MATCHES)
  637. return 1;
  638. if (err == NAME_GREATER) {
  639. /* Look left */
  640. while (1) {
  641. err = tnc_prev(c, zn, n);
  642. if (err == -ENOENT) {
  643. ubifs_assert(*n == 0);
  644. *n = -1;
  645. return 0;
  646. }
  647. if (err < 0)
  648. return err;
  649. if (keys_cmp(c, &(*zn)->zbranch[*n].key, key)) {
  650. /*
  651. * We have found the branch after which we would
  652. * like to insert, but inserting in this znode
  653. * may still be wrong. Consider the following 3
  654. * znodes, in the case where we are resolving a
  655. * collision with Key2.
  656. *
  657. * znode zp
  658. * ----------------------
  659. * level 1 | Key0 | Key1 |
  660. * -----------------------
  661. * | |
  662. * znode za | | znode zb
  663. * ------------ ------------
  664. * level 0 | Key0 | | Key2 |
  665. * ------------ ------------
  666. *
  667. * The lookup finds Key2 in znode zb. Lets say
  668. * there is no match and the name is greater so
  669. * we look left. When we find Key0, we end up
  670. * here. If we return now, we will insert into
  671. * znode za at slot n = 1. But that is invalid
  672. * according to the parent's keys. Key2 must
  673. * be inserted into znode zb.
  674. *
  675. * Note, this problem is not relevant for the
  676. * case when we go right, because
  677. * 'tnc_insert()' would correct the parent key.
  678. */
  679. if (*n == (*zn)->child_cnt - 1) {
  680. err = tnc_next(c, zn, n);
  681. if (err) {
  682. /* Should be impossible */
  683. ubifs_assert(0);
  684. if (err == -ENOENT)
  685. err = -EINVAL;
  686. return err;
  687. }
  688. ubifs_assert(*n == 0);
  689. *n = -1;
  690. }
  691. return 0;
  692. }
  693. err = matches_name(c, &(*zn)->zbranch[*n], nm);
  694. if (err < 0)
  695. return err;
  696. if (err == NAME_LESS)
  697. return 0;
  698. if (err == NAME_MATCHES)
  699. return 1;
  700. ubifs_assert(err == NAME_GREATER);
  701. }
  702. } else {
  703. int nn = *n;
  704. struct ubifs_znode *znode = *zn;
  705. /* Look right */
  706. while (1) {
  707. err = tnc_next(c, &znode, &nn);
  708. if (err == -ENOENT)
  709. return 0;
  710. if (err < 0)
  711. return err;
  712. if (keys_cmp(c, &znode->zbranch[nn].key, key))
  713. return 0;
  714. err = matches_name(c, &znode->zbranch[nn], nm);
  715. if (err < 0)
  716. return err;
  717. if (err == NAME_GREATER)
  718. return 0;
  719. *zn = znode;
  720. *n = nn;
  721. if (err == NAME_MATCHES)
  722. return 1;
  723. ubifs_assert(err == NAME_LESS);
  724. }
  725. }
  726. }
  727. /**
  728. * fallible_matches_name - determine if a dent matches a given name.
  729. * @c: UBIFS file-system description object
  730. * @zbr: zbranch of dent
  731. * @nm: name to match
  732. *
  733. * This is a "fallible" version of 'matches_name()' function which does not
  734. * panic if the direntry/xentry referred by @zbr does not exist on the media.
  735. *
  736. * This function checks if xentry/direntry referred by zbranch @zbr matches name
  737. * @nm. Returns %NAME_MATCHES it does, %NAME_LESS if the name referred by @zbr
  738. * is less than @nm, %NAME_GREATER if it is greater than @nm, and @NOT_ON_MEDIA
  739. * if xentry/direntry referred by @zbr does not exist on the media. A negative
  740. * error code is returned in case of failure.
  741. */
  742. static int fallible_matches_name(struct ubifs_info *c,
  743. struct ubifs_zbranch *zbr,
  744. const struct qstr *nm)
  745. {
  746. struct ubifs_dent_node *dent;
  747. int nlen, err;
  748. /* If possible, match against the dent in the leaf node cache */
  749. if (!zbr->leaf) {
  750. dent = kmalloc(zbr->len, GFP_NOFS);
  751. if (!dent)
  752. return -ENOMEM;
  753. err = fallible_read_node(c, &zbr->key, zbr, dent);
  754. if (err < 0)
  755. goto out_free;
  756. if (err == 0) {
  757. /* The node was not present */
  758. err = NOT_ON_MEDIA;
  759. goto out_free;
  760. }
  761. ubifs_assert(err == 1);
  762. err = lnc_add_directly(c, zbr, dent);
  763. if (err)
  764. goto out_free;
  765. } else
  766. dent = zbr->leaf;
  767. nlen = le16_to_cpu(dent->nlen);
  768. err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len));
  769. if (err == 0) {
  770. if (nlen == nm->len)
  771. return NAME_MATCHES;
  772. else if (nlen < nm->len)
  773. return NAME_LESS;
  774. else
  775. return NAME_GREATER;
  776. } else if (err < 0)
  777. return NAME_LESS;
  778. else
  779. return NAME_GREATER;
  780. out_free:
  781. kfree(dent);
  782. return err;
  783. }
  784. /**
  785. * fallible_resolve_collision - resolve a collision even if nodes are missing.
  786. * @c: UBIFS file-system description object
  787. * @key: key
  788. * @zn: znode is returned here
  789. * @n: branch number is passed and returned here
  790. * @nm: name of directory entry
  791. * @adding: indicates caller is adding a key to the TNC
  792. *
  793. * This is a "fallible" version of the 'resolve_collision()' function which
  794. * does not panic if one of the nodes referred to by TNC does not exist on the
  795. * media. This may happen when replaying the journal if a deleted node was
  796. * Garbage-collected and the commit was not done. A branch that refers to a node
  797. * that is not present is called a dangling branch. The following are the return
  798. * codes for this function:
  799. * o if @nm was found, %1 is returned and @zn and @n are set to the found
  800. * branch;
  801. * o if we are @adding and @nm was not found, %0 is returned;
  802. * o if we are not @adding and @nm was not found, but a dangling branch was
  803. * found, then %1 is returned and @zn and @n are set to the dangling branch;
  804. * o a negative error code is returned in case of failure.
  805. */
  806. static int fallible_resolve_collision(struct ubifs_info *c,
  807. const union ubifs_key *key,
  808. struct ubifs_znode **zn, int *n,
  809. const struct qstr *nm, int adding)
  810. {
  811. struct ubifs_znode *o_znode = NULL, *znode = *zn;
  812. int uninitialized_var(o_n), err, cmp, unsure = 0, nn = *n;
  813. cmp = fallible_matches_name(c, &znode->zbranch[nn], nm);
  814. if (unlikely(cmp < 0))
  815. return cmp;
  816. if (cmp == NAME_MATCHES)
  817. return 1;
  818. if (cmp == NOT_ON_MEDIA) {
  819. o_znode = znode;
  820. o_n = nn;
  821. /*
  822. * We are unlucky and hit a dangling branch straight away.
  823. * Now we do not really know where to go to find the needed
  824. * branch - to the left or to the right. Well, let's try left.
  825. */
  826. unsure = 1;
  827. } else if (!adding)
  828. unsure = 1; /* Remove a dangling branch wherever it is */
  829. if (cmp == NAME_GREATER || unsure) {
  830. /* Look left */
  831. while (1) {
  832. err = tnc_prev(c, zn, n);
  833. if (err == -ENOENT) {
  834. ubifs_assert(*n == 0);
  835. *n = -1;
  836. break;
  837. }
  838. if (err < 0)
  839. return err;
  840. if (keys_cmp(c, &(*zn)->zbranch[*n].key, key)) {
  841. /* See comments in 'resolve_collision()' */
  842. if (*n == (*zn)->child_cnt - 1) {
  843. err = tnc_next(c, zn, n);
  844. if (err) {
  845. /* Should be impossible */
  846. ubifs_assert(0);
  847. if (err == -ENOENT)
  848. err = -EINVAL;
  849. return err;
  850. }
  851. ubifs_assert(*n == 0);
  852. *n = -1;
  853. }
  854. break;
  855. }
  856. err = fallible_matches_name(c, &(*zn)->zbranch[*n], nm);
  857. if (err < 0)
  858. return err;
  859. if (err == NAME_MATCHES)
  860. return 1;
  861. if (err == NOT_ON_MEDIA) {
  862. o_znode = *zn;
  863. o_n = *n;
  864. continue;
  865. }
  866. if (!adding)
  867. continue;
  868. if (err == NAME_LESS)
  869. break;
  870. else
  871. unsure = 0;
  872. }
  873. }
  874. if (cmp == NAME_LESS || unsure) {
  875. /* Look right */
  876. *zn = znode;
  877. *n = nn;
  878. while (1) {
  879. err = tnc_next(c, &znode, &nn);
  880. if (err == -ENOENT)
  881. break;
  882. if (err < 0)
  883. return err;
  884. if (keys_cmp(c, &znode->zbranch[nn].key, key))
  885. break;
  886. err = fallible_matches_name(c, &znode->zbranch[nn], nm);
  887. if (err < 0)
  888. return err;
  889. if (err == NAME_GREATER)
  890. break;
  891. *zn = znode;
  892. *n = nn;
  893. if (err == NAME_MATCHES)
  894. return 1;
  895. if (err == NOT_ON_MEDIA) {
  896. o_znode = znode;
  897. o_n = nn;
  898. }
  899. }
  900. }
  901. /* Never match a dangling branch when adding */
  902. if (adding || !o_znode)
  903. return 0;
  904. dbg_mnt("dangling match LEB %d:%d len %d %s",
  905. o_znode->zbranch[o_n].lnum, o_znode->zbranch[o_n].offs,
  906. o_znode->zbranch[o_n].len, DBGKEY(key));
  907. *zn = o_znode;
  908. *n = o_n;
  909. return 1;
  910. }
  911. /**
  912. * matches_position - determine if a zbranch matches a given position.
  913. * @zbr: zbranch of dent
  914. * @lnum: LEB number of dent to match
  915. * @offs: offset of dent to match
  916. *
  917. * This function returns %1 if @lnum:@offs matches, and %0 otherwise.
  918. */
  919. static int matches_position(struct ubifs_zbranch *zbr, int lnum, int offs)
  920. {
  921. if (zbr->lnum == lnum && zbr->offs == offs)
  922. return 1;
  923. else
  924. return 0;
  925. }
  926. /**
  927. * resolve_collision_directly - resolve a collision directly.
  928. * @c: UBIFS file-system description object
  929. * @key: key of directory entry
  930. * @zn: znode is passed and returned here
  931. * @n: zbranch number is passed and returned here
  932. * @lnum: LEB number of dent node to match
  933. * @offs: offset of dent node to match
  934. *
  935. * This function is used for "hashed" keys to make sure the found directory or
  936. * extended attribute entry node is what was looked for. It is used when the
  937. * flash address of the right node is known (@lnum:@offs) which makes it much
  938. * easier to resolve collisions (no need to read entries and match full
  939. * names). This function returns %1 and sets @zn and @n if the collision is
  940. * resolved, %0 if @lnum:@offs is not found and @zn and @n are set to the
  941. * previous directory entry. Otherwise a negative error code is returned.
  942. */
  943. static int resolve_collision_directly(struct ubifs_info *c,
  944. const union ubifs_key *key,
  945. struct ubifs_znode **zn, int *n,
  946. int lnum, int offs)
  947. {
  948. struct ubifs_znode *znode;
  949. int nn, err;
  950. znode = *zn;
  951. nn = *n;
  952. if (matches_position(&znode->zbranch[nn], lnum, offs))
  953. return 1;
  954. /* Look left */
  955. while (1) {
  956. err = tnc_prev(c, &znode, &nn);
  957. if (err == -ENOENT)
  958. break;
  959. if (err < 0)
  960. return err;
  961. if (keys_cmp(c, &znode->zbranch[nn].key, key))
  962. break;
  963. if (matches_position(&znode->zbranch[nn], lnum, offs)) {
  964. *zn = znode;
  965. *n = nn;
  966. return 1;
  967. }
  968. }
  969. /* Look right */
  970. znode = *zn;
  971. nn = *n;
  972. while (1) {
  973. err = tnc_next(c, &znode, &nn);
  974. if (err == -ENOENT)
  975. return 0;
  976. if (err < 0)
  977. return err;
  978. if (keys_cmp(c, &znode->zbranch[nn].key, key))
  979. return 0;
  980. *zn = znode;
  981. *n = nn;
  982. if (matches_position(&znode->zbranch[nn], lnum, offs))
  983. return 1;
  984. }
  985. }
  986. /**
  987. * dirty_cow_bottom_up - dirty a znode and its ancestors.
  988. * @c: UBIFS file-system description object
  989. * @znode: znode to dirty
  990. *
  991. * If we do not have a unique key that resides in a znode, then we cannot
  992. * dirty that znode from the top down (i.e. by using lookup_level0_dirty)
  993. * This function records the path back to the last dirty ancestor, and then
  994. * dirties the znodes on that path.
  995. */
  996. static struct ubifs_znode *dirty_cow_bottom_up(struct ubifs_info *c,
  997. struct ubifs_znode *znode)
  998. {
  999. struct ubifs_znode *zp;
  1000. int *path = c->bottom_up_buf, p = 0;
  1001. ubifs_assert(c->zroot.znode);
  1002. ubifs_assert(znode);
  1003. if (c->zroot.znode->level > BOTTOM_UP_HEIGHT) {
  1004. kfree(c->bottom_up_buf);
  1005. c->bottom_up_buf = kmalloc(c->zroot.znode->level * sizeof(int),
  1006. GFP_NOFS);
  1007. if (!c->bottom_up_buf)
  1008. return ERR_PTR(-ENOMEM);
  1009. path = c->bottom_up_buf;
  1010. }
  1011. if (c->zroot.znode->level) {
  1012. /* Go up until parent is dirty */
  1013. while (1) {
  1014. int n;
  1015. zp = znode->parent;
  1016. if (!zp)
  1017. break;
  1018. n = znode->iip;
  1019. ubifs_assert(p < c->zroot.znode->level);
  1020. path[p++] = n;
  1021. if (!zp->cnext && ubifs_zn_dirty(znode))
  1022. break;
  1023. znode = zp;
  1024. }
  1025. }
  1026. /* Come back down, dirtying as we go */
  1027. while (1) {
  1028. struct ubifs_zbranch *zbr;
  1029. zp = znode->parent;
  1030. if (zp) {
  1031. ubifs_assert(path[p - 1] >= 0);
  1032. ubifs_assert(path[p - 1] < zp->child_cnt);
  1033. zbr = &zp->zbranch[path[--p]];
  1034. znode = dirty_cow_znode(c, zbr);
  1035. } else {
  1036. ubifs_assert(znode == c->zroot.znode);
  1037. znode = dirty_cow_znode(c, &c->zroot);
  1038. }
  1039. if (IS_ERR(znode) || !p)
  1040. break;
  1041. ubifs_assert(path[p - 1] >= 0);
  1042. ubifs_assert(path[p - 1] < znode->child_cnt);
  1043. znode = znode->zbranch[path[p - 1]].znode;
  1044. }
  1045. return znode;
  1046. }
  1047. /**
  1048. * ubifs_lookup_level0 - search for zero-level znode.
  1049. * @c: UBIFS file-system description object
  1050. * @key: key to lookup
  1051. * @zn: znode is returned here
  1052. * @n: znode branch slot number is returned here
  1053. *
  1054. * This function looks up the TNC tree and search for zero-level znode which
  1055. * refers key @key. The found zero-level znode is returned in @zn. There are 3
  1056. * cases:
  1057. * o exact match, i.e. the found zero-level znode contains key @key, then %1
  1058. * is returned and slot number of the matched branch is stored in @n;
  1059. * o not exact match, which means that zero-level znode does not contain
  1060. * @key, then %0 is returned and slot number of the closed branch is stored
  1061. * in @n;
  1062. * o @key is so small that it is even less than the lowest key of the
  1063. * leftmost zero-level node, then %0 is returned and %0 is stored in @n.
  1064. *
  1065. * Note, when the TNC tree is traversed, some znodes may be absent, then this
  1066. * function reads corresponding indexing nodes and inserts them to TNC. In
  1067. * case of failure, a negative error code is returned.
  1068. */
  1069. int ubifs_lookup_level0(struct ubifs_info *c, const union ubifs_key *key,
  1070. struct ubifs_znode **zn, int *n)
  1071. {
  1072. int err, exact;
  1073. struct ubifs_znode *znode;
  1074. unsigned long time = get_seconds();
  1075. dbg_tnc("search key %s", DBGKEY(key));
  1076. znode = c->zroot.znode;
  1077. if (unlikely(!znode)) {
  1078. znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
  1079. if (IS_ERR(znode))
  1080. return PTR_ERR(znode);
  1081. }
  1082. znode->time = time;
  1083. while (1) {
  1084. struct ubifs_zbranch *zbr;
  1085. exact = ubifs_search_zbranch(c, znode, key, n);
  1086. if (znode->level == 0)
  1087. break;
  1088. if (*n < 0)
  1089. *n = 0;
  1090. zbr = &znode->zbranch[*n];
  1091. if (zbr->znode) {
  1092. znode->time = time;
  1093. znode = zbr->znode;
  1094. continue;
  1095. }
  1096. /* znode is not in TNC cache, load it from the media */
  1097. znode = ubifs_load_znode(c, zbr, znode, *n);
  1098. if (IS_ERR(znode))
  1099. return PTR_ERR(znode);
  1100. }
  1101. *zn = znode;
  1102. if (exact || !is_hash_key(c, key) || *n != -1) {
  1103. dbg_tnc("found %d, lvl %d, n %d", exact, znode->level, *n);
  1104. return exact;
  1105. }
  1106. /*
  1107. * Here is a tricky place. We have not found the key and this is a
  1108. * "hashed" key, which may collide. The rest of the code deals with
  1109. * situations like this:
  1110. *
  1111. * | 3 | 5 |
  1112. * / \
  1113. * | 3 | 5 | | 6 | 7 | (x)
  1114. *
  1115. * Or more a complex example:
  1116. *
  1117. * | 1 | 5 |
  1118. * / \
  1119. * | 1 | 3 | | 5 | 8 |
  1120. * \ /
  1121. * | 5 | 5 | | 6 | 7 | (x)
  1122. *
  1123. * In the examples, if we are looking for key "5", we may reach nodes
  1124. * marked with "(x)". In this case what we have do is to look at the
  1125. * left and see if there is "5" key there. If there is, we have to
  1126. * return it.
  1127. *
  1128. * Note, this whole situation is possible because we allow to have
  1129. * elements which are equivalent to the next key in the parent in the
  1130. * children of current znode. For example, this happens if we split a
  1131. * znode like this: | 3 | 5 | 5 | 6 | 7 |, which results in something
  1132. * like this:
  1133. * | 3 | 5 |
  1134. * / \
  1135. * | 3 | 5 | | 5 | 6 | 7 |
  1136. * ^
  1137. * And this becomes what is at the first "picture" after key "5" marked
  1138. * with "^" is removed. What could be done is we could prohibit
  1139. * splitting in the middle of the colliding sequence. Also, when
  1140. * removing the leftmost key, we would have to correct the key of the
  1141. * parent node, which would introduce additional complications. Namely,
  1142. * if we changed the the leftmost key of the parent znode, the garbage
  1143. * collector would be unable to find it (GC is doing this when GC'ing
  1144. * indexing LEBs). Although we already have an additional RB-tree where
  1145. * we save such changed znodes (see 'ins_clr_old_idx_znode()') until
  1146. * after the commit. But anyway, this does not look easy to implement
  1147. * so we did not try this.
  1148. */
  1149. err = tnc_prev(c, &znode, n);
  1150. if (err == -ENOENT) {
  1151. dbg_tnc("found 0, lvl %d, n -1", znode->level);
  1152. *n = -1;
  1153. return 0;
  1154. }
  1155. if (unlikely(err < 0))
  1156. return err;
  1157. if (keys_cmp(c, key, &znode->zbranch[*n].key)) {
  1158. dbg_tnc("found 0, lvl %d, n -1", znode->level);
  1159. *n = -1;
  1160. return 0;
  1161. }
  1162. dbg_tnc("found 1, lvl %d, n %d", znode->level, *n);
  1163. *zn = znode;
  1164. return 1;
  1165. }
  1166. /**
  1167. * lookup_level0_dirty - search for zero-level znode dirtying.
  1168. * @c: UBIFS file-system description object
  1169. * @key: key to lookup
  1170. * @zn: znode is returned here
  1171. * @n: znode branch slot number is returned here
  1172. *
  1173. * This function looks up the TNC tree and search for zero-level znode which
  1174. * refers key @key. The found zero-level znode is returned in @zn. There are 3
  1175. * cases:
  1176. * o exact match, i.e. the found zero-level znode contains key @key, then %1
  1177. * is returned and slot number of the matched branch is stored in @n;
  1178. * o not exact match, which means that zero-level znode does not contain @key
  1179. * then %0 is returned and slot number of the closed branch is stored in
  1180. * @n;
  1181. * o @key is so small that it is even less than the lowest key of the
  1182. * leftmost zero-level node, then %0 is returned and %-1 is stored in @n.
  1183. *
  1184. * Additionally all znodes in the path from the root to the located zero-level
  1185. * znode are marked as dirty.
  1186. *
  1187. * Note, when the TNC tree is traversed, some znodes may be absent, then this
  1188. * function reads corresponding indexing nodes and inserts them to TNC. In
  1189. * case of failure, a negative error code is returned.
  1190. */
  1191. static int lookup_level0_dirty(struct ubifs_info *c, const union ubifs_key *key,
  1192. struct ubifs_znode **zn, int *n)
  1193. {
  1194. int err, exact;
  1195. struct ubifs_znode *znode;
  1196. unsigned long time = get_seconds();
  1197. dbg_tnc("search and dirty key %s", DBGKEY(key));
  1198. znode = c->zroot.znode;
  1199. if (unlikely(!znode)) {
  1200. znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
  1201. if (IS_ERR(znode))
  1202. return PTR_ERR(znode);
  1203. }
  1204. znode = dirty_cow_znode(c, &c->zroot);
  1205. if (IS_ERR(znode))
  1206. return PTR_ERR(znode);
  1207. znode->time = time;
  1208. while (1) {
  1209. struct ubifs_zbranch *zbr;
  1210. exact = ubifs_search_zbranch(c, znode, key, n);
  1211. if (znode->level == 0)
  1212. break;
  1213. if (*n < 0)
  1214. *n = 0;
  1215. zbr = &znode->zbranch[*n];
  1216. if (zbr->znode) {
  1217. znode->time = time;
  1218. znode = dirty_cow_znode(c, zbr);
  1219. if (IS_ERR(znode))
  1220. return PTR_ERR(znode);
  1221. continue;
  1222. }
  1223. /* znode is not in TNC cache, load it from the media */
  1224. znode = ubifs_load_znode(c, zbr, znode, *n);
  1225. if (IS_ERR(znode))
  1226. return PTR_ERR(znode);
  1227. znode = dirty_cow_znode(c, zbr);
  1228. if (IS_ERR(znode))
  1229. return PTR_ERR(znode);
  1230. }
  1231. *zn = znode;
  1232. if (exact || !is_hash_key(c, key) || *n != -1) {
  1233. dbg_tnc("found %d, lvl %d, n %d", exact, znode->level, *n);
  1234. return exact;
  1235. }
  1236. /*
  1237. * See huge comment at 'lookup_level0_dirty()' what is the rest of the
  1238. * code.
  1239. */
  1240. err = tnc_prev(c, &znode, n);
  1241. if (err == -ENOENT) {
  1242. *n = -1;
  1243. dbg_tnc("found 0, lvl %d, n -1", znode->level);
  1244. return 0;
  1245. }
  1246. if (unlikely(err < 0))
  1247. return err;
  1248. if (keys_cmp(c, key, &znode->zbranch[*n].key)) {
  1249. *n = -1;
  1250. dbg_tnc("found 0, lvl %d, n -1", znode->level);
  1251. return 0;
  1252. }
  1253. if (znode->cnext || !ubifs_zn_dirty(znode)) {
  1254. znode = dirty_cow_bottom_up(c, znode);
  1255. if (IS_ERR(znode))
  1256. return PTR_ERR(znode);
  1257. }
  1258. dbg_tnc("found 1, lvl %d, n %d", znode->level, *n);
  1259. *zn = znode;
  1260. return 1;
  1261. }
  1262. /**
  1263. * maybe_leb_gced - determine if a LEB may have been garbage collected.
  1264. * @c: UBIFS file-system description object
  1265. * @lnum: LEB number
  1266. * @gc_seq1: garbage collection sequence number
  1267. *
  1268. * This function determines if @lnum may have been garbage collected since
  1269. * sequence number @gc_seq1. If it may have been then %1 is returned, otherwise
  1270. * %0 is returned.
  1271. */
  1272. static int maybe_leb_gced(struct ubifs_info *c, int lnum, int gc_seq1)
  1273. {
  1274. int gc_seq2, gced_lnum;
  1275. gced_lnum = c->gced_lnum;
  1276. smp_rmb();
  1277. gc_seq2 = c->gc_seq;
  1278. /* Same seq means no GC */
  1279. if (gc_seq1 == gc_seq2)
  1280. return 0;
  1281. /* Different by more than 1 means we don't know */
  1282. if (gc_seq1 + 1 != gc_seq2)
  1283. return 1;
  1284. /*
  1285. * We have seen the sequence number has increased by 1. Now we need to
  1286. * be sure we read the right LEB number, so read it again.
  1287. */
  1288. smp_rmb();
  1289. if (gced_lnum != c->gced_lnum)
  1290. return 1;
  1291. /* Finally we can check lnum */
  1292. if (gced_lnum == lnum)
  1293. return 1;
  1294. return 0;
  1295. }
  1296. /**
  1297. * ubifs_tnc_locate - look up a file-system node and return it and its location.
  1298. * @c: UBIFS file-system description object
  1299. * @key: node key to lookup
  1300. * @node: the node is returned here
  1301. * @lnum: LEB number is returned here
  1302. * @offs: offset is returned here
  1303. *
  1304. * This function look up and reads node with key @key. The caller has to make
  1305. * sure the @node buffer is large enough to fit the node. Returns zero in case
  1306. * of success, %-ENOENT if the node was not found, and a negative error code in
  1307. * case of failure. The node location can be returned in @lnum and @offs.
  1308. */
  1309. int ubifs_tnc_locate(struct ubifs_info *c, const union ubifs_key *key,
  1310. void *node, int *lnum, int *offs)
  1311. {
  1312. int found, n, err, safely = 0, gc_seq1;
  1313. struct ubifs_znode *znode;
  1314. struct ubifs_zbranch zbr, *zt;
  1315. again:
  1316. mutex_lock(&c->tnc_mutex);
  1317. found = ubifs_lookup_level0(c, key, &znode, &n);
  1318. if (!found) {
  1319. err = -ENOENT;
  1320. goto out;
  1321. } else if (found < 0) {
  1322. err = found;
  1323. goto out;
  1324. }
  1325. zt = &znode->zbranch[n];
  1326. if (lnum) {
  1327. *lnum = zt->lnum;
  1328. *offs = zt->offs;
  1329. }
  1330. if (is_hash_key(c, key)) {
  1331. /*
  1332. * In this case the leaf node cache gets used, so we pass the
  1333. * address of the zbranch and keep the mutex locked
  1334. */
  1335. err = tnc_read_node_nm(c, zt, node);
  1336. goto out;
  1337. }
  1338. if (safely) {
  1339. err = ubifs_tnc_read_node(c, zt, node);
  1340. goto out;
  1341. }
  1342. /* Drop the TNC mutex prematurely and race with garbage collection */
  1343. zbr = znode->zbranch[n];
  1344. gc_seq1 = c->gc_seq;
  1345. mutex_unlock(&c->tnc_mutex);
  1346. if (ubifs_get_wbuf(c, zbr.lnum)) {
  1347. /* We do not GC journal heads */
  1348. err = ubifs_tnc_read_node(c, &zbr, node);
  1349. return err;
  1350. }
  1351. err = fallible_read_node(c, key, &zbr, node);
  1352. if (err <= 0 || maybe_leb_gced(c, zbr.lnum, gc_seq1)) {
  1353. /*
  1354. * The node may have been GC'ed out from under us so try again
  1355. * while keeping the TNC mutex locked.
  1356. */
  1357. safely = 1;
  1358. goto again;
  1359. }
  1360. return 0;
  1361. out:
  1362. mutex_unlock(&c->tnc_mutex);
  1363. return err;
  1364. }
  1365. /**
  1366. * ubifs_tnc_get_bu_keys - lookup keys for bulk-read.
  1367. * @c: UBIFS file-system description object
  1368. * @bu: bulk-read parameters and results
  1369. *
  1370. * Lookup consecutive data node keys for the same inode that reside
  1371. * consecutively in the same LEB.
  1372. */
  1373. int ubifs_tnc_get_bu_keys(struct ubifs_info *c, struct bu_info *bu)
  1374. {
  1375. int n, err = 0, lnum = -1, uninitialized_var(offs);
  1376. int uninitialized_var(len);
  1377. unsigned int block = key_block(c, &bu->key);
  1378. struct ubifs_znode *znode;
  1379. bu->cnt = 0;
  1380. bu->blk_cnt = 0;
  1381. bu->eof = 0;
  1382. mutex_lock(&c->tnc_mutex);
  1383. /* Find first key */
  1384. err = ubifs_lookup_level0(c, &bu->key, &znode, &n);
  1385. if (err < 0)
  1386. goto out;
  1387. if (err) {
  1388. /* Key found */
  1389. len = znode->zbranch[n].len;
  1390. /* The buffer must be big enough for at least 1 node */
  1391. if (len > bu->buf_len) {
  1392. err = -EINVAL;
  1393. goto out;
  1394. }
  1395. /* Add this key */
  1396. bu->zbranch[bu->cnt++] = znode->zbranch[n];
  1397. bu->blk_cnt += 1;
  1398. lnum = znode->zbranch[n].lnum;
  1399. offs = ALIGN(znode->zbranch[n].offs + len, 8);
  1400. }
  1401. while (1) {
  1402. struct ubifs_zbranch *zbr;
  1403. union ubifs_key *key;
  1404. unsigned int next_block;
  1405. /* Find next key */
  1406. err = tnc_next(c, &znode, &n);
  1407. if (err)
  1408. goto out;
  1409. zbr = &znode->zbranch[n];
  1410. key = &zbr->key;
  1411. /* See if there is another data key for this file */
  1412. if (key_inum(c, key) != key_inum(c, &bu->key) ||
  1413. key_type(c, key) != UBIFS_DATA_KEY) {
  1414. err = -ENOENT;
  1415. goto out;
  1416. }
  1417. if (lnum < 0) {
  1418. /* First key found */
  1419. lnum = zbr->lnum;
  1420. offs = ALIGN(zbr->offs + zbr->len, 8);
  1421. len = zbr->len;
  1422. if (len > bu->buf_len) {
  1423. err = -EINVAL;
  1424. goto out;
  1425. }
  1426. } else {
  1427. /*
  1428. * The data nodes must be in consecutive positions in
  1429. * the same LEB.
  1430. */
  1431. if (zbr->lnum != lnum || zbr->offs != offs)
  1432. goto out;
  1433. offs += ALIGN(zbr->len, 8);
  1434. len = ALIGN(len, 8) + zbr->len;
  1435. /* Must not exceed buffer length */
  1436. if (len > bu->buf_len)
  1437. goto out;
  1438. }
  1439. /* Allow for holes */
  1440. next_block = key_block(c, key);
  1441. bu->blk_cnt += (next_block - block - 1);
  1442. if (bu->blk_cnt >= UBIFS_MAX_BULK_READ)
  1443. goto out;
  1444. block = next_block;
  1445. /* Add this key */
  1446. bu->zbranch[bu->cnt++] = *zbr;
  1447. bu->blk_cnt += 1;
  1448. /* See if we have room for more */
  1449. if (bu->cnt >= UBIFS_MAX_BULK_READ)
  1450. goto out;
  1451. if (bu->blk_cnt >= UBIFS_MAX_BULK_READ)
  1452. goto out;
  1453. }
  1454. out:
  1455. if (err == -ENOENT) {
  1456. bu->eof = 1;
  1457. err = 0;
  1458. }
  1459. bu->gc_seq = c->gc_seq;
  1460. mutex_unlock(&c->tnc_mutex);
  1461. if (err)
  1462. return err;
  1463. /*
  1464. * An enormous hole could cause bulk-read to encompass too many
  1465. * page cache pages, so limit the number here.
  1466. */
  1467. if (bu->blk_cnt > UBIFS_MAX_BULK_READ)
  1468. bu->blk_cnt = UBIFS_MAX_BULK_READ;
  1469. /*
  1470. * Ensure that bulk-read covers a whole number of page cache
  1471. * pages.
  1472. */
  1473. if (UBIFS_BLOCKS_PER_PAGE == 1 ||
  1474. !(bu->blk_cnt & (UBIFS_BLOCKS_PER_PAGE - 1)))
  1475. return 0;
  1476. if (bu->eof) {
  1477. /* At the end of file we can round up */
  1478. bu->blk_cnt += UBIFS_BLOCKS_PER_PAGE - 1;
  1479. return 0;
  1480. }
  1481. /* Exclude data nodes that do not make up a whole page cache page */
  1482. block = key_block(c, &bu->key) + bu->blk_cnt;
  1483. block &= ~(UBIFS_BLOCKS_PER_PAGE - 1);
  1484. while (bu->cnt) {
  1485. if (key_block(c, &bu->zbranch[bu->cnt - 1].key) < block)
  1486. break;
  1487. bu->cnt -= 1;
  1488. }
  1489. return 0;
  1490. }
  1491. /**
  1492. * read_wbuf - bulk-read from a LEB with a wbuf.
  1493. * @wbuf: wbuf that may overlap the read
  1494. * @buf: buffer into which to read
  1495. * @len: read length
  1496. * @lnum: LEB number from which to read
  1497. * @offs: offset from which to read
  1498. *
  1499. * This functions returns %0 on success or a negative error code on failure.
  1500. */
  1501. static int read_wbuf(struct ubifs_wbuf *wbuf, void *buf, int len, int lnum,
  1502. int offs)
  1503. {
  1504. const struct ubifs_info *c = wbuf->c;
  1505. int rlen, overlap;
  1506. dbg_io("LEB %d:%d, length %d", lnum, offs, len);
  1507. ubifs_assert(wbuf && lnum >= 0 && lnum < c->leb_cnt && offs >= 0);
  1508. ubifs_assert(!(offs & 7) && offs < c->leb_size);
  1509. ubifs_assert(offs + len <= c->leb_size);
  1510. spin_lock(&wbuf->lock);
  1511. overlap = (lnum == wbuf->lnum && offs + len > wbuf->offs);
  1512. if (!overlap) {
  1513. /* We may safely unlock the write-buffer and read the data */
  1514. spin_unlock(&wbuf->lock);
  1515. return ubi_read(c->ubi, lnum, buf, offs, len);
  1516. }
  1517. /* Don't read under wbuf */
  1518. rlen = wbuf->offs - offs;
  1519. if (rlen < 0)
  1520. rlen = 0;
  1521. /* Copy the rest from the write-buffer */
  1522. memcpy(buf + rlen, wbuf->buf + offs + rlen - wbuf->offs, len - rlen);
  1523. spin_unlock(&wbuf->lock);
  1524. if (rlen > 0)
  1525. /* Read everything that goes before write-buffer */
  1526. return ubi_read(c->ubi, lnum, buf, offs, rlen);
  1527. return 0;
  1528. }
  1529. /**
  1530. * validate_data_node - validate data nodes for bulk-read.
  1531. * @c: UBIFS file-system description object
  1532. * @buf: buffer containing data node to validate
  1533. * @zbr: zbranch of data node to validate
  1534. *
  1535. * This functions returns %0 on success or a negative error code on failure.
  1536. */
  1537. static int validate_data_node(struct ubifs_info *c, void *buf,
  1538. struct ubifs_zbranch *zbr)
  1539. {
  1540. union ubifs_key key1;
  1541. struct ubifs_ch *ch = buf;
  1542. int err, len;
  1543. if (ch->node_type != UBIFS_DATA_NODE) {
  1544. ubifs_err("bad node type (%d but expected %d)",
  1545. ch->node_type, UBIFS_DATA_NODE);
  1546. goto out_err;
  1547. }
  1548. err = ubifs_check_node(c, buf, zbr->lnum, zbr->offs, 0, 0);
  1549. if (err) {
  1550. ubifs_err("expected node type %d", UBIFS_DATA_NODE);
  1551. goto out;
  1552. }
  1553. len = le32_to_cpu(ch->len);
  1554. if (len != zbr->len) {
  1555. ubifs_err("bad node length %d, expected %d", len, zbr->len);
  1556. goto out_err;
  1557. }
  1558. /* Make sure the key of the read node is correct */
  1559. key_read(c, buf + UBIFS_KEY_OFFSET, &key1);
  1560. if (!keys_eq(c, &zbr->key, &key1)) {
  1561. ubifs_err("bad key in node at LEB %d:%d",
  1562. zbr->lnum, zbr->offs);
  1563. dbg_tnc("looked for key %s found node's key %s",
  1564. DBGKEY(&zbr->key), DBGKEY1(&key1));
  1565. goto out_err;
  1566. }
  1567. return 0;
  1568. out_err:
  1569. err = -EINVAL;
  1570. out:
  1571. ubifs_err("bad node at LEB %d:%d", zbr->lnum, zbr->offs);
  1572. dbg_dump_node(c, buf);
  1573. dbg_dump_stack();
  1574. return err;
  1575. }
  1576. /**
  1577. * ubifs_tnc_bulk_read - read a number of data nodes in one go.
  1578. * @c: UBIFS file-system description object
  1579. * @bu: bulk-read parameters and results
  1580. *
  1581. * This functions reads and validates the data nodes that were identified by the
  1582. * 'ubifs_tnc_get_bu_keys()' function. This functions returns %0 on success,
  1583. * -EAGAIN to indicate a race with GC, or another negative error code on
  1584. * failure.
  1585. */
  1586. int ubifs_tnc_bulk_read(struct ubifs_info *c, struct bu_info *bu)
  1587. {
  1588. int lnum = bu->zbranch[0].lnum, offs = bu->zbranch[0].offs, len, err, i;
  1589. struct ubifs_wbuf *wbuf;
  1590. void *buf;
  1591. len = bu->zbranch[bu->cnt - 1].offs;
  1592. len += bu->zbranch[bu->cnt - 1].len - offs;
  1593. if (len > bu->buf_len) {
  1594. ubifs_err("buffer too small %d vs %d", bu->buf_len, len);
  1595. return -EINVAL;
  1596. }
  1597. /* Do the read */
  1598. wbuf = ubifs_get_wbuf(c, lnum);
  1599. if (wbuf)
  1600. err = read_wbuf(wbuf, bu->buf, len, lnum, offs);
  1601. else
  1602. err = ubi_read(c->ubi, lnum, bu->buf, offs, len);
  1603. /* Check for a race with GC */
  1604. if (maybe_leb_gced(c, lnum, bu->gc_seq))
  1605. return -EAGAIN;
  1606. if (err && err != -EBADMSG) {
  1607. ubifs_err("failed to read from LEB %d:%d, error %d",
  1608. lnum, offs, err);
  1609. dbg_dump_stack();
  1610. dbg_tnc("key %s", DBGKEY(&bu->key));
  1611. return err;
  1612. }
  1613. /* Validate the nodes read */
  1614. buf = bu->buf;
  1615. for (i = 0; i < bu->cnt; i++) {
  1616. err = validate_data_node(c, buf, &bu->zbranch[i]);
  1617. if (err)
  1618. return err;
  1619. buf = buf + ALIGN(bu->zbranch[i].len, 8);
  1620. }
  1621. return 0;
  1622. }
  1623. /**
  1624. * do_lookup_nm- look up a "hashed" node.
  1625. * @c: UBIFS file-system description object
  1626. * @key: node key to lookup
  1627. * @node: the node is returned here
  1628. * @nm: node name
  1629. *
  1630. * This function look up and reads a node which contains name hash in the key.
  1631. * Since the hash may have collisions, there may be many nodes with the same
  1632. * key, so we have to sequentially look to all of them until the needed one is
  1633. * found. This function returns zero in case of success, %-ENOENT if the node
  1634. * was not found, and a negative error code in case of failure.
  1635. */
  1636. static int do_lookup_nm(struct ubifs_info *c, const union ubifs_key *key,
  1637. void *node, const struct qstr *nm)
  1638. {
  1639. int found, n, err;
  1640. struct ubifs_znode *znode;
  1641. dbg_tnc("name '%.*s' key %s", nm->len, nm->name, DBGKEY(key));
  1642. mutex_lock(&c->tnc_mutex);
  1643. found = ubifs_lookup_level0(c, key, &znode, &n);
  1644. if (!found) {
  1645. err = -ENOENT;
  1646. goto out_unlock;
  1647. } else if (found < 0) {
  1648. err = found;
  1649. goto out_unlock;
  1650. }
  1651. ubifs_assert(n >= 0);
  1652. err = resolve_collision(c, key, &znode, &n, nm);
  1653. dbg_tnc("rc returned %d, znode %p, n %d", err, znode, n);
  1654. if (unlikely(err < 0))
  1655. goto out_unlock;
  1656. if (err == 0) {
  1657. err = -ENOENT;
  1658. goto out_unlock;
  1659. }
  1660. err = tnc_read_node_nm(c, &znode->zbranch[n], node);
  1661. out_unlock:
  1662. mutex_unlock(&c->tnc_mutex);
  1663. return err;
  1664. }
  1665. /**
  1666. * ubifs_tnc_lookup_nm - look up a "hashed" node.
  1667. * @c: UBIFS file-system description object
  1668. * @key: node key to lookup
  1669. * @node: the node is returned here
  1670. * @nm: node name
  1671. *
  1672. * This function look up and reads a node which contains name hash in the key.
  1673. * Since the hash may have collisions, there may be many nodes with the same
  1674. * key, so we have to sequentially look to all of them until the needed one is
  1675. * found. This function returns zero in case of success, %-ENOENT if the node
  1676. * was not found, and a negative error code in case of failure.
  1677. */
  1678. int ubifs_tnc_lookup_nm(struct ubifs_info *c, const union ubifs_key *key,
  1679. void *node, const struct qstr *nm)
  1680. {
  1681. int err, len;
  1682. const struct ubifs_dent_node *dent = node;
  1683. /*
  1684. * We assume that in most of the cases there are no name collisions and
  1685. * 'ubifs_tnc_lookup()' returns us the right direntry.
  1686. */
  1687. err = ubifs_tnc_lookup(c, key, node);
  1688. if (err)
  1689. return err;
  1690. len = le16_to_cpu(dent->nlen);
  1691. if (nm->len == len && !memcmp(dent->name, nm->name, len))
  1692. return 0;
  1693. /*
  1694. * Unluckily, there are hash collisions and we have to iterate over
  1695. * them look at each direntry with colliding name hash sequentially.
  1696. */
  1697. return do_lookup_nm(c, key, node, nm);
  1698. }
  1699. /**
  1700. * correct_parent_keys - correct parent znodes' keys.
  1701. * @c: UBIFS file-system description object
  1702. * @znode: znode to correct parent znodes for
  1703. *
  1704. * This is a helper function for 'tnc_insert()'. When the key of the leftmost
  1705. * zbranch changes, keys of parent znodes have to be corrected. This helper
  1706. * function is called in such situations and corrects the keys if needed.
  1707. */
  1708. static void correct_parent_keys(const struct ubifs_info *c,
  1709. struct ubifs_znode *znode)
  1710. {
  1711. union ubifs_key *key, *key1;
  1712. ubifs_assert(znode->parent);
  1713. ubifs_assert(znode->iip == 0);
  1714. key = &znode->zbranch[0].key;
  1715. key1 = &znode->parent->zbranch[0].key;
  1716. while (keys_cmp(c, key, key1) < 0) {
  1717. key_copy(c, key, key1);
  1718. znode = znode->parent;
  1719. znode->alt = 1;
  1720. if (!znode->parent || znode->iip)
  1721. break;
  1722. key1 = &znode->parent->zbranch[0].key;
  1723. }
  1724. }
  1725. /**
  1726. * insert_zbranch - insert a zbranch into a znode.
  1727. * @znode: znode into which to insert
  1728. * @zbr: zbranch to insert
  1729. * @n: slot number to insert to
  1730. *
  1731. * This is a helper function for 'tnc_insert()'. UBIFS does not allow "gaps" in
  1732. * znode's array of zbranches and keeps zbranches consolidated, so when a new
  1733. * zbranch has to be inserted to the @znode->zbranches[]' array at the @n-th
  1734. * slot, zbranches starting from @n have to be moved right.
  1735. */
  1736. static void insert_zbranch(struct ubifs_znode *znode,
  1737. const struct ubifs_zbranch *zbr, int n)
  1738. {
  1739. int i;
  1740. ubifs_assert(ubifs_zn_dirty(znode));
  1741. if (znode->level) {
  1742. for (i = znode->child_cnt; i > n; i--) {
  1743. znode->zbranch[i] = znode->zbranch[i - 1];
  1744. if (znode->zbranch[i].znode)
  1745. znode->zbranch[i].znode->iip = i;
  1746. }
  1747. if (zbr->znode)
  1748. zbr->znode->iip = n;
  1749. } else
  1750. for (i = znode->child_cnt; i > n; i--)
  1751. znode->zbranch[i] = znode->zbranch[i - 1];
  1752. znode->zbranch[n] = *zbr;
  1753. znode->child_cnt += 1;
  1754. /*
  1755. * After inserting at slot zero, the lower bound of the key range of
  1756. * this znode may have changed. If this znode is subsequently split
  1757. * then the upper bound of the key range may change, and furthermore
  1758. * it could change to be lower than the original lower bound. If that
  1759. * happens, then it will no longer be possible to find this znode in the
  1760. * TNC using the key from the index node on flash. That is bad because
  1761. * if it is not found, we will assume it is obsolete and may overwrite
  1762. * it. Then if there is an unclean unmount, we will start using the
  1763. * old index which will be broken.
  1764. *
  1765. * So we first mark znodes that have insertions at slot zero, and then
  1766. * if they are split we add their lnum/offs to the old_idx tree.
  1767. */
  1768. if (n == 0)
  1769. znode->alt = 1;
  1770. }
  1771. /**
  1772. * tnc_insert - insert a node into TNC.
  1773. * @c: UBIFS file-system description object
  1774. * @znode: znode to insert into
  1775. * @zbr: branch to insert
  1776. * @n: slot number to insert new zbranch to
  1777. *
  1778. * This function inserts a new node described by @zbr into znode @znode. If
  1779. * znode does not have a free slot for new zbranch, it is split. Parent znodes
  1780. * are splat as well if needed. Returns zero in case of success or a negative
  1781. * error code in case of failure.
  1782. */
  1783. static int tnc_insert(struct ubifs_info *c, struct ubifs_znode *znode,
  1784. struct ubifs_zbranch *zbr, int n)
  1785. {
  1786. struct ubifs_znode *zn, *zi, *zp;
  1787. int i, keep, move, appending = 0;
  1788. union ubifs_key *key = &zbr->key, *key1;
  1789. ubifs_assert(n >= 0 && n <= c->fanout);
  1790. /* Implement naive insert for now */
  1791. again:
  1792. zp = znode->parent;
  1793. if (znode->child_cnt < c->fanout) {
  1794. ubifs_assert(n != c->fanout);
  1795. dbg_tnc("inserted at %d level %d, key %s", n, znode->level,
  1796. DBGKEY(key));
  1797. insert_zbranch(znode, zbr, n);
  1798. /* Ensure parent's key is correct */
  1799. if (n == 0 && zp && znode->iip == 0)
  1800. correct_parent_keys(c, znode);
  1801. return 0;
  1802. }
  1803. /*
  1804. * Unfortunately, @znode does not have more empty slots and we have to
  1805. * split it.
  1806. */
  1807. dbg_tnc("splitting level %d, key %s", znode->level, DBGKEY(key));
  1808. if (znode->alt)
  1809. /*
  1810. * We can no longer be sure of finding this znode by key, so we
  1811. * record it in the old_idx tree.
  1812. */
  1813. ins_clr_old_idx_znode(c, znode);
  1814. zn = kzalloc(c->max_znode_sz, GFP_NOFS);
  1815. if (!zn)
  1816. return -ENOMEM;
  1817. zn->parent = zp;
  1818. zn->level = znode->level;
  1819. /* Decide where to split */
  1820. if (znode->level == 0 && key_type(c, key) == UBIFS_DATA_KEY) {
  1821. /* Try not to split consecutive data keys */
  1822. if (n == c->fanout) {
  1823. key1 = &znode->zbranch[n - 1].key;
  1824. if (key_inum(c, key1) == key_inum(c, key) &&
  1825. key_type(c, key1) == UBIFS_DATA_KEY)
  1826. appending = 1;
  1827. } else
  1828. goto check_split;
  1829. } else if (appending && n != c->fanout) {
  1830. /* Try not to split consecutive data keys */
  1831. appending = 0;
  1832. check_split:
  1833. if (n >= (c->fanout + 1) / 2) {
  1834. key1 = &znode->zbranch[0].key;
  1835. if (key_inum(c, key1) == key_inum(c, key) &&
  1836. key_type(c, key1) == UBIFS_DATA_KEY) {
  1837. key1 = &znode->zbranch[n].key;
  1838. if (key_inum(c, key1) != key_inum(c, key) ||
  1839. key_type(c, key1) != UBIFS_DATA_KEY) {
  1840. keep = n;
  1841. move = c->fanout - keep;
  1842. zi = znode;
  1843. goto do_split;
  1844. }
  1845. }
  1846. }
  1847. }
  1848. if (appending) {
  1849. keep = c->fanout;
  1850. move = 0;
  1851. } else {
  1852. keep = (c->fanout + 1) / 2;
  1853. move = c->fanout - keep;
  1854. }
  1855. /*
  1856. * Although we don't at present, we could look at the neighbors and see
  1857. * if we can move some zbranches there.
  1858. */
  1859. if (n < keep) {
  1860. /* Insert into existing znode */
  1861. zi = znode;
  1862. move += 1;
  1863. keep -= 1;
  1864. } else {
  1865. /* Insert into new znode */
  1866. zi = zn;
  1867. n -= keep;
  1868. /* Re-parent */
  1869. if (zn->level != 0)
  1870. zbr->znode->parent = zn;
  1871. }
  1872. do_split:
  1873. __set_bit(DIRTY_ZNODE, &zn->flags);
  1874. atomic_long_inc(&c->dirty_zn_cnt);
  1875. zn->child_cnt = move;
  1876. znode->child_cnt = keep;
  1877. dbg_tnc("moving %d, keeping %d", move, keep);
  1878. /* Move zbranch */
  1879. for (i = 0; i < move; i++) {
  1880. zn->zbranch[i] = znode->zbranch[keep + i];
  1881. /* Re-parent */
  1882. if (zn->level != 0)
  1883. if (zn->zbranch[i].znode) {
  1884. zn->zbranch[i].znode->parent = zn;
  1885. zn->zbranch[i].znode->iip = i;
  1886. }
  1887. }
  1888. /* Insert new key and branch */
  1889. dbg_tnc("inserting at %d level %d, key %s", n, zn->level, DBGKEY(key));
  1890. insert_zbranch(zi, zbr, n);
  1891. /* Insert new znode (produced by spitting) into the parent */
  1892. if (zp) {
  1893. if (n == 0 && zi == znode && znode->iip == 0)
  1894. correct_parent_keys(c, znode);
  1895. /* Locate insertion point */
  1896. n = znode->iip + 1;
  1897. /* Tail recursion */
  1898. zbr->key = zn->zbranch[0].key;
  1899. zbr->znode = zn;
  1900. zbr->lnum = 0;
  1901. zbr->offs = 0;
  1902. zbr->len = 0;
  1903. znode = zp;
  1904. goto again;
  1905. }
  1906. /* We have to split root znode */
  1907. dbg_tnc("creating new zroot at level %d", znode->level + 1);
  1908. zi = kzalloc(c->max_znode_sz, GFP_NOFS);
  1909. if (!zi)
  1910. return -ENOMEM;
  1911. zi->child_cnt = 2;
  1912. zi->level = znode->level + 1;
  1913. __set_bit(DIRTY_ZNODE, &zi->flags);
  1914. atomic_long_inc(&c->dirty_zn_cnt);
  1915. zi->zbranch[0].key = znode->zbranch[0].key;
  1916. zi->zbranch[0].znode = znode;
  1917. zi->zbranch[0].lnum = c->zroot.lnum;
  1918. zi->zbranch[0].offs = c->zroot.offs;
  1919. zi->zbranch[0].len = c->zroot.len;
  1920. zi->zbranch[1].key = zn->zbranch[0].key;
  1921. zi->zbranch[1].znode = zn;
  1922. c->zroot.lnum = 0;
  1923. c->zroot.offs = 0;
  1924. c->zroot.len = 0;
  1925. c->zroot.znode = zi;
  1926. zn->parent = zi;
  1927. zn->iip = 1;
  1928. znode->parent = zi;
  1929. znode->iip = 0;
  1930. return 0;
  1931. }
  1932. /**
  1933. * ubifs_tnc_add - add a node to TNC.
  1934. * @c: UBIFS file-system description object
  1935. * @key: key to add
  1936. * @lnum: LEB number of node
  1937. * @offs: node offset
  1938. * @len: node length
  1939. *
  1940. * This function adds a node with key @key to TNC. The node may be new or it may
  1941. * obsolete some existing one. Returns %0 on success or negative error code on
  1942. * failure.
  1943. */
  1944. int ubifs_tnc_add(struct ubifs_info *c, const union ubifs_key *key, int lnum,
  1945. int offs, int len)
  1946. {
  1947. int found, n, err = 0;
  1948. struct ubifs_znode *znode;
  1949. mutex_lock(&c->tnc_mutex);
  1950. dbg_tnc("%d:%d, len %d, key %s", lnum, offs, len, DBGKEY(key));
  1951. found = lookup_level0_dirty(c, key, &znode, &n);
  1952. if (!found) {
  1953. struct ubifs_zbranch zbr;
  1954. zbr.znode = NULL;
  1955. zbr.lnum = lnum;
  1956. zbr.offs = offs;
  1957. zbr.len = len;
  1958. key_copy(c, key, &zbr.key);
  1959. err = tnc_insert(c, znode, &zbr, n + 1);
  1960. } else if (found == 1) {
  1961. struct ubifs_zbranch *zbr = &znode->zbranch[n];
  1962. lnc_free(zbr);
  1963. err = ubifs_add_dirt(c, zbr->lnum, zbr->len);
  1964. zbr->lnum = lnum;
  1965. zbr->offs = offs;
  1966. zbr->len = len;
  1967. } else
  1968. err = found;
  1969. if (!err)
  1970. err = dbg_check_tnc(c, 0);
  1971. mutex_unlock(&c->tnc_mutex);
  1972. return err;
  1973. }
  1974. /**
  1975. * ubifs_tnc_replace - replace a node in the TNC only if the old node is found.
  1976. * @c: UBIFS file-system description object
  1977. * @key: key to add
  1978. * @old_lnum: LEB number of old node
  1979. * @old_offs: old node offset
  1980. * @lnum: LEB number of node
  1981. * @offs: node offset
  1982. * @len: node length
  1983. *
  1984. * This function replaces a node with key @key in the TNC only if the old node
  1985. * is found. This function is called by garbage collection when node are moved.
  1986. * Returns %0 on success or negative error code on failure.
  1987. */
  1988. int ubifs_tnc_replace(struct ubifs_info *c, const union ubifs_key *key,
  1989. int old_lnum, int old_offs, int lnum, int offs, int len)
  1990. {
  1991. int found, n, err = 0;
  1992. struct ubifs_znode *znode;
  1993. mutex_lock(&c->tnc_mutex);
  1994. dbg_tnc("old LEB %d:%d, new LEB %d:%d, len %d, key %s", old_lnum,
  1995. old_offs, lnum, offs, len, DBGKEY(key));
  1996. found = lookup_level0_dirty(c, key, &znode, &n);
  1997. if (found < 0) {
  1998. err = found;
  1999. goto out_unlock;
  2000. }
  2001. if (found == 1) {
  2002. struct ubifs_zbranch *zbr = &znode->zbranch[n];
  2003. found = 0;
  2004. if (zbr->lnum == old_lnum && zbr->offs == old_offs) {
  2005. lnc_free(zbr);
  2006. err = ubifs_add_dirt(c, zbr->lnum, zbr->len);
  2007. if (err)
  2008. goto out_unlock;
  2009. zbr->lnum = lnum;
  2010. zbr->offs = offs;
  2011. zbr->len = len;
  2012. found = 1;
  2013. } else if (is_hash_key(c, key)) {
  2014. found = resolve_collision_directly(c, key, &znode, &n,
  2015. old_lnum, old_offs);
  2016. dbg_tnc("rc returned %d, znode %p, n %d, LEB %d:%d",
  2017. found, znode, n, old_lnum, old_offs);
  2018. if (found < 0) {
  2019. err = found;
  2020. goto out_unlock;
  2021. }
  2022. if (found) {
  2023. /* Ensure the znode is dirtied */
  2024. if (znode->cnext || !ubifs_zn_dirty(znode)) {
  2025. znode = dirty_cow_bottom_up(c,
  2026. znode);
  2027. if (IS_ERR(znode)) {
  2028. err = PTR_ERR(znode);
  2029. goto out_unlock;
  2030. }
  2031. }
  2032. zbr = &znode->zbranch[n];
  2033. lnc_free(zbr);
  2034. err = ubifs_add_dirt(c, zbr->lnum,
  2035. zbr->len);
  2036. if (err)
  2037. goto out_unlock;
  2038. zbr->lnum = lnum;
  2039. zbr->offs = offs;
  2040. zbr->len = len;
  2041. }
  2042. }
  2043. }
  2044. if (!found)
  2045. err = ubifs_add_dirt(c, lnum, len);
  2046. if (!err)
  2047. err = dbg_check_tnc(c, 0);
  2048. out_unlock:
  2049. mutex_unlock(&c->tnc_mutex);
  2050. return err;
  2051. }
  2052. /**
  2053. * ubifs_tnc_add_nm - add a "hashed" node to TNC.
  2054. * @c: UBIFS file-system description object
  2055. * @key: key to add
  2056. * @lnum: LEB number of node
  2057. * @offs: node offset
  2058. * @len: node length
  2059. * @nm: node name
  2060. *
  2061. * This is the same as 'ubifs_tnc_add()' but it should be used with keys which
  2062. * may have collisions, like directory entry keys.
  2063. */
  2064. int ubifs_tnc_add_nm(struct ubifs_info *c, const union ubifs_key *key,
  2065. int lnum, int offs, int len, const struct qstr *nm)
  2066. {
  2067. int found, n, err = 0;
  2068. struct ubifs_znode *znode;
  2069. mutex_lock(&c->tnc_mutex);
  2070. dbg_tnc("LEB %d:%d, name '%.*s', key %s", lnum, offs, nm->len, nm->name,
  2071. DBGKEY(key));
  2072. found = lookup_level0_dirty(c, key, &znode, &n);
  2073. if (found < 0) {
  2074. err = found;
  2075. goto out_unlock;
  2076. }
  2077. if (found == 1) {
  2078. if (c->replaying)
  2079. found = fallible_resolve_collision(c, key, &znode, &n,
  2080. nm, 1);
  2081. else
  2082. found = resolve_collision(c, key, &znode, &n, nm);
  2083. dbg_tnc("rc returned %d, znode %p, n %d", found, znode, n);
  2084. if (found < 0) {
  2085. err = found;
  2086. goto out_unlock;
  2087. }
  2088. /* Ensure the znode is dirtied */
  2089. if (znode->cnext || !ubifs_zn_dirty(znode)) {
  2090. znode = dirty_cow_bottom_up(c, znode);
  2091. if (IS_ERR(znode)) {
  2092. err = PTR_ERR(znode);
  2093. goto out_unlock;
  2094. }
  2095. }
  2096. if (found == 1) {
  2097. struct ubifs_zbranch *zbr = &znode->zbranch[n];
  2098. lnc_free(zbr);
  2099. err = ubifs_add_dirt(c, zbr->lnum, zbr->len);
  2100. zbr->lnum = lnum;
  2101. zbr->offs = offs;
  2102. zbr->len = len;
  2103. goto out_unlock;
  2104. }
  2105. }
  2106. if (!found) {
  2107. struct ubifs_zbranch zbr;
  2108. zbr.znode = NULL;
  2109. zbr.lnum = lnum;
  2110. zbr.offs = offs;
  2111. zbr.len = len;
  2112. key_copy(c, key, &zbr.key);
  2113. err = tnc_insert(c, znode, &zbr, n + 1);
  2114. if (err)
  2115. goto out_unlock;
  2116. if (c->replaying) {
  2117. /*
  2118. * We did not find it in the index so there may be a
  2119. * dangling branch still in the index. So we remove it
  2120. * by passing 'ubifs_tnc_remove_nm()' the same key but
  2121. * an unmatchable name.
  2122. */
  2123. struct qstr noname = { .len = 0, .name = "" };
  2124. err = dbg_check_tnc(c, 0);
  2125. mutex_unlock(&c->tnc_mutex);
  2126. if (err)
  2127. return err;
  2128. return ubifs_tnc_remove_nm(c, key, &noname);
  2129. }
  2130. }
  2131. out_unlock:
  2132. if (!err)
  2133. err = dbg_check_tnc(c, 0);
  2134. mutex_unlock(&c->tnc_mutex);
  2135. return err;
  2136. }
  2137. /**
  2138. * tnc_delete - delete a znode form TNC.
  2139. * @c: UBIFS file-system description object
  2140. * @znode: znode to delete from
  2141. * @n: zbranch slot number to delete
  2142. *
  2143. * This function deletes a leaf node from @n-th slot of @znode. Returns zero in
  2144. * case of success and a negative error code in case of failure.
  2145. */
  2146. static int tnc_delete(struct ubifs_info *c, struct ubifs_znode *znode, int n)
  2147. {
  2148. struct ubifs_zbranch *zbr;
  2149. struct ubifs_znode *zp;
  2150. int i, err;
  2151. /* Delete without merge for now */
  2152. ubifs_assert(znode->level == 0);
  2153. ubifs_assert(n >= 0 && n < c->fanout);
  2154. dbg_tnc("deleting %s", DBGKEY(&znode->zbranch[n].key));
  2155. zbr = &znode->zbranch[n];
  2156. lnc_free(zbr);
  2157. err = ubifs_add_dirt(c, zbr->lnum, zbr->len);
  2158. if (err) {
  2159. dbg_dump_znode(c, znode);
  2160. return err;
  2161. }
  2162. /* We do not "gap" zbranch slots */
  2163. for (i = n; i < znode->child_cnt - 1; i++)
  2164. znode->zbranch[i] = znode->zbranch[i + 1];
  2165. znode->child_cnt -= 1;
  2166. if (znode->child_cnt > 0)
  2167. return 0;
  2168. /*
  2169. * This was the last zbranch, we have to delete this znode from the
  2170. * parent.
  2171. */
  2172. do {
  2173. ubifs_assert(!test_bit(OBSOLETE_ZNODE, &znode->flags));
  2174. ubifs_assert(ubifs_zn_dirty(znode));
  2175. zp = znode->parent;
  2176. n = znode->iip;
  2177. atomic_long_dec(&c->dirty_zn_cnt);
  2178. err = insert_old_idx_znode(c, znode);
  2179. if (err)
  2180. return err;
  2181. if (znode->cnext) {
  2182. __set_bit(OBSOLETE_ZNODE, &znode->flags);
  2183. atomic_long_inc(&c->clean_zn_cnt);
  2184. atomic_long_inc(&ubifs_clean_zn_cnt);
  2185. } else
  2186. kfree(znode);
  2187. znode = zp;
  2188. } while (znode->child_cnt == 1); /* while removing last child */
  2189. /* Remove from znode, entry n - 1 */
  2190. znode->child_cnt -= 1;
  2191. ubifs_assert(znode->level != 0);
  2192. for (i = n; i < znode->child_cnt; i++) {
  2193. znode->zbranch[i] = znode->zbranch[i + 1];
  2194. if (znode->zbranch[i].znode)
  2195. znode->zbranch[i].znode->iip = i;
  2196. }
  2197. /*
  2198. * If this is the root and it has only 1 child then
  2199. * collapse the tree.
  2200. */
  2201. if (!znode->parent) {
  2202. while (znode->child_cnt == 1 && znode->level != 0) {
  2203. zp = znode;
  2204. zbr = &znode->zbranch[0];
  2205. znode = get_znode(c, znode, 0);
  2206. if (IS_ERR(znode))
  2207. return PTR_ERR(znode);
  2208. znode = dirty_cow_znode(c, zbr);
  2209. if (IS_ERR(znode))
  2210. return PTR_ERR(znode);
  2211. znode->parent = NULL;
  2212. znode->iip = 0;
  2213. if (c->zroot.len) {
  2214. err = insert_old_idx(c, c->zroot.lnum,
  2215. c->zroot.offs);
  2216. if (err)
  2217. return err;
  2218. }
  2219. c->zroot.lnum = zbr->lnum;
  2220. c->zroot.offs = zbr->offs;
  2221. c->zroot.len = zbr->len;
  2222. c->zroot.znode = znode;
  2223. ubifs_assert(!test_bit(OBSOLETE_ZNODE,
  2224. &zp->flags));
  2225. ubifs_assert(test_bit(DIRTY_ZNODE, &zp->flags));
  2226. atomic_long_dec(&c->dirty_zn_cnt);
  2227. if (zp->cnext) {
  2228. __set_bit(OBSOLETE_ZNODE, &zp->flags);
  2229. atomic_long_inc(&c->clean_zn_cnt);
  2230. atomic_long_inc(&ubifs_clean_zn_cnt);
  2231. } else
  2232. kfree(zp);
  2233. }
  2234. }
  2235. return 0;
  2236. }
  2237. /**
  2238. * ubifs_tnc_remove - remove an index entry of a node.
  2239. * @c: UBIFS file-system description object
  2240. * @key: key of node
  2241. *
  2242. * Returns %0 on success or negative error code on failure.
  2243. */
  2244. int ubifs_tnc_remove(struct ubifs_info *c, const union ubifs_key *key)
  2245. {
  2246. int found, n, err = 0;
  2247. struct ubifs_znode *znode;
  2248. mutex_lock(&c->tnc_mutex);
  2249. dbg_tnc("key %s", DBGKEY(key));
  2250. found = lookup_level0_dirty(c, key, &znode, &n);
  2251. if (found < 0) {
  2252. err = found;
  2253. goto out_unlock;
  2254. }
  2255. if (found == 1)
  2256. err = tnc_delete(c, znode, n);
  2257. if (!err)
  2258. err = dbg_check_tnc(c, 0);
  2259. out_unlock:
  2260. mutex_unlock(&c->tnc_mutex);
  2261. return err;
  2262. }
  2263. /**
  2264. * ubifs_tnc_remove_nm - remove an index entry for a "hashed" node.
  2265. * @c: UBIFS file-system description object
  2266. * @key: key of node
  2267. * @nm: directory entry name
  2268. *
  2269. * Returns %0 on success or negative error code on failure.
  2270. */
  2271. int ubifs_tnc_remove_nm(struct ubifs_info *c, const union ubifs_key *key,
  2272. const struct qstr *nm)
  2273. {
  2274. int n, err;
  2275. struct ubifs_znode *znode;
  2276. mutex_lock(&c->tnc_mutex);
  2277. dbg_tnc("%.*s, key %s", nm->len, nm->name, DBGKEY(key));
  2278. err = lookup_level0_dirty(c, key, &znode, &n);
  2279. if (err < 0)
  2280. goto out_unlock;
  2281. if (err) {
  2282. if (c->replaying)
  2283. err = fallible_resolve_collision(c, key, &znode, &n,
  2284. nm, 0);
  2285. else
  2286. err = resolve_collision(c, key, &znode, &n, nm);
  2287. dbg_tnc("rc returned %d, znode %p, n %d", err, znode, n);
  2288. if (err < 0)
  2289. goto out_unlock;
  2290. if (err) {
  2291. /* Ensure the znode is dirtied */
  2292. if (znode->cnext || !ubifs_zn_dirty(znode)) {
  2293. znode = dirty_cow_bottom_up(c, znode);
  2294. if (IS_ERR(znode)) {
  2295. err = PTR_ERR(znode);
  2296. goto out_unlock;
  2297. }
  2298. }
  2299. err = tnc_delete(c, znode, n);
  2300. }
  2301. }
  2302. out_unlock:
  2303. if (!err)
  2304. err = dbg_check_tnc(c, 0);
  2305. mutex_unlock(&c->tnc_mutex);
  2306. return err;
  2307. }
  2308. /**
  2309. * key_in_range - determine if a key falls within a range of keys.
  2310. * @c: UBIFS file-system description object
  2311. * @key: key to check
  2312. * @from_key: lowest key in range
  2313. * @to_key: highest key in range
  2314. *
  2315. * This function returns %1 if the key is in range and %0 otherwise.
  2316. */
  2317. static int key_in_range(struct ubifs_info *c, union ubifs_key *key,
  2318. union ubifs_key *from_key, union ubifs_key *to_key)
  2319. {
  2320. if (keys_cmp(c, key, from_key) < 0)
  2321. return 0;
  2322. if (keys_cmp(c, key, to_key) > 0)
  2323. return 0;
  2324. return 1;
  2325. }
  2326. /**
  2327. * ubifs_tnc_remove_range - remove index entries in range.
  2328. * @c: UBIFS file-system description object
  2329. * @from_key: lowest key to remove
  2330. * @to_key: highest key to remove
  2331. *
  2332. * This function removes index entries starting at @from_key and ending at
  2333. * @to_key. This function returns zero in case of success and a negative error
  2334. * code in case of failure.
  2335. */
  2336. int ubifs_tnc_remove_range(struct ubifs_info *c, union ubifs_key *from_key,
  2337. union ubifs_key *to_key)
  2338. {
  2339. int i, n, k, err = 0;
  2340. struct ubifs_znode *znode;
  2341. union ubifs_key *key;
  2342. mutex_lock(&c->tnc_mutex);
  2343. while (1) {
  2344. /* Find first level 0 znode that contains keys to remove */
  2345. err = ubifs_lookup_level0(c, from_key, &znode, &n);
  2346. if (err < 0)
  2347. goto out_unlock;
  2348. if (err)
  2349. key = from_key;
  2350. else {
  2351. err = tnc_next(c, &znode, &n);
  2352. if (err == -ENOENT) {
  2353. err = 0;
  2354. goto out_unlock;
  2355. }
  2356. if (err < 0)
  2357. goto out_unlock;
  2358. key = &znode->zbranch[n].key;
  2359. if (!key_in_range(c, key, from_key, to_key)) {
  2360. err = 0;
  2361. goto out_unlock;
  2362. }
  2363. }
  2364. /* Ensure the znode is dirtied */
  2365. if (znode->cnext || !ubifs_zn_dirty(znode)) {
  2366. znode = dirty_cow_bottom_up(c, znode);
  2367. if (IS_ERR(znode)) {
  2368. err = PTR_ERR(znode);
  2369. goto out_unlock;
  2370. }
  2371. }
  2372. /* Remove all keys in range except the first */
  2373. for (i = n + 1, k = 0; i < znode->child_cnt; i++, k++) {
  2374. key = &znode->zbranch[i].key;
  2375. if (!key_in_range(c, key, from_key, to_key))
  2376. break;
  2377. lnc_free(&znode->zbranch[i]);
  2378. err = ubifs_add_dirt(c, znode->zbranch[i].lnum,
  2379. znode->zbranch[i].len);
  2380. if (err) {
  2381. dbg_dump_znode(c, znode);
  2382. goto out_unlock;
  2383. }
  2384. dbg_tnc("removing %s", DBGKEY(key));
  2385. }
  2386. if (k) {
  2387. for (i = n + 1 + k; i < znode->child_cnt; i++)
  2388. znode->zbranch[i - k] = znode->zbranch[i];
  2389. znode->child_cnt -= k;
  2390. }
  2391. /* Now delete the first */
  2392. err = tnc_delete(c, znode, n);
  2393. if (err)
  2394. goto out_unlock;
  2395. }
  2396. out_unlock:
  2397. if (!err)
  2398. err = dbg_check_tnc(c, 0);
  2399. mutex_unlock(&c->tnc_mutex);
  2400. return err;
  2401. }
  2402. /**
  2403. * ubifs_tnc_remove_ino - remove an inode from TNC.
  2404. * @c: UBIFS file-system description object
  2405. * @inum: inode number to remove
  2406. *
  2407. * This function remove inode @inum and all the extended attributes associated
  2408. * with the anode from TNC and returns zero in case of success or a negative
  2409. * error code in case of failure.
  2410. */
  2411. int ubifs_tnc_remove_ino(struct ubifs_info *c, ino_t inum)
  2412. {
  2413. union ubifs_key key1, key2;
  2414. struct ubifs_dent_node *xent, *pxent = NULL;
  2415. struct qstr nm = { .name = NULL };
  2416. dbg_tnc("ino %lu", inum);
  2417. /*
  2418. * Walk all extended attribute entries and remove them together with
  2419. * corresponding extended attribute inodes.
  2420. */
  2421. lowest_xent_key(c, &key1, inum);
  2422. while (1) {
  2423. ino_t xattr_inum;
  2424. int err;
  2425. xent = ubifs_tnc_next_ent(c, &key1, &nm);
  2426. if (IS_ERR(xent)) {
  2427. err = PTR_ERR(xent);
  2428. if (err == -ENOENT)
  2429. break;
  2430. return err;
  2431. }
  2432. xattr_inum = le64_to_cpu(xent->inum);
  2433. dbg_tnc("xent '%s', ino %lu", xent->name, xattr_inum);
  2434. nm.name = xent->name;
  2435. nm.len = le16_to_cpu(xent->nlen);
  2436. err = ubifs_tnc_remove_nm(c, &key1, &nm);
  2437. if (err) {
  2438. kfree(xent);
  2439. return err;
  2440. }
  2441. lowest_ino_key(c, &key1, xattr_inum);
  2442. highest_ino_key(c, &key2, xattr_inum);
  2443. err = ubifs_tnc_remove_range(c, &key1, &key2);
  2444. if (err) {
  2445. kfree(xent);
  2446. return err;
  2447. }
  2448. kfree(pxent);
  2449. pxent = xent;
  2450. key_read(c, &xent->key, &key1);
  2451. }
  2452. kfree(pxent);
  2453. lowest_ino_key(c, &key1, inum);
  2454. highest_ino_key(c, &key2, inum);
  2455. return ubifs_tnc_remove_range(c, &key1, &key2);
  2456. }
  2457. /**
  2458. * ubifs_tnc_next_ent - walk directory or extended attribute entries.
  2459. * @c: UBIFS file-system description object
  2460. * @key: key of last entry
  2461. * @nm: name of last entry found or %NULL
  2462. *
  2463. * This function finds and reads the next directory or extended attribute entry
  2464. * after the given key (@key) if there is one. @nm is used to resolve
  2465. * collisions.
  2466. *
  2467. * If the name of the current entry is not known and only the key is known,
  2468. * @nm->name has to be %NULL. In this case the semantics of this function is a
  2469. * little bit different and it returns the entry corresponding to this key, not
  2470. * the next one. If the key was not found, the closest "right" entry is
  2471. * returned.
  2472. *
  2473. * If the fist entry has to be found, @key has to contain the lowest possible
  2474. * key value for this inode and @name has to be %NULL.
  2475. *
  2476. * This function returns the found directory or extended attribute entry node
  2477. * in case of success, %-ENOENT is returned if no entry was found, and a
  2478. * negative error code is returned in case of failure.
  2479. */
  2480. struct ubifs_dent_node *ubifs_tnc_next_ent(struct ubifs_info *c,
  2481. union ubifs_key *key,
  2482. const struct qstr *nm)
  2483. {
  2484. int n, err, type = key_type(c, key);
  2485. struct ubifs_znode *znode;
  2486. struct ubifs_dent_node *dent;
  2487. struct ubifs_zbranch *zbr;
  2488. union ubifs_key *dkey;
  2489. dbg_tnc("%s %s", nm->name ? (char *)nm->name : "(lowest)", DBGKEY(key));
  2490. ubifs_assert(is_hash_key(c, key));
  2491. mutex_lock(&c->tnc_mutex);
  2492. err = ubifs_lookup_level0(c, key, &znode, &n);
  2493. if (unlikely(err < 0))
  2494. goto out_unlock;
  2495. if (nm->name) {
  2496. if (err) {
  2497. /* Handle collisions */
  2498. err = resolve_collision(c, key, &znode, &n, nm);
  2499. dbg_tnc("rc returned %d, znode %p, n %d",
  2500. err, znode, n);
  2501. if (unlikely(err < 0))
  2502. goto out_unlock;
  2503. }
  2504. /* Now find next entry */
  2505. err = tnc_next(c, &znode, &n);
  2506. if (unlikely(err))
  2507. goto out_unlock;
  2508. } else {
  2509. /*
  2510. * The full name of the entry was not given, in which case the
  2511. * behavior of this function is a little different and it
  2512. * returns current entry, not the next one.
  2513. */
  2514. if (!err) {
  2515. /*
  2516. * However, the given key does not exist in the TNC
  2517. * tree and @znode/@n variables contain the closest
  2518. * "preceding" element. Switch to the next one.
  2519. */
  2520. err = tnc_next(c, &znode, &n);
  2521. if (err)
  2522. goto out_unlock;
  2523. }
  2524. }
  2525. zbr = &znode->zbranch[n];
  2526. dent = kmalloc(zbr->len, GFP_NOFS);
  2527. if (unlikely(!dent)) {
  2528. err = -ENOMEM;
  2529. goto out_unlock;
  2530. }
  2531. /*
  2532. * The above 'tnc_next()' call could lead us to the next inode, check
  2533. * this.
  2534. */
  2535. dkey = &zbr->key;
  2536. if (key_inum(c, dkey) != key_inum(c, key) ||
  2537. key_type(c, dkey) != type) {
  2538. err = -ENOENT;
  2539. goto out_free;
  2540. }
  2541. err = tnc_read_node_nm(c, zbr, dent);
  2542. if (unlikely(err))
  2543. goto out_free;
  2544. mutex_unlock(&c->tnc_mutex);
  2545. return dent;
  2546. out_free:
  2547. kfree(dent);
  2548. out_unlock:
  2549. mutex_unlock(&c->tnc_mutex);
  2550. return ERR_PTR(err);
  2551. }
  2552. /**
  2553. * tnc_destroy_cnext - destroy left-over obsolete znodes from a failed commit.
  2554. * @c: UBIFS file-system description object
  2555. *
  2556. * Destroy left-over obsolete znodes from a failed commit.
  2557. */
  2558. static void tnc_destroy_cnext(struct ubifs_info *c)
  2559. {
  2560. struct ubifs_znode *cnext;
  2561. if (!c->cnext)
  2562. return;
  2563. ubifs_assert(c->cmt_state == COMMIT_BROKEN);
  2564. cnext = c->cnext;
  2565. do {
  2566. struct ubifs_znode *znode = cnext;
  2567. cnext = cnext->cnext;
  2568. if (test_bit(OBSOLETE_ZNODE, &znode->flags))
  2569. kfree(znode);
  2570. } while (cnext && cnext != c->cnext);
  2571. }
  2572. /**
  2573. * ubifs_tnc_close - close TNC subsystem and free all related resources.
  2574. * @c: UBIFS file-system description object
  2575. */
  2576. void ubifs_tnc_close(struct ubifs_info *c)
  2577. {
  2578. long clean_freed;
  2579. tnc_destroy_cnext(c);
  2580. if (c->zroot.znode) {
  2581. clean_freed = ubifs_destroy_tnc_subtree(c->zroot.znode);
  2582. atomic_long_sub(clean_freed, &ubifs_clean_zn_cnt);
  2583. }
  2584. kfree(c->gap_lebs);
  2585. kfree(c->ilebs);
  2586. destroy_old_idx(c);
  2587. }
  2588. /**
  2589. * left_znode - get the znode to the left.
  2590. * @c: UBIFS file-system description object
  2591. * @znode: znode
  2592. *
  2593. * This function returns a pointer to the znode to the left of @znode or NULL if
  2594. * there is not one. A negative error code is returned on failure.
  2595. */
  2596. static struct ubifs_znode *left_znode(struct ubifs_info *c,
  2597. struct ubifs_znode *znode)
  2598. {
  2599. int level = znode->level;
  2600. while (1) {
  2601. int n = znode->iip - 1;
  2602. /* Go up until we can go left */
  2603. znode = znode->parent;
  2604. if (!znode)
  2605. return NULL;
  2606. if (n >= 0) {
  2607. /* Now go down the rightmost branch to 'level' */
  2608. znode = get_znode(c, znode, n);
  2609. if (IS_ERR(znode))
  2610. return znode;
  2611. while (znode->level != level) {
  2612. n = znode->child_cnt - 1;
  2613. znode = get_znode(c, znode, n);
  2614. if (IS_ERR(znode))
  2615. return znode;
  2616. }
  2617. break;
  2618. }
  2619. }
  2620. return znode;
  2621. }
  2622. /**
  2623. * right_znode - get the znode to the right.
  2624. * @c: UBIFS file-system description object
  2625. * @znode: znode
  2626. *
  2627. * This function returns a pointer to the znode to the right of @znode or NULL
  2628. * if there is not one. A negative error code is returned on failure.
  2629. */
  2630. static struct ubifs_znode *right_znode(struct ubifs_info *c,
  2631. struct ubifs_znode *znode)
  2632. {
  2633. int level = znode->level;
  2634. while (1) {
  2635. int n = znode->iip + 1;
  2636. /* Go up until we can go right */
  2637. znode = znode->parent;
  2638. if (!znode)
  2639. return NULL;
  2640. if (n < znode->child_cnt) {
  2641. /* Now go down the leftmost branch to 'level' */
  2642. znode = get_znode(c, znode, n);
  2643. if (IS_ERR(znode))
  2644. return znode;
  2645. while (znode->level != level) {
  2646. znode = get_znode(c, znode, 0);
  2647. if (IS_ERR(znode))
  2648. return znode;
  2649. }
  2650. break;
  2651. }
  2652. }
  2653. return znode;
  2654. }
  2655. /**
  2656. * lookup_znode - find a particular indexing node from TNC.
  2657. * @c: UBIFS file-system description object
  2658. * @key: index node key to lookup
  2659. * @level: index node level
  2660. * @lnum: index node LEB number
  2661. * @offs: index node offset
  2662. *
  2663. * This function searches an indexing node by its first key @key and its
  2664. * address @lnum:@offs. It looks up the indexing tree by pulling all indexing
  2665. * nodes it traverses to TNC. This function is called fro indexing nodes which
  2666. * were found on the media by scanning, for example when garbage-collecting or
  2667. * when doing in-the-gaps commit. This means that the indexing node which is
  2668. * looked for does not have to have exactly the same leftmost key @key, because
  2669. * the leftmost key may have been changed, in which case TNC will contain a
  2670. * dirty znode which still refers the same @lnum:@offs. This function is clever
  2671. * enough to recognize such indexing nodes.
  2672. *
  2673. * Note, if a znode was deleted or changed too much, then this function will
  2674. * not find it. For situations like this UBIFS has the old index RB-tree
  2675. * (indexed by @lnum:@offs).
  2676. *
  2677. * This function returns a pointer to the znode found or %NULL if it is not
  2678. * found. A negative error code is returned on failure.
  2679. */
  2680. static struct ubifs_znode *lookup_znode(struct ubifs_info *c,
  2681. union ubifs_key *key, int level,
  2682. int lnum, int offs)
  2683. {
  2684. struct ubifs_znode *znode, *zn;
  2685. int n, nn;
  2686. /*
  2687. * The arguments have probably been read off flash, so don't assume
  2688. * they are valid.
  2689. */
  2690. if (level < 0)
  2691. return ERR_PTR(-EINVAL);
  2692. /* Get the root znode */
  2693. znode = c->zroot.znode;
  2694. if (!znode) {
  2695. znode = ubifs_load_znode(c, &c->zroot, NULL, 0);
  2696. if (IS_ERR(znode))
  2697. return znode;
  2698. }
  2699. /* Check if it is the one we are looking for */
  2700. if (c->zroot.lnum == lnum && c->zroot.offs == offs)
  2701. return znode;
  2702. /* Descend to the parent level i.e. (level + 1) */
  2703. if (level >= znode->level)
  2704. return NULL;
  2705. while (1) {
  2706. ubifs_search_zbranch(c, znode, key, &n);
  2707. if (n < 0) {
  2708. /*
  2709. * We reached a znode where the leftmost key is greater
  2710. * than the key we are searching for. This is the same
  2711. * situation as the one described in a huge comment at
  2712. * the end of the 'ubifs_lookup_level0()' function. And
  2713. * for exactly the same reasons we have to try to look
  2714. * left before giving up.
  2715. */
  2716. znode = left_znode(c, znode);
  2717. if (!znode)
  2718. return NULL;
  2719. if (IS_ERR(znode))
  2720. return znode;
  2721. ubifs_search_zbranch(c, znode, key, &n);
  2722. ubifs_assert(n >= 0);
  2723. }
  2724. if (znode->level == level + 1)
  2725. break;
  2726. znode = get_znode(c, znode, n);
  2727. if (IS_ERR(znode))
  2728. return znode;
  2729. }
  2730. /* Check if the child is the one we are looking for */
  2731. if (znode->zbranch[n].lnum == lnum && znode->zbranch[n].offs == offs)
  2732. return get_znode(c, znode, n);
  2733. /* If the key is unique, there is nowhere else to look */
  2734. if (!is_hash_key(c, key))
  2735. return NULL;
  2736. /*
  2737. * The key is not unique and so may be also in the znodes to either
  2738. * side.
  2739. */
  2740. zn = znode;
  2741. nn = n;
  2742. /* Look left */
  2743. while (1) {
  2744. /* Move one branch to the left */
  2745. if (n)
  2746. n -= 1;
  2747. else {
  2748. znode = left_znode(c, znode);
  2749. if (!znode)
  2750. break;
  2751. if (IS_ERR(znode))
  2752. return znode;
  2753. n = znode->child_cnt - 1;
  2754. }
  2755. /* Check it */
  2756. if (znode->zbranch[n].lnum == lnum &&
  2757. znode->zbranch[n].offs == offs)
  2758. return get_znode(c, znode, n);
  2759. /* Stop if the key is less than the one we are looking for */
  2760. if (keys_cmp(c, &znode->zbranch[n].key, key) < 0)
  2761. break;
  2762. }
  2763. /* Back to the middle */
  2764. znode = zn;
  2765. n = nn;
  2766. /* Look right */
  2767. while (1) {
  2768. /* Move one branch to the right */
  2769. if (++n >= znode->child_cnt) {
  2770. znode = right_znode(c, znode);
  2771. if (!znode)
  2772. break;
  2773. if (IS_ERR(znode))
  2774. return znode;
  2775. n = 0;
  2776. }
  2777. /* Check it */
  2778. if (znode->zbranch[n].lnum == lnum &&
  2779. znode->zbranch[n].offs == offs)
  2780. return get_znode(c, znode, n);
  2781. /* Stop if the key is greater than the one we are looking for */
  2782. if (keys_cmp(c, &znode->zbranch[n].key, key) > 0)
  2783. break;
  2784. }
  2785. return NULL;
  2786. }
  2787. /**
  2788. * is_idx_node_in_tnc - determine if an index node is in the TNC.
  2789. * @c: UBIFS file-system description object
  2790. * @key: key of index node
  2791. * @level: index node level
  2792. * @lnum: LEB number of index node
  2793. * @offs: offset of index node
  2794. *
  2795. * This function returns %0 if the index node is not referred to in the TNC, %1
  2796. * if the index node is referred to in the TNC and the corresponding znode is
  2797. * dirty, %2 if an index node is referred to in the TNC and the corresponding
  2798. * znode is clean, and a negative error code in case of failure.
  2799. *
  2800. * Note, the @key argument has to be the key of the first child. Also note,
  2801. * this function relies on the fact that 0:0 is never a valid LEB number and
  2802. * offset for a main-area node.
  2803. */
  2804. int is_idx_node_in_tnc(struct ubifs_info *c, union ubifs_key *key, int level,
  2805. int lnum, int offs)
  2806. {
  2807. struct ubifs_znode *znode;
  2808. znode = lookup_znode(c, key, level, lnum, offs);
  2809. if (!znode)
  2810. return 0;
  2811. if (IS_ERR(znode))
  2812. return PTR_ERR(znode);
  2813. return ubifs_zn_dirty(znode) ? 1 : 2;
  2814. }
  2815. /**
  2816. * is_leaf_node_in_tnc - determine if a non-indexing not is in the TNC.
  2817. * @c: UBIFS file-system description object
  2818. * @key: node key
  2819. * @lnum: node LEB number
  2820. * @offs: node offset
  2821. *
  2822. * This function returns %1 if the node is referred to in the TNC, %0 if it is
  2823. * not, and a negative error code in case of failure.
  2824. *
  2825. * Note, this function relies on the fact that 0:0 is never a valid LEB number
  2826. * and offset for a main-area node.
  2827. */
  2828. static int is_leaf_node_in_tnc(struct ubifs_info *c, union ubifs_key *key,
  2829. int lnum, int offs)
  2830. {
  2831. struct ubifs_zbranch *zbr;
  2832. struct ubifs_znode *znode, *zn;
  2833. int n, found, err, nn;
  2834. const int unique = !is_hash_key(c, key);
  2835. found = ubifs_lookup_level0(c, key, &znode, &n);
  2836. if (found < 0)
  2837. return found; /* Error code */
  2838. if (!found)
  2839. return 0;
  2840. zbr = &znode->zbranch[n];
  2841. if (lnum == zbr->lnum && offs == zbr->offs)
  2842. return 1; /* Found it */
  2843. if (unique)
  2844. return 0;
  2845. /*
  2846. * Because the key is not unique, we have to look left
  2847. * and right as well
  2848. */
  2849. zn = znode;
  2850. nn = n;
  2851. /* Look left */
  2852. while (1) {
  2853. err = tnc_prev(c, &znode, &n);
  2854. if (err == -ENOENT)
  2855. break;
  2856. if (err)
  2857. return err;
  2858. if (keys_cmp(c, key, &znode->zbranch[n].key))
  2859. break;
  2860. zbr = &znode->zbranch[n];
  2861. if (lnum == zbr->lnum && offs == zbr->offs)
  2862. return 1; /* Found it */
  2863. }
  2864. /* Look right */
  2865. znode = zn;
  2866. n = nn;
  2867. while (1) {
  2868. err = tnc_next(c, &znode, &n);
  2869. if (err) {
  2870. if (err == -ENOENT)
  2871. return 0;
  2872. return err;
  2873. }
  2874. if (keys_cmp(c, key, &znode->zbranch[n].key))
  2875. break;
  2876. zbr = &znode->zbranch[n];
  2877. if (lnum == zbr->lnum && offs == zbr->offs)
  2878. return 1; /* Found it */
  2879. }
  2880. return 0;
  2881. }
  2882. /**
  2883. * ubifs_tnc_has_node - determine whether a node is in the TNC.
  2884. * @c: UBIFS file-system description object
  2885. * @key: node key
  2886. * @level: index node level (if it is an index node)
  2887. * @lnum: node LEB number
  2888. * @offs: node offset
  2889. * @is_idx: non-zero if the node is an index node
  2890. *
  2891. * This function returns %1 if the node is in the TNC, %0 if it is not, and a
  2892. * negative error code in case of failure. For index nodes, @key has to be the
  2893. * key of the first child. An index node is considered to be in the TNC only if
  2894. * the corresponding znode is clean or has not been loaded.
  2895. */
  2896. int ubifs_tnc_has_node(struct ubifs_info *c, union ubifs_key *key, int level,
  2897. int lnum, int offs, int is_idx)
  2898. {
  2899. int err;
  2900. mutex_lock(&c->tnc_mutex);
  2901. if (is_idx) {
  2902. err = is_idx_node_in_tnc(c, key, level, lnum, offs);
  2903. if (err < 0)
  2904. goto out_unlock;
  2905. if (err == 1)
  2906. /* The index node was found but it was dirty */
  2907. err = 0;
  2908. else if (err == 2)
  2909. /* The index node was found and it was clean */
  2910. err = 1;
  2911. else
  2912. BUG_ON(err != 0);
  2913. } else
  2914. err = is_leaf_node_in_tnc(c, key, lnum, offs);
  2915. out_unlock:
  2916. mutex_unlock(&c->tnc_mutex);
  2917. return err;
  2918. }
  2919. /**
  2920. * ubifs_dirty_idx_node - dirty an index node.
  2921. * @c: UBIFS file-system description object
  2922. * @key: index node key
  2923. * @level: index node level
  2924. * @lnum: index node LEB number
  2925. * @offs: index node offset
  2926. *
  2927. * This function loads and dirties an index node so that it can be garbage
  2928. * collected. The @key argument has to be the key of the first child. This
  2929. * function relies on the fact that 0:0 is never a valid LEB number and offset
  2930. * for a main-area node. Returns %0 on success and a negative error code on
  2931. * failure.
  2932. */
  2933. int ubifs_dirty_idx_node(struct ubifs_info *c, union ubifs_key *key, int level,
  2934. int lnum, int offs)
  2935. {
  2936. struct ubifs_znode *znode;
  2937. int err = 0;
  2938. mutex_lock(&c->tnc_mutex);
  2939. znode = lookup_znode(c, key, level, lnum, offs);
  2940. if (!znode)
  2941. goto out_unlock;
  2942. if (IS_ERR(znode)) {
  2943. err = PTR_ERR(znode);
  2944. goto out_unlock;
  2945. }
  2946. znode = dirty_cow_bottom_up(c, znode);
  2947. if (IS_ERR(znode)) {
  2948. err = PTR_ERR(znode);
  2949. goto out_unlock;
  2950. }
  2951. out_unlock:
  2952. mutex_unlock(&c->tnc_mutex);
  2953. return err;
  2954. }