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