Whamcloud - gitweb
LU-8378 all: remove set but unused variables
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_iam.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * iam.c
33  * Top-level entry points into iam module
34  *
35  * Author: Wang Di <wangdi@clusterfs.com>
36  * Author: Nikita Danilov <nikita@clusterfs.com>
37  */
38
39 /*
40  * iam: big theory statement.
41  *
42  * iam (Index Access Module) is a module providing abstraction of persistent
43  * transactional container on top of generalized ldiskfs htree.
44  *
45  * iam supports:
46  *
47  *     - key, pointer, and record size specifiable per container.
48  *
49  *     - trees taller than 2 index levels.
50  *
51  *     - read/write to existing ldiskfs htree directories as iam containers.
52  *
53  * iam container is a tree, consisting of leaf nodes containing keys and
54  * records stored in this container, and index nodes, containing keys and
55  * pointers to leaf or index nodes.
56  *
57  * iam does not work with keys directly, instead it calls user-supplied key
58  * comparison function (->dpo_keycmp()).
59  *
60  * Pointers are (currently) interpreted as logical offsets (measured in
61  * blocksful) within underlying flat file on top of which iam tree lives.
62  *
63  * On-disk format:
64  *
65  * iam mostly tries to reuse existing htree formats.
66  *
67  * Format of index node:
68  *
69  * +-----+-------+-------+-------+------+-------+------------+
70  * |     | count |       |       |      |       |            |
71  * | gap |   /   | entry | entry | .... | entry | free space |
72  * |     | limit |       |       |      |       |            |
73  * +-----+-------+-------+-------+------+-------+------------+
74  *
75  *       gap           this part of node is never accessed by iam code. It
76  *                     exists for binary compatibility with ldiskfs htree (that,
77  *                     in turn, stores fake struct ext2_dirent for ext2
78  *                     compatibility), and to keep some unspecified per-node
79  *                     data. Gap can be different for root and non-root index
80  *                     nodes. Gap size can be specified for each container
81  *                     (gap of 0 is allowed).
82  *
83  *       count/limit   current number of entries in this node, and the maximal
84  *                     number of entries that can fit into node. count/limit
85  *                     has the same size as entry, and is itself counted in
86  *                     count.
87  *
88  *       entry         index entry: consists of a key immediately followed by
89  *                     a pointer to a child node. Size of a key and size of a
90  *                     pointer depends on container. Entry has neither
91  *                     alignment nor padding.
92  *
93  *       free space    portion of node new entries are added to
94  *
95  * Entries in index node are sorted by their key value.
96  *
97  * Format of a leaf node is not specified. Generic iam code accesses leaf
98  * nodes through ->id_leaf methods in struct iam_descr.
99  *
100  * The IAM root block is a special node, which contains the IAM descriptor.
101  * It is on disk format:
102  *
103  * +---------+-------+--------+---------+-------+------+-------+------------+
104  * |IAM desc | count |  idle  |         |       |      |       |            |
105  * |(fix/var)|   /   | blocks | padding | entry | .... | entry | free space |
106  * |         | limit |        |         |       |      |       |            |
107  * +---------+-------+--------+---------+-------+------+-------+------------+
108  *
109  * The padding length is calculated with the parameters in the IAM descriptor.
110  *
111  * The field "idle_blocks" is used to record empty leaf nodes, which have not
112  * been released but all contained entries in them have been removed. Usually,
113  * the idle blocks in the IAM should be reused when need to allocate new leaf
114  * nodes for new entries, it depends on the IAM hash functions to map the new
115  * entries to these idle blocks. Unfortunately, it is not easy to design some
116  * hash functions for such clever mapping, especially considering the insert/
117  * lookup performance.
118  *
119  * So the IAM recycles the empty leaf nodes, and put them into a per-file based
120  * idle blocks pool. If need some new leaf node, it will try to take idle block
121  * from such pool with priority, in spite of how the IAM hash functions to map
122  * the entry.
123  *
124  * The idle blocks pool is organized as a series of tables, and each table
125  * can be described as following (on-disk format):
126  *
127  * +---------+---------+---------+---------+------+---------+-------+
128  * |  magic  |  count  |  next   |  logic  |      |  logic  | free  |
129  * |(16 bits)|(16 bits)|  table  |  blk #  | .... |  blk #  | space |
130  * |         |         |(32 bits)|(32 bits)|      |(32 bits)|       |
131  * +---------+---------+---------+---------+------+---------+-------+
132  *
133  * The logic blk# for the first table is stored in the root node "idle_blocks".
134  *
135  */
136
137 #include <linux/module.h>
138 #include <linux/fs.h>
139 #include <linux/pagemap.h>
140 #include <linux/time.h>
141 #include <linux/fcntl.h>
142 #include <linux/stat.h>
143 #include <linux/string.h>
144 #include <linux/quotaops.h>
145 #include <linux/buffer_head.h>
146
147 #include <ldiskfs/ldiskfs.h>
148 #include <ldiskfs/xattr.h>
149 #undef ENTRY
150
151 #include "osd_internal.h"
152
153 #include <ldiskfs/acl.h>
154
155 /*
156  * List of all registered formats.
157  *
158  * No locking. Callers synchronize.
159  */
160 static struct list_head iam_formats = LIST_HEAD_INIT(iam_formats);
161
162 void iam_format_register(struct iam_format *fmt)
163 {
164         list_add(&fmt->if_linkage, &iam_formats);
165 }
166
167 static struct buffer_head *
168 iam_load_idle_blocks(struct iam_container *c, iam_ptr_t blk)
169 {
170         struct inode *inode = c->ic_object;
171         struct iam_idle_head *head;
172         struct buffer_head *bh;
173
174         LASSERT(mutex_is_locked(&c->ic_idle_mutex));
175
176         if (blk == 0)
177                 return NULL;
178
179         bh = __ldiskfs_bread(NULL, inode, blk, 0);
180         if (IS_ERR_OR_NULL(bh)) {
181                 CERROR("%.16s: cannot load idle blocks, blk = %u, err = %ld\n",
182                        LDISKFS_SB(inode->i_sb)->s_es->s_volume_name, blk,
183                        bh ? PTR_ERR(bh) : -EIO);
184                 c->ic_idle_failed = 1;
185                 if (bh == NULL)
186                         bh = ERR_PTR(-EIO);
187                 return bh;
188         }
189
190         head = (struct iam_idle_head *)(bh->b_data);
191         if (le16_to_cpu(head->iih_magic) != IAM_IDLE_HEADER_MAGIC) {
192                 CERROR("%.16s: invalid idle block head, blk = %u, magic = %d\n",
193                        LDISKFS_SB(inode->i_sb)->s_es->s_volume_name, blk,
194                        le16_to_cpu(head->iih_magic));
195                 brelse(bh);
196                 c->ic_idle_failed = 1;
197                 return ERR_PTR(-EBADF);
198         }
199
200         return bh;
201 }
202
203 /*
204  * Determine format of given container. This is done by scanning list of
205  * registered formats and calling ->if_guess() method of each in turn.
206  */
207 static int iam_format_guess(struct iam_container *c)
208 {
209         int result;
210         struct iam_format *fmt;
211
212         /*
213          * XXX temporary initialization hook.
214          */
215         {
216                 static int initialized = 0;
217
218                 if (!initialized) {
219                         iam_lvar_format_init();
220                         iam_lfix_format_init();
221                         initialized = 1;
222                 }
223         }
224
225         result = -ENOENT;
226         list_for_each_entry(fmt, &iam_formats, if_linkage) {
227                 result = fmt->if_guess(c);
228                 if (result == 0)
229                         break;
230         }
231
232         if (result == 0) {
233                 struct buffer_head *bh;
234                 __u32 *idle_blocks;
235
236                 LASSERT(c->ic_root_bh != NULL);
237
238                 idle_blocks = (__u32 *)(c->ic_root_bh->b_data +
239                                         c->ic_descr->id_root_gap +
240                                         sizeof(struct dx_countlimit));
241                 mutex_lock(&c->ic_idle_mutex);
242                 bh = iam_load_idle_blocks(c, le32_to_cpu(*idle_blocks));
243                 if (bh != NULL && IS_ERR(bh))
244                         result = PTR_ERR(bh);
245                 else
246                         c->ic_idle_bh = bh;
247                 mutex_unlock(&c->ic_idle_mutex);
248         }
249
250         return result;
251 }
252
253 /*
254  * Initialize container @c.
255  */
256 int iam_container_init(struct iam_container *c,
257                        struct iam_descr *descr, struct inode *inode)
258 {
259         memset(c, 0, sizeof *c);
260         c->ic_descr  = descr;
261         c->ic_object = inode;
262         init_rwsem(&c->ic_sem);
263         dynlock_init(&c->ic_tree_lock);
264         mutex_init(&c->ic_idle_mutex);
265         return 0;
266 }
267
268 /*
269  * Determine container format.
270  */
271 int iam_container_setup(struct iam_container *c)
272 {
273         return iam_format_guess(c);
274 }
275
276 /*
277  * Finalize container @c, release all resources.
278  */
279 void iam_container_fini(struct iam_container *c)
280 {
281         brelse(c->ic_idle_bh);
282         c->ic_idle_bh = NULL;
283         brelse(c->ic_root_bh);
284         c->ic_root_bh = NULL;
285 }
286
287 void iam_path_init(struct iam_path *path, struct iam_container *c,
288                    struct iam_path_descr *pd)
289 {
290         memset(path, 0, sizeof *path);
291         path->ip_container = c;
292         path->ip_frame = path->ip_frames;
293         path->ip_data = pd;
294         path->ip_leaf.il_path = path;
295 }
296
297 static void iam_leaf_fini(struct iam_leaf *leaf);
298
299 void iam_path_release(struct iam_path *path)
300 {
301         int i;
302
303         for (i = 0; i < ARRAY_SIZE(path->ip_frames); i++) {
304                 if (path->ip_frames[i].bh != NULL) {
305                         path->ip_frames[i].at_shifted = 0;
306                         brelse(path->ip_frames[i].bh);
307                         path->ip_frames[i].bh = NULL;
308                 }
309         }
310 }
311
312 void iam_path_fini(struct iam_path *path)
313 {
314         iam_leaf_fini(&path->ip_leaf);
315         iam_path_release(path);
316 }
317
318
319 void iam_path_compat_init(struct iam_path_compat *path, struct inode *inode)
320 {
321         int i;
322
323         path->ipc_hinfo = &path->ipc_hinfo_area;
324         for (i = 0; i < ARRAY_SIZE(path->ipc_scratch); ++i)
325                 path->ipc_descr.ipd_key_scratch[i] =
326                         (struct iam_ikey *)&path->ipc_scratch[i];
327
328         iam_path_init(&path->ipc_path, &path->ipc_container, &path->ipc_descr);
329 }
330
331 void iam_path_compat_fini(struct iam_path_compat *path)
332 {
333         iam_path_fini(&path->ipc_path);
334 }
335
336 /*
337  * Helper function initializing iam_path_descr and its key scratch area.
338  */
339 struct iam_path_descr *iam_ipd_alloc(void *area, int keysize)
340 {
341         struct iam_path_descr *ipd;
342         void *karea;
343         int i;
344
345         ipd = area;
346         karea = ipd + 1;
347         for (i = 0; i < ARRAY_SIZE(ipd->ipd_key_scratch); ++i, karea += keysize)
348                 ipd->ipd_key_scratch[i] = karea;
349         return ipd;
350 }
351
352 void iam_ipd_free(struct iam_path_descr *ipd)
353 {
354 }
355
356 int iam_node_read(struct iam_container *c, iam_ptr_t ptr,
357                   handle_t *h, struct buffer_head **bh)
358 {
359         /* NB: it can be called by iam_lfix_guess() which is still at
360          * very early stage, c->ic_root_bh and c->ic_descr->id_ops
361          * haven't been intialized yet.
362          * Also, we don't have this for IAM dir.
363          */
364         if (c->ic_root_bh != NULL &&
365             c->ic_descr->id_ops->id_root_ptr(c) == ptr) {
366                 get_bh(c->ic_root_bh);
367                 *bh = c->ic_root_bh;
368                 return 0;
369         }
370
371         *bh = __ldiskfs_bread(h, c->ic_object, (int)ptr, 0);
372         if (IS_ERR(*bh))
373                 return PTR_ERR(*bh);
374
375         if (*bh == NULL)
376                 return -EIO;
377
378         return 0;
379 }
380
381 /*
382  * Return pointer to current leaf record. Pointer is valid while corresponding
383  * leaf node is locked and pinned.
384  */
385 static struct iam_rec *iam_leaf_rec(const struct iam_leaf *leaf)
386 {
387         return iam_leaf_ops(leaf)->rec(leaf);
388 }
389
390 /*
391  * Return pointer to the current leaf key. This function returns pointer to
392  * the key stored in node.
393  *
394  * Caller should assume that returned pointer is only valid while leaf node is
395  * pinned and locked.
396  */
397 static struct iam_key *iam_leaf_key(const struct iam_leaf *leaf)
398 {
399         return iam_leaf_ops(leaf)->key(leaf);
400 }
401
402 static int iam_leaf_key_size(const struct iam_leaf *leaf)
403 {
404         return iam_leaf_ops(leaf)->key_size(leaf);
405 }
406
407 static struct iam_ikey *iam_leaf_ikey(const struct iam_leaf *leaf,
408                                       struct iam_ikey *key)
409 {
410         return iam_leaf_ops(leaf)->ikey(leaf, key);
411 }
412
413 static int iam_leaf_keycmp(const struct iam_leaf *leaf,
414                            const struct iam_key *key)
415 {
416         return iam_leaf_ops(leaf)->key_cmp(leaf, key);
417 }
418
419 static int iam_leaf_keyeq(const struct iam_leaf *leaf,
420                           const struct iam_key *key)
421 {
422         return iam_leaf_ops(leaf)->key_eq(leaf, key);
423 }
424
425 #if LDISKFS_INVARIANT_ON
426 extern int dx_node_check(struct iam_path *p, struct iam_frame *f);
427
428 static int iam_path_check(struct iam_path *p)
429 {
430         int i;
431         int result;
432         struct iam_frame *f;
433         struct iam_descr *param;
434
435         result = 1;
436         param = iam_path_descr(p);
437         for (i = 0; result && i < ARRAY_SIZE(p->ip_frames); ++i) {
438                 f = &p->ip_frames[i];
439                 if (f->bh != NULL) {
440                         result = dx_node_check(p, f);
441                         if (result)
442                                 result = !param->id_ops->id_node_check(p, f);
443                 }
444         }
445         if (result && p->ip_leaf.il_bh != NULL)
446                 result = 1;
447         if (result == 0)
448                 ldiskfs_std_error(iam_path_obj(p)->i_sb, result);
449
450         return result;
451 }
452 #endif
453
454 static int iam_leaf_load(struct iam_path *path)
455 {
456         iam_ptr_t block;
457         int err;
458         struct iam_container *c;
459         struct buffer_head   *bh;
460         struct iam_leaf      *leaf;
461         struct iam_descr     *descr;
462
463         c     = path->ip_container;
464         leaf  = &path->ip_leaf;
465         descr = iam_path_descr(path);
466         block = path->ip_frame->leaf;
467         if (block == 0) {
468                 /* XXX bug 11027 */
469                 printk(KERN_EMERG "wrong leaf: %lu %d [%p %p %p]\n",
470                        (long unsigned)path->ip_frame->leaf,
471                        dx_get_count(dx_node_get_entries(path, path->ip_frame)),
472                        path->ip_frames[0].bh, path->ip_frames[1].bh,
473                        path->ip_frames[2].bh);
474         }
475         err = descr->id_ops->id_node_read(c, block, NULL, &bh);
476         if (err == 0) {
477                 leaf->il_bh = bh;
478                 leaf->il_curidx = block;
479                 err = iam_leaf_ops(leaf)->init(leaf);
480         }
481         return err;
482 }
483
484 static void iam_unlock_htree(struct iam_container *ic,
485                              struct dynlock_handle *lh)
486 {
487         if (lh != NULL)
488                 dynlock_unlock(&ic->ic_tree_lock, lh);
489 }
490
491
492 static void iam_leaf_unlock(struct iam_leaf *leaf)
493 {
494         if (leaf->il_lock != NULL) {
495                 iam_unlock_htree(iam_leaf_container(leaf),
496                                  leaf->il_lock);
497                 do_corr(schedule());
498                 leaf->il_lock = NULL;
499         }
500 }
501
502 static void iam_leaf_fini(struct iam_leaf *leaf)
503 {
504         if (leaf->il_path != NULL) {
505                 iam_leaf_unlock(leaf);
506                 iam_leaf_ops(leaf)->fini(leaf);
507                 if (leaf->il_bh) {
508                         brelse(leaf->il_bh);
509                         leaf->il_bh = NULL;
510                         leaf->il_curidx = 0;
511                 }
512         }
513 }
514
515 static void iam_leaf_start(struct iam_leaf *folio)
516 {
517         iam_leaf_ops(folio)->start(folio);
518 }
519
520 void iam_leaf_next(struct iam_leaf *folio)
521 {
522         iam_leaf_ops(folio)->next(folio);
523 }
524
525 static void iam_leaf_rec_add(struct iam_leaf *leaf, const struct iam_key *key,
526                              const struct iam_rec *rec)
527 {
528         iam_leaf_ops(leaf)->rec_add(leaf, key, rec);
529 }
530
531 static void iam_rec_del(struct iam_leaf *leaf, int shift)
532 {
533         iam_leaf_ops(leaf)->rec_del(leaf, shift);
534 }
535
536 int iam_leaf_at_end(const struct iam_leaf *leaf)
537 {
538         return iam_leaf_ops(leaf)->at_end(leaf);
539 }
540
541 static void iam_leaf_split(struct iam_leaf *l, struct buffer_head **bh,
542                            iam_ptr_t nr)
543 {
544         iam_leaf_ops(l)->split(l, bh, nr);
545 }
546
547 static inline int iam_leaf_empty(struct iam_leaf *l)
548 {
549         return iam_leaf_ops(l)->leaf_empty(l);
550 }
551
552 int iam_leaf_can_add(const struct iam_leaf *l,
553                      const struct iam_key *k, const struct iam_rec *r)
554 {
555         return iam_leaf_ops(l)->can_add(l, k, r);
556 }
557
558 static int iam_txn_dirty(handle_t *handle,
559                          struct iam_path *path, struct buffer_head *bh)
560 {
561         int result;
562
563         result = ldiskfs_handle_dirty_metadata(handle, NULL, bh);
564         if (result != 0)
565                 ldiskfs_std_error(iam_path_obj(path)->i_sb, result);
566         return result;
567 }
568
569 static int iam_txn_add(handle_t *handle,
570                        struct iam_path *path, struct buffer_head *bh)
571 {
572         int result;
573
574         result = ldiskfs_journal_get_write_access(handle, bh);
575         if (result != 0)
576                 ldiskfs_std_error(iam_path_obj(path)->i_sb, result);
577         return result;
578 }
579
580 /***********************************************************************/
581 /* iterator interface                                                  */
582 /***********************************************************************/
583
584 static enum iam_it_state it_state(const struct iam_iterator *it)
585 {
586         return it->ii_state;
587 }
588
589 /*
590  * Helper function returning scratch key.
591  */
592 static struct iam_container *iam_it_container(const struct iam_iterator *it)
593 {
594         return it->ii_path.ip_container;
595 }
596
597 static inline int it_keycmp(const struct iam_iterator *it,
598                             const struct iam_key *k)
599 {
600         return iam_leaf_keycmp(&it->ii_path.ip_leaf, k);
601 }
602
603 static inline int it_keyeq(const struct iam_iterator *it,
604                            const struct iam_key *k)
605 {
606         return iam_leaf_keyeq(&it->ii_path.ip_leaf, k);
607 }
608
609 static int it_ikeycmp(const struct iam_iterator *it, const struct iam_ikey *ik)
610 {
611         return iam_ikeycmp(it->ii_path.ip_container,
612                            iam_leaf_ikey(&it->ii_path.ip_leaf,
613                                          iam_path_ikey(&it->ii_path, 0)), ik);
614 }
615
616 static inline int it_at_rec(const struct iam_iterator *it)
617 {
618         return !iam_leaf_at_end(&it->ii_path.ip_leaf);
619 }
620
621 static inline int it_before(const struct iam_iterator *it)
622 {
623         return it_state(it) == IAM_IT_SKEWED && it_at_rec(it);
624 }
625
626 /*
627  * Helper wrapper around iam_it_get(): returns 0 (success) only when record
628  * with exactly the same key as asked is found.
629  */
630 static int iam_it_get_exact(struct iam_iterator *it, const struct iam_key *k)
631 {
632         int result;
633
634         result = iam_it_get(it, k);
635         if (result > 0)
636                 result = 0;
637         else if (result == 0)
638                 /*
639                  * Return -ENOENT if cursor is located above record with a key
640                  * different from one specified, or in the empty leaf.
641                  *
642                  * XXX returning -ENOENT only works if iam_it_get() never
643                  * returns -ENOENT as a legitimate error.
644                  */
645                 result = -ENOENT;
646         return result;
647 }
648
649 void iam_container_write_lock(struct iam_container *ic)
650 {
651         down_write(&ic->ic_sem);
652 }
653
654 void iam_container_write_unlock(struct iam_container *ic)
655 {
656         up_write(&ic->ic_sem);
657 }
658
659 void iam_container_read_lock(struct iam_container *ic)
660 {
661         down_read(&ic->ic_sem);
662 }
663
664 void iam_container_read_unlock(struct iam_container *ic)
665 {
666         up_read(&ic->ic_sem);
667 }
668
669 /*
670  * Initialize iterator to IAM_IT_DETACHED state.
671  *
672  * postcondition: it_state(it) == IAM_IT_DETACHED
673  */
674 int  iam_it_init(struct iam_iterator *it, struct iam_container *c, __u32 flags,
675                  struct iam_path_descr *pd)
676 {
677         memset(it, 0, sizeof *it);
678         it->ii_flags  = flags;
679         it->ii_state  = IAM_IT_DETACHED;
680         iam_path_init(&it->ii_path, c, pd);
681         return 0;
682 }
683
684 /*
685  * Finalize iterator and release all resources.
686  *
687  * precondition: it_state(it) == IAM_IT_DETACHED
688  */
689 void iam_it_fini(struct iam_iterator *it)
690 {
691         assert_corr(it_state(it) == IAM_IT_DETACHED);
692         iam_path_fini(&it->ii_path);
693 }
694
695 /*
696  * this locking primitives are used to protect parts
697  * of dir's htree. protection unit is block: leaf or index
698  */
699 static struct dynlock_handle *iam_lock_htree(struct iam_container *ic,
700                                              unsigned long value,
701                                              enum dynlock_type lt)
702 {
703         return dynlock_lock(&ic->ic_tree_lock, value, lt, GFP_NOFS);
704 }
705
706 static int iam_index_lock(struct iam_path *path, struct dynlock_handle **lh)
707 {
708         struct iam_frame *f;
709
710         for (f = path->ip_frame; f >= path->ip_frames; --f, ++lh) {
711                 do_corr(schedule());
712                 *lh = iam_lock_htree(path->ip_container, f->curidx, DLT_READ);
713                 if (*lh == NULL)
714                         return -ENOMEM;
715         }
716         return 0;
717 }
718
719 /*
720  * Fast check for frame consistency.
721  */
722 static int iam_check_fast(struct iam_path *path, struct iam_frame *frame)
723 {
724         struct iam_container *bag;
725         struct iam_entry *next;
726         struct iam_entry *last;
727         struct iam_entry *entries;
728         struct iam_entry *at;
729
730         bag     = path->ip_container;
731         at      = frame->at;
732         entries = frame->entries;
733         last    = iam_entry_shift(path, entries, dx_get_count(entries) - 1);
734
735         if (unlikely(at > last))
736                 return -EAGAIN;
737
738         if (unlikely(dx_get_block(path, at) != frame->leaf))
739                 return -EAGAIN;
740
741         if (unlikely(iam_ikeycmp(bag, iam_ikey_at(path, at),
742                                  path->ip_ikey_target) > 0))
743                 return -EAGAIN;
744
745         next = iam_entry_shift(path, at, +1);
746         if (next <= last) {
747                 if (unlikely(iam_ikeycmp(bag, iam_ikey_at(path, next),
748                                          path->ip_ikey_target) <= 0))
749                         return -EAGAIN;
750         }
751         return 0;
752 }
753
754 int dx_index_is_compat(struct iam_path *path)
755 {
756         return iam_path_descr(path) == NULL;
757 }
758
759 /*
760  * dx_find_position
761  *
762  * search position of specified hash in index
763  *
764  */
765
766 static struct iam_entry *iam_find_position(struct iam_path *path,
767                                            struct iam_frame *frame)
768 {
769         int count;
770         struct iam_entry *p;
771         struct iam_entry *q;
772         struct iam_entry *m;
773
774         count = dx_get_count(frame->entries);
775         assert_corr(count && count <= dx_get_limit(frame->entries));
776         p = iam_entry_shift(path, frame->entries,
777                             dx_index_is_compat(path) ? 1 : 2);
778         q = iam_entry_shift(path, frame->entries, count - 1);
779         while (p <= q) {
780                 m = iam_entry_shift(path, p, iam_entry_diff(path, q, p) / 2);
781                 if (iam_ikeycmp(path->ip_container, iam_ikey_at(path, m),
782                                 path->ip_ikey_target) > 0)
783                         q = iam_entry_shift(path, m, -1);
784                 else
785                         p = iam_entry_shift(path, m, +1);
786         }
787         return iam_entry_shift(path, p, -1);
788 }
789
790
791
792 static iam_ptr_t iam_find_ptr(struct iam_path *path, struct iam_frame *frame)
793 {
794         return dx_get_block(path, iam_find_position(path, frame));
795 }
796
797 void iam_insert_key(struct iam_path *path, struct iam_frame *frame,
798                     const struct iam_ikey *key, iam_ptr_t ptr)
799 {
800         struct iam_entry *entries = frame->entries;
801         struct iam_entry *new = iam_entry_shift(path, frame->at, +1);
802         int count = dx_get_count(entries);
803
804         /*
805          * Unfortunately we cannot assert this, as this function is sometimes
806          * called by VFS under i_sem and without pdirops lock.
807          */
808         assert_corr(1 || iam_frame_is_locked(path, frame));
809         assert_corr(count < dx_get_limit(entries));
810         assert_corr(frame->at < iam_entry_shift(path, entries, count));
811         assert_inv(dx_node_check(path, frame));
812
813         memmove(iam_entry_shift(path, new, 1), new,
814                 (char *)iam_entry_shift(path, entries, count) - (char *)new);
815         dx_set_ikey(path, new, key);
816         dx_set_block(path, new, ptr);
817         dx_set_count(entries, count + 1);
818         assert_inv(dx_node_check(path, frame));
819 }
820
821 void iam_insert_key_lock(struct iam_path *path, struct iam_frame *frame,
822                          const struct iam_ikey *key, iam_ptr_t ptr)
823 {
824         iam_lock_bh(frame->bh);
825         iam_insert_key(path, frame, key, ptr);
826         iam_unlock_bh(frame->bh);
827 }
828 /*
829  * returns 0 if path was unchanged, -EAGAIN otherwise.
830  */
831 static int iam_check_path(struct iam_path *path, struct iam_frame *frame)
832 {
833         int equal;
834
835         iam_lock_bh(frame->bh);
836         equal = iam_check_fast(path, frame) == 0 ||
837                 frame->leaf == iam_find_ptr(path, frame);
838         DX_DEVAL(iam_lock_stats.dls_bh_again += !equal);
839         iam_unlock_bh(frame->bh);
840
841         return equal ? 0 : -EAGAIN;
842 }
843
844 static int iam_lookup_try(struct iam_path *path)
845 {
846         u32 ptr;
847         int err = 0;
848         int i;
849
850         struct iam_descr *param;
851         struct iam_frame *frame;
852         struct iam_container *c;
853
854         param = iam_path_descr(path);
855         c = path->ip_container;
856
857         ptr = param->id_ops->id_root_ptr(c);
858         for (frame = path->ip_frames, i = 0; i <= path->ip_indirect;
859              ++frame, ++i) {
860                 err = param->id_ops->id_node_read(c, (iam_ptr_t)ptr, NULL,
861                                                   &frame->bh);
862                 do_corr(schedule());
863
864                 iam_lock_bh(frame->bh);
865                 /*
866                  * node must be initialized under bh lock because concurrent
867                  * creation procedure may change it and iam_lookup_try() will
868                  * see obsolete tree height. -bzzz
869                  */
870                 if (err != 0)
871                         break;
872
873                 if (LDISKFS_INVARIANT_ON) {
874                         err = param->id_ops->id_node_check(path, frame);
875                         if (err != 0)
876                                 break;
877                 }
878
879                 err = param->id_ops->id_node_load(path, frame);
880                 if (err != 0)
881                         break;
882
883                 assert_inv(dx_node_check(path, frame));
884                 /*
885                  * splitting may change root index block and move hash we're
886                  * looking for into another index block so, we have to check
887                  * this situation and repeat from begining if path got changed
888                  * -bzzz
889                  */
890                 if (i > 0) {
891                         err = iam_check_path(path, frame - 1);
892                         if (err != 0)
893                                 break;
894                 }
895
896                 frame->at = iam_find_position(path, frame);
897                 frame->curidx = ptr;
898                 frame->leaf = ptr = dx_get_block(path, frame->at);
899
900                 iam_unlock_bh(frame->bh);
901                 do_corr(schedule());
902         }
903         if (err != 0)
904                 iam_unlock_bh(frame->bh);
905         path->ip_frame = --frame;
906         return err;
907 }
908
909 static int __iam_path_lookup(struct iam_path *path)
910 {
911         int err;
912         int i;
913
914         for (i = 0; i < DX_MAX_TREE_HEIGHT; ++ i)
915                 assert(path->ip_frames[i].bh == NULL);
916
917         do {
918                 err = iam_lookup_try(path);
919                 do_corr(schedule());
920                 if (err != 0)
921                         iam_path_fini(path);
922         } while (err == -EAGAIN);
923
924         return err;
925 }
926
927 /*
928  * returns 0 if path was unchanged, -EAGAIN otherwise.
929  */
930 static int iam_check_full_path(struct iam_path *path, int search)
931 {
932         struct iam_frame *bottom;
933         struct iam_frame *scan;
934         int i;
935         int result;
936
937         do_corr(schedule());
938
939         for (bottom = path->ip_frames, i = 0;
940              i < DX_MAX_TREE_HEIGHT && bottom->bh != NULL; ++bottom, ++i) {
941                 ; /* find last filled in frame */
942         }
943
944         /*
945          * Lock frames, bottom to top.
946          */
947         for (scan = bottom - 1; scan >= path->ip_frames; --scan)
948                 iam_lock_bh(scan->bh);
949         /*
950          * Check them top to bottom.
951          */
952         result = 0;
953         for (scan = path->ip_frames; scan < bottom; ++scan) {
954                 struct iam_entry *pos;
955
956                 if (search) {
957                         if (iam_check_fast(path, scan) == 0)
958                                 continue;
959
960                         pos = iam_find_position(path, scan);
961                         if (scan->leaf != dx_get_block(path, pos)) {
962                                 result = -EAGAIN;
963                                 break;
964                         }
965                         scan->at = pos;
966                 } else {
967                         pos = iam_entry_shift(path, scan->entries,
968                                               dx_get_count(scan->entries) - 1);
969                         if (scan->at > pos ||
970                             scan->leaf != dx_get_block(path, scan->at)) {
971                                 result = -EAGAIN;
972                                 break;
973                         }
974                 }
975         }
976
977         /*
978          * Unlock top to bottom.
979          */
980         for (scan = path->ip_frames; scan < bottom; ++scan)
981                 iam_unlock_bh(scan->bh);
982         DX_DEVAL(iam_lock_stats.dls_bh_full_again += !!result);
983         do_corr(schedule());
984
985         return result;
986 }
987
988
989 /*
990  * Performs path lookup and returns with found leaf (if any) locked by htree
991  * lock.
992  */
993 static int iam_lookup_lock(struct iam_path *path,
994                            struct dynlock_handle **dl, enum dynlock_type lt)
995 {
996         int result;
997
998         while ((result = __iam_path_lookup(path)) == 0) {
999                 do_corr(schedule());
1000                 *dl = iam_lock_htree(path->ip_container, path->ip_frame->leaf,
1001                                      lt);
1002                 if (*dl == NULL) {
1003                         iam_path_fini(path);
1004                         result = -ENOMEM;
1005                         break;
1006                 }
1007                 do_corr(schedule());
1008                 /*
1009                  * while locking leaf we just found may get split so we need
1010                  * to check this -bzzz
1011                  */
1012                 if (iam_check_full_path(path, 1) == 0)
1013                         break;
1014                 iam_unlock_htree(path->ip_container, *dl);
1015                 *dl = NULL;
1016                 iam_path_fini(path);
1017         }
1018         return result;
1019 }
1020 /*
1021  * Performs tree top-to-bottom traversal starting from root, and loads leaf
1022  * node.
1023  */
1024 static int iam_path_lookup(struct iam_path *path, int index)
1025 {
1026         struct iam_leaf  *leaf;
1027         int result;
1028
1029         leaf = &path->ip_leaf;
1030         result = iam_lookup_lock(path, &leaf->il_lock, DLT_WRITE);
1031         assert_inv(iam_path_check(path));
1032         do_corr(schedule());
1033         if (result == 0) {
1034                 result = iam_leaf_load(path);
1035                 if (result == 0) {
1036                         do_corr(schedule());
1037                         if (index)
1038                                 result = iam_leaf_ops(leaf)->
1039                                         ilookup(leaf, path->ip_ikey_target);
1040                         else
1041                                 result = iam_leaf_ops(leaf)->
1042                                         lookup(leaf, path->ip_key_target);
1043                         do_corr(schedule());
1044                 }
1045                 if (result < 0)
1046                         iam_leaf_unlock(leaf);
1047         }
1048         return result;
1049 }
1050
1051 /*
1052  * Common part of iam_it_{i,}get().
1053  */
1054 static int __iam_it_get(struct iam_iterator *it, int index)
1055 {
1056         int result;
1057         assert_corr(it_state(it) == IAM_IT_DETACHED);
1058
1059         result = iam_path_lookup(&it->ii_path, index);
1060         if (result >= 0) {
1061                 int collision;
1062
1063                 collision = result & IAM_LOOKUP_LAST;
1064                 switch (result & ~IAM_LOOKUP_LAST) {
1065                 case IAM_LOOKUP_EXACT:
1066                         result = +1;
1067                         it->ii_state = IAM_IT_ATTACHED;
1068                         break;
1069                 case IAM_LOOKUP_OK:
1070                         result = 0;
1071                         it->ii_state = IAM_IT_ATTACHED;
1072                         break;
1073                 case IAM_LOOKUP_BEFORE:
1074                 case IAM_LOOKUP_EMPTY:
1075                         result = 0;
1076                         it->ii_state = IAM_IT_SKEWED;
1077                         break;
1078                 default:
1079                         assert(0);
1080                 }
1081                 result |= collision;
1082         }
1083         /*
1084          * See iam_it_get_exact() for explanation.
1085          */
1086         assert_corr(result != -ENOENT);
1087         return result;
1088 }
1089
1090 /*
1091  * Correct hash, but not the same key was found, iterate through hash
1092  * collision chain, looking for correct record.
1093  */
1094 static int iam_it_collision(struct iam_iterator *it)
1095 {
1096         int result;
1097
1098         assert(ergo(it_at_rec(it), !it_keyeq(it, it->ii_path.ip_key_target)));
1099
1100         while ((result = iam_it_next(it)) == 0) {
1101                 do_corr(schedule());
1102                 if (it_ikeycmp(it, it->ii_path.ip_ikey_target) != 0)
1103                         return -ENOENT;
1104                 if (it_keyeq(it, it->ii_path.ip_key_target))
1105                         return 0;
1106         }
1107         return result;
1108 }
1109
1110 /*
1111  * Attach iterator. After successful completion, @it points to record with
1112  * least key not larger than @k.
1113  *
1114  * Return value: 0: positioned on existing record,
1115  *             +ve: exact position found,
1116  *             -ve: error.
1117  *
1118  * precondition:  it_state(it) == IAM_IT_DETACHED
1119  * postcondition: ergo(result == 0 && it_state(it) == IAM_IT_ATTACHED,
1120  *                     it_keycmp(it, k) <= 0)
1121  */
1122 int iam_it_get(struct iam_iterator *it, const struct iam_key *k)
1123 {
1124         int result;
1125         assert_corr(it_state(it) == IAM_IT_DETACHED);
1126
1127         it->ii_path.ip_ikey_target = NULL;
1128         it->ii_path.ip_key_target  = k;
1129
1130         result = __iam_it_get(it, 0);
1131
1132         if (result == IAM_LOOKUP_LAST) {
1133                 result = iam_it_collision(it);
1134                 if (result != 0) {
1135                         iam_it_put(it);
1136                         iam_it_fini(it);
1137                         result = __iam_it_get(it, 0);
1138                 } else
1139                         result = +1;
1140         }
1141         if (result > 0)
1142                 result &= ~IAM_LOOKUP_LAST;
1143
1144         assert_corr(ergo(result > 0, it_keycmp(it, k) == 0));
1145         assert_corr(ergo(result == 0 && it_state(it) == IAM_IT_ATTACHED,
1146                          it_keycmp(it, k) <= 0));
1147         return result;
1148 }
1149
1150 /*
1151  * Attach iterator by index key.
1152  */
1153 static int iam_it_iget(struct iam_iterator *it, const struct iam_ikey *k)
1154 {
1155         assert_corr(it_state(it) == IAM_IT_DETACHED);
1156
1157         it->ii_path.ip_ikey_target = k;
1158         return __iam_it_get(it, 1) & ~IAM_LOOKUP_LAST;
1159 }
1160
1161 /*
1162  * Attach iterator, and assure it points to the record (not skewed).
1163  *
1164  * Return value: 0: positioned on existing record,
1165  *             +ve: exact position found,
1166  *             -ve: error.
1167  *
1168  * precondition:  it_state(it) == IAM_IT_DETACHED &&
1169  *                !(it->ii_flags&IAM_IT_WRITE)
1170  * postcondition: ergo(result == 0, it_state(it) == IAM_IT_ATTACHED)
1171  */
1172 int iam_it_get_at(struct iam_iterator *it, const struct iam_key *k)
1173 {
1174         int result;
1175         assert_corr(it_state(it) == IAM_IT_DETACHED &&
1176                     !(it->ii_flags&IAM_IT_WRITE));
1177         result = iam_it_get(it, k);
1178         if (result == 0) {
1179                 if (it_state(it) != IAM_IT_ATTACHED) {
1180                         assert_corr(it_state(it) == IAM_IT_SKEWED);
1181                         result = iam_it_next(it);
1182                 }
1183         }
1184         assert_corr(ergo(result >= 0, it_state(it) == IAM_IT_ATTACHED));
1185         return result;
1186 }
1187
1188 /*
1189  * Duplicates iterator.
1190  *
1191  * postcondition: it_state(dst) == it_state(src) &&
1192  *                iam_it_container(dst) == iam_it_container(src) &&
1193  *                dst->ii_flags = src->ii_flags &&
1194  *                ergo(it_state(src) == IAM_IT_ATTACHED,
1195  *                     iam_it_rec_get(dst) == iam_it_rec_get(src) &&
1196  *                     iam_it_key_get(dst) == iam_it_key_get(src))
1197  */
1198 void iam_it_dup(struct iam_iterator *dst, const struct iam_iterator *src)
1199 {
1200         dst->ii_flags     = src->ii_flags;
1201         dst->ii_state     = src->ii_state;
1202         /* XXX not yet. iam_path_dup(&dst->ii_path, &src->ii_path); */
1203         /*
1204          * XXX: duplicate lock.
1205          */
1206         assert_corr(it_state(dst) == it_state(src));
1207         assert_corr(iam_it_container(dst) == iam_it_container(src));
1208         assert_corr(dst->ii_flags = src->ii_flags);
1209         assert_corr(ergo(it_state(src) == IAM_IT_ATTACHED,
1210                     iam_it_rec_get(dst) == iam_it_rec_get(src) &&
1211                     iam_it_key_get(dst) == iam_it_key_get(src)));
1212
1213 }
1214
1215 /*
1216  * Detach iterator. Does nothing it detached state.
1217  *
1218  * postcondition: it_state(it) == IAM_IT_DETACHED
1219  */
1220 void iam_it_put(struct iam_iterator *it)
1221 {
1222         if (it->ii_state != IAM_IT_DETACHED) {
1223                 it->ii_state = IAM_IT_DETACHED;
1224                 iam_leaf_fini(&it->ii_path.ip_leaf);
1225         }
1226 }
1227
1228 static struct iam_ikey *iam_it_ikey_get(const struct iam_iterator *it,
1229                                         struct iam_ikey *ikey);
1230
1231
1232 /*
1233  * This function increments the frame pointer to search the next leaf
1234  * block, and reads in the necessary intervening nodes if the search
1235  * should be necessary.  Whether or not the search is necessary is
1236  * controlled by the hash parameter.  If the hash value is even, then
1237  * the search is only continued if the next block starts with that
1238  * hash value.  This is used if we are searching for a specific file.
1239  *
1240  * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
1241  *
1242  * This function returns 1 if the caller should continue to search,
1243  * or 0 if it should not.  If there is an error reading one of the
1244  * index blocks, it will a negative error code.
1245  *
1246  * If start_hash is non-null, it will be filled in with the starting
1247  * hash of the next page.
1248  */
1249 static int iam_htree_advance(struct inode *dir, __u32 hash,
1250                               struct iam_path *path, __u32 *start_hash,
1251                               int compat)
1252 {
1253         struct iam_frame *p;
1254         struct buffer_head *bh;
1255         int err, num_frames = 0;
1256         __u32 bhash;
1257
1258         p = path->ip_frame;
1259         /*
1260          * Find the next leaf page by incrementing the frame pointer.
1261          * If we run out of entries in the interior node, loop around and
1262          * increment pointer in the parent node.  When we break out of
1263          * this loop, num_frames indicates the number of interior
1264          * nodes need to be read.
1265          */
1266         while (1) {
1267                 do_corr(schedule());
1268                 iam_lock_bh(p->bh);
1269                 if (p->at_shifted)
1270                         p->at_shifted = 0;
1271                 else
1272                         p->at = iam_entry_shift(path, p->at, +1);
1273                 if (p->at < iam_entry_shift(path, p->entries,
1274                                             dx_get_count(p->entries))) {
1275                         p->leaf = dx_get_block(path, p->at);
1276                         iam_unlock_bh(p->bh);
1277                         break;
1278                 }
1279                 iam_unlock_bh(p->bh);
1280                 if (p == path->ip_frames)
1281                         return 0;
1282                 num_frames++;
1283                 --p;
1284         }
1285
1286         if (compat) {
1287                 /*
1288                  * Htree hash magic.
1289                  */
1290         /*
1291          * If the hash is 1, then continue only if the next page has a
1292          * continuation hash of any value.  This is used for readdir
1293          * handling.  Otherwise, check to see if the hash matches the
1294          * desired contiuation hash.  If it doesn't, return since
1295          * there's no point to read in the successive index pages.
1296          */
1297                 dx_get_ikey(path, p->at, (struct iam_ikey *)&bhash);
1298         if (start_hash)
1299                 *start_hash = bhash;
1300         if ((hash & 1) == 0) {
1301                 if ((bhash & ~1) != hash)
1302                         return 0;
1303         }
1304         }
1305         /*
1306          * If the hash is HASH_NB_ALWAYS, we always go to the next
1307          * block so no check is necessary
1308          */
1309         while (num_frames--) {
1310                 iam_ptr_t idx;
1311
1312                 do_corr(schedule());
1313                 iam_lock_bh(p->bh);
1314                 idx = p->leaf = dx_get_block(path, p->at);
1315                 iam_unlock_bh(p->bh);
1316                 err = iam_path_descr(path)->id_ops->
1317                         id_node_read(path->ip_container, idx, NULL, &bh);
1318                 if (err != 0)
1319                         return err; /* Failure */
1320                 ++p;
1321                 brelse(p->bh);
1322                 assert_corr(p->bh != bh);
1323                 p->bh = bh;
1324                 p->entries = dx_node_get_entries(path, p);
1325                 p->at = iam_entry_shift(path, p->entries, !compat);
1326                 assert_corr(p->curidx != idx);
1327                 p->curidx = idx;
1328                 iam_lock_bh(p->bh);
1329                 assert_corr(p->leaf != dx_get_block(path, p->at));
1330                 p->leaf = dx_get_block(path, p->at);
1331                 iam_unlock_bh(p->bh);
1332                 assert_inv(dx_node_check(path, p));
1333         }
1334         return 1;
1335 }
1336
1337
1338 static inline int iam_index_advance(struct iam_path *path)
1339 {
1340         return iam_htree_advance(iam_path_obj(path), 0, path, NULL, 0);
1341 }
1342
1343 static void iam_unlock_array(struct iam_container *ic,
1344                              struct dynlock_handle **lh)
1345 {
1346         int i;
1347
1348         for (i = 0; i < DX_MAX_TREE_HEIGHT; ++i, ++lh) {
1349                 if (*lh != NULL) {
1350                         iam_unlock_htree(ic, *lh);
1351                         *lh = NULL;
1352                 }
1353         }
1354 }
1355 /*
1356  * Advance index part of @path to point to the next leaf. Returns 1 on
1357  * success, 0, when end of container was reached. Leaf node is locked.
1358  */
1359 int iam_index_next(struct iam_container *c, struct iam_path *path)
1360 {
1361         iam_ptr_t cursor;
1362         struct dynlock_handle *lh[DX_MAX_TREE_HEIGHT] = { NULL, };
1363         int result;
1364
1365         /*
1366          * Locking for iam_index_next()... is to be described.
1367          */
1368
1369         cursor = path->ip_frame->leaf;
1370
1371         while (1) {
1372                 result = iam_index_lock(path, lh);
1373                 do_corr(schedule());
1374                 if (result < 0)
1375                         break;
1376
1377                 result = iam_check_full_path(path, 0);
1378                 if (result == 0 && cursor == path->ip_frame->leaf) {
1379                         result = iam_index_advance(path);
1380
1381                         assert_corr(result == 0 ||
1382                                     cursor != path->ip_frame->leaf);
1383                         break;
1384                 }
1385                 do {
1386                         iam_unlock_array(c, lh);
1387
1388                         iam_path_release(path);
1389                         do_corr(schedule());
1390
1391                         result = __iam_path_lookup(path);
1392                         if (result < 0)
1393                                 break;
1394
1395                         while (path->ip_frame->leaf != cursor) {
1396                                 do_corr(schedule());
1397
1398                                 result = iam_index_lock(path, lh);
1399                                 do_corr(schedule());
1400                                 if (result < 0)
1401                                         break;
1402
1403                                 result = iam_check_full_path(path, 0);
1404                                 if (result != 0)
1405                                         break;
1406
1407                                 result = iam_index_advance(path);
1408                                 if (result == 0) {
1409                                         CERROR("cannot find cursor : %u\n",
1410                                                 cursor);
1411                                         result = -EIO;
1412                                 }
1413                                 if (result < 0)
1414                                         break;
1415                                 result = iam_check_full_path(path, 0);
1416                                 if (result != 0)
1417                                         break;
1418                                 iam_unlock_array(c, lh);
1419                         }
1420                 } while (result == -EAGAIN);
1421                 if (result < 0)
1422                         break;
1423         }
1424         iam_unlock_array(c, lh);
1425         return result;
1426 }
1427
1428 /*
1429  * Move iterator one record right.
1430  *
1431  * Return value: 0: success,
1432  *              +1: end of container reached
1433  *             -ve: error
1434  *
1435  * precondition:  (it_state(it) == IAM_IT_ATTACHED ||
1436  *                 it_state(it) == IAM_IT_SKEWED) && it->ii_flags&IAM_IT_MOVE
1437  * postcondition: ergo(result == 0, it_state(it) == IAM_IT_ATTACHED) &&
1438  *                ergo(result >  0, it_state(it) == IAM_IT_DETACHED)
1439  */
1440 int iam_it_next(struct iam_iterator *it)
1441 {
1442         int result;
1443         struct iam_path      *path;
1444         struct iam_leaf      *leaf;
1445         do_corr(struct iam_ikey *ik_orig);
1446
1447         /* assert_corr(it->ii_flags&IAM_IT_MOVE); */
1448         assert_corr(it_state(it) == IAM_IT_ATTACHED ||
1449                     it_state(it) == IAM_IT_SKEWED);
1450
1451         path = &it->ii_path;
1452         leaf = &path->ip_leaf;
1453
1454         assert_corr(iam_leaf_is_locked(leaf));
1455
1456         result = 0;
1457         do_corr(ik_orig = it_at_rec(it) ?
1458                 iam_it_ikey_get(it, iam_path_ikey(path, 2)) : NULL);
1459         if (it_before(it)) {
1460                 assert_corr(!iam_leaf_at_end(leaf));
1461                 it->ii_state = IAM_IT_ATTACHED;
1462         } else {
1463                 if (!iam_leaf_at_end(leaf))
1464                         /* advance within leaf node */
1465                         iam_leaf_next(leaf);
1466                 /*
1467                  * multiple iterations may be necessary due to empty leaves.
1468                  */
1469                 while (result == 0 && iam_leaf_at_end(leaf)) {
1470                         do_corr(schedule());
1471                         /* advance index portion of the path */
1472                         result = iam_index_next(iam_it_container(it), path);
1473                         assert_corr(iam_leaf_is_locked(leaf));
1474                         if (result == 1) {
1475                                 struct dynlock_handle *lh;
1476                                 lh = iam_lock_htree(iam_it_container(it),
1477                                                     path->ip_frame->leaf,
1478                                                     DLT_WRITE);
1479                                 if (lh != NULL) {
1480                                         iam_leaf_fini(leaf);
1481                                         leaf->il_lock = lh;
1482                                         result = iam_leaf_load(path);
1483                                         if (result == 0)
1484                                                 iam_leaf_start(leaf);
1485                                 } else
1486                                         result = -ENOMEM;
1487                         } else if (result == 0)
1488                                 /* end of container reached */
1489                                 result = +1;
1490                         if (result != 0)
1491                                 iam_it_put(it);
1492                 }
1493                 if (result == 0)
1494                         it->ii_state = IAM_IT_ATTACHED;
1495         }
1496         assert_corr(ergo(result == 0, it_state(it) == IAM_IT_ATTACHED));
1497         assert_corr(ergo(result >  0, it_state(it) == IAM_IT_DETACHED));
1498         assert_corr(ergo(result == 0 && ik_orig != NULL,
1499                          it_ikeycmp(it, ik_orig) >= 0));
1500         return result;
1501 }
1502
1503 /*
1504  * Return pointer to the record under iterator.
1505  *
1506  * precondition:  it_state(it) == IAM_IT_ATTACHED && it_at_rec(it)
1507  * postcondition: it_state(it) == IAM_IT_ATTACHED
1508  */
1509 struct iam_rec *iam_it_rec_get(const struct iam_iterator *it)
1510 {
1511         assert_corr(it_state(it) == IAM_IT_ATTACHED);
1512         assert_corr(it_at_rec(it));
1513         return iam_leaf_rec(&it->ii_path.ip_leaf);
1514 }
1515
1516 static void iam_it_reccpy(struct iam_iterator *it, const struct iam_rec *r)
1517 {
1518         struct iam_leaf *folio;
1519
1520         folio = &it->ii_path.ip_leaf;
1521         iam_leaf_ops(folio)->rec_set(folio, r);
1522 }
1523
1524 /*
1525  * Replace contents of record under iterator.
1526  *
1527  * precondition:  it_state(it) == IAM_IT_ATTACHED &&
1528  *                it->ii_flags&IAM_IT_WRITE
1529  * postcondition: it_state(it) == IAM_IT_ATTACHED &&
1530  *                ergo(result == 0, !memcmp(iam_it_rec_get(it), r, ...))
1531  */
1532 int iam_it_rec_set(handle_t *h,
1533                    struct iam_iterator *it, const struct iam_rec *r)
1534 {
1535         int result;
1536         struct iam_path *path;
1537         struct buffer_head *bh;
1538
1539         assert_corr(it_state(it) == IAM_IT_ATTACHED &&
1540                     it->ii_flags&IAM_IT_WRITE);
1541         assert_corr(it_at_rec(it));
1542
1543         path = &it->ii_path;
1544         bh   = path->ip_leaf.il_bh;
1545         result = iam_txn_add(h, path, bh);
1546         if (result == 0) {
1547                 iam_it_reccpy(it, r);
1548                 result = iam_txn_dirty(h, path, bh);
1549         }
1550         return result;
1551 }
1552
1553 /*
1554  * Return pointer to the index key under iterator.
1555  *
1556  * precondition:  it_state(it) == IAM_IT_ATTACHED ||
1557  *                it_state(it) == IAM_IT_SKEWED
1558  */
1559 static struct iam_ikey *iam_it_ikey_get(const struct iam_iterator *it,
1560                                         struct iam_ikey *ikey)
1561 {
1562         assert_corr(it_state(it) == IAM_IT_ATTACHED ||
1563                     it_state(it) == IAM_IT_SKEWED);
1564         assert_corr(it_at_rec(it));
1565         return iam_leaf_ikey(&it->ii_path.ip_leaf, ikey);
1566 }
1567
1568 /*
1569  * Return pointer to the key under iterator.
1570  *
1571  * precondition:  it_state(it) == IAM_IT_ATTACHED ||
1572  *                it_state(it) == IAM_IT_SKEWED
1573  */
1574 struct iam_key *iam_it_key_get(const struct iam_iterator *it)
1575 {
1576         assert_corr(it_state(it) == IAM_IT_ATTACHED ||
1577                     it_state(it) == IAM_IT_SKEWED);
1578         assert_corr(it_at_rec(it));
1579         return iam_leaf_key(&it->ii_path.ip_leaf);
1580 }
1581
1582 /*
1583  * Return size of key under iterator (in bytes)
1584  *
1585  * precondition:  it_state(it) == IAM_IT_ATTACHED ||
1586  *                it_state(it) == IAM_IT_SKEWED
1587  */
1588 int iam_it_key_size(const struct iam_iterator *it)
1589 {
1590         assert_corr(it_state(it) == IAM_IT_ATTACHED ||
1591                     it_state(it) == IAM_IT_SKEWED);
1592         assert_corr(it_at_rec(it));
1593         return iam_leaf_key_size(&it->ii_path.ip_leaf);
1594 }
1595
1596 static struct buffer_head *
1597 iam_new_node(handle_t *h, struct iam_container *c, iam_ptr_t *b, int *e)
1598 {
1599         struct inode *inode = c->ic_object;
1600         struct buffer_head *bh = NULL;
1601         struct iam_idle_head *head;
1602         struct buffer_head *idle;
1603         __u32 *idle_blocks;
1604         __u16 count;
1605
1606         if (c->ic_idle_bh == NULL)
1607                 goto newblock;
1608
1609         mutex_lock(&c->ic_idle_mutex);
1610         if (unlikely(c->ic_idle_bh == NULL)) {
1611                 mutex_unlock(&c->ic_idle_mutex);
1612                 goto newblock;
1613         }
1614
1615         head = (struct iam_idle_head *)(c->ic_idle_bh->b_data);
1616         count = le16_to_cpu(head->iih_count);
1617         if (count > 0) {
1618                 *e = ldiskfs_journal_get_write_access(h, c->ic_idle_bh);
1619                 if (*e != 0)
1620                         goto fail;
1621
1622                 --count;
1623                 *b = le32_to_cpu(head->iih_blks[count]);
1624                 head->iih_count = cpu_to_le16(count);
1625                 *e = ldiskfs_handle_dirty_metadata(h, inode, c->ic_idle_bh);
1626                 if (*e != 0)
1627                         goto fail;
1628
1629                 mutex_unlock(&c->ic_idle_mutex);
1630                 bh = __ldiskfs_bread(NULL, inode, *b, 0);
1631                 if (IS_ERR_OR_NULL(bh)) {
1632                         if (IS_ERR(bh))
1633                                 *e = PTR_ERR(bh);
1634                         else
1635                                 *e = -EIO;
1636                         return NULL;
1637                 }
1638                 goto got;
1639         }
1640
1641         /* The block itself which contains the iam_idle_head is
1642          * also an idle block, and can be used as the new node. */
1643         idle_blocks = (__u32 *)(c->ic_root_bh->b_data +
1644                                 c->ic_descr->id_root_gap +
1645                                 sizeof(struct dx_countlimit));
1646         *e = ldiskfs_journal_get_write_access(h, c->ic_root_bh);
1647         if (*e != 0)
1648                 goto fail;
1649
1650         *b = le32_to_cpu(*idle_blocks);
1651         iam_lock_bh(c->ic_root_bh);
1652         *idle_blocks = head->iih_next;
1653         iam_unlock_bh(c->ic_root_bh);
1654         *e = ldiskfs_handle_dirty_metadata(h, inode, c->ic_root_bh);
1655         if (*e != 0) {
1656                 iam_lock_bh(c->ic_root_bh);
1657                 *idle_blocks = cpu_to_le32(*b);
1658                 iam_unlock_bh(c->ic_root_bh);
1659                 goto fail;
1660         }
1661
1662         bh = c->ic_idle_bh;
1663         idle = iam_load_idle_blocks(c, le32_to_cpu(*idle_blocks));
1664         if (idle != NULL && IS_ERR(idle)) {
1665                 *e = PTR_ERR(idle);
1666                 c->ic_idle_bh = NULL;
1667                 brelse(bh);
1668                 goto fail;
1669         }
1670
1671         c->ic_idle_bh = idle;
1672         mutex_unlock(&c->ic_idle_mutex);
1673
1674 got:
1675         /* get write access for the found buffer head */
1676         *e = ldiskfs_journal_get_write_access(h, bh);
1677         if (*e != 0) {
1678                 brelse(bh);
1679                 bh = NULL;
1680                 ldiskfs_std_error(inode->i_sb, *e);
1681         } else {
1682                 /* Clear the reused node as new node does. */
1683                 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
1684                 set_buffer_uptodate(bh);
1685         }
1686         return bh;
1687
1688 newblock:
1689         bh = osd_ldiskfs_append(h, inode, b);
1690         if (IS_ERR(bh)) {
1691                 *e = PTR_ERR(bh);
1692                 bh = NULL;
1693         }
1694
1695         return bh;
1696
1697 fail:
1698         mutex_unlock(&c->ic_idle_mutex);
1699         ldiskfs_std_error(inode->i_sb, *e);
1700         return NULL;
1701 }
1702
1703 /*
1704  * Insertion of new record. Interaction with jbd during non-trivial case (when
1705  * split happens) is as following:
1706  *
1707  *  - new leaf node is involved into transaction by iam_new_node();
1708  *
1709  *  - old leaf node is involved into transaction by iam_add_rec();
1710  *
1711  *  - leaf where insertion point ends in, is marked dirty by iam_add_rec();
1712  *
1713  *  - leaf without insertion point is marked dirty (as @new_leaf) by
1714  *  iam_new_leaf();
1715  *
1716  *  - split index nodes are involved into transaction and marked dirty by
1717  *  split_index_node().
1718  *
1719  *  - "safe" index node, which is no split, but where new pointer is inserted
1720  *  is involved into transaction and marked dirty by split_index_node().
1721  *
1722  *  - index node where pointer to new leaf is inserted is involved into
1723  *  transaction by split_index_node() and marked dirty by iam_add_rec().
1724  *
1725  *  - inode is marked dirty by iam_add_rec().
1726  *
1727  */
1728
1729 static int iam_new_leaf(handle_t *handle, struct iam_leaf *leaf)
1730 {
1731         int err;
1732         iam_ptr_t blknr;
1733         struct buffer_head   *new_leaf;
1734         struct buffer_head   *old_leaf;
1735         struct iam_container *c;
1736         struct inode         *obj;
1737         struct iam_path      *path;
1738
1739         c = iam_leaf_container(leaf);
1740         path = leaf->il_path;
1741
1742         obj = c->ic_object;
1743         new_leaf = iam_new_node(handle, c, &blknr, &err);
1744         do_corr(schedule());
1745         if (new_leaf != NULL) {
1746                 struct dynlock_handle *lh;
1747
1748                 lh = iam_lock_htree(c, blknr, DLT_WRITE);
1749                 do_corr(schedule());
1750                 if (lh != NULL) {
1751                         iam_leaf_ops(leaf)->init_new(c, new_leaf);
1752                         do_corr(schedule());
1753                         old_leaf = leaf->il_bh;
1754                         iam_leaf_split(leaf, &new_leaf, blknr);
1755                         if (old_leaf != leaf->il_bh) {
1756                                 /*
1757                                  * Switched to the new leaf.
1758                                  */
1759                                 iam_leaf_unlock(leaf);
1760                                 leaf->il_lock = lh;
1761                                 path->ip_frame->leaf = blknr;
1762                         } else
1763                                 iam_unlock_htree(path->ip_container, lh);
1764                         do_corr(schedule());
1765                         err = iam_txn_dirty(handle, path, new_leaf);
1766                         if (err == 0)
1767                                 err = ldiskfs_mark_inode_dirty(handle, obj);
1768                         do_corr(schedule());
1769                 } else
1770                         err = -ENOMEM;
1771                 brelse(new_leaf);
1772         }
1773         assert_inv(iam_path_check(iam_leaf_path(leaf)));
1774         return err;
1775 }
1776
1777 static inline void dx_set_limit(struct iam_entry *entries, unsigned value)
1778 {
1779         ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
1780 }
1781
1782 static int iam_shift_entries(struct iam_path *path,
1783                          struct iam_frame *frame, unsigned count,
1784                          struct iam_entry *entries, struct iam_entry *entries2,
1785                          u32 newblock)
1786 {
1787         unsigned count1;
1788         unsigned count2;
1789         int delta;
1790
1791         struct iam_frame *parent = frame - 1;
1792         struct iam_ikey *pivot = iam_path_ikey(path, 3);
1793
1794         delta = dx_index_is_compat(path) ? 0 : +1;
1795
1796         count1 = count/2 + delta;
1797         count2 = count - count1;
1798         dx_get_ikey(path, iam_entry_shift(path, entries, count1), pivot);
1799
1800         dxtrace(printk("Split index %d/%d\n", count1, count2));
1801
1802         memcpy((char *) iam_entry_shift(path, entries2, delta),
1803                (char *) iam_entry_shift(path, entries, count1),
1804                count2 * iam_entry_size(path));
1805
1806         dx_set_count(entries2, count2 + delta);
1807         dx_set_limit(entries2, dx_node_limit(path));
1808
1809         /*
1810          * NOTE: very subtle piece of code competing dx_probe() may find 2nd
1811          * level index in root index, then we insert new index here and set
1812          * new count in that 2nd level index. so, dx_probe() may see 2nd level
1813          * index w/o hash it looks for. the solution is to check root index
1814          * after we locked just founded 2nd level index -bzzz
1815          */
1816         iam_insert_key_lock(path, parent, pivot, newblock);
1817
1818         /*
1819          * now old and new 2nd level index blocks contain all pointers, so
1820          * dx_probe() may find it in the both.  it's OK -bzzz
1821          */
1822         iam_lock_bh(frame->bh);
1823         dx_set_count(entries, count1);
1824         iam_unlock_bh(frame->bh);
1825
1826         /*
1827          * now old 2nd level index block points to first half of leafs. it's
1828          * importand that dx_probe() must check root index block for changes
1829          * under dx_lock_bh(frame->bh) -bzzz
1830          */
1831
1832         return count1;
1833 }
1834
1835
1836 int split_index_node(handle_t *handle, struct iam_path *path,
1837                      struct dynlock_handle **lh)
1838 {
1839
1840         struct iam_entry *entries;   /* old block contents */
1841         struct iam_entry *entries2;  /* new block contents */
1842         struct iam_frame *frame, *safe;
1843         struct buffer_head *bh_new[DX_MAX_TREE_HEIGHT] = {NULL};
1844         u32 newblock[DX_MAX_TREE_HEIGHT] = {0};
1845         struct dynlock_handle *lock[DX_MAX_TREE_HEIGHT] = {NULL,};
1846         struct dynlock_handle *new_lock[DX_MAX_TREE_HEIGHT] = {NULL,};
1847         struct inode *dir = iam_path_obj(path);
1848         struct iam_descr *descr;
1849         int nr_splet;
1850         int i, err;
1851
1852         descr = iam_path_descr(path);
1853         /*
1854          * Algorithm below depends on this.
1855          */
1856         assert_corr(dx_root_limit(path) < dx_node_limit(path));
1857
1858         frame = path->ip_frame;
1859         entries = frame->entries;
1860
1861         /*
1862          * Tall-tree handling: we might have to split multiple index blocks
1863          * all the way up to tree root. Tricky point here is error handling:
1864          * to avoid complicated undo/rollback we
1865          *
1866          *   - first allocate all necessary blocks
1867          *
1868          *   - insert pointers into them atomically.
1869          */
1870
1871         /*
1872          * Locking: leaf is already locked. htree-locks are acquired on all
1873          * index nodes that require split bottom-to-top, on the "safe" node,
1874          * and on all new nodes
1875          */
1876
1877         dxtrace(printk("using %u of %u node entries\n",
1878                        dx_get_count(entries), dx_get_limit(entries)));
1879
1880         /* What levels need split? */
1881         for (nr_splet = 0; frame >= path->ip_frames &&
1882              dx_get_count(frame->entries) == dx_get_limit(frame->entries);
1883              --frame, ++nr_splet) {
1884                 do_corr(schedule());
1885                 if (nr_splet == DX_MAX_TREE_HEIGHT) {
1886                         /*
1887                         CWARN(dir->i_sb, __FUNCTION__,
1888                                      "Directory index full!\n");
1889                                      */
1890                         err = -ENOSPC;
1891                         goto cleanup;
1892                 }
1893         }
1894
1895         safe = frame;
1896
1897         /*
1898          * Lock all nodes, bottom to top.
1899          */
1900         for (frame = path->ip_frame, i = nr_splet; i >= 0; --i, --frame) {
1901                 do_corr(schedule());
1902                 lock[i] = iam_lock_htree(path->ip_container, frame->curidx,
1903                                          DLT_WRITE);
1904                 if (lock[i] == NULL) {
1905                         err = -ENOMEM;
1906                         goto cleanup;
1907                 }
1908         }
1909
1910         /*
1911          * Check for concurrent index modification.
1912          */
1913         err = iam_check_full_path(path, 1);
1914         if (err)
1915                 goto cleanup;
1916         /*
1917          * And check that the same number of nodes is to be split.
1918          */
1919         for (i = 0, frame = path->ip_frame; frame >= path->ip_frames &&
1920              dx_get_count(frame->entries) == dx_get_limit(frame->entries);
1921              --frame, ++i) {
1922                 ;
1923         }
1924         if (i != nr_splet) {
1925                 err = -EAGAIN;
1926                 goto cleanup;
1927         }
1928
1929         /* Go back down, allocating blocks, locking them, and adding into
1930          * transaction... */
1931         for (frame = safe + 1, i = 0; i < nr_splet; ++i, ++frame) {
1932                 bh_new[i] = iam_new_node(handle, path->ip_container,
1933                                          &newblock[i], &err);
1934                 do_corr(schedule());
1935                 if (!bh_new[i] ||
1936                     descr->id_ops->id_node_init(path->ip_container,
1937                                                 bh_new[i], 0) != 0)
1938                         goto cleanup;
1939                 new_lock[i] = iam_lock_htree(path->ip_container, newblock[i],
1940                                              DLT_WRITE);
1941                 if (new_lock[i] == NULL) {
1942                         err = -ENOMEM;
1943                         goto cleanup;
1944                 }
1945                 do_corr(schedule());
1946                 BUFFER_TRACE(frame->bh, "get_write_access");
1947                 err = ldiskfs_journal_get_write_access(handle, frame->bh);
1948                 if (err)
1949                         goto journal_error;
1950         }
1951         /* Add "safe" node to transaction too */
1952         if (safe + 1 != path->ip_frames) {
1953                 do_corr(schedule());
1954                 err = ldiskfs_journal_get_write_access(handle, safe->bh);
1955                 if (err)
1956                         goto journal_error;
1957         }
1958
1959         /* Go through nodes once more, inserting pointers */
1960         for (frame = safe + 1, i = 0; i < nr_splet; ++i, ++frame) {
1961                 unsigned count;
1962                 int idx;
1963                 struct buffer_head *bh2;
1964                 struct buffer_head *bh;
1965
1966                 entries = frame->entries;
1967                 count = dx_get_count(entries);
1968                 idx = iam_entry_diff(path, frame->at, entries);
1969
1970                 bh2 = bh_new[i];
1971                 entries2 = dx_get_entries(path, bh2->b_data, 0);
1972
1973                 bh = frame->bh;
1974                 if (frame == path->ip_frames) {
1975                         /* splitting root node. Tricky point:
1976                          *
1977                          * In the "normal" B-tree we'd split root *and* add
1978                          * new root to the tree with pointers to the old root
1979                          * and its sibling (thus introducing two new nodes).
1980                          *
1981                          * In htree it's enough to add one node, because
1982                          * capacity of the root node is smaller than that of
1983                          * non-root one.
1984                          */
1985                         struct iam_frame *frames;
1986                         struct iam_entry *next;
1987
1988                         assert_corr(i == 0);
1989
1990                         do_corr(schedule());
1991
1992                         frames = path->ip_frames;
1993                         memcpy((char *) entries2, (char *) entries,
1994                                count * iam_entry_size(path));
1995                         dx_set_limit(entries2, dx_node_limit(path));
1996
1997                         /* Set up root */
1998                           iam_lock_bh(frame->bh);
1999                         next = descr->id_ops->id_root_inc(path->ip_container,
2000                                                           path, frame);
2001                         dx_set_block(path, next, newblock[0]);
2002                           iam_unlock_bh(frame->bh);
2003
2004                         do_corr(schedule());
2005                         /* Shift frames in the path */
2006                         memmove(frames + 2, frames + 1,
2007                                 (sizeof path->ip_frames) - 2 * sizeof frames[0]);
2008                         /* Add new access path frame */
2009                         frames[1].at = iam_entry_shift(path, entries2, idx);
2010                         frames[1].entries = entries = entries2;
2011                         frames[1].bh = bh2;
2012                         assert_inv(dx_node_check(path, frame));
2013                         ++ path->ip_frame;
2014                         ++ frame;
2015                         assert_inv(dx_node_check(path, frame));
2016                         bh_new[0] = NULL; /* buffer head is "consumed" */
2017                         err = ldiskfs_handle_dirty_metadata(handle, NULL, bh2);
2018                         if (err)
2019                                 goto journal_error;
2020                         do_corr(schedule());
2021                 } else {
2022                         /* splitting non-root index node. */
2023                         struct iam_frame *parent = frame - 1;
2024
2025                         do_corr(schedule());
2026                         count = iam_shift_entries(path, frame, count,
2027                                               entries, entries2, newblock[i]);
2028                         /* Which index block gets the new entry? */
2029                         if (idx >= count) {
2030                                 int d = dx_index_is_compat(path) ? 0 : +1;
2031
2032                                 frame->at = iam_entry_shift(path, entries2,
2033                                                             idx - count + d);
2034                                 frame->entries = entries = entries2;
2035                                 frame->curidx = newblock[i];
2036                                 swap(frame->bh, bh2);
2037                                 assert_corr(lock[i + 1] != NULL);
2038                                 assert_corr(new_lock[i] != NULL);
2039                                 swap(lock[i + 1], new_lock[i]);
2040                                 bh_new[i] = bh2;
2041                                 parent->at = iam_entry_shift(path,
2042                                                              parent->at, +1);
2043                         }
2044                         assert_inv(dx_node_check(path, frame));
2045                         assert_inv(dx_node_check(path, parent));
2046                         dxtrace(dx_show_index ("node", frame->entries));
2047                         dxtrace(dx_show_index ("node",
2048                                ((struct dx_node *) bh2->b_data)->entries));
2049                         err = ldiskfs_handle_dirty_metadata(handle, NULL, bh2);
2050                         if (err)
2051                                 goto journal_error;
2052                         do_corr(schedule());
2053                         err = ldiskfs_handle_dirty_metadata(handle, NULL,
2054                                                             parent->bh);
2055                         if (err)
2056                                 goto journal_error;
2057                 }
2058                 do_corr(schedule());
2059                 err = ldiskfs_handle_dirty_metadata(handle, NULL, bh);
2060                 if (err)
2061                         goto journal_error;
2062         }
2063                 /*
2064                  * This function was called to make insertion of new leaf
2065                  * possible. Check that it fulfilled its obligations.
2066                  */
2067                 assert_corr(dx_get_count(path->ip_frame->entries) <
2068                             dx_get_limit(path->ip_frame->entries));
2069         assert_corr(lock[nr_splet] != NULL);
2070         *lh = lock[nr_splet];
2071         lock[nr_splet] = NULL;
2072         if (nr_splet > 0) {
2073                 /*
2074                  * Log ->i_size modification.
2075                  */
2076                 err = ldiskfs_mark_inode_dirty(handle, dir);
2077                 if (err)
2078                         goto journal_error;
2079         }
2080         goto cleanup;
2081 journal_error:
2082         ldiskfs_std_error(dir->i_sb, err);
2083
2084 cleanup:
2085         iam_unlock_array(path->ip_container, lock);
2086         iam_unlock_array(path->ip_container, new_lock);
2087
2088         assert_corr(err || iam_frame_is_locked(path, path->ip_frame));
2089
2090         do_corr(schedule());
2091         for (i = 0; i < ARRAY_SIZE(bh_new); ++i) {
2092                 if (bh_new[i] != NULL)
2093                         brelse(bh_new[i]);
2094         }
2095         return err;
2096 }
2097
2098 static int iam_add_rec(handle_t *handle, struct iam_iterator *it,
2099                        struct iam_path *path,
2100                        const struct iam_key *k, const struct iam_rec *r)
2101 {
2102         int err;
2103         struct iam_leaf *leaf;
2104
2105         leaf = &path->ip_leaf;
2106         assert_inv(iam_path_check(path));
2107         err = iam_txn_add(handle, path, leaf->il_bh);
2108         if (err == 0) {
2109                 do_corr(schedule());
2110                 if (!iam_leaf_can_add(leaf, k, r)) {
2111                         struct dynlock_handle *lh = NULL;
2112
2113                         do {
2114                                 assert_corr(lh == NULL);
2115                                 do_corr(schedule());
2116                                 err = split_index_node(handle, path, &lh);
2117                                 if (err == -EAGAIN) {
2118                                         assert_corr(lh == NULL);
2119
2120                                         iam_path_fini(path);
2121                                         it->ii_state = IAM_IT_DETACHED;
2122
2123                                         do_corr(schedule());
2124                                         err = iam_it_get_exact(it, k);
2125                                         if (err == -ENOENT)
2126                                                 err = +1; /* repeat split */
2127                                         else if (err == 0)
2128                                                 err = -EEXIST;
2129                                 }
2130                         } while (err > 0);
2131                         assert_inv(iam_path_check(path));
2132                         if (err == 0) {
2133                                 assert_corr(lh != NULL);
2134                                 do_corr(schedule());
2135                                 err = iam_new_leaf(handle, leaf);
2136                                 if (err == 0)
2137                                         err = iam_txn_dirty(handle, path,
2138                                                             path->ip_frame->bh);
2139                         }
2140                         iam_unlock_htree(path->ip_container, lh);
2141                         do_corr(schedule());
2142                 }
2143                 if (err == 0) {
2144                         iam_leaf_rec_add(leaf, k, r);
2145                         err = iam_txn_dirty(handle, path, leaf->il_bh);
2146                 }
2147         }
2148         assert_inv(iam_path_check(path));
2149         return err;
2150 }
2151
2152 /*
2153  * Insert new record with key @k and contents from @r, shifting records to the
2154  * right. On success, iterator is positioned on the newly inserted record.
2155  *
2156  * precondition: it->ii_flags&IAM_IT_WRITE &&
2157  *               (it_state(it) == IAM_IT_ATTACHED ||
2158  *                it_state(it) == IAM_IT_SKEWED) &&
2159  *               ergo(it_state(it) == IAM_IT_ATTACHED,
2160  *                    it_keycmp(it, k) <= 0) &&
2161  *               ergo(it_before(it), it_keycmp(it, k) > 0));
2162  * postcondition: ergo(result == 0,
2163  *                     it_state(it) == IAM_IT_ATTACHED &&
2164  *                     it_keycmp(it, k) == 0 &&
2165  *                     !memcmp(iam_it_rec_get(it), r, ...))
2166  */
2167 int iam_it_rec_insert(handle_t *h, struct iam_iterator *it,
2168                       const struct iam_key *k, const struct iam_rec *r)
2169 {
2170         int result;
2171         struct iam_path *path;
2172
2173         path = &it->ii_path;
2174
2175         assert_corr(it->ii_flags&IAM_IT_WRITE);
2176         assert_corr(it_state(it) == IAM_IT_ATTACHED ||
2177                     it_state(it) == IAM_IT_SKEWED);
2178         assert_corr(ergo(it_state(it) == IAM_IT_ATTACHED,
2179                          it_keycmp(it, k) <= 0));
2180         assert_corr(ergo(it_before(it), it_keycmp(it, k) > 0));
2181         result = iam_add_rec(h, it, path, k, r);
2182         if (result == 0)
2183                 it->ii_state = IAM_IT_ATTACHED;
2184         assert_corr(ergo(result == 0,
2185                          it_state(it) == IAM_IT_ATTACHED &&
2186                          it_keycmp(it, k) == 0));
2187         return result;
2188 }
2189
2190 static inline int iam_idle_blocks_limit(struct inode *inode)
2191 {
2192         return (inode->i_sb->s_blocksize - sizeof(struct iam_idle_head)) >> 2;
2193 }
2194
2195 /*
2196  * If the leaf cannnot be recycled, we will lose one block for reusing.
2197  * It is not a serious issue because it almost the same of non-recycle.
2198  */
2199 static iam_ptr_t iam_index_shrink(handle_t *h, struct iam_path *p,
2200                                   struct iam_leaf *l, struct buffer_head **bh)
2201 {
2202         struct iam_container *c = p->ip_container;
2203         struct inode *inode = c->ic_object;
2204         struct iam_frame *frame = p->ip_frame;
2205         struct iam_entry *entries;
2206         struct iam_entry *pos;
2207         struct dynlock_handle *lh;
2208         int count;
2209         int rc;
2210
2211         if (c->ic_idle_failed)
2212                 return 0;
2213
2214         if (unlikely(frame == NULL))
2215                 return 0;
2216
2217         if (!iam_leaf_empty(l))
2218                 return 0;
2219
2220         lh = iam_lock_htree(c, frame->curidx, DLT_WRITE);
2221         if (lh == NULL) {
2222                 CWARN("%.16s: No memory to recycle idle blocks\n",
2223                       LDISKFS_SB(inode->i_sb)->s_es->s_volume_name);
2224                 return 0;
2225         }
2226
2227         rc = iam_txn_add(h, p, frame->bh);
2228         if (rc != 0) {
2229                 iam_unlock_htree(c, lh);
2230                 return 0;
2231         }
2232
2233         iam_lock_bh(frame->bh);
2234         entries = frame->entries;
2235         count = dx_get_count(entries);
2236         /* NOT shrink the last entry in the index node, which can be reused
2237          * directly by next new node. */
2238         if (count == 2) {
2239                 iam_unlock_bh(frame->bh);
2240                 iam_unlock_htree(c, lh);
2241                 return 0;
2242         }
2243
2244         pos = iam_find_position(p, frame);
2245         /* There may be some new leaf nodes have been added or empty leaf nodes
2246          * have been shrinked during my delete operation.
2247          *
2248          * If the empty leaf is not under current index node because the index
2249          * node has been split, then just skip the empty leaf, which is rare. */
2250         if (unlikely(frame->leaf != dx_get_block(p, pos))) {
2251                 iam_unlock_bh(frame->bh);
2252                 iam_unlock_htree(c, lh);
2253                 return 0;
2254         }
2255
2256         frame->at = pos;
2257         if (frame->at < iam_entry_shift(p, entries, count - 1)) {
2258                 struct iam_entry *n = iam_entry_shift(p, frame->at, 1);
2259
2260                 memmove(frame->at, n,
2261                         (char *)iam_entry_shift(p, entries, count) - (char *)n);
2262                 frame->at_shifted = 1;
2263         }
2264         dx_set_count(entries, count - 1);
2265         iam_unlock_bh(frame->bh);
2266         rc = iam_txn_dirty(h, p, frame->bh);
2267         iam_unlock_htree(c, lh);
2268         if (rc != 0)
2269                 return 0;
2270
2271         get_bh(l->il_bh);
2272         *bh = l->il_bh;
2273         return frame->leaf;
2274 }
2275
2276 static int
2277 iam_install_idle_blocks(handle_t *h, struct iam_path *p, struct buffer_head *bh,
2278                         __u32 *idle_blocks, iam_ptr_t blk)
2279 {
2280         struct iam_container *c = p->ip_container;
2281         struct buffer_head *old = c->ic_idle_bh;
2282         struct iam_idle_head *head;
2283         int rc;
2284
2285         head = (struct iam_idle_head *)(bh->b_data);
2286         head->iih_magic = cpu_to_le16(IAM_IDLE_HEADER_MAGIC);
2287         head->iih_count = 0;
2288         head->iih_next = *idle_blocks;
2289         /* The bh already get_write_accessed. */
2290         rc = iam_txn_dirty(h, p, bh);
2291         if (rc != 0)
2292                 return rc;
2293
2294         rc = iam_txn_add(h, p, c->ic_root_bh);
2295         if (rc != 0)
2296                 return rc;
2297
2298         iam_lock_bh(c->ic_root_bh);
2299         *idle_blocks = cpu_to_le32(blk);
2300         iam_unlock_bh(c->ic_root_bh);
2301         rc = iam_txn_dirty(h, p, c->ic_root_bh);
2302         if (rc == 0) {
2303                 /* NOT release old before new assigned. */
2304                 get_bh(bh);
2305                 c->ic_idle_bh = bh;
2306                 brelse(old);
2307         } else {
2308                 iam_lock_bh(c->ic_root_bh);
2309                 *idle_blocks = head->iih_next;
2310                 iam_unlock_bh(c->ic_root_bh);
2311         }
2312         return rc;
2313 }
2314
2315 /*
2316  * If the leaf cannnot be recycled, we will lose one block for reusing.
2317  * It is not a serious issue because it almost the same of non-recycle.
2318  */
2319 static void iam_recycle_leaf(handle_t *h, struct iam_path *p,
2320                              struct buffer_head *bh, iam_ptr_t blk)
2321 {
2322         struct iam_container *c = p->ip_container;
2323         struct inode *inode = c->ic_object;
2324         struct iam_idle_head *head;
2325         __u32 *idle_blocks;
2326         int count;
2327         int rc;
2328
2329         mutex_lock(&c->ic_idle_mutex);
2330         if (unlikely(c->ic_idle_failed)) {
2331                 rc = -EFAULT;
2332                 goto unlock;
2333         }
2334
2335         idle_blocks = (__u32 *)(c->ic_root_bh->b_data +
2336                                 c->ic_descr->id_root_gap +
2337                                 sizeof(struct dx_countlimit));
2338         /* It is the first idle block. */
2339         if (c->ic_idle_bh == NULL) {
2340                 rc = iam_install_idle_blocks(h, p, bh, idle_blocks, blk);
2341                 goto unlock;
2342         }
2343
2344         head = (struct iam_idle_head *)(c->ic_idle_bh->b_data);
2345         count = le16_to_cpu(head->iih_count);
2346         /* Current ic_idle_bh is full, to be replaced by the leaf. */
2347         if (count == iam_idle_blocks_limit(inode)) {
2348                 rc = iam_install_idle_blocks(h, p, bh, idle_blocks, blk);
2349                 goto unlock;
2350         }
2351
2352         /* Just add to ic_idle_bh. */
2353         rc = iam_txn_add(h, p, c->ic_idle_bh);
2354         if (rc != 0)
2355                 goto unlock;
2356
2357         head->iih_blks[count] = cpu_to_le32(blk);
2358         head->iih_count = cpu_to_le16(count + 1);
2359         rc = iam_txn_dirty(h, p, c->ic_idle_bh);
2360
2361 unlock:
2362         mutex_unlock(&c->ic_idle_mutex);
2363         if (rc != 0)
2364                 CWARN("%.16s: idle blocks failed, will lose the blk %u\n",
2365                       LDISKFS_SB(inode->i_sb)->s_es->s_volume_name, blk);
2366 }
2367
2368 /*
2369  * Delete record under iterator.
2370  *
2371  * precondition:  it_state(it) == IAM_IT_ATTACHED &&
2372  *                it->ii_flags&IAM_IT_WRITE &&
2373  *                it_at_rec(it)
2374  * postcondition: it_state(it) == IAM_IT_ATTACHED ||
2375  *                it_state(it) == IAM_IT_DETACHED
2376  */
2377 int iam_it_rec_delete(handle_t *h, struct iam_iterator *it)
2378 {
2379         int result;
2380         struct iam_leaf *leaf;
2381         struct iam_path *path;
2382
2383         assert_corr(it_state(it) == IAM_IT_ATTACHED &&
2384                     it->ii_flags&IAM_IT_WRITE);
2385         assert_corr(it_at_rec(it));
2386
2387         path = &it->ii_path;
2388         leaf = &path->ip_leaf;
2389
2390         assert_inv(iam_path_check(path));
2391
2392         result = iam_txn_add(h, path, leaf->il_bh);
2393         /*
2394          * no compaction for now.
2395          */
2396         if (result == 0) {
2397                 iam_rec_del(leaf, it->ii_flags&IAM_IT_MOVE);
2398                 result = iam_txn_dirty(h, path, leaf->il_bh);
2399                 if (result == 0 && iam_leaf_at_end(leaf)) {
2400                         struct buffer_head *bh = NULL;
2401                         iam_ptr_t blk;
2402
2403                         blk = iam_index_shrink(h, path, leaf, &bh);
2404                         if (it->ii_flags & IAM_IT_MOVE) {
2405                                 result = iam_it_next(it);
2406                                 if (result > 0)
2407                                         result = 0;
2408                         }
2409
2410                         if (bh != NULL) {
2411                                 iam_recycle_leaf(h, path, bh, blk);
2412                                 brelse(bh);
2413                         }
2414                 }
2415         }
2416         assert_inv(iam_path_check(path));
2417         assert_corr(it_state(it) == IAM_IT_ATTACHED ||
2418                     it_state(it) == IAM_IT_DETACHED);
2419         return result;
2420 }
2421
2422 /*
2423  * Convert iterator to cookie.
2424  *
2425  * precondition:  it_state(it) == IAM_IT_ATTACHED &&
2426  *                iam_path_descr(it->ii_path)->id_key_size <= sizeof(iam_pos_t)
2427  * postcondition: it_state(it) == IAM_IT_ATTACHED
2428  */
2429 iam_pos_t iam_it_store(const struct iam_iterator *it)
2430 {
2431         iam_pos_t result;
2432
2433         assert_corr(it_state(it) == IAM_IT_ATTACHED);
2434         assert_corr(it_at_rec(it));
2435         assert_corr(iam_it_container(it)->ic_descr->id_ikey_size <=
2436                     sizeof result);
2437
2438         result = 0;
2439         return *(iam_pos_t *)iam_it_ikey_get(it, (void *)&result);
2440 }
2441
2442 /*
2443  * Restore iterator from cookie.
2444  *
2445  * precondition:  it_state(it) == IAM_IT_DETACHED && it->ii_flags&IAM_IT_MOVE &&
2446  *                iam_path_descr(it->ii_path)->id_key_size <= sizeof(iam_pos_t)
2447  * postcondition: ergo(result == 0, it_state(it) == IAM_IT_ATTACHED &&
2448  *                                  iam_it_store(it) == pos)
2449  */
2450 int iam_it_load(struct iam_iterator *it, iam_pos_t pos)
2451 {
2452         assert_corr(it_state(it) == IAM_IT_DETACHED &&
2453                     it->ii_flags&IAM_IT_MOVE);
2454         assert_corr(iam_it_container(it)->ic_descr->id_ikey_size <= sizeof pos);
2455         return iam_it_iget(it, (struct iam_ikey *)&pos);
2456 }
2457
2458 /***********************************************************************/
2459 /* invariants                                                          */
2460 /***********************************************************************/
2461
2462 static inline int ptr_inside(void *base, size_t size, void *ptr)
2463 {
2464         return (base <= ptr) && (ptr < base + size);
2465 }
2466
2467 static int iam_frame_invariant(struct iam_frame *f)
2468 {
2469         return
2470                 (f->bh != NULL &&
2471                 f->bh->b_data != NULL &&
2472                 ptr_inside(f->bh->b_data, f->bh->b_size, f->entries) &&
2473                 ptr_inside(f->bh->b_data, f->bh->b_size, f->at) &&
2474                 f->entries <= f->at);
2475 }
2476
2477 static int iam_leaf_invariant(struct iam_leaf *l)
2478 {
2479         return
2480                 l->il_bh != NULL &&
2481                 l->il_bh->b_data != NULL &&
2482                 ptr_inside(l->il_bh->b_data, l->il_bh->b_size, l->il_entries) &&
2483                 ptr_inside(l->il_bh->b_data, l->il_bh->b_size, l->il_at) &&
2484                 l->il_entries <= l->il_at;
2485 }
2486
2487 static int iam_path_invariant(struct iam_path *p)
2488 {
2489         int i;
2490
2491         if (p->ip_container == NULL ||
2492             p->ip_indirect < 0 || p->ip_indirect > DX_MAX_TREE_HEIGHT - 1 ||
2493             p->ip_frame != p->ip_frames + p->ip_indirect ||
2494             !iam_leaf_invariant(&p->ip_leaf))
2495                 return 0;
2496         for (i = 0; i < ARRAY_SIZE(p->ip_frames); ++i) {
2497                 if (i <= p->ip_indirect) {
2498                         if (!iam_frame_invariant(&p->ip_frames[i]))
2499                                 return 0;
2500                 }
2501         }
2502         return 1;
2503 }
2504
2505 int iam_it_invariant(struct iam_iterator *it)
2506 {
2507         return
2508                 (it->ii_state == IAM_IT_DETACHED ||
2509                  it->ii_state == IAM_IT_ATTACHED ||
2510                  it->ii_state == IAM_IT_SKEWED) &&
2511                 !(it->ii_flags & ~(IAM_IT_MOVE | IAM_IT_WRITE)) &&
2512                 ergo(it->ii_state == IAM_IT_ATTACHED ||
2513                      it->ii_state == IAM_IT_SKEWED,
2514                      iam_path_invariant(&it->ii_path) &&
2515                      equi(it_at_rec(it), it->ii_state == IAM_IT_SKEWED));
2516 }
2517
2518 /*
2519  * Search container @c for record with key @k. If record is found, its data
2520  * are moved into @r.
2521  *
2522  * Return values: 0: found, -ENOENT: not-found, -ve: error
2523  */
2524 int iam_lookup(struct iam_container *c, const struct iam_key *k,
2525                struct iam_rec *r, struct iam_path_descr *pd)
2526 {
2527         struct iam_iterator it;
2528         int result;
2529
2530         iam_it_init(&it, c, 0, pd);
2531
2532         result = iam_it_get_exact(&it, k);
2533         if (result == 0)
2534                 /*
2535                  * record with required key found, copy it into user buffer
2536                  */
2537                 iam_reccpy(&it.ii_path.ip_leaf, r);
2538         iam_it_put(&it);
2539         iam_it_fini(&it);
2540         return result;
2541 }
2542
2543 /*
2544  * Insert new record @r with key @k into container @c (within context of
2545  * transaction @h).
2546  *
2547  * Return values: 0: success, -ve: error, including -EEXIST when record with
2548  * given key is already present.
2549  *
2550  * postcondition: ergo(result == 0 || result == -EEXIST,
2551  *                                  iam_lookup(c, k, r2) > 0;
2552  */
2553 int iam_insert(handle_t *h, struct iam_container *c, const struct iam_key *k,
2554                const struct iam_rec *r, struct iam_path_descr *pd)
2555 {
2556         struct iam_iterator it;
2557         int result;
2558
2559         iam_it_init(&it, c, IAM_IT_WRITE, pd);
2560
2561         result = iam_it_get_exact(&it, k);
2562         if (result == -ENOENT)
2563                 result = iam_it_rec_insert(h, &it, k, r);
2564         else if (result == 0)
2565                 result = -EEXIST;
2566         iam_it_put(&it);
2567         iam_it_fini(&it);
2568         return result;
2569 }
2570
2571 /*
2572  * Update record with the key @k in container @c (within context of
2573  * transaction @h), new record is given by @r.
2574  *
2575  * Return values: +1: skip because of the same rec value, 0: success,
2576  * -ve: error, including -ENOENT if no record with the given key found.
2577  */
2578 int iam_update(handle_t *h, struct iam_container *c, const struct iam_key *k,
2579                const struct iam_rec *r, struct iam_path_descr *pd)
2580 {
2581         struct iam_iterator it;
2582         struct iam_leaf *folio;
2583         int result;
2584
2585         iam_it_init(&it, c, IAM_IT_WRITE, pd);
2586
2587         result = iam_it_get_exact(&it, k);
2588         if (result == 0) {
2589                 folio = &it.ii_path.ip_leaf;
2590                 result = iam_leaf_ops(folio)->rec_eq(folio, r);
2591                 if (result == 0)
2592                         iam_it_rec_set(h, &it, r);
2593                 else
2594                         result = 1;
2595         }
2596         iam_it_put(&it);
2597         iam_it_fini(&it);
2598         return result;
2599 }
2600
2601 /*
2602  * Delete existing record with key @k.
2603  *
2604  * Return values: 0: success, -ENOENT: not-found, -ve: other error.
2605  *
2606  * postcondition: ergo(result == 0 || result == -ENOENT,
2607  *                                 !iam_lookup(c, k, *));
2608  */
2609 int iam_delete(handle_t *h, struct iam_container *c, const struct iam_key *k,
2610                struct iam_path_descr *pd)
2611 {
2612         struct iam_iterator it;
2613         int result;
2614
2615         iam_it_init(&it, c, IAM_IT_WRITE, pd);
2616
2617         result = iam_it_get_exact(&it, k);
2618         if (result == 0)
2619                 iam_it_rec_delete(h, &it);
2620         iam_it_put(&it);
2621         iam_it_fini(&it);
2622         return result;
2623 }
2624
2625 int iam_root_limit(int rootgap, int blocksize, int size)
2626 {
2627         int limit;
2628         int nlimit;
2629
2630         limit = (blocksize - rootgap) / size;
2631         nlimit = blocksize / size;
2632         if (limit == nlimit)
2633                 limit--;
2634         return limit;
2635 }