btrfs: remove unused parameters from extent_submit_bio_done_t
[sfrench/cifs-2.6.git] / fs / btrfs / ctree.c
1 /*
2  * Copyright (C) 2007,2008 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/rbtree.h>
22 #include <linux/mm.h>
23 #include "ctree.h"
24 #include "disk-io.h"
25 #include "transaction.h"
26 #include "print-tree.h"
27 #include "locking.h"
28
29 static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
30                       *root, struct btrfs_path *path, int level);
31 static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root *root,
32                       const struct btrfs_key *ins_key, struct btrfs_path *path,
33                       int data_size, int extend);
34 static int push_node_left(struct btrfs_trans_handle *trans,
35                           struct btrfs_fs_info *fs_info,
36                           struct extent_buffer *dst,
37                           struct extent_buffer *src, int empty);
38 static int balance_node_right(struct btrfs_trans_handle *trans,
39                               struct btrfs_fs_info *fs_info,
40                               struct extent_buffer *dst_buf,
41                               struct extent_buffer *src_buf);
42 static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
43                     int level, int slot);
44
45 struct btrfs_path *btrfs_alloc_path(void)
46 {
47         return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
48 }
49
50 /*
51  * set all locked nodes in the path to blocking locks.  This should
52  * be done before scheduling
53  */
54 noinline void btrfs_set_path_blocking(struct btrfs_path *p)
55 {
56         int i;
57         for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
58                 if (!p->nodes[i] || !p->locks[i])
59                         continue;
60                 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
61                 if (p->locks[i] == BTRFS_READ_LOCK)
62                         p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
63                 else if (p->locks[i] == BTRFS_WRITE_LOCK)
64                         p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
65         }
66 }
67
68 /*
69  * reset all the locked nodes in the patch to spinning locks.
70  *
71  * held is used to keep lockdep happy, when lockdep is enabled
72  * we set held to a blocking lock before we go around and
73  * retake all the spinlocks in the path.  You can safely use NULL
74  * for held
75  */
76 noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
77                                         struct extent_buffer *held, int held_rw)
78 {
79         int i;
80
81         if (held) {
82                 btrfs_set_lock_blocking_rw(held, held_rw);
83                 if (held_rw == BTRFS_WRITE_LOCK)
84                         held_rw = BTRFS_WRITE_LOCK_BLOCKING;
85                 else if (held_rw == BTRFS_READ_LOCK)
86                         held_rw = BTRFS_READ_LOCK_BLOCKING;
87         }
88         btrfs_set_path_blocking(p);
89
90         for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
91                 if (p->nodes[i] && p->locks[i]) {
92                         btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
93                         if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
94                                 p->locks[i] = BTRFS_WRITE_LOCK;
95                         else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
96                                 p->locks[i] = BTRFS_READ_LOCK;
97                 }
98         }
99
100         if (held)
101                 btrfs_clear_lock_blocking_rw(held, held_rw);
102 }
103
104 /* this also releases the path */
105 void btrfs_free_path(struct btrfs_path *p)
106 {
107         if (!p)
108                 return;
109         btrfs_release_path(p);
110         kmem_cache_free(btrfs_path_cachep, p);
111 }
112
113 /*
114  * path release drops references on the extent buffers in the path
115  * and it drops any locks held by this path
116  *
117  * It is safe to call this on paths that no locks or extent buffers held.
118  */
119 noinline void btrfs_release_path(struct btrfs_path *p)
120 {
121         int i;
122
123         for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
124                 p->slots[i] = 0;
125                 if (!p->nodes[i])
126                         continue;
127                 if (p->locks[i]) {
128                         btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
129                         p->locks[i] = 0;
130                 }
131                 free_extent_buffer(p->nodes[i]);
132                 p->nodes[i] = NULL;
133         }
134 }
135
136 /*
137  * safely gets a reference on the root node of a tree.  A lock
138  * is not taken, so a concurrent writer may put a different node
139  * at the root of the tree.  See btrfs_lock_root_node for the
140  * looping required.
141  *
142  * The extent buffer returned by this has a reference taken, so
143  * it won't disappear.  It may stop being the root of the tree
144  * at any time because there are no locks held.
145  */
146 struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
147 {
148         struct extent_buffer *eb;
149
150         while (1) {
151                 rcu_read_lock();
152                 eb = rcu_dereference(root->node);
153
154                 /*
155                  * RCU really hurts here, we could free up the root node because
156                  * it was COWed but we may not get the new root node yet so do
157                  * the inc_not_zero dance and if it doesn't work then
158                  * synchronize_rcu and try again.
159                  */
160                 if (atomic_inc_not_zero(&eb->refs)) {
161                         rcu_read_unlock();
162                         break;
163                 }
164                 rcu_read_unlock();
165                 synchronize_rcu();
166         }
167         return eb;
168 }
169
170 /* loop around taking references on and locking the root node of the
171  * tree until you end up with a lock on the root.  A locked buffer
172  * is returned, with a reference held.
173  */
174 struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
175 {
176         struct extent_buffer *eb;
177
178         while (1) {
179                 eb = btrfs_root_node(root);
180                 btrfs_tree_lock(eb);
181                 if (eb == root->node)
182                         break;
183                 btrfs_tree_unlock(eb);
184                 free_extent_buffer(eb);
185         }
186         return eb;
187 }
188
189 /* loop around taking references on and locking the root node of the
190  * tree until you end up with a lock on the root.  A locked buffer
191  * is returned, with a reference held.
192  */
193 struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
194 {
195         struct extent_buffer *eb;
196
197         while (1) {
198                 eb = btrfs_root_node(root);
199                 btrfs_tree_read_lock(eb);
200                 if (eb == root->node)
201                         break;
202                 btrfs_tree_read_unlock(eb);
203                 free_extent_buffer(eb);
204         }
205         return eb;
206 }
207
208 /* cowonly root (everything not a reference counted cow subvolume), just get
209  * put onto a simple dirty list.  transaction.c walks this to make sure they
210  * get properly updated on disk.
211  */
212 static void add_root_to_dirty_list(struct btrfs_root *root)
213 {
214         struct btrfs_fs_info *fs_info = root->fs_info;
215
216         if (test_bit(BTRFS_ROOT_DIRTY, &root->state) ||
217             !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state))
218                 return;
219
220         spin_lock(&fs_info->trans_lock);
221         if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) {
222                 /* Want the extent tree to be the last on the list */
223                 if (root->objectid == BTRFS_EXTENT_TREE_OBJECTID)
224                         list_move_tail(&root->dirty_list,
225                                        &fs_info->dirty_cowonly_roots);
226                 else
227                         list_move(&root->dirty_list,
228                                   &fs_info->dirty_cowonly_roots);
229         }
230         spin_unlock(&fs_info->trans_lock);
231 }
232
233 /*
234  * used by snapshot creation to make a copy of a root for a tree with
235  * a given objectid.  The buffer with the new root node is returned in
236  * cow_ret, and this func returns zero on success or a negative error code.
237  */
238 int btrfs_copy_root(struct btrfs_trans_handle *trans,
239                       struct btrfs_root *root,
240                       struct extent_buffer *buf,
241                       struct extent_buffer **cow_ret, u64 new_root_objectid)
242 {
243         struct btrfs_fs_info *fs_info = root->fs_info;
244         struct extent_buffer *cow;
245         int ret = 0;
246         int level;
247         struct btrfs_disk_key disk_key;
248
249         WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
250                 trans->transid != fs_info->running_transaction->transid);
251         WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
252                 trans->transid != root->last_trans);
253
254         level = btrfs_header_level(buf);
255         if (level == 0)
256                 btrfs_item_key(buf, &disk_key, 0);
257         else
258                 btrfs_node_key(buf, &disk_key, 0);
259
260         cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
261                         &disk_key, level, buf->start, 0);
262         if (IS_ERR(cow))
263                 return PTR_ERR(cow);
264
265         copy_extent_buffer_full(cow, buf);
266         btrfs_set_header_bytenr(cow, cow->start);
267         btrfs_set_header_generation(cow, trans->transid);
268         btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
269         btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
270                                      BTRFS_HEADER_FLAG_RELOC);
271         if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
272                 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
273         else
274                 btrfs_set_header_owner(cow, new_root_objectid);
275
276         write_extent_buffer_fsid(cow, fs_info->fsid);
277
278         WARN_ON(btrfs_header_generation(buf) > trans->transid);
279         if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
280                 ret = btrfs_inc_ref(trans, root, cow, 1);
281         else
282                 ret = btrfs_inc_ref(trans, root, cow, 0);
283
284         if (ret)
285                 return ret;
286
287         btrfs_mark_buffer_dirty(cow);
288         *cow_ret = cow;
289         return 0;
290 }
291
292 enum mod_log_op {
293         MOD_LOG_KEY_REPLACE,
294         MOD_LOG_KEY_ADD,
295         MOD_LOG_KEY_REMOVE,
296         MOD_LOG_KEY_REMOVE_WHILE_FREEING,
297         MOD_LOG_KEY_REMOVE_WHILE_MOVING,
298         MOD_LOG_MOVE_KEYS,
299         MOD_LOG_ROOT_REPLACE,
300 };
301
302 struct tree_mod_root {
303         u64 logical;
304         u8 level;
305 };
306
307 struct tree_mod_elem {
308         struct rb_node node;
309         u64 logical;
310         u64 seq;
311         enum mod_log_op op;
312
313         /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
314         int slot;
315
316         /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
317         u64 generation;
318
319         /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
320         struct btrfs_disk_key key;
321         u64 blockptr;
322
323         /* this is used for op == MOD_LOG_MOVE_KEYS */
324         struct {
325                 int dst_slot;
326                 int nr_items;
327         } move;
328
329         /* this is used for op == MOD_LOG_ROOT_REPLACE */
330         struct tree_mod_root old_root;
331 };
332
333 /*
334  * Pull a new tree mod seq number for our operation.
335  */
336 static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
337 {
338         return atomic64_inc_return(&fs_info->tree_mod_seq);
339 }
340
341 /*
342  * This adds a new blocker to the tree mod log's blocker list if the @elem
343  * passed does not already have a sequence number set. So when a caller expects
344  * to record tree modifications, it should ensure to set elem->seq to zero
345  * before calling btrfs_get_tree_mod_seq.
346  * Returns a fresh, unused tree log modification sequence number, even if no new
347  * blocker was added.
348  */
349 u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
350                            struct seq_list *elem)
351 {
352         write_lock(&fs_info->tree_mod_log_lock);
353         spin_lock(&fs_info->tree_mod_seq_lock);
354         if (!elem->seq) {
355                 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
356                 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
357         }
358         spin_unlock(&fs_info->tree_mod_seq_lock);
359         write_unlock(&fs_info->tree_mod_log_lock);
360
361         return elem->seq;
362 }
363
364 void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
365                             struct seq_list *elem)
366 {
367         struct rb_root *tm_root;
368         struct rb_node *node;
369         struct rb_node *next;
370         struct seq_list *cur_elem;
371         struct tree_mod_elem *tm;
372         u64 min_seq = (u64)-1;
373         u64 seq_putting = elem->seq;
374
375         if (!seq_putting)
376                 return;
377
378         spin_lock(&fs_info->tree_mod_seq_lock);
379         list_del(&elem->list);
380         elem->seq = 0;
381
382         list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
383                 if (cur_elem->seq < min_seq) {
384                         if (seq_putting > cur_elem->seq) {
385                                 /*
386                                  * blocker with lower sequence number exists, we
387                                  * cannot remove anything from the log
388                                  */
389                                 spin_unlock(&fs_info->tree_mod_seq_lock);
390                                 return;
391                         }
392                         min_seq = cur_elem->seq;
393                 }
394         }
395         spin_unlock(&fs_info->tree_mod_seq_lock);
396
397         /*
398          * anything that's lower than the lowest existing (read: blocked)
399          * sequence number can be removed from the tree.
400          */
401         write_lock(&fs_info->tree_mod_log_lock);
402         tm_root = &fs_info->tree_mod_log;
403         for (node = rb_first(tm_root); node; node = next) {
404                 next = rb_next(node);
405                 tm = rb_entry(node, struct tree_mod_elem, node);
406                 if (tm->seq > min_seq)
407                         continue;
408                 rb_erase(node, tm_root);
409                 kfree(tm);
410         }
411         write_unlock(&fs_info->tree_mod_log_lock);
412 }
413
414 /*
415  * key order of the log:
416  *       node/leaf start address -> sequence
417  *
418  * The 'start address' is the logical address of the *new* root node
419  * for root replace operations, or the logical address of the affected
420  * block for all other operations.
421  *
422  * Note: must be called with write lock for fs_info::tree_mod_log_lock.
423  */
424 static noinline int
425 __tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
426 {
427         struct rb_root *tm_root;
428         struct rb_node **new;
429         struct rb_node *parent = NULL;
430         struct tree_mod_elem *cur;
431
432         tm->seq = btrfs_inc_tree_mod_seq(fs_info);
433
434         tm_root = &fs_info->tree_mod_log;
435         new = &tm_root->rb_node;
436         while (*new) {
437                 cur = rb_entry(*new, struct tree_mod_elem, node);
438                 parent = *new;
439                 if (cur->logical < tm->logical)
440                         new = &((*new)->rb_left);
441                 else if (cur->logical > tm->logical)
442                         new = &((*new)->rb_right);
443                 else if (cur->seq < tm->seq)
444                         new = &((*new)->rb_left);
445                 else if (cur->seq > tm->seq)
446                         new = &((*new)->rb_right);
447                 else
448                         return -EEXIST;
449         }
450
451         rb_link_node(&tm->node, parent, new);
452         rb_insert_color(&tm->node, tm_root);
453         return 0;
454 }
455
456 /*
457  * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
458  * returns zero with the tree_mod_log_lock acquired. The caller must hold
459  * this until all tree mod log insertions are recorded in the rb tree and then
460  * write unlock fs_info::tree_mod_log_lock.
461  */
462 static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
463                                     struct extent_buffer *eb) {
464         smp_mb();
465         if (list_empty(&(fs_info)->tree_mod_seq_list))
466                 return 1;
467         if (eb && btrfs_header_level(eb) == 0)
468                 return 1;
469
470         write_lock(&fs_info->tree_mod_log_lock);
471         if (list_empty(&(fs_info)->tree_mod_seq_list)) {
472                 write_unlock(&fs_info->tree_mod_log_lock);
473                 return 1;
474         }
475
476         return 0;
477 }
478
479 /* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
480 static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
481                                     struct extent_buffer *eb)
482 {
483         smp_mb();
484         if (list_empty(&(fs_info)->tree_mod_seq_list))
485                 return 0;
486         if (eb && btrfs_header_level(eb) == 0)
487                 return 0;
488
489         return 1;
490 }
491
492 static struct tree_mod_elem *
493 alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
494                     enum mod_log_op op, gfp_t flags)
495 {
496         struct tree_mod_elem *tm;
497
498         tm = kzalloc(sizeof(*tm), flags);
499         if (!tm)
500                 return NULL;
501
502         tm->logical = eb->start;
503         if (op != MOD_LOG_KEY_ADD) {
504                 btrfs_node_key(eb, &tm->key, slot);
505                 tm->blockptr = btrfs_node_blockptr(eb, slot);
506         }
507         tm->op = op;
508         tm->slot = slot;
509         tm->generation = btrfs_node_ptr_generation(eb, slot);
510         RB_CLEAR_NODE(&tm->node);
511
512         return tm;
513 }
514
515 static noinline int tree_mod_log_insert_key(struct extent_buffer *eb, int slot,
516                 enum mod_log_op op, gfp_t flags)
517 {
518         struct tree_mod_elem *tm;
519         int ret;
520
521         if (!tree_mod_need_log(eb->fs_info, eb))
522                 return 0;
523
524         tm = alloc_tree_mod_elem(eb, slot, op, flags);
525         if (!tm)
526                 return -ENOMEM;
527
528         if (tree_mod_dont_log(eb->fs_info, eb)) {
529                 kfree(tm);
530                 return 0;
531         }
532
533         ret = __tree_mod_log_insert(eb->fs_info, tm);
534         write_unlock(&eb->fs_info->tree_mod_log_lock);
535         if (ret)
536                 kfree(tm);
537
538         return ret;
539 }
540
541 static noinline int tree_mod_log_insert_move(struct extent_buffer *eb,
542                 int dst_slot, int src_slot, int nr_items)
543 {
544         struct tree_mod_elem *tm = NULL;
545         struct tree_mod_elem **tm_list = NULL;
546         int ret = 0;
547         int i;
548         int locked = 0;
549
550         if (!tree_mod_need_log(eb->fs_info, eb))
551                 return 0;
552
553         tm_list = kcalloc(nr_items, sizeof(struct tree_mod_elem *), GFP_NOFS);
554         if (!tm_list)
555                 return -ENOMEM;
556
557         tm = kzalloc(sizeof(*tm), GFP_NOFS);
558         if (!tm) {
559                 ret = -ENOMEM;
560                 goto free_tms;
561         }
562
563         tm->logical = eb->start;
564         tm->slot = src_slot;
565         tm->move.dst_slot = dst_slot;
566         tm->move.nr_items = nr_items;
567         tm->op = MOD_LOG_MOVE_KEYS;
568
569         for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
570                 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
571                     MOD_LOG_KEY_REMOVE_WHILE_MOVING, GFP_NOFS);
572                 if (!tm_list[i]) {
573                         ret = -ENOMEM;
574                         goto free_tms;
575                 }
576         }
577
578         if (tree_mod_dont_log(eb->fs_info, eb))
579                 goto free_tms;
580         locked = 1;
581
582         /*
583          * When we override something during the move, we log these removals.
584          * This can only happen when we move towards the beginning of the
585          * buffer, i.e. dst_slot < src_slot.
586          */
587         for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
588                 ret = __tree_mod_log_insert(eb->fs_info, tm_list[i]);
589                 if (ret)
590                         goto free_tms;
591         }
592
593         ret = __tree_mod_log_insert(eb->fs_info, tm);
594         if (ret)
595                 goto free_tms;
596         write_unlock(&eb->fs_info->tree_mod_log_lock);
597         kfree(tm_list);
598
599         return 0;
600 free_tms:
601         for (i = 0; i < nr_items; i++) {
602                 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
603                         rb_erase(&tm_list[i]->node, &eb->fs_info->tree_mod_log);
604                 kfree(tm_list[i]);
605         }
606         if (locked)
607                 write_unlock(&eb->fs_info->tree_mod_log_lock);
608         kfree(tm_list);
609         kfree(tm);
610
611         return ret;
612 }
613
614 static inline int
615 __tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
616                        struct tree_mod_elem **tm_list,
617                        int nritems)
618 {
619         int i, j;
620         int ret;
621
622         for (i = nritems - 1; i >= 0; i--) {
623                 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
624                 if (ret) {
625                         for (j = nritems - 1; j > i; j--)
626                                 rb_erase(&tm_list[j]->node,
627                                          &fs_info->tree_mod_log);
628                         return ret;
629                 }
630         }
631
632         return 0;
633 }
634
635 static noinline int tree_mod_log_insert_root(struct extent_buffer *old_root,
636                          struct extent_buffer *new_root, int log_removal)
637 {
638         struct btrfs_fs_info *fs_info = old_root->fs_info;
639         struct tree_mod_elem *tm = NULL;
640         struct tree_mod_elem **tm_list = NULL;
641         int nritems = 0;
642         int ret = 0;
643         int i;
644
645         if (!tree_mod_need_log(fs_info, NULL))
646                 return 0;
647
648         if (log_removal && btrfs_header_level(old_root) > 0) {
649                 nritems = btrfs_header_nritems(old_root);
650                 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *),
651                                   GFP_NOFS);
652                 if (!tm_list) {
653                         ret = -ENOMEM;
654                         goto free_tms;
655                 }
656                 for (i = 0; i < nritems; i++) {
657                         tm_list[i] = alloc_tree_mod_elem(old_root, i,
658                             MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
659                         if (!tm_list[i]) {
660                                 ret = -ENOMEM;
661                                 goto free_tms;
662                         }
663                 }
664         }
665
666         tm = kzalloc(sizeof(*tm), GFP_NOFS);
667         if (!tm) {
668                 ret = -ENOMEM;
669                 goto free_tms;
670         }
671
672         tm->logical = new_root->start;
673         tm->old_root.logical = old_root->start;
674         tm->old_root.level = btrfs_header_level(old_root);
675         tm->generation = btrfs_header_generation(old_root);
676         tm->op = MOD_LOG_ROOT_REPLACE;
677
678         if (tree_mod_dont_log(fs_info, NULL))
679                 goto free_tms;
680
681         if (tm_list)
682                 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
683         if (!ret)
684                 ret = __tree_mod_log_insert(fs_info, tm);
685
686         write_unlock(&fs_info->tree_mod_log_lock);
687         if (ret)
688                 goto free_tms;
689         kfree(tm_list);
690
691         return ret;
692
693 free_tms:
694         if (tm_list) {
695                 for (i = 0; i < nritems; i++)
696                         kfree(tm_list[i]);
697                 kfree(tm_list);
698         }
699         kfree(tm);
700
701         return ret;
702 }
703
704 static struct tree_mod_elem *
705 __tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
706                       int smallest)
707 {
708         struct rb_root *tm_root;
709         struct rb_node *node;
710         struct tree_mod_elem *cur = NULL;
711         struct tree_mod_elem *found = NULL;
712
713         read_lock(&fs_info->tree_mod_log_lock);
714         tm_root = &fs_info->tree_mod_log;
715         node = tm_root->rb_node;
716         while (node) {
717                 cur = rb_entry(node, struct tree_mod_elem, node);
718                 if (cur->logical < start) {
719                         node = node->rb_left;
720                 } else if (cur->logical > start) {
721                         node = node->rb_right;
722                 } else if (cur->seq < min_seq) {
723                         node = node->rb_left;
724                 } else if (!smallest) {
725                         /* we want the node with the highest seq */
726                         if (found)
727                                 BUG_ON(found->seq > cur->seq);
728                         found = cur;
729                         node = node->rb_left;
730                 } else if (cur->seq > min_seq) {
731                         /* we want the node with the smallest seq */
732                         if (found)
733                                 BUG_ON(found->seq < cur->seq);
734                         found = cur;
735                         node = node->rb_right;
736                 } else {
737                         found = cur;
738                         break;
739                 }
740         }
741         read_unlock(&fs_info->tree_mod_log_lock);
742
743         return found;
744 }
745
746 /*
747  * this returns the element from the log with the smallest time sequence
748  * value that's in the log (the oldest log item). any element with a time
749  * sequence lower than min_seq will be ignored.
750  */
751 static struct tree_mod_elem *
752 tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
753                            u64 min_seq)
754 {
755         return __tree_mod_log_search(fs_info, start, min_seq, 1);
756 }
757
758 /*
759  * this returns the element from the log with the largest time sequence
760  * value that's in the log (the most recent log item). any element with
761  * a time sequence lower than min_seq will be ignored.
762  */
763 static struct tree_mod_elem *
764 tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
765 {
766         return __tree_mod_log_search(fs_info, start, min_seq, 0);
767 }
768
769 static noinline int
770 tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
771                      struct extent_buffer *src, unsigned long dst_offset,
772                      unsigned long src_offset, int nr_items)
773 {
774         int ret = 0;
775         struct tree_mod_elem **tm_list = NULL;
776         struct tree_mod_elem **tm_list_add, **tm_list_rem;
777         int i;
778         int locked = 0;
779
780         if (!tree_mod_need_log(fs_info, NULL))
781                 return 0;
782
783         if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
784                 return 0;
785
786         tm_list = kcalloc(nr_items * 2, sizeof(struct tree_mod_elem *),
787                           GFP_NOFS);
788         if (!tm_list)
789                 return -ENOMEM;
790
791         tm_list_add = tm_list;
792         tm_list_rem = tm_list + nr_items;
793         for (i = 0; i < nr_items; i++) {
794                 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
795                     MOD_LOG_KEY_REMOVE, GFP_NOFS);
796                 if (!tm_list_rem[i]) {
797                         ret = -ENOMEM;
798                         goto free_tms;
799                 }
800
801                 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
802                     MOD_LOG_KEY_ADD, GFP_NOFS);
803                 if (!tm_list_add[i]) {
804                         ret = -ENOMEM;
805                         goto free_tms;
806                 }
807         }
808
809         if (tree_mod_dont_log(fs_info, NULL))
810                 goto free_tms;
811         locked = 1;
812
813         for (i = 0; i < nr_items; i++) {
814                 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
815                 if (ret)
816                         goto free_tms;
817                 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
818                 if (ret)
819                         goto free_tms;
820         }
821
822         write_unlock(&fs_info->tree_mod_log_lock);
823         kfree(tm_list);
824
825         return 0;
826
827 free_tms:
828         for (i = 0; i < nr_items * 2; i++) {
829                 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
830                         rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
831                 kfree(tm_list[i]);
832         }
833         if (locked)
834                 write_unlock(&fs_info->tree_mod_log_lock);
835         kfree(tm_list);
836
837         return ret;
838 }
839
840 static noinline int tree_mod_log_free_eb(struct extent_buffer *eb)
841 {
842         struct tree_mod_elem **tm_list = NULL;
843         int nritems = 0;
844         int i;
845         int ret = 0;
846
847         if (btrfs_header_level(eb) == 0)
848                 return 0;
849
850         if (!tree_mod_need_log(eb->fs_info, NULL))
851                 return 0;
852
853         nritems = btrfs_header_nritems(eb);
854         tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *), GFP_NOFS);
855         if (!tm_list)
856                 return -ENOMEM;
857
858         for (i = 0; i < nritems; i++) {
859                 tm_list[i] = alloc_tree_mod_elem(eb, i,
860                     MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
861                 if (!tm_list[i]) {
862                         ret = -ENOMEM;
863                         goto free_tms;
864                 }
865         }
866
867         if (tree_mod_dont_log(eb->fs_info, eb))
868                 goto free_tms;
869
870         ret = __tree_mod_log_free_eb(eb->fs_info, tm_list, nritems);
871         write_unlock(&eb->fs_info->tree_mod_log_lock);
872         if (ret)
873                 goto free_tms;
874         kfree(tm_list);
875
876         return 0;
877
878 free_tms:
879         for (i = 0; i < nritems; i++)
880                 kfree(tm_list[i]);
881         kfree(tm_list);
882
883         return ret;
884 }
885
886 /*
887  * check if the tree block can be shared by multiple trees
888  */
889 int btrfs_block_can_be_shared(struct btrfs_root *root,
890                               struct extent_buffer *buf)
891 {
892         /*
893          * Tree blocks not in reference counted trees and tree roots
894          * are never shared. If a block was allocated after the last
895          * snapshot and the block was not allocated by tree relocation,
896          * we know the block is not shared.
897          */
898         if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
899             buf != root->node && buf != root->commit_root &&
900             (btrfs_header_generation(buf) <=
901              btrfs_root_last_snapshot(&root->root_item) ||
902              btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
903                 return 1;
904 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
905         if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
906             btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
907                 return 1;
908 #endif
909         return 0;
910 }
911
912 static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
913                                        struct btrfs_root *root,
914                                        struct extent_buffer *buf,
915                                        struct extent_buffer *cow,
916                                        int *last_ref)
917 {
918         struct btrfs_fs_info *fs_info = root->fs_info;
919         u64 refs;
920         u64 owner;
921         u64 flags;
922         u64 new_flags = 0;
923         int ret;
924
925         /*
926          * Backrefs update rules:
927          *
928          * Always use full backrefs for extent pointers in tree block
929          * allocated by tree relocation.
930          *
931          * If a shared tree block is no longer referenced by its owner
932          * tree (btrfs_header_owner(buf) == root->root_key.objectid),
933          * use full backrefs for extent pointers in tree block.
934          *
935          * If a tree block is been relocating
936          * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
937          * use full backrefs for extent pointers in tree block.
938          * The reason for this is some operations (such as drop tree)
939          * are only allowed for blocks use full backrefs.
940          */
941
942         if (btrfs_block_can_be_shared(root, buf)) {
943                 ret = btrfs_lookup_extent_info(trans, fs_info, buf->start,
944                                                btrfs_header_level(buf), 1,
945                                                &refs, &flags);
946                 if (ret)
947                         return ret;
948                 if (refs == 0) {
949                         ret = -EROFS;
950                         btrfs_handle_fs_error(fs_info, ret, NULL);
951                         return ret;
952                 }
953         } else {
954                 refs = 1;
955                 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
956                     btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
957                         flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
958                 else
959                         flags = 0;
960         }
961
962         owner = btrfs_header_owner(buf);
963         BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
964                !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
965
966         if (refs > 1) {
967                 if ((owner == root->root_key.objectid ||
968                      root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
969                     !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
970                         ret = btrfs_inc_ref(trans, root, buf, 1);
971                         if (ret)
972                                 return ret;
973
974                         if (root->root_key.objectid ==
975                             BTRFS_TREE_RELOC_OBJECTID) {
976                                 ret = btrfs_dec_ref(trans, root, buf, 0);
977                                 if (ret)
978                                         return ret;
979                                 ret = btrfs_inc_ref(trans, root, cow, 1);
980                                 if (ret)
981                                         return ret;
982                         }
983                         new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
984                 } else {
985
986                         if (root->root_key.objectid ==
987                             BTRFS_TREE_RELOC_OBJECTID)
988                                 ret = btrfs_inc_ref(trans, root, cow, 1);
989                         else
990                                 ret = btrfs_inc_ref(trans, root, cow, 0);
991                         if (ret)
992                                 return ret;
993                 }
994                 if (new_flags != 0) {
995                         int level = btrfs_header_level(buf);
996
997                         ret = btrfs_set_disk_extent_flags(trans, fs_info,
998                                                           buf->start,
999                                                           buf->len,
1000                                                           new_flags, level, 0);
1001                         if (ret)
1002                                 return ret;
1003                 }
1004         } else {
1005                 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
1006                         if (root->root_key.objectid ==
1007                             BTRFS_TREE_RELOC_OBJECTID)
1008                                 ret = btrfs_inc_ref(trans, root, cow, 1);
1009                         else
1010                                 ret = btrfs_inc_ref(trans, root, cow, 0);
1011                         if (ret)
1012                                 return ret;
1013                         ret = btrfs_dec_ref(trans, root, buf, 1);
1014                         if (ret)
1015                                 return ret;
1016                 }
1017                 clean_tree_block(fs_info, buf);
1018                 *last_ref = 1;
1019         }
1020         return 0;
1021 }
1022
1023 /*
1024  * does the dirty work in cow of a single block.  The parent block (if
1025  * supplied) is updated to point to the new cow copy.  The new buffer is marked
1026  * dirty and returned locked.  If you modify the block it needs to be marked
1027  * dirty again.
1028  *
1029  * search_start -- an allocation hint for the new block
1030  *
1031  * empty_size -- a hint that you plan on doing more cow.  This is the size in
1032  * bytes the allocator should try to find free next to the block it returns.
1033  * This is just a hint and may be ignored by the allocator.
1034  */
1035 static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
1036                              struct btrfs_root *root,
1037                              struct extent_buffer *buf,
1038                              struct extent_buffer *parent, int parent_slot,
1039                              struct extent_buffer **cow_ret,
1040                              u64 search_start, u64 empty_size)
1041 {
1042         struct btrfs_fs_info *fs_info = root->fs_info;
1043         struct btrfs_disk_key disk_key;
1044         struct extent_buffer *cow;
1045         int level, ret;
1046         int last_ref = 0;
1047         int unlock_orig = 0;
1048         u64 parent_start = 0;
1049
1050         if (*cow_ret == buf)
1051                 unlock_orig = 1;
1052
1053         btrfs_assert_tree_locked(buf);
1054
1055         WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1056                 trans->transid != fs_info->running_transaction->transid);
1057         WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1058                 trans->transid != root->last_trans);
1059
1060         level = btrfs_header_level(buf);
1061
1062         if (level == 0)
1063                 btrfs_item_key(buf, &disk_key, 0);
1064         else
1065                 btrfs_node_key(buf, &disk_key, 0);
1066
1067         if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent)
1068                 parent_start = parent->start;
1069
1070         cow = btrfs_alloc_tree_block(trans, root, parent_start,
1071                         root->root_key.objectid, &disk_key, level,
1072                         search_start, empty_size);
1073         if (IS_ERR(cow))
1074                 return PTR_ERR(cow);
1075
1076         /* cow is set to blocking by btrfs_init_new_buffer */
1077
1078         copy_extent_buffer_full(cow, buf);
1079         btrfs_set_header_bytenr(cow, cow->start);
1080         btrfs_set_header_generation(cow, trans->transid);
1081         btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1082         btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1083                                      BTRFS_HEADER_FLAG_RELOC);
1084         if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1085                 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1086         else
1087                 btrfs_set_header_owner(cow, root->root_key.objectid);
1088
1089         write_extent_buffer_fsid(cow, fs_info->fsid);
1090
1091         ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
1092         if (ret) {
1093                 btrfs_abort_transaction(trans, ret);
1094                 return ret;
1095         }
1096
1097         if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
1098                 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
1099                 if (ret) {
1100                         btrfs_abort_transaction(trans, ret);
1101                         return ret;
1102                 }
1103         }
1104
1105         if (buf == root->node) {
1106                 WARN_ON(parent && parent != buf);
1107                 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1108                     btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1109                         parent_start = buf->start;
1110
1111                 extent_buffer_get(cow);
1112                 ret = tree_mod_log_insert_root(root->node, cow, 1);
1113                 BUG_ON(ret < 0);
1114                 rcu_assign_pointer(root->node, cow);
1115
1116                 btrfs_free_tree_block(trans, root, buf, parent_start,
1117                                       last_ref);
1118                 free_extent_buffer(buf);
1119                 add_root_to_dirty_list(root);
1120         } else {
1121                 WARN_ON(trans->transid != btrfs_header_generation(parent));
1122                 tree_mod_log_insert_key(parent, parent_slot,
1123                                         MOD_LOG_KEY_REPLACE, GFP_NOFS);
1124                 btrfs_set_node_blockptr(parent, parent_slot,
1125                                         cow->start);
1126                 btrfs_set_node_ptr_generation(parent, parent_slot,
1127                                               trans->transid);
1128                 btrfs_mark_buffer_dirty(parent);
1129                 if (last_ref) {
1130                         ret = tree_mod_log_free_eb(buf);
1131                         if (ret) {
1132                                 btrfs_abort_transaction(trans, ret);
1133                                 return ret;
1134                         }
1135                 }
1136                 btrfs_free_tree_block(trans, root, buf, parent_start,
1137                                       last_ref);
1138         }
1139         if (unlock_orig)
1140                 btrfs_tree_unlock(buf);
1141         free_extent_buffer_stale(buf);
1142         btrfs_mark_buffer_dirty(cow);
1143         *cow_ret = cow;
1144         return 0;
1145 }
1146
1147 /*
1148  * returns the logical address of the oldest predecessor of the given root.
1149  * entries older than time_seq are ignored.
1150  */
1151 static struct tree_mod_elem *__tree_mod_log_oldest_root(
1152                 struct extent_buffer *eb_root, u64 time_seq)
1153 {
1154         struct tree_mod_elem *tm;
1155         struct tree_mod_elem *found = NULL;
1156         u64 root_logical = eb_root->start;
1157         int looped = 0;
1158
1159         if (!time_seq)
1160                 return NULL;
1161
1162         /*
1163          * the very last operation that's logged for a root is the
1164          * replacement operation (if it is replaced at all). this has
1165          * the logical address of the *new* root, making it the very
1166          * first operation that's logged for this root.
1167          */
1168         while (1) {
1169                 tm = tree_mod_log_search_oldest(eb_root->fs_info, root_logical,
1170                                                 time_seq);
1171                 if (!looped && !tm)
1172                         return NULL;
1173                 /*
1174                  * if there are no tree operation for the oldest root, we simply
1175                  * return it. this should only happen if that (old) root is at
1176                  * level 0.
1177                  */
1178                 if (!tm)
1179                         break;
1180
1181                 /*
1182                  * if there's an operation that's not a root replacement, we
1183                  * found the oldest version of our root. normally, we'll find a
1184                  * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1185                  */
1186                 if (tm->op != MOD_LOG_ROOT_REPLACE)
1187                         break;
1188
1189                 found = tm;
1190                 root_logical = tm->old_root.logical;
1191                 looped = 1;
1192         }
1193
1194         /* if there's no old root to return, return what we found instead */
1195         if (!found)
1196                 found = tm;
1197
1198         return found;
1199 }
1200
1201 /*
1202  * tm is a pointer to the first operation to rewind within eb. then, all
1203  * previous operations will be rewound (until we reach something older than
1204  * time_seq).
1205  */
1206 static void
1207 __tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1208                       u64 time_seq, struct tree_mod_elem *first_tm)
1209 {
1210         u32 n;
1211         struct rb_node *next;
1212         struct tree_mod_elem *tm = first_tm;
1213         unsigned long o_dst;
1214         unsigned long o_src;
1215         unsigned long p_size = sizeof(struct btrfs_key_ptr);
1216
1217         n = btrfs_header_nritems(eb);
1218         read_lock(&fs_info->tree_mod_log_lock);
1219         while (tm && tm->seq >= time_seq) {
1220                 /*
1221                  * all the operations are recorded with the operator used for
1222                  * the modification. as we're going backwards, we do the
1223                  * opposite of each operation here.
1224                  */
1225                 switch (tm->op) {
1226                 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1227                         BUG_ON(tm->slot < n);
1228                         /* Fallthrough */
1229                 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
1230                 case MOD_LOG_KEY_REMOVE:
1231                         btrfs_set_node_key(eb, &tm->key, tm->slot);
1232                         btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1233                         btrfs_set_node_ptr_generation(eb, tm->slot,
1234                                                       tm->generation);
1235                         n++;
1236                         break;
1237                 case MOD_LOG_KEY_REPLACE:
1238                         BUG_ON(tm->slot >= n);
1239                         btrfs_set_node_key(eb, &tm->key, tm->slot);
1240                         btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1241                         btrfs_set_node_ptr_generation(eb, tm->slot,
1242                                                       tm->generation);
1243                         break;
1244                 case MOD_LOG_KEY_ADD:
1245                         /* if a move operation is needed it's in the log */
1246                         n--;
1247                         break;
1248                 case MOD_LOG_MOVE_KEYS:
1249                         o_dst = btrfs_node_key_ptr_offset(tm->slot);
1250                         o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1251                         memmove_extent_buffer(eb, o_dst, o_src,
1252                                               tm->move.nr_items * p_size);
1253                         break;
1254                 case MOD_LOG_ROOT_REPLACE:
1255                         /*
1256                          * this operation is special. for roots, this must be
1257                          * handled explicitly before rewinding.
1258                          * for non-roots, this operation may exist if the node
1259                          * was a root: root A -> child B; then A gets empty and
1260                          * B is promoted to the new root. in the mod log, we'll
1261                          * have a root-replace operation for B, a tree block
1262                          * that is no root. we simply ignore that operation.
1263                          */
1264                         break;
1265                 }
1266                 next = rb_next(&tm->node);
1267                 if (!next)
1268                         break;
1269                 tm = rb_entry(next, struct tree_mod_elem, node);
1270                 if (tm->logical != first_tm->logical)
1271                         break;
1272         }
1273         read_unlock(&fs_info->tree_mod_log_lock);
1274         btrfs_set_header_nritems(eb, n);
1275 }
1276
1277 /*
1278  * Called with eb read locked. If the buffer cannot be rewound, the same buffer
1279  * is returned. If rewind operations happen, a fresh buffer is returned. The
1280  * returned buffer is always read-locked. If the returned buffer is not the
1281  * input buffer, the lock on the input buffer is released and the input buffer
1282  * is freed (its refcount is decremented).
1283  */
1284 static struct extent_buffer *
1285 tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1286                     struct extent_buffer *eb, u64 time_seq)
1287 {
1288         struct extent_buffer *eb_rewin;
1289         struct tree_mod_elem *tm;
1290
1291         if (!time_seq)
1292                 return eb;
1293
1294         if (btrfs_header_level(eb) == 0)
1295                 return eb;
1296
1297         tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1298         if (!tm)
1299                 return eb;
1300
1301         btrfs_set_path_blocking(path);
1302         btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1303
1304         if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1305                 BUG_ON(tm->slot != 0);
1306                 eb_rewin = alloc_dummy_extent_buffer(fs_info, eb->start);
1307                 if (!eb_rewin) {
1308                         btrfs_tree_read_unlock_blocking(eb);
1309                         free_extent_buffer(eb);
1310                         return NULL;
1311                 }
1312                 btrfs_set_header_bytenr(eb_rewin, eb->start);
1313                 btrfs_set_header_backref_rev(eb_rewin,
1314                                              btrfs_header_backref_rev(eb));
1315                 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
1316                 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
1317         } else {
1318                 eb_rewin = btrfs_clone_extent_buffer(eb);
1319                 if (!eb_rewin) {
1320                         btrfs_tree_read_unlock_blocking(eb);
1321                         free_extent_buffer(eb);
1322                         return NULL;
1323                 }
1324         }
1325
1326         btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1327         btrfs_tree_read_unlock_blocking(eb);
1328         free_extent_buffer(eb);
1329
1330         extent_buffer_get(eb_rewin);
1331         btrfs_tree_read_lock(eb_rewin);
1332         __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
1333         WARN_ON(btrfs_header_nritems(eb_rewin) >
1334                 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
1335
1336         return eb_rewin;
1337 }
1338
1339 /*
1340  * get_old_root() rewinds the state of @root's root node to the given @time_seq
1341  * value. If there are no changes, the current root->root_node is returned. If
1342  * anything changed in between, there's a fresh buffer allocated on which the
1343  * rewind operations are done. In any case, the returned buffer is read locked.
1344  * Returns NULL on error (with no locks held).
1345  */
1346 static inline struct extent_buffer *
1347 get_old_root(struct btrfs_root *root, u64 time_seq)
1348 {
1349         struct btrfs_fs_info *fs_info = root->fs_info;
1350         struct tree_mod_elem *tm;
1351         struct extent_buffer *eb = NULL;
1352         struct extent_buffer *eb_root;
1353         struct extent_buffer *old;
1354         struct tree_mod_root *old_root = NULL;
1355         u64 old_generation = 0;
1356         u64 logical;
1357
1358         eb_root = btrfs_read_lock_root_node(root);
1359         tm = __tree_mod_log_oldest_root(eb_root, time_seq);
1360         if (!tm)
1361                 return eb_root;
1362
1363         if (tm->op == MOD_LOG_ROOT_REPLACE) {
1364                 old_root = &tm->old_root;
1365                 old_generation = tm->generation;
1366                 logical = old_root->logical;
1367         } else {
1368                 logical = eb_root->start;
1369         }
1370
1371         tm = tree_mod_log_search(fs_info, logical, time_seq);
1372         if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1373                 btrfs_tree_read_unlock(eb_root);
1374                 free_extent_buffer(eb_root);
1375                 old = read_tree_block(fs_info, logical, 0);
1376                 if (WARN_ON(IS_ERR(old) || !extent_buffer_uptodate(old))) {
1377                         if (!IS_ERR(old))
1378                                 free_extent_buffer(old);
1379                         btrfs_warn(fs_info,
1380                                    "failed to read tree block %llu from get_old_root",
1381                                    logical);
1382                 } else {
1383                         eb = btrfs_clone_extent_buffer(old);
1384                         free_extent_buffer(old);
1385                 }
1386         } else if (old_root) {
1387                 btrfs_tree_read_unlock(eb_root);
1388                 free_extent_buffer(eb_root);
1389                 eb = alloc_dummy_extent_buffer(fs_info, logical);
1390         } else {
1391                 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
1392                 eb = btrfs_clone_extent_buffer(eb_root);
1393                 btrfs_tree_read_unlock_blocking(eb_root);
1394                 free_extent_buffer(eb_root);
1395         }
1396
1397         if (!eb)
1398                 return NULL;
1399         extent_buffer_get(eb);
1400         btrfs_tree_read_lock(eb);
1401         if (old_root) {
1402                 btrfs_set_header_bytenr(eb, eb->start);
1403                 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
1404                 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
1405                 btrfs_set_header_level(eb, old_root->level);
1406                 btrfs_set_header_generation(eb, old_generation);
1407         }
1408         if (tm)
1409                 __tree_mod_log_rewind(fs_info, eb, time_seq, tm);
1410         else
1411                 WARN_ON(btrfs_header_level(eb) != 0);
1412         WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(fs_info));
1413
1414         return eb;
1415 }
1416
1417 int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1418 {
1419         struct tree_mod_elem *tm;
1420         int level;
1421         struct extent_buffer *eb_root = btrfs_root_node(root);
1422
1423         tm = __tree_mod_log_oldest_root(eb_root, time_seq);
1424         if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1425                 level = tm->old_root.level;
1426         } else {
1427                 level = btrfs_header_level(eb_root);
1428         }
1429         free_extent_buffer(eb_root);
1430
1431         return level;
1432 }
1433
1434 static inline int should_cow_block(struct btrfs_trans_handle *trans,
1435                                    struct btrfs_root *root,
1436                                    struct extent_buffer *buf)
1437 {
1438         if (btrfs_is_testing(root->fs_info))
1439                 return 0;
1440
1441         /* ensure we can see the force_cow */
1442         smp_rmb();
1443
1444         /*
1445          * We do not need to cow a block if
1446          * 1) this block is not created or changed in this transaction;
1447          * 2) this block does not belong to TREE_RELOC tree;
1448          * 3) the root is not forced COW.
1449          *
1450          * What is forced COW:
1451          *    when we create snapshot during committing the transaction,
1452          *    after we've finished coping src root, we must COW the shared
1453          *    block to ensure the metadata consistency.
1454          */
1455         if (btrfs_header_generation(buf) == trans->transid &&
1456             !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1457             !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
1458               btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
1459             !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
1460                 return 0;
1461         return 1;
1462 }
1463
1464 /*
1465  * cows a single block, see __btrfs_cow_block for the real work.
1466  * This version of it has extra checks so that a block isn't COWed more than
1467  * once per transaction, as long as it hasn't been written yet
1468  */
1469 noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
1470                     struct btrfs_root *root, struct extent_buffer *buf,
1471                     struct extent_buffer *parent, int parent_slot,
1472                     struct extent_buffer **cow_ret)
1473 {
1474         struct btrfs_fs_info *fs_info = root->fs_info;
1475         u64 search_start;
1476         int ret;
1477
1478         if (trans->transaction != fs_info->running_transaction)
1479                 WARN(1, KERN_CRIT "trans %llu running %llu\n",
1480                        trans->transid,
1481                        fs_info->running_transaction->transid);
1482
1483         if (trans->transid != fs_info->generation)
1484                 WARN(1, KERN_CRIT "trans %llu running %llu\n",
1485                        trans->transid, fs_info->generation);
1486
1487         if (!should_cow_block(trans, root, buf)) {
1488                 trans->dirty = true;
1489                 *cow_ret = buf;
1490                 return 0;
1491         }
1492
1493         search_start = buf->start & ~((u64)SZ_1G - 1);
1494
1495         if (parent)
1496                 btrfs_set_lock_blocking(parent);
1497         btrfs_set_lock_blocking(buf);
1498
1499         ret = __btrfs_cow_block(trans, root, buf, parent,
1500                                  parent_slot, cow_ret, search_start, 0);
1501
1502         trace_btrfs_cow_block(root, buf, *cow_ret);
1503
1504         return ret;
1505 }
1506
1507 /*
1508  * helper function for defrag to decide if two blocks pointed to by a
1509  * node are actually close by
1510  */
1511 static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
1512 {
1513         if (blocknr < other && other - (blocknr + blocksize) < 32768)
1514                 return 1;
1515         if (blocknr > other && blocknr - (other + blocksize) < 32768)
1516                 return 1;
1517         return 0;
1518 }
1519
1520 /*
1521  * compare two keys in a memcmp fashion
1522  */
1523 static int comp_keys(const struct btrfs_disk_key *disk,
1524                      const struct btrfs_key *k2)
1525 {
1526         struct btrfs_key k1;
1527
1528         btrfs_disk_key_to_cpu(&k1, disk);
1529
1530         return btrfs_comp_cpu_keys(&k1, k2);
1531 }
1532
1533 /*
1534  * same as comp_keys only with two btrfs_key's
1535  */
1536 int btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2)
1537 {
1538         if (k1->objectid > k2->objectid)
1539                 return 1;
1540         if (k1->objectid < k2->objectid)
1541                 return -1;
1542         if (k1->type > k2->type)
1543                 return 1;
1544         if (k1->type < k2->type)
1545                 return -1;
1546         if (k1->offset > k2->offset)
1547                 return 1;
1548         if (k1->offset < k2->offset)
1549                 return -1;
1550         return 0;
1551 }
1552
1553 /*
1554  * this is used by the defrag code to go through all the
1555  * leaves pointed to by a node and reallocate them so that
1556  * disk order is close to key order
1557  */
1558 int btrfs_realloc_node(struct btrfs_trans_handle *trans,
1559                        struct btrfs_root *root, struct extent_buffer *parent,
1560                        int start_slot, u64 *last_ret,
1561                        struct btrfs_key *progress)
1562 {
1563         struct btrfs_fs_info *fs_info = root->fs_info;
1564         struct extent_buffer *cur;
1565         u64 blocknr;
1566         u64 gen;
1567         u64 search_start = *last_ret;
1568         u64 last_block = 0;
1569         u64 other;
1570         u32 parent_nritems;
1571         int end_slot;
1572         int i;
1573         int err = 0;
1574         int parent_level;
1575         int uptodate;
1576         u32 blocksize;
1577         int progress_passed = 0;
1578         struct btrfs_disk_key disk_key;
1579
1580         parent_level = btrfs_header_level(parent);
1581
1582         WARN_ON(trans->transaction != fs_info->running_transaction);
1583         WARN_ON(trans->transid != fs_info->generation);
1584
1585         parent_nritems = btrfs_header_nritems(parent);
1586         blocksize = fs_info->nodesize;
1587         end_slot = parent_nritems - 1;
1588
1589         if (parent_nritems <= 1)
1590                 return 0;
1591
1592         btrfs_set_lock_blocking(parent);
1593
1594         for (i = start_slot; i <= end_slot; i++) {
1595                 int close = 1;
1596
1597                 btrfs_node_key(parent, &disk_key, i);
1598                 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1599                         continue;
1600
1601                 progress_passed = 1;
1602                 blocknr = btrfs_node_blockptr(parent, i);
1603                 gen = btrfs_node_ptr_generation(parent, i);
1604                 if (last_block == 0)
1605                         last_block = blocknr;
1606
1607                 if (i > 0) {
1608                         other = btrfs_node_blockptr(parent, i - 1);
1609                         close = close_blocks(blocknr, other, blocksize);
1610                 }
1611                 if (!close && i < end_slot) {
1612                         other = btrfs_node_blockptr(parent, i + 1);
1613                         close = close_blocks(blocknr, other, blocksize);
1614                 }
1615                 if (close) {
1616                         last_block = blocknr;
1617                         continue;
1618                 }
1619
1620                 cur = find_extent_buffer(fs_info, blocknr);
1621                 if (cur)
1622                         uptodate = btrfs_buffer_uptodate(cur, gen, 0);
1623                 else
1624                         uptodate = 0;
1625                 if (!cur || !uptodate) {
1626                         if (!cur) {
1627                                 cur = read_tree_block(fs_info, blocknr, gen);
1628                                 if (IS_ERR(cur)) {
1629                                         return PTR_ERR(cur);
1630                                 } else if (!extent_buffer_uptodate(cur)) {
1631                                         free_extent_buffer(cur);
1632                                         return -EIO;
1633                                 }
1634                         } else if (!uptodate) {
1635                                 err = btrfs_read_buffer(cur, gen);
1636                                 if (err) {
1637                                         free_extent_buffer(cur);
1638                                         return err;
1639                                 }
1640                         }
1641                 }
1642                 if (search_start == 0)
1643                         search_start = last_block;
1644
1645                 btrfs_tree_lock(cur);
1646                 btrfs_set_lock_blocking(cur);
1647                 err = __btrfs_cow_block(trans, root, cur, parent, i,
1648                                         &cur, search_start,
1649                                         min(16 * blocksize,
1650                                             (end_slot - i) * blocksize));
1651                 if (err) {
1652                         btrfs_tree_unlock(cur);
1653                         free_extent_buffer(cur);
1654                         break;
1655                 }
1656                 search_start = cur->start;
1657                 last_block = cur->start;
1658                 *last_ret = search_start;
1659                 btrfs_tree_unlock(cur);
1660                 free_extent_buffer(cur);
1661         }
1662         return err;
1663 }
1664
1665 /*
1666  * search for key in the extent_buffer.  The items start at offset p,
1667  * and they are item_size apart.  There are 'max' items in p.
1668  *
1669  * the slot in the array is returned via slot, and it points to
1670  * the place where you would insert key if it is not found in
1671  * the array.
1672  *
1673  * slot may point to max if the key is bigger than all of the keys
1674  */
1675 static noinline int generic_bin_search(struct extent_buffer *eb,
1676                                        unsigned long p, int item_size,
1677                                        const struct btrfs_key *key,
1678                                        int max, int *slot)
1679 {
1680         int low = 0;
1681         int high = max;
1682         int mid;
1683         int ret;
1684         struct btrfs_disk_key *tmp = NULL;
1685         struct btrfs_disk_key unaligned;
1686         unsigned long offset;
1687         char *kaddr = NULL;
1688         unsigned long map_start = 0;
1689         unsigned long map_len = 0;
1690         int err;
1691
1692         if (low > high) {
1693                 btrfs_err(eb->fs_info,
1694                  "%s: low (%d) > high (%d) eb %llu owner %llu level %d",
1695                           __func__, low, high, eb->start,
1696                           btrfs_header_owner(eb), btrfs_header_level(eb));
1697                 return -EINVAL;
1698         }
1699
1700         while (low < high) {
1701                 mid = (low + high) / 2;
1702                 offset = p + mid * item_size;
1703
1704                 if (!kaddr || offset < map_start ||
1705                     (offset + sizeof(struct btrfs_disk_key)) >
1706                     map_start + map_len) {
1707
1708                         err = map_private_extent_buffer(eb, offset,
1709                                                 sizeof(struct btrfs_disk_key),
1710                                                 &kaddr, &map_start, &map_len);
1711
1712                         if (!err) {
1713                                 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1714                                                         map_start);
1715                         } else if (err == 1) {
1716                                 read_extent_buffer(eb, &unaligned,
1717                                                    offset, sizeof(unaligned));
1718                                 tmp = &unaligned;
1719                         } else {
1720                                 return err;
1721                         }
1722
1723                 } else {
1724                         tmp = (struct btrfs_disk_key *)(kaddr + offset -
1725                                                         map_start);
1726                 }
1727                 ret = comp_keys(tmp, key);
1728
1729                 if (ret < 0)
1730                         low = mid + 1;
1731                 else if (ret > 0)
1732                         high = mid;
1733                 else {
1734                         *slot = mid;
1735                         return 0;
1736                 }
1737         }
1738         *slot = low;
1739         return 1;
1740 }
1741
1742 /*
1743  * simple bin_search frontend that does the right thing for
1744  * leaves vs nodes
1745  */
1746 int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
1747                      int level, int *slot)
1748 {
1749         if (level == 0)
1750                 return generic_bin_search(eb,
1751                                           offsetof(struct btrfs_leaf, items),
1752                                           sizeof(struct btrfs_item),
1753                                           key, btrfs_header_nritems(eb),
1754                                           slot);
1755         else
1756                 return generic_bin_search(eb,
1757                                           offsetof(struct btrfs_node, ptrs),
1758                                           sizeof(struct btrfs_key_ptr),
1759                                           key, btrfs_header_nritems(eb),
1760                                           slot);
1761 }
1762
1763 static void root_add_used(struct btrfs_root *root, u32 size)
1764 {
1765         spin_lock(&root->accounting_lock);
1766         btrfs_set_root_used(&root->root_item,
1767                             btrfs_root_used(&root->root_item) + size);
1768         spin_unlock(&root->accounting_lock);
1769 }
1770
1771 static void root_sub_used(struct btrfs_root *root, u32 size)
1772 {
1773         spin_lock(&root->accounting_lock);
1774         btrfs_set_root_used(&root->root_item,
1775                             btrfs_root_used(&root->root_item) - size);
1776         spin_unlock(&root->accounting_lock);
1777 }
1778
1779 /* given a node and slot number, this reads the blocks it points to.  The
1780  * extent buffer is returned with a reference taken (but unlocked).
1781  */
1782 static noinline struct extent_buffer *
1783 read_node_slot(struct btrfs_fs_info *fs_info, struct extent_buffer *parent,
1784                int slot)
1785 {
1786         int level = btrfs_header_level(parent);
1787         struct extent_buffer *eb;
1788
1789         if (slot < 0 || slot >= btrfs_header_nritems(parent))
1790                 return ERR_PTR(-ENOENT);
1791
1792         BUG_ON(level == 0);
1793
1794         eb = read_tree_block(fs_info, btrfs_node_blockptr(parent, slot),
1795                              btrfs_node_ptr_generation(parent, slot));
1796         if (!IS_ERR(eb) && !extent_buffer_uptodate(eb)) {
1797                 free_extent_buffer(eb);
1798                 eb = ERR_PTR(-EIO);
1799         }
1800
1801         return eb;
1802 }
1803
1804 /*
1805  * node level balancing, used to make sure nodes are in proper order for
1806  * item deletion.  We balance from the top down, so we have to make sure
1807  * that a deletion won't leave an node completely empty later on.
1808  */
1809 static noinline int balance_level(struct btrfs_trans_handle *trans,
1810                          struct btrfs_root *root,
1811                          struct btrfs_path *path, int level)
1812 {
1813         struct btrfs_fs_info *fs_info = root->fs_info;
1814         struct extent_buffer *right = NULL;
1815         struct extent_buffer *mid;
1816         struct extent_buffer *left = NULL;
1817         struct extent_buffer *parent = NULL;
1818         int ret = 0;
1819         int wret;
1820         int pslot;
1821         int orig_slot = path->slots[level];
1822         u64 orig_ptr;
1823
1824         if (level == 0)
1825                 return 0;
1826
1827         mid = path->nodes[level];
1828
1829         WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1830                 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
1831         WARN_ON(btrfs_header_generation(mid) != trans->transid);
1832
1833         orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1834
1835         if (level < BTRFS_MAX_LEVEL - 1) {
1836                 parent = path->nodes[level + 1];
1837                 pslot = path->slots[level + 1];
1838         }
1839
1840         /*
1841          * deal with the case where there is only one pointer in the root
1842          * by promoting the node below to a root
1843          */
1844         if (!parent) {
1845                 struct extent_buffer *child;
1846
1847                 if (btrfs_header_nritems(mid) != 1)
1848                         return 0;
1849
1850                 /* promote the child to a root */
1851                 child = read_node_slot(fs_info, mid, 0);
1852                 if (IS_ERR(child)) {
1853                         ret = PTR_ERR(child);
1854                         btrfs_handle_fs_error(fs_info, ret, NULL);
1855                         goto enospc;
1856                 }
1857
1858                 btrfs_tree_lock(child);
1859                 btrfs_set_lock_blocking(child);
1860                 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
1861                 if (ret) {
1862                         btrfs_tree_unlock(child);
1863                         free_extent_buffer(child);
1864                         goto enospc;
1865                 }
1866
1867                 ret = tree_mod_log_insert_root(root->node, child, 1);
1868                 BUG_ON(ret < 0);
1869                 rcu_assign_pointer(root->node, child);
1870
1871                 add_root_to_dirty_list(root);
1872                 btrfs_tree_unlock(child);
1873
1874                 path->locks[level] = 0;
1875                 path->nodes[level] = NULL;
1876                 clean_tree_block(fs_info, mid);
1877                 btrfs_tree_unlock(mid);
1878                 /* once for the path */
1879                 free_extent_buffer(mid);
1880
1881                 root_sub_used(root, mid->len);
1882                 btrfs_free_tree_block(trans, root, mid, 0, 1);
1883                 /* once for the root ptr */
1884                 free_extent_buffer_stale(mid);
1885                 return 0;
1886         }
1887         if (btrfs_header_nritems(mid) >
1888             BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4)
1889                 return 0;
1890
1891         left = read_node_slot(fs_info, parent, pslot - 1);
1892         if (IS_ERR(left))
1893                 left = NULL;
1894
1895         if (left) {
1896                 btrfs_tree_lock(left);
1897                 btrfs_set_lock_blocking(left);
1898                 wret = btrfs_cow_block(trans, root, left,
1899                                        parent, pslot - 1, &left);
1900                 if (wret) {
1901                         ret = wret;
1902                         goto enospc;
1903                 }
1904         }
1905
1906         right = read_node_slot(fs_info, parent, pslot + 1);
1907         if (IS_ERR(right))
1908                 right = NULL;
1909
1910         if (right) {
1911                 btrfs_tree_lock(right);
1912                 btrfs_set_lock_blocking(right);
1913                 wret = btrfs_cow_block(trans, root, right,
1914                                        parent, pslot + 1, &right);
1915                 if (wret) {
1916                         ret = wret;
1917                         goto enospc;
1918                 }
1919         }
1920
1921         /* first, try to make some room in the middle buffer */
1922         if (left) {
1923                 orig_slot += btrfs_header_nritems(left);
1924                 wret = push_node_left(trans, fs_info, left, mid, 1);
1925                 if (wret < 0)
1926                         ret = wret;
1927         }
1928
1929         /*
1930          * then try to empty the right most buffer into the middle
1931          */
1932         if (right) {
1933                 wret = push_node_left(trans, fs_info, mid, right, 1);
1934                 if (wret < 0 && wret != -ENOSPC)
1935                         ret = wret;
1936                 if (btrfs_header_nritems(right) == 0) {
1937                         clean_tree_block(fs_info, right);
1938                         btrfs_tree_unlock(right);
1939                         del_ptr(root, path, level + 1, pslot + 1);
1940                         root_sub_used(root, right->len);
1941                         btrfs_free_tree_block(trans, root, right, 0, 1);
1942                         free_extent_buffer_stale(right);
1943                         right = NULL;
1944                 } else {
1945                         struct btrfs_disk_key right_key;
1946                         btrfs_node_key(right, &right_key, 0);
1947                         ret = tree_mod_log_insert_key(parent, pslot + 1,
1948                                         MOD_LOG_KEY_REPLACE, GFP_NOFS);
1949                         BUG_ON(ret < 0);
1950                         btrfs_set_node_key(parent, &right_key, pslot + 1);
1951                         btrfs_mark_buffer_dirty(parent);
1952                 }
1953         }
1954         if (btrfs_header_nritems(mid) == 1) {
1955                 /*
1956                  * we're not allowed to leave a node with one item in the
1957                  * tree during a delete.  A deletion from lower in the tree
1958                  * could try to delete the only pointer in this node.
1959                  * So, pull some keys from the left.
1960                  * There has to be a left pointer at this point because
1961                  * otherwise we would have pulled some pointers from the
1962                  * right
1963                  */
1964                 if (!left) {
1965                         ret = -EROFS;
1966                         btrfs_handle_fs_error(fs_info, ret, NULL);
1967                         goto enospc;
1968                 }
1969                 wret = balance_node_right(trans, fs_info, mid, left);
1970                 if (wret < 0) {
1971                         ret = wret;
1972                         goto enospc;
1973                 }
1974                 if (wret == 1) {
1975                         wret = push_node_left(trans, fs_info, left, mid, 1);
1976                         if (wret < 0)
1977                                 ret = wret;
1978                 }
1979                 BUG_ON(wret == 1);
1980         }
1981         if (btrfs_header_nritems(mid) == 0) {
1982                 clean_tree_block(fs_info, mid);
1983                 btrfs_tree_unlock(mid);
1984                 del_ptr(root, path, level + 1, pslot);
1985                 root_sub_used(root, mid->len);
1986                 btrfs_free_tree_block(trans, root, mid, 0, 1);
1987                 free_extent_buffer_stale(mid);
1988                 mid = NULL;
1989         } else {
1990                 /* update the parent key to reflect our changes */
1991                 struct btrfs_disk_key mid_key;
1992                 btrfs_node_key(mid, &mid_key, 0);
1993                 ret = tree_mod_log_insert_key(parent, pslot,
1994                                 MOD_LOG_KEY_REPLACE, GFP_NOFS);
1995                 BUG_ON(ret < 0);
1996                 btrfs_set_node_key(parent, &mid_key, pslot);
1997                 btrfs_mark_buffer_dirty(parent);
1998         }
1999
2000         /* update the path */
2001         if (left) {
2002                 if (btrfs_header_nritems(left) > orig_slot) {
2003                         extent_buffer_get(left);
2004                         /* left was locked after cow */
2005                         path->nodes[level] = left;
2006                         path->slots[level + 1] -= 1;
2007                         path->slots[level] = orig_slot;
2008                         if (mid) {
2009                                 btrfs_tree_unlock(mid);
2010                                 free_extent_buffer(mid);
2011                         }
2012                 } else {
2013                         orig_slot -= btrfs_header_nritems(left);
2014                         path->slots[level] = orig_slot;
2015                 }
2016         }
2017         /* double check we haven't messed things up */
2018         if (orig_ptr !=
2019             btrfs_node_blockptr(path->nodes[level], path->slots[level]))
2020                 BUG();
2021 enospc:
2022         if (right) {
2023                 btrfs_tree_unlock(right);
2024                 free_extent_buffer(right);
2025         }
2026         if (left) {
2027                 if (path->nodes[level] != left)
2028                         btrfs_tree_unlock(left);
2029                 free_extent_buffer(left);
2030         }
2031         return ret;
2032 }
2033
2034 /* Node balancing for insertion.  Here we only split or push nodes around
2035  * when they are completely full.  This is also done top down, so we
2036  * have to be pessimistic.
2037  */
2038 static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
2039                                           struct btrfs_root *root,
2040                                           struct btrfs_path *path, int level)
2041 {
2042         struct btrfs_fs_info *fs_info = root->fs_info;
2043         struct extent_buffer *right = NULL;
2044         struct extent_buffer *mid;
2045         struct extent_buffer *left = NULL;
2046         struct extent_buffer *parent = NULL;
2047         int ret = 0;
2048         int wret;
2049         int pslot;
2050         int orig_slot = path->slots[level];
2051
2052         if (level == 0)
2053                 return 1;
2054
2055         mid = path->nodes[level];
2056         WARN_ON(btrfs_header_generation(mid) != trans->transid);
2057
2058         if (level < BTRFS_MAX_LEVEL - 1) {
2059                 parent = path->nodes[level + 1];
2060                 pslot = path->slots[level + 1];
2061         }
2062
2063         if (!parent)
2064                 return 1;
2065
2066         left = read_node_slot(fs_info, parent, pslot - 1);
2067         if (IS_ERR(left))
2068                 left = NULL;
2069
2070         /* first, try to make some room in the middle buffer */
2071         if (left) {
2072                 u32 left_nr;
2073
2074                 btrfs_tree_lock(left);
2075                 btrfs_set_lock_blocking(left);
2076
2077                 left_nr = btrfs_header_nritems(left);
2078                 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
2079                         wret = 1;
2080                 } else {
2081                         ret = btrfs_cow_block(trans, root, left, parent,
2082                                               pslot - 1, &left);
2083                         if (ret)
2084                                 wret = 1;
2085                         else {
2086                                 wret = push_node_left(trans, fs_info,
2087                                                       left, mid, 0);
2088                         }
2089                 }
2090                 if (wret < 0)
2091                         ret = wret;
2092                 if (wret == 0) {
2093                         struct btrfs_disk_key disk_key;
2094                         orig_slot += left_nr;
2095                         btrfs_node_key(mid, &disk_key, 0);
2096                         ret = tree_mod_log_insert_key(parent, pslot,
2097                                         MOD_LOG_KEY_REPLACE, GFP_NOFS);
2098                         BUG_ON(ret < 0);
2099                         btrfs_set_node_key(parent, &disk_key, pslot);
2100                         btrfs_mark_buffer_dirty(parent);
2101                         if (btrfs_header_nritems(left) > orig_slot) {
2102                                 path->nodes[level] = left;
2103                                 path->slots[level + 1] -= 1;
2104                                 path->slots[level] = orig_slot;
2105                                 btrfs_tree_unlock(mid);
2106                                 free_extent_buffer(mid);
2107                         } else {
2108                                 orig_slot -=
2109                                         btrfs_header_nritems(left);
2110                                 path->slots[level] = orig_slot;
2111                                 btrfs_tree_unlock(left);
2112                                 free_extent_buffer(left);
2113                         }
2114                         return 0;
2115                 }
2116                 btrfs_tree_unlock(left);
2117                 free_extent_buffer(left);
2118         }
2119         right = read_node_slot(fs_info, parent, pslot + 1);
2120         if (IS_ERR(right))
2121                 right = NULL;
2122
2123         /*
2124          * then try to empty the right most buffer into the middle
2125          */
2126         if (right) {
2127                 u32 right_nr;
2128
2129                 btrfs_tree_lock(right);
2130                 btrfs_set_lock_blocking(right);
2131
2132                 right_nr = btrfs_header_nritems(right);
2133                 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
2134                         wret = 1;
2135                 } else {
2136                         ret = btrfs_cow_block(trans, root, right,
2137                                               parent, pslot + 1,
2138                                               &right);
2139                         if (ret)
2140                                 wret = 1;
2141                         else {
2142                                 wret = balance_node_right(trans, fs_info,
2143                                                           right, mid);
2144                         }
2145                 }
2146                 if (wret < 0)
2147                         ret = wret;
2148                 if (wret == 0) {
2149                         struct btrfs_disk_key disk_key;
2150
2151                         btrfs_node_key(right, &disk_key, 0);
2152                         ret = tree_mod_log_insert_key(parent, pslot + 1,
2153                                         MOD_LOG_KEY_REPLACE, GFP_NOFS);
2154                         BUG_ON(ret < 0);
2155                         btrfs_set_node_key(parent, &disk_key, pslot + 1);
2156                         btrfs_mark_buffer_dirty(parent);
2157
2158                         if (btrfs_header_nritems(mid) <= orig_slot) {
2159                                 path->nodes[level] = right;
2160                                 path->slots[level + 1] += 1;
2161                                 path->slots[level] = orig_slot -
2162                                         btrfs_header_nritems(mid);
2163                                 btrfs_tree_unlock(mid);
2164                                 free_extent_buffer(mid);
2165                         } else {
2166                                 btrfs_tree_unlock(right);
2167                                 free_extent_buffer(right);
2168                         }
2169                         return 0;
2170                 }
2171                 btrfs_tree_unlock(right);
2172                 free_extent_buffer(right);
2173         }
2174         return 1;
2175 }
2176
2177 /*
2178  * readahead one full node of leaves, finding things that are close
2179  * to the block in 'slot', and triggering ra on them.
2180  */
2181 static void reada_for_search(struct btrfs_fs_info *fs_info,
2182                              struct btrfs_path *path,
2183                              int level, int slot, u64 objectid)
2184 {
2185         struct extent_buffer *node;
2186         struct btrfs_disk_key disk_key;
2187         u32 nritems;
2188         u64 search;
2189         u64 target;
2190         u64 nread = 0;
2191         struct extent_buffer *eb;
2192         u32 nr;
2193         u32 blocksize;
2194         u32 nscan = 0;
2195
2196         if (level != 1)
2197                 return;
2198
2199         if (!path->nodes[level])
2200                 return;
2201
2202         node = path->nodes[level];
2203
2204         search = btrfs_node_blockptr(node, slot);
2205         blocksize = fs_info->nodesize;
2206         eb = find_extent_buffer(fs_info, search);
2207         if (eb) {
2208                 free_extent_buffer(eb);
2209                 return;
2210         }
2211
2212         target = search;
2213
2214         nritems = btrfs_header_nritems(node);
2215         nr = slot;
2216
2217         while (1) {
2218                 if (path->reada == READA_BACK) {
2219                         if (nr == 0)
2220                                 break;
2221                         nr--;
2222                 } else if (path->reada == READA_FORWARD) {
2223                         nr++;
2224                         if (nr >= nritems)
2225                                 break;
2226                 }
2227                 if (path->reada == READA_BACK && objectid) {
2228                         btrfs_node_key(node, &disk_key, nr);
2229                         if (btrfs_disk_key_objectid(&disk_key) != objectid)
2230                                 break;
2231                 }
2232                 search = btrfs_node_blockptr(node, nr);
2233                 if ((search <= target && target - search <= 65536) ||
2234                     (search > target && search - target <= 65536)) {
2235                         readahead_tree_block(fs_info, search);
2236                         nread += blocksize;
2237                 }
2238                 nscan++;
2239                 if ((nread > 65536 || nscan > 32))
2240                         break;
2241         }
2242 }
2243
2244 static noinline void reada_for_balance(struct btrfs_fs_info *fs_info,
2245                                        struct btrfs_path *path, int level)
2246 {
2247         int slot;
2248         int nritems;
2249         struct extent_buffer *parent;
2250         struct extent_buffer *eb;
2251         u64 gen;
2252         u64 block1 = 0;
2253         u64 block2 = 0;
2254
2255         parent = path->nodes[level + 1];
2256         if (!parent)
2257                 return;
2258
2259         nritems = btrfs_header_nritems(parent);
2260         slot = path->slots[level + 1];
2261
2262         if (slot > 0) {
2263                 block1 = btrfs_node_blockptr(parent, slot - 1);
2264                 gen = btrfs_node_ptr_generation(parent, slot - 1);
2265                 eb = find_extent_buffer(fs_info, block1);
2266                 /*
2267                  * if we get -eagain from btrfs_buffer_uptodate, we
2268                  * don't want to return eagain here.  That will loop
2269                  * forever
2270                  */
2271                 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
2272                         block1 = 0;
2273                 free_extent_buffer(eb);
2274         }
2275         if (slot + 1 < nritems) {
2276                 block2 = btrfs_node_blockptr(parent, slot + 1);
2277                 gen = btrfs_node_ptr_generation(parent, slot + 1);
2278                 eb = find_extent_buffer(fs_info, block2);
2279                 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
2280                         block2 = 0;
2281                 free_extent_buffer(eb);
2282         }
2283
2284         if (block1)
2285                 readahead_tree_block(fs_info, block1);
2286         if (block2)
2287                 readahead_tree_block(fs_info, block2);
2288 }
2289
2290
2291 /*
2292  * when we walk down the tree, it is usually safe to unlock the higher layers
2293  * in the tree.  The exceptions are when our path goes through slot 0, because
2294  * operations on the tree might require changing key pointers higher up in the
2295  * tree.
2296  *
2297  * callers might also have set path->keep_locks, which tells this code to keep
2298  * the lock if the path points to the last slot in the block.  This is part of
2299  * walking through the tree, and selecting the next slot in the higher block.
2300  *
2301  * lowest_unlock sets the lowest level in the tree we're allowed to unlock.  so
2302  * if lowest_unlock is 1, level 0 won't be unlocked
2303  */
2304 static noinline void unlock_up(struct btrfs_path *path, int level,
2305                                int lowest_unlock, int min_write_lock_level,
2306                                int *write_lock_level)
2307 {
2308         int i;
2309         int skip_level = level;
2310         int no_skips = 0;
2311         struct extent_buffer *t;
2312
2313         for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2314                 if (!path->nodes[i])
2315                         break;
2316                 if (!path->locks[i])
2317                         break;
2318                 if (!no_skips && path->slots[i] == 0) {
2319                         skip_level = i + 1;
2320                         continue;
2321                 }
2322                 if (!no_skips && path->keep_locks) {
2323                         u32 nritems;
2324                         t = path->nodes[i];
2325                         nritems = btrfs_header_nritems(t);
2326                         if (nritems < 1 || path->slots[i] >= nritems - 1) {
2327                                 skip_level = i + 1;
2328                                 continue;
2329                         }
2330                 }
2331                 if (skip_level < i && i >= lowest_unlock)
2332                         no_skips = 1;
2333
2334                 t = path->nodes[i];
2335                 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
2336                         btrfs_tree_unlock_rw(t, path->locks[i]);
2337                         path->locks[i] = 0;
2338                         if (write_lock_level &&
2339                             i > min_write_lock_level &&
2340                             i <= *write_lock_level) {
2341                                 *write_lock_level = i - 1;
2342                         }
2343                 }
2344         }
2345 }
2346
2347 /*
2348  * This releases any locks held in the path starting at level and
2349  * going all the way up to the root.
2350  *
2351  * btrfs_search_slot will keep the lock held on higher nodes in a few
2352  * corner cases, such as COW of the block at slot zero in the node.  This
2353  * ignores those rules, and it should only be called when there are no
2354  * more updates to be done higher up in the tree.
2355  */
2356 noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2357 {
2358         int i;
2359
2360         if (path->keep_locks)
2361                 return;
2362
2363         for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2364                 if (!path->nodes[i])
2365                         continue;
2366                 if (!path->locks[i])
2367                         continue;
2368                 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
2369                 path->locks[i] = 0;
2370         }
2371 }
2372
2373 /*
2374  * helper function for btrfs_search_slot.  The goal is to find a block
2375  * in cache without setting the path to blocking.  If we find the block
2376  * we return zero and the path is unchanged.
2377  *
2378  * If we can't find the block, we set the path blocking and do some
2379  * reada.  -EAGAIN is returned and the search must be repeated.
2380  */
2381 static int
2382 read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
2383                       struct extent_buffer **eb_ret, int level, int slot,
2384                       const struct btrfs_key *key)
2385 {
2386         struct btrfs_fs_info *fs_info = root->fs_info;
2387         u64 blocknr;
2388         u64 gen;
2389         struct extent_buffer *b = *eb_ret;
2390         struct extent_buffer *tmp;
2391         int ret;
2392
2393         blocknr = btrfs_node_blockptr(b, slot);
2394         gen = btrfs_node_ptr_generation(b, slot);
2395
2396         tmp = find_extent_buffer(fs_info, blocknr);
2397         if (tmp) {
2398                 /* first we do an atomic uptodate check */
2399                 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2400                         *eb_ret = tmp;
2401                         return 0;
2402                 }
2403
2404                 /* the pages were up to date, but we failed
2405                  * the generation number check.  Do a full
2406                  * read for the generation number that is correct.
2407                  * We must do this without dropping locks so
2408                  * we can trust our generation number
2409                  */
2410                 btrfs_set_path_blocking(p);
2411
2412                 /* now we're allowed to do a blocking uptodate check */
2413                 ret = btrfs_read_buffer(tmp, gen);
2414                 if (!ret) {
2415                         *eb_ret = tmp;
2416                         return 0;
2417                 }
2418                 free_extent_buffer(tmp);
2419                 btrfs_release_path(p);
2420                 return -EIO;
2421         }
2422
2423         /*
2424          * reduce lock contention at high levels
2425          * of the btree by dropping locks before
2426          * we read.  Don't release the lock on the current
2427          * level because we need to walk this node to figure
2428          * out which blocks to read.
2429          */
2430         btrfs_unlock_up_safe(p, level + 1);
2431         btrfs_set_path_blocking(p);
2432
2433         free_extent_buffer(tmp);
2434         if (p->reada != READA_NONE)
2435                 reada_for_search(fs_info, p, level, slot, key->objectid);
2436
2437         btrfs_release_path(p);
2438
2439         ret = -EAGAIN;
2440         tmp = read_tree_block(fs_info, blocknr, 0);
2441         if (!IS_ERR(tmp)) {
2442                 /*
2443                  * If the read above didn't mark this buffer up to date,
2444                  * it will never end up being up to date.  Set ret to EIO now
2445                  * and give up so that our caller doesn't loop forever
2446                  * on our EAGAINs.
2447                  */
2448                 if (!btrfs_buffer_uptodate(tmp, 0, 0))
2449                         ret = -EIO;
2450                 free_extent_buffer(tmp);
2451         } else {
2452                 ret = PTR_ERR(tmp);
2453         }
2454         return ret;
2455 }
2456
2457 /*
2458  * helper function for btrfs_search_slot.  This does all of the checks
2459  * for node-level blocks and does any balancing required based on
2460  * the ins_len.
2461  *
2462  * If no extra work was required, zero is returned.  If we had to
2463  * drop the path, -EAGAIN is returned and btrfs_search_slot must
2464  * start over
2465  */
2466 static int
2467 setup_nodes_for_search(struct btrfs_trans_handle *trans,
2468                        struct btrfs_root *root, struct btrfs_path *p,
2469                        struct extent_buffer *b, int level, int ins_len,
2470                        int *write_lock_level)
2471 {
2472         struct btrfs_fs_info *fs_info = root->fs_info;
2473         int ret;
2474
2475         if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2476             BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) {
2477                 int sret;
2478
2479                 if (*write_lock_level < level + 1) {
2480                         *write_lock_level = level + 1;
2481                         btrfs_release_path(p);
2482                         goto again;
2483                 }
2484
2485                 btrfs_set_path_blocking(p);
2486                 reada_for_balance(fs_info, p, level);
2487                 sret = split_node(trans, root, p, level);
2488                 btrfs_clear_path_blocking(p, NULL, 0);
2489
2490                 BUG_ON(sret > 0);
2491                 if (sret) {
2492                         ret = sret;
2493                         goto done;
2494                 }
2495                 b = p->nodes[level];
2496         } else if (ins_len < 0 && btrfs_header_nritems(b) <
2497                    BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) {
2498                 int sret;
2499
2500                 if (*write_lock_level < level + 1) {
2501                         *write_lock_level = level + 1;
2502                         btrfs_release_path(p);
2503                         goto again;
2504                 }
2505
2506                 btrfs_set_path_blocking(p);
2507                 reada_for_balance(fs_info, p, level);
2508                 sret = balance_level(trans, root, p, level);
2509                 btrfs_clear_path_blocking(p, NULL, 0);
2510
2511                 if (sret) {
2512                         ret = sret;
2513                         goto done;
2514                 }
2515                 b = p->nodes[level];
2516                 if (!b) {
2517                         btrfs_release_path(p);
2518                         goto again;
2519                 }
2520                 BUG_ON(btrfs_header_nritems(b) == 1);
2521         }
2522         return 0;
2523
2524 again:
2525         ret = -EAGAIN;
2526 done:
2527         return ret;
2528 }
2529
2530 static void key_search_validate(struct extent_buffer *b,
2531                                 const struct btrfs_key *key,
2532                                 int level)
2533 {
2534 #ifdef CONFIG_BTRFS_ASSERT
2535         struct btrfs_disk_key disk_key;
2536
2537         btrfs_cpu_key_to_disk(&disk_key, key);
2538
2539         if (level == 0)
2540                 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2541                     offsetof(struct btrfs_leaf, items[0].key),
2542                     sizeof(disk_key)));
2543         else
2544                 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2545                     offsetof(struct btrfs_node, ptrs[0].key),
2546                     sizeof(disk_key)));
2547 #endif
2548 }
2549
2550 static int key_search(struct extent_buffer *b, const struct btrfs_key *key,
2551                       int level, int *prev_cmp, int *slot)
2552 {
2553         if (*prev_cmp != 0) {
2554                 *prev_cmp = btrfs_bin_search(b, key, level, slot);
2555                 return *prev_cmp;
2556         }
2557
2558         key_search_validate(b, key, level);
2559         *slot = 0;
2560
2561         return 0;
2562 }
2563
2564 int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
2565                 u64 iobjectid, u64 ioff, u8 key_type,
2566                 struct btrfs_key *found_key)
2567 {
2568         int ret;
2569         struct btrfs_key key;
2570         struct extent_buffer *eb;
2571
2572         ASSERT(path);
2573         ASSERT(found_key);
2574
2575         key.type = key_type;
2576         key.objectid = iobjectid;
2577         key.offset = ioff;
2578
2579         ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
2580         if (ret < 0)
2581                 return ret;
2582
2583         eb = path->nodes[0];
2584         if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2585                 ret = btrfs_next_leaf(fs_root, path);
2586                 if (ret)
2587                         return ret;
2588                 eb = path->nodes[0];
2589         }
2590
2591         btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2592         if (found_key->type != key.type ||
2593                         found_key->objectid != key.objectid)
2594                 return 1;
2595
2596         return 0;
2597 }
2598
2599 /*
2600  * btrfs_search_slot - look for a key in a tree and perform necessary
2601  * modifications to preserve tree invariants.
2602  *
2603  * @trans:      Handle of transaction, used when modifying the tree
2604  * @p:          Holds all btree nodes along the search path
2605  * @root:       The root node of the tree
2606  * @key:        The key we are looking for
2607  * @ins_len:    Indicates purpose of search, for inserts it is 1, for
2608  *              deletions it's -1. 0 for plain searches
2609  * @cow:        boolean should CoW operations be performed. Must always be 1
2610  *              when modifying the tree.
2611  *
2612  * If @ins_len > 0, nodes and leaves will be split as we walk down the tree.
2613  * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible)
2614  *
2615  * If @key is found, 0 is returned and you can find the item in the leaf level
2616  * of the path (level 0)
2617  *
2618  * If @key isn't found, 1 is returned and the leaf level of the path (level 0)
2619  * points to the slot where it should be inserted
2620  *
2621  * If an error is encountered while searching the tree a negative error number
2622  * is returned
2623  */
2624 int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2625                       const struct btrfs_key *key, struct btrfs_path *p,
2626                       int ins_len, int cow)
2627 {
2628         struct btrfs_fs_info *fs_info = root->fs_info;
2629         struct extent_buffer *b;
2630         int slot;
2631         int ret;
2632         int err;
2633         int level;
2634         int lowest_unlock = 1;
2635         int root_lock;
2636         /* everything at write_lock_level or lower must be write locked */
2637         int write_lock_level = 0;
2638         u8 lowest_level = 0;
2639         int min_write_lock_level;
2640         int prev_cmp;
2641
2642         lowest_level = p->lowest_level;
2643         WARN_ON(lowest_level && ins_len > 0);
2644         WARN_ON(p->nodes[0] != NULL);
2645         BUG_ON(!cow && ins_len);
2646
2647         if (ins_len < 0) {
2648                 lowest_unlock = 2;
2649
2650                 /* when we are removing items, we might have to go up to level
2651                  * two as we update tree pointers  Make sure we keep write
2652                  * for those levels as well
2653                  */
2654                 write_lock_level = 2;
2655         } else if (ins_len > 0) {
2656                 /*
2657                  * for inserting items, make sure we have a write lock on
2658                  * level 1 so we can update keys
2659                  */
2660                 write_lock_level = 1;
2661         }
2662
2663         if (!cow)
2664                 write_lock_level = -1;
2665
2666         if (cow && (p->keep_locks || p->lowest_level))
2667                 write_lock_level = BTRFS_MAX_LEVEL;
2668
2669         min_write_lock_level = write_lock_level;
2670
2671 again:
2672         prev_cmp = -1;
2673         /*
2674          * we try very hard to do read locks on the root
2675          */
2676         root_lock = BTRFS_READ_LOCK;
2677         level = 0;
2678         if (p->search_commit_root) {
2679                 /*
2680                  * the commit roots are read only
2681                  * so we always do read locks
2682                  */
2683                 if (p->need_commit_sem)
2684                         down_read(&fs_info->commit_root_sem);
2685                 b = root->commit_root;
2686                 extent_buffer_get(b);
2687                 level = btrfs_header_level(b);
2688                 if (p->need_commit_sem)
2689                         up_read(&fs_info->commit_root_sem);
2690                 if (!p->skip_locking)
2691                         btrfs_tree_read_lock(b);
2692         } else {
2693                 if (p->skip_locking) {
2694                         b = btrfs_root_node(root);
2695                         level = btrfs_header_level(b);
2696                 } else {
2697                         /* we don't know the level of the root node
2698                          * until we actually have it read locked
2699                          */
2700                         b = btrfs_read_lock_root_node(root);
2701                         level = btrfs_header_level(b);
2702                         if (level <= write_lock_level) {
2703                                 /* whoops, must trade for write lock */
2704                                 btrfs_tree_read_unlock(b);
2705                                 free_extent_buffer(b);
2706                                 b = btrfs_lock_root_node(root);
2707                                 root_lock = BTRFS_WRITE_LOCK;
2708
2709                                 /* the level might have changed, check again */
2710                                 level = btrfs_header_level(b);
2711                         }
2712                 }
2713         }
2714         p->nodes[level] = b;
2715         if (!p->skip_locking)
2716                 p->locks[level] = root_lock;
2717
2718         while (b) {
2719                 level = btrfs_header_level(b);
2720
2721                 /*
2722                  * setup the path here so we can release it under lock
2723                  * contention with the cow code
2724                  */
2725                 if (cow) {
2726                         bool last_level = (level == (BTRFS_MAX_LEVEL - 1));
2727
2728                         /*
2729                          * if we don't really need to cow this block
2730                          * then we don't want to set the path blocking,
2731                          * so we test it here
2732                          */
2733                         if (!should_cow_block(trans, root, b)) {
2734                                 trans->dirty = true;
2735                                 goto cow_done;
2736                         }
2737
2738                         /*
2739                          * must have write locks on this node and the
2740                          * parent
2741                          */
2742                         if (level > write_lock_level ||
2743                             (level + 1 > write_lock_level &&
2744                             level + 1 < BTRFS_MAX_LEVEL &&
2745                             p->nodes[level + 1])) {
2746                                 write_lock_level = level + 1;
2747                                 btrfs_release_path(p);
2748                                 goto again;
2749                         }
2750
2751                         btrfs_set_path_blocking(p);
2752                         if (last_level)
2753                                 err = btrfs_cow_block(trans, root, b, NULL, 0,
2754                                                       &b);
2755                         else
2756                                 err = btrfs_cow_block(trans, root, b,
2757                                                       p->nodes[level + 1],
2758                                                       p->slots[level + 1], &b);
2759                         if (err) {
2760                                 ret = err;
2761                                 goto done;
2762                         }
2763                 }
2764 cow_done:
2765                 p->nodes[level] = b;
2766                 btrfs_clear_path_blocking(p, NULL, 0);
2767
2768                 /*
2769                  * we have a lock on b and as long as we aren't changing
2770                  * the tree, there is no way to for the items in b to change.
2771                  * It is safe to drop the lock on our parent before we
2772                  * go through the expensive btree search on b.
2773                  *
2774                  * If we're inserting or deleting (ins_len != 0), then we might
2775                  * be changing slot zero, which may require changing the parent.
2776                  * So, we can't drop the lock until after we know which slot
2777                  * we're operating on.
2778                  */
2779                 if (!ins_len && !p->keep_locks) {
2780                         int u = level + 1;
2781
2782                         if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2783                                 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2784                                 p->locks[u] = 0;
2785                         }
2786                 }
2787
2788                 ret = key_search(b, key, level, &prev_cmp, &slot);
2789                 if (ret < 0)
2790                         goto done;
2791
2792                 if (level != 0) {
2793                         int dec = 0;
2794                         if (ret && slot > 0) {
2795                                 dec = 1;
2796                                 slot -= 1;
2797                         }
2798                         p->slots[level] = slot;
2799                         err = setup_nodes_for_search(trans, root, p, b, level,
2800                                              ins_len, &write_lock_level);
2801                         if (err == -EAGAIN)
2802                                 goto again;
2803                         if (err) {
2804                                 ret = err;
2805                                 goto done;
2806                         }
2807                         b = p->nodes[level];
2808                         slot = p->slots[level];
2809
2810                         /*
2811                          * slot 0 is special, if we change the key
2812                          * we have to update the parent pointer
2813                          * which means we must have a write lock
2814                          * on the parent
2815                          */
2816                         if (slot == 0 && ins_len &&
2817                             write_lock_level < level + 1) {
2818                                 write_lock_level = level + 1;
2819                                 btrfs_release_path(p);
2820                                 goto again;
2821                         }
2822
2823                         unlock_up(p, level, lowest_unlock,
2824                                   min_write_lock_level, &write_lock_level);
2825
2826                         if (level == lowest_level) {
2827                                 if (dec)
2828                                         p->slots[level]++;
2829                                 goto done;
2830                         }
2831
2832                         err = read_block_for_search(root, p, &b, level,
2833                                                     slot, key);
2834                         if (err == -EAGAIN)
2835                                 goto again;
2836                         if (err) {
2837                                 ret = err;
2838                                 goto done;
2839                         }
2840
2841                         if (!p->skip_locking) {
2842                                 level = btrfs_header_level(b);
2843                                 if (level <= write_lock_level) {
2844                                         err = btrfs_try_tree_write_lock(b);
2845                                         if (!err) {
2846                                                 btrfs_set_path_blocking(p);
2847                                                 btrfs_tree_lock(b);
2848                                                 btrfs_clear_path_blocking(p, b,
2849                                                                   BTRFS_WRITE_LOCK);
2850                                         }
2851                                         p->locks[level] = BTRFS_WRITE_LOCK;
2852                                 } else {
2853                                         err = btrfs_tree_read_lock_atomic(b);
2854                                         if (!err) {
2855                                                 btrfs_set_path_blocking(p);
2856                                                 btrfs_tree_read_lock(b);
2857                                                 btrfs_clear_path_blocking(p, b,
2858                                                                   BTRFS_READ_LOCK);
2859                                         }
2860                                         p->locks[level] = BTRFS_READ_LOCK;
2861                                 }
2862                                 p->nodes[level] = b;
2863                         }
2864                 } else {
2865                         p->slots[level] = slot;
2866                         if (ins_len > 0 &&
2867                             btrfs_leaf_free_space(fs_info, b) < ins_len) {
2868                                 if (write_lock_level < 1) {
2869                                         write_lock_level = 1;
2870                                         btrfs_release_path(p);
2871                                         goto again;
2872                                 }
2873
2874                                 btrfs_set_path_blocking(p);
2875                                 err = split_leaf(trans, root, key,
2876                                                  p, ins_len, ret == 0);
2877                                 btrfs_clear_path_blocking(p, NULL, 0);
2878
2879                                 BUG_ON(err > 0);
2880                                 if (err) {
2881                                         ret = err;
2882                                         goto done;
2883                                 }
2884                         }
2885                         if (!p->search_for_split)
2886                                 unlock_up(p, level, lowest_unlock,
2887                                           min_write_lock_level, &write_lock_level);
2888                         goto done;
2889                 }
2890         }
2891         ret = 1;
2892 done:
2893         /*
2894          * we don't really know what they plan on doing with the path
2895          * from here on, so for now just mark it as blocking
2896          */
2897         if (!p->leave_spinning)
2898                 btrfs_set_path_blocking(p);
2899         if (ret < 0 && !p->skip_release_on_error)
2900                 btrfs_release_path(p);
2901         return ret;
2902 }
2903
2904 /*
2905  * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2906  * current state of the tree together with the operations recorded in the tree
2907  * modification log to search for the key in a previous version of this tree, as
2908  * denoted by the time_seq parameter.
2909  *
2910  * Naturally, there is no support for insert, delete or cow operations.
2911  *
2912  * The resulting path and return value will be set up as if we called
2913  * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2914  */
2915 int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
2916                           struct btrfs_path *p, u64 time_seq)
2917 {
2918         struct btrfs_fs_info *fs_info = root->fs_info;
2919         struct extent_buffer *b;
2920         int slot;
2921         int ret;
2922         int err;
2923         int level;
2924         int lowest_unlock = 1;
2925         u8 lowest_level = 0;
2926         int prev_cmp = -1;
2927
2928         lowest_level = p->lowest_level;
2929         WARN_ON(p->nodes[0] != NULL);
2930
2931         if (p->search_commit_root) {
2932                 BUG_ON(time_seq);
2933                 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2934         }
2935
2936 again:
2937         b = get_old_root(root, time_seq);
2938         level = btrfs_header_level(b);
2939         p->locks[level] = BTRFS_READ_LOCK;
2940
2941         while (b) {
2942                 level = btrfs_header_level(b);
2943                 p->nodes[level] = b;
2944                 btrfs_clear_path_blocking(p, NULL, 0);
2945
2946                 /*
2947                  * we have a lock on b and as long as we aren't changing
2948                  * the tree, there is no way to for the items in b to change.
2949                  * It is safe to drop the lock on our parent before we
2950                  * go through the expensive btree search on b.
2951                  */
2952                 btrfs_unlock_up_safe(p, level + 1);
2953
2954                 /*
2955                  * Since we can unwind ebs we want to do a real search every
2956                  * time.
2957                  */
2958                 prev_cmp = -1;
2959                 ret = key_search(b, key, level, &prev_cmp, &slot);
2960
2961                 if (level != 0) {
2962                         int dec = 0;
2963                         if (ret && slot > 0) {
2964                                 dec = 1;
2965                                 slot -= 1;
2966                         }
2967                         p->slots[level] = slot;
2968                         unlock_up(p, level, lowest_unlock, 0, NULL);
2969
2970                         if (level == lowest_level) {
2971                                 if (dec)
2972                                         p->slots[level]++;
2973                                 goto done;
2974                         }
2975
2976                         err = read_block_for_search(root, p, &b, level,
2977                                                     slot, key);
2978                         if (err == -EAGAIN)
2979                                 goto again;
2980                         if (err) {
2981                                 ret = err;
2982                                 goto done;
2983                         }
2984
2985                         level = btrfs_header_level(b);
2986                         err = btrfs_tree_read_lock_atomic(b);
2987                         if (!err) {
2988                                 btrfs_set_path_blocking(p);
2989                                 btrfs_tree_read_lock(b);
2990                                 btrfs_clear_path_blocking(p, b,
2991                                                           BTRFS_READ_LOCK);
2992                         }
2993                         b = tree_mod_log_rewind(fs_info, p, b, time_seq);
2994                         if (!b) {
2995                                 ret = -ENOMEM;
2996                                 goto done;
2997                         }
2998                         p->locks[level] = BTRFS_READ_LOCK;
2999                         p->nodes[level] = b;
3000                 } else {
3001                         p->slots[level] = slot;
3002                         unlock_up(p, level, lowest_unlock, 0, NULL);
3003                         goto done;
3004                 }
3005         }
3006         ret = 1;
3007 done:
3008         if (!p->leave_spinning)
3009                 btrfs_set_path_blocking(p);
3010         if (ret < 0)
3011                 btrfs_release_path(p);
3012
3013         return ret;
3014 }
3015
3016 /*
3017  * helper to use instead of search slot if no exact match is needed but
3018  * instead the next or previous item should be returned.
3019  * When find_higher is true, the next higher item is returned, the next lower
3020  * otherwise.
3021  * When return_any and find_higher are both true, and no higher item is found,
3022  * return the next lower instead.
3023  * When return_any is true and find_higher is false, and no lower item is found,
3024  * return the next higher instead.
3025  * It returns 0 if any item is found, 1 if none is found (tree empty), and
3026  * < 0 on error
3027  */
3028 int btrfs_search_slot_for_read(struct btrfs_root *root,
3029                                const struct btrfs_key *key,
3030                                struct btrfs_path *p, int find_higher,
3031                                int return_any)
3032 {
3033         int ret;
3034         struct extent_buffer *leaf;
3035
3036 again:
3037         ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3038         if (ret <= 0)
3039                 return ret;
3040         /*
3041          * a return value of 1 means the path is at the position where the
3042          * item should be inserted. Normally this is the next bigger item,
3043          * but in case the previous item is the last in a leaf, path points
3044          * to the first free slot in the previous leaf, i.e. at an invalid
3045          * item.
3046          */
3047         leaf = p->nodes[0];
3048
3049         if (find_higher) {
3050                 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3051                         ret = btrfs_next_leaf(root, p);
3052                         if (ret <= 0)
3053                                 return ret;
3054                         if (!return_any)
3055                                 return 1;
3056                         /*
3057                          * no higher item found, return the next
3058                          * lower instead
3059                          */
3060                         return_any = 0;
3061                         find_higher = 0;
3062                         btrfs_release_path(p);
3063                         goto again;
3064                 }
3065         } else {
3066                 if (p->slots[0] == 0) {
3067                         ret = btrfs_prev_leaf(root, p);
3068                         if (ret < 0)
3069                                 return ret;
3070                         if (!ret) {
3071                                 leaf = p->nodes[0];
3072                                 if (p->slots[0] == btrfs_header_nritems(leaf))
3073                                         p->slots[0]--;
3074                                 return 0;
3075                         }
3076                         if (!return_any)
3077                                 return 1;
3078                         /*
3079                          * no lower item found, return the next
3080                          * higher instead
3081                          */
3082                         return_any = 0;
3083                         find_higher = 1;
3084                         btrfs_release_path(p);
3085                         goto again;
3086                 } else {
3087                         --p->slots[0];
3088                 }
3089         }
3090         return 0;
3091 }
3092
3093 /*
3094  * adjust the pointers going up the tree, starting at level
3095  * making sure the right key of each node is points to 'key'.
3096  * This is used after shifting pointers to the left, so it stops
3097  * fixing up pointers when a given leaf/node is not in slot 0 of the
3098  * higher levels
3099  *
3100  */
3101 static void fixup_low_keys(struct btrfs_fs_info *fs_info,
3102                            struct btrfs_path *path,
3103                            struct btrfs_disk_key *key, int level)
3104 {
3105         int i;
3106         struct extent_buffer *t;
3107         int ret;
3108
3109         for (i = level; i < BTRFS_MAX_LEVEL; i++) {
3110                 int tslot = path->slots[i];
3111
3112                 if (!path->nodes[i])
3113                         break;
3114                 t = path->nodes[i];
3115                 ret = tree_mod_log_insert_key(t, tslot, MOD_LOG_KEY_REPLACE,
3116                                 GFP_ATOMIC);
3117                 BUG_ON(ret < 0);
3118                 btrfs_set_node_key(t, key, tslot);
3119                 btrfs_mark_buffer_dirty(path->nodes[i]);
3120                 if (tslot != 0)
3121                         break;
3122         }
3123 }
3124
3125 /*
3126  * update item key.
3127  *
3128  * This function isn't completely safe. It's the caller's responsibility
3129  * that the new key won't break the order
3130  */
3131 void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
3132                              struct btrfs_path *path,
3133                              const struct btrfs_key *new_key)
3134 {
3135         struct btrfs_disk_key disk_key;
3136         struct extent_buffer *eb;
3137         int slot;
3138
3139         eb = path->nodes[0];
3140         slot = path->slots[0];
3141         if (slot > 0) {
3142                 btrfs_item_key(eb, &disk_key, slot - 1);
3143                 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
3144         }
3145         if (slot < btrfs_header_nritems(eb) - 1) {
3146                 btrfs_item_key(eb, &disk_key, slot + 1);
3147                 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
3148         }
3149
3150         btrfs_cpu_key_to_disk(&disk_key, new_key);
3151         btrfs_set_item_key(eb, &disk_key, slot);
3152         btrfs_mark_buffer_dirty(eb);
3153         if (slot == 0)
3154                 fixup_low_keys(fs_info, path, &disk_key, 1);
3155 }
3156
3157 /*
3158  * try to push data from one node into the next node left in the
3159  * tree.
3160  *
3161  * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3162  * error, and > 0 if there was no room in the left hand block.
3163  */
3164 static int push_node_left(struct btrfs_trans_handle *trans,
3165                           struct btrfs_fs_info *fs_info,
3166                           struct extent_buffer *dst,
3167                           struct extent_buffer *src, int empty)
3168 {
3169         int push_items = 0;
3170         int src_nritems;
3171         int dst_nritems;
3172         int ret = 0;
3173
3174         src_nritems = btrfs_header_nritems(src);
3175         dst_nritems = btrfs_header_nritems(dst);
3176         push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
3177         WARN_ON(btrfs_header_generation(src) != trans->transid);
3178         WARN_ON(btrfs_header_generation(dst) != trans->transid);
3179
3180         if (!empty && src_nritems <= 8)
3181                 return 1;
3182
3183         if (push_items <= 0)
3184                 return 1;
3185
3186         if (empty) {
3187                 push_items = min(src_nritems, push_items);
3188                 if (push_items < src_nritems) {
3189                         /* leave at least 8 pointers in the node if
3190                          * we aren't going to empty it
3191                          */
3192                         if (src_nritems - push_items < 8) {
3193                                 if (push_items <= 8)
3194                                         return 1;
3195                                 push_items -= 8;
3196                         }
3197                 }
3198         } else
3199                 push_items = min(src_nritems - 8, push_items);
3200
3201         ret = tree_mod_log_eb_copy(fs_info, dst, src, dst_nritems, 0,
3202                                    push_items);
3203         if (ret) {
3204                 btrfs_abort_transaction(trans, ret);
3205                 return ret;
3206         }
3207         copy_extent_buffer(dst, src,
3208                            btrfs_node_key_ptr_offset(dst_nritems),
3209                            btrfs_node_key_ptr_offset(0),
3210                            push_items * sizeof(struct btrfs_key_ptr));
3211
3212         if (push_items < src_nritems) {
3213                 /*
3214                  * Don't call tree_mod_log_insert_move here, key removal was
3215                  * already fully logged by tree_mod_log_eb_copy above.
3216                  */
3217                 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3218                                       btrfs_node_key_ptr_offset(push_items),
3219                                       (src_nritems - push_items) *
3220                                       sizeof(struct btrfs_key_ptr));
3221         }
3222         btrfs_set_header_nritems(src, src_nritems - push_items);
3223         btrfs_set_header_nritems(dst, dst_nritems + push_items);
3224         btrfs_mark_buffer_dirty(src);
3225         btrfs_mark_buffer_dirty(dst);
3226
3227         return ret;
3228 }
3229
3230 /*
3231  * try to push data from one node into the next node right in the
3232  * tree.
3233  *
3234  * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3235  * error, and > 0 if there was no room in the right hand block.
3236  *
3237  * this will  only push up to 1/2 the contents of the left node over
3238  */
3239 static int balance_node_right(struct btrfs_trans_handle *trans,
3240                               struct btrfs_fs_info *fs_info,
3241                               struct extent_buffer *dst,
3242                               struct extent_buffer *src)
3243 {
3244         int push_items = 0;
3245         int max_push;
3246         int src_nritems;
3247         int dst_nritems;
3248         int ret = 0;
3249
3250         WARN_ON(btrfs_header_generation(src) != trans->transid);
3251         WARN_ON(btrfs_header_generation(dst) != trans->transid);
3252
3253         src_nritems = btrfs_header_nritems(src);
3254         dst_nritems = btrfs_header_nritems(dst);
3255         push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
3256         if (push_items <= 0)
3257                 return 1;
3258
3259         if (src_nritems < 4)
3260                 return 1;
3261
3262         max_push = src_nritems / 2 + 1;
3263         /* don't try to empty the node */
3264         if (max_push >= src_nritems)
3265                 return 1;
3266
3267         if (max_push < push_items)
3268                 push_items = max_push;
3269
3270         ret = tree_mod_log_insert_move(dst, push_items, 0, dst_nritems);
3271         BUG_ON(ret < 0);
3272         memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3273                                       btrfs_node_key_ptr_offset(0),
3274                                       (dst_nritems) *
3275                                       sizeof(struct btrfs_key_ptr));
3276
3277         ret = tree_mod_log_eb_copy(fs_info, dst, src, 0,
3278                                    src_nritems - push_items, push_items);
3279         if (ret) {
3280                 btrfs_abort_transaction(trans, ret);
3281                 return ret;
3282         }
3283         copy_extent_buffer(dst, src,
3284                            btrfs_node_key_ptr_offset(0),
3285                            btrfs_node_key_ptr_offset(src_nritems - push_items),
3286                            push_items * sizeof(struct btrfs_key_ptr));
3287
3288         btrfs_set_header_nritems(src, src_nritems - push_items);
3289         btrfs_set_header_nritems(dst, dst_nritems + push_items);
3290
3291         btrfs_mark_buffer_dirty(src);
3292         btrfs_mark_buffer_dirty(dst);
3293
3294         return ret;
3295 }
3296
3297 /*
3298  * helper function to insert a new root level in the tree.
3299  * A new node is allocated, and a single item is inserted to
3300  * point to the existing root
3301  *
3302  * returns zero on success or < 0 on failure.
3303  */
3304 static noinline int insert_new_root(struct btrfs_trans_handle *trans,
3305                            struct btrfs_root *root,
3306                            struct btrfs_path *path, int level)
3307 {
3308         struct btrfs_fs_info *fs_info = root->fs_info;
3309         u64 lower_gen;
3310         struct extent_buffer *lower;
3311         struct extent_buffer *c;
3312         struct extent_buffer *old;
3313         struct btrfs_disk_key lower_key;
3314         int ret;
3315
3316         BUG_ON(path->nodes[level]);
3317         BUG_ON(path->nodes[level-1] != root->node);
3318
3319         lower = path->nodes[level-1];
3320         if (level == 1)
3321                 btrfs_item_key(lower, &lower_key, 0);
3322         else
3323                 btrfs_node_key(lower, &lower_key, 0);
3324
3325         c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3326                                    &lower_key, level, root->node->start, 0);
3327         if (IS_ERR(c))
3328                 return PTR_ERR(c);
3329
3330         root_add_used(root, fs_info->nodesize);
3331
3332         memzero_extent_buffer(c, 0, sizeof(struct btrfs_header));
3333         btrfs_set_header_nritems(c, 1);
3334         btrfs_set_header_level(c, level);
3335         btrfs_set_header_bytenr(c, c->start);
3336         btrfs_set_header_generation(c, trans->transid);
3337         btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
3338         btrfs_set_header_owner(c, root->root_key.objectid);
3339
3340         write_extent_buffer_fsid(c, fs_info->fsid);
3341         write_extent_buffer_chunk_tree_uuid(c, fs_info->chunk_tree_uuid);
3342
3343         btrfs_set_node_key(c, &lower_key, 0);
3344         btrfs_set_node_blockptr(c, 0, lower->start);
3345         lower_gen = btrfs_header_generation(lower);
3346         WARN_ON(lower_gen != trans->transid);
3347
3348         btrfs_set_node_ptr_generation(c, 0, lower_gen);
3349
3350         btrfs_mark_buffer_dirty(c);
3351
3352         old = root->node;
3353         ret = tree_mod_log_insert_root(root->node, c, 0);
3354         BUG_ON(ret < 0);
3355         rcu_assign_pointer(root->node, c);
3356
3357         /* the super has an extra ref to root->node */
3358         free_extent_buffer(old);
3359
3360         add_root_to_dirty_list(root);
3361         extent_buffer_get(c);
3362         path->nodes[level] = c;
3363         path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
3364         path->slots[level] = 0;
3365         return 0;
3366 }
3367
3368 /*
3369  * worker function to insert a single pointer in a node.
3370  * the node should have enough room for the pointer already
3371  *
3372  * slot and level indicate where you want the key to go, and
3373  * blocknr is the block the key points to.
3374  */
3375 static void insert_ptr(struct btrfs_trans_handle *trans,
3376                        struct btrfs_fs_info *fs_info, struct btrfs_path *path,
3377                        struct btrfs_disk_key *key, u64 bytenr,
3378                        int slot, int level)
3379 {
3380         struct extent_buffer *lower;
3381         int nritems;
3382         int ret;
3383
3384         BUG_ON(!path->nodes[level]);
3385         btrfs_assert_tree_locked(path->nodes[level]);
3386         lower = path->nodes[level];
3387         nritems = btrfs_header_nritems(lower);
3388         BUG_ON(slot > nritems);
3389         BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(fs_info));
3390         if (slot != nritems) {
3391                 if (level) {
3392                         ret = tree_mod_log_insert_move(lower, slot + 1, slot,
3393                                         nritems - slot);
3394                         BUG_ON(ret < 0);
3395                 }
3396                 memmove_extent_buffer(lower,
3397                               btrfs_node_key_ptr_offset(slot + 1),
3398                               btrfs_node_key_ptr_offset(slot),
3399                               (nritems - slot) * sizeof(struct btrfs_key_ptr));
3400         }
3401         if (level) {
3402                 ret = tree_mod_log_insert_key(lower, slot, MOD_LOG_KEY_ADD,
3403                                 GFP_NOFS);
3404                 BUG_ON(ret < 0);
3405         }
3406         btrfs_set_node_key(lower, key, slot);
3407         btrfs_set_node_blockptr(lower, slot, bytenr);
3408         WARN_ON(trans->transid == 0);
3409         btrfs_set_node_ptr_generation(lower, slot, trans->transid);
3410         btrfs_set_header_nritems(lower, nritems + 1);
3411         btrfs_mark_buffer_dirty(lower);
3412 }
3413
3414 /*
3415  * split the node at the specified level in path in two.
3416  * The path is corrected to point to the appropriate node after the split
3417  *
3418  * Before splitting this tries to make some room in the node by pushing
3419  * left and right, if either one works, it returns right away.
3420  *
3421  * returns 0 on success and < 0 on failure
3422  */
3423 static noinline int split_node(struct btrfs_trans_handle *trans,
3424                                struct btrfs_root *root,
3425                                struct btrfs_path *path, int level)
3426 {
3427         struct btrfs_fs_info *fs_info = root->fs_info;
3428         struct extent_buffer *c;
3429         struct extent_buffer *split;
3430         struct btrfs_disk_key disk_key;
3431         int mid;
3432         int ret;
3433         u32 c_nritems;
3434
3435         c = path->nodes[level];
3436         WARN_ON(btrfs_header_generation(c) != trans->transid);
3437         if (c == root->node) {
3438                 /*
3439                  * trying to split the root, lets make a new one
3440                  *
3441                  * tree mod log: We don't log_removal old root in
3442                  * insert_new_root, because that root buffer will be kept as a
3443                  * normal node. We are going to log removal of half of the
3444                  * elements below with tree_mod_log_eb_copy. We're holding a
3445                  * tree lock on the buffer, which is why we cannot race with
3446                  * other tree_mod_log users.
3447                  */
3448                 ret = insert_new_root(trans, root, path, level + 1);
3449                 if (ret)
3450                         return ret;
3451         } else {
3452                 ret = push_nodes_for_insert(trans, root, path, level);
3453                 c = path->nodes[level];
3454                 if (!ret && btrfs_header_nritems(c) <
3455                     BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3)
3456                         return 0;
3457                 if (ret < 0)
3458                         return ret;
3459         }
3460
3461         c_nritems = btrfs_header_nritems(c);
3462         mid = (c_nritems + 1) / 2;
3463         btrfs_node_key(c, &disk_key, mid);
3464
3465         split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3466                         &disk_key, level, c->start, 0);
3467         if (IS_ERR(split))
3468                 return PTR_ERR(split);
3469
3470         root_add_used(root, fs_info->nodesize);
3471
3472         memzero_extent_buffer(split, 0, sizeof(struct btrfs_header));
3473         btrfs_set_header_level(split, btrfs_header_level(c));
3474         btrfs_set_header_bytenr(split, split->start);
3475         btrfs_set_header_generation(split, trans->transid);
3476         btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
3477         btrfs_set_header_owner(split, root->root_key.objectid);
3478         write_extent_buffer_fsid(split, fs_info->fsid);
3479         write_extent_buffer_chunk_tree_uuid(split, fs_info->chunk_tree_uuid);
3480
3481         ret = tree_mod_log_eb_copy(fs_info, split, c, 0, mid, c_nritems - mid);
3482         if (ret) {
3483                 btrfs_abort_transaction(trans, ret);
3484                 return ret;
3485         }
3486         copy_extent_buffer(split, c,
3487                            btrfs_node_key_ptr_offset(0),
3488                            btrfs_node_key_ptr_offset(mid),
3489                            (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3490         btrfs_set_header_nritems(split, c_nritems - mid);
3491         btrfs_set_header_nritems(c, mid);
3492         ret = 0;
3493
3494         btrfs_mark_buffer_dirty(c);
3495         btrfs_mark_buffer_dirty(split);
3496
3497         insert_ptr(trans, fs_info, path, &disk_key, split->start,
3498                    path->slots[level + 1] + 1, level + 1);
3499
3500         if (path->slots[level] >= mid) {
3501                 path->slots[level] -= mid;
3502                 btrfs_tree_unlock(c);
3503                 free_extent_buffer(c);
3504                 path->nodes[level] = split;
3505                 path->slots[level + 1] += 1;
3506         } else {
3507                 btrfs_tree_unlock(split);
3508                 free_extent_buffer(split);
3509         }
3510         return ret;
3511 }
3512
3513 /*
3514  * how many bytes are required to store the items in a leaf.  start
3515  * and nr indicate which items in the leaf to check.  This totals up the
3516  * space used both by the item structs and the item data
3517  */
3518 static int leaf_space_used(struct extent_buffer *l, int start, int nr)
3519 {
3520         struct btrfs_item *start_item;
3521         struct btrfs_item *end_item;
3522         struct btrfs_map_token token;
3523         int data_len;
3524         int nritems = btrfs_header_nritems(l);
3525         int end = min(nritems, start + nr) - 1;
3526
3527         if (!nr)
3528                 return 0;
3529         btrfs_init_map_token(&token);
3530         start_item = btrfs_item_nr(start);
3531         end_item = btrfs_item_nr(end);
3532         data_len = btrfs_token_item_offset(l, start_item, &token) +
3533                 btrfs_token_item_size(l, start_item, &token);
3534         data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
3535         data_len += sizeof(struct btrfs_item) * nr;
3536         WARN_ON(data_len < 0);
3537         return data_len;
3538 }
3539
3540 /*
3541  * The space between the end of the leaf items and
3542  * the start of the leaf data.  IOW, how much room
3543  * the leaf has left for both items and data
3544  */
3545 noinline int btrfs_leaf_free_space(struct btrfs_fs_info *fs_info,
3546                                    struct extent_buffer *leaf)
3547 {
3548         int nritems = btrfs_header_nritems(leaf);
3549         int ret;
3550
3551         ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems);
3552         if (ret < 0) {
3553                 btrfs_crit(fs_info,
3554                            "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
3555                            ret,
3556                            (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info),
3557                            leaf_space_used(leaf, 0, nritems), nritems);
3558         }
3559         return ret;
3560 }
3561
3562 /*
3563  * min slot controls the lowest index we're willing to push to the
3564  * right.  We'll push up to and including min_slot, but no lower
3565  */
3566 static noinline int __push_leaf_right(struct btrfs_fs_info *fs_info,
3567                                       struct btrfs_path *path,
3568                                       int data_size, int empty,
3569                                       struct extent_buffer *right,
3570                                       int free_space, u32 left_nritems,
3571                                       u32 min_slot)
3572 {
3573         struct extent_buffer *left = path->nodes[0];
3574         struct extent_buffer *upper = path->nodes[1];
3575         struct btrfs_map_token token;
3576         struct btrfs_disk_key disk_key;
3577         int slot;
3578         u32 i;
3579         int push_space = 0;
3580         int push_items = 0;
3581         struct btrfs_item *item;
3582         u32 nr;
3583         u32 right_nritems;
3584         u32 data_end;
3585         u32 this_item_size;
3586
3587         btrfs_init_map_token(&token);
3588
3589         if (empty)
3590                 nr = 0;
3591         else
3592                 nr = max_t(u32, 1, min_slot);
3593
3594         if (path->slots[0] >= left_nritems)
3595                 push_space += data_size;
3596
3597         slot = path->slots[1];
3598         i = left_nritems - 1;
3599         while (i >= nr) {
3600                 item = btrfs_item_nr(i);
3601
3602                 if (!empty && push_items > 0) {
3603                         if (path->slots[0] > i)
3604                                 break;
3605                         if (path->slots[0] == i) {
3606                                 int space = btrfs_leaf_free_space(fs_info, left);
3607                                 if (space + push_space * 2 > free_space)
3608                                         break;
3609                         }
3610                 }
3611
3612                 if (path->slots[0] == i)
3613                         push_space += data_size;
3614
3615                 this_item_size = btrfs_item_size(left, item);
3616                 if (this_item_size + sizeof(*item) + push_space > free_space)
3617                         break;
3618
3619                 push_items++;
3620                 push_space += this_item_size + sizeof(*item);
3621                 if (i == 0)
3622                         break;
3623                 i--;
3624         }
3625
3626         if (push_items == 0)
3627                 goto out_unlock;
3628
3629         WARN_ON(!empty && push_items == left_nritems);
3630
3631         /* push left to right */
3632         right_nritems = btrfs_header_nritems(right);
3633
3634         push_space = btrfs_item_end_nr(left, left_nritems - push_items);
3635         push_space -= leaf_data_end(fs_info, left);
3636
3637         /* make room in the right data area */
3638         data_end = leaf_data_end(fs_info, right);
3639         memmove_extent_buffer(right,
3640                               BTRFS_LEAF_DATA_OFFSET + data_end - push_space,
3641                               BTRFS_LEAF_DATA_OFFSET + data_end,
3642                               BTRFS_LEAF_DATA_SIZE(fs_info) - data_end);
3643
3644         /* copy from the left data area */
3645         copy_extent_buffer(right, left, BTRFS_LEAF_DATA_OFFSET +
3646                      BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
3647                      BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, left),
3648                      push_space);
3649
3650         memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3651                               btrfs_item_nr_offset(0),
3652                               right_nritems * sizeof(struct btrfs_item));
3653
3654         /* copy the items from left to right */
3655         copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3656                    btrfs_item_nr_offset(left_nritems - push_items),
3657                    push_items * sizeof(struct btrfs_item));
3658
3659         /* update the item pointers */
3660         right_nritems += push_items;
3661         btrfs_set_header_nritems(right, right_nritems);
3662         push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
3663         for (i = 0; i < right_nritems; i++) {
3664                 item = btrfs_item_nr(i);
3665                 push_space -= btrfs_token_item_size(right, item, &token);
3666                 btrfs_set_token_item_offset(right, item, push_space, &token);
3667         }
3668
3669         left_nritems -= push_items;
3670         btrfs_set_header_nritems(left, left_nritems);
3671
3672         if (left_nritems)
3673                 btrfs_mark_buffer_dirty(left);
3674         else
3675                 clean_tree_block(fs_info, left);
3676
3677         btrfs_mark_buffer_dirty(right);
3678
3679         btrfs_item_key(right, &disk_key, 0);
3680         btrfs_set_node_key(upper, &disk_key, slot + 1);
3681         btrfs_mark_buffer_dirty(upper);
3682
3683         /* then fixup the leaf pointer in the path */
3684         if (path->slots[0] >= left_nritems) {
3685                 path->slots[0] -= left_nritems;
3686                 if (btrfs_header_nritems(path->nodes[0]) == 0)
3687                         clean_tree_block(fs_info, path->nodes[0]);
3688                 btrfs_tree_unlock(path->nodes[0]);
3689                 free_extent_buffer(path->nodes[0]);
3690                 path->nodes[0] = right;
3691                 path->slots[1] += 1;
3692         } else {
3693                 btrfs_tree_unlock(right);
3694                 free_extent_buffer(right);
3695         }
3696         return 0;
3697
3698 out_unlock:
3699         btrfs_tree_unlock(right);
3700         free_extent_buffer(right);
3701         return 1;
3702 }
3703
3704 /*
3705  * push some data in the path leaf to the right, trying to free up at
3706  * least data_size bytes.  returns zero if the push worked, nonzero otherwise
3707  *
3708  * returns 1 if the push failed because the other node didn't have enough
3709  * room, 0 if everything worked out and < 0 if there were major errors.
3710  *
3711  * this will push starting from min_slot to the end of the leaf.  It won't
3712  * push any slot lower than min_slot
3713  */
3714 static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
3715                            *root, struct btrfs_path *path,
3716                            int min_data_size, int data_size,
3717                            int empty, u32 min_slot)
3718 {
3719         struct btrfs_fs_info *fs_info = root->fs_info;
3720         struct extent_buffer *left = path->nodes[0];
3721         struct extent_buffer *right;
3722         struct extent_buffer *upper;
3723         int slot;
3724         int free_space;
3725         u32 left_nritems;
3726         int ret;
3727
3728         if (!path->nodes[1])
3729                 return 1;
3730
3731         slot = path->slots[1];
3732         upper = path->nodes[1];
3733         if (slot >= btrfs_header_nritems(upper) - 1)
3734                 return 1;
3735
3736         btrfs_assert_tree_locked(path->nodes[1]);
3737
3738         right = read_node_slot(fs_info, upper, slot + 1);
3739         /*
3740          * slot + 1 is not valid or we fail to read the right node,
3741          * no big deal, just return.
3742          */
3743         if (IS_ERR(right))
3744                 return 1;
3745
3746         btrfs_tree_lock(right);
3747         btrfs_set_lock_blocking(right);
3748
3749         free_space = btrfs_leaf_free_space(fs_info, right);
3750         if (free_space < data_size)
3751                 goto out_unlock;
3752
3753         /* cow and double check */
3754         ret = btrfs_cow_block(trans, root, right, upper,
3755                               slot + 1, &right);
3756         if (ret)
3757                 goto out_unlock;
3758
3759         free_space = btrfs_leaf_free_space(fs_info, right);
3760         if (free_space < data_size)
3761                 goto out_unlock;
3762
3763         left_nritems = btrfs_header_nritems(left);
3764         if (left_nritems == 0)
3765                 goto out_unlock;
3766
3767         if (path->slots[0] == left_nritems && !empty) {
3768                 /* Key greater than all keys in the leaf, right neighbor has
3769                  * enough room for it and we're not emptying our leaf to delete
3770                  * it, therefore use right neighbor to insert the new item and
3771                  * no need to touch/dirty our left leaft. */
3772                 btrfs_tree_unlock(left);
3773                 free_extent_buffer(left);
3774                 path->nodes[0] = right;
3775                 path->slots[0] = 0;
3776                 path->slots[1]++;
3777                 return 0;
3778         }
3779
3780         return __push_leaf_right(fs_info, path, min_data_size, empty,
3781                                 right, free_space, left_nritems, min_slot);
3782 out_unlock:
3783         btrfs_tree_unlock(right);
3784         free_extent_buffer(right);
3785         return 1;
3786 }
3787
3788 /*
3789  * push some data in the path leaf to the left, trying to free up at
3790  * least data_size bytes.  returns zero if the push worked, nonzero otherwise
3791  *
3792  * max_slot can put a limit on how far into the leaf we'll push items.  The
3793  * item at 'max_slot' won't be touched.  Use (u32)-1 to make us do all the
3794  * items
3795  */
3796 static noinline int __push_leaf_left(struct btrfs_fs_info *fs_info,
3797                                      struct btrfs_path *path, int data_size,
3798                                      int empty, struct extent_buffer *left,
3799                                      int free_space, u32 right_nritems,
3800                                      u32 max_slot)
3801 {
3802         struct btrfs_disk_key disk_key;
3803         struct extent_buffer *right = path->nodes[0];
3804         int i;
3805         int push_space = 0;
3806         int push_items = 0;
3807         struct btrfs_item *item;
3808         u32 old_left_nritems;
3809         u32 nr;
3810         int ret = 0;
3811         u32 this_item_size;
3812         u32 old_left_item_size;
3813         struct btrfs_map_token token;
3814
3815         btrfs_init_map_token(&token);
3816
3817         if (empty)
3818                 nr = min(right_nritems, max_slot);
3819         else
3820                 nr = min(right_nritems - 1, max_slot);
3821
3822         for (i = 0; i < nr; i++) {
3823                 item = btrfs_item_nr(i);
3824
3825                 if (!empty && push_items > 0) {
3826                         if (path->slots[0] < i)
3827                                 break;
3828                         if (path->slots[0] == i) {
3829                                 int space = btrfs_leaf_free_space(fs_info, right);
3830                                 if (space + push_space * 2 > free_space)
3831                                         break;
3832                         }
3833                 }
3834
3835                 if (path->slots[0] == i)
3836                         push_space += data_size;
3837
3838                 this_item_size = btrfs_item_size(right, item);
3839                 if (this_item_size + sizeof(*item) + push_space > free_space)
3840                         break;
3841
3842                 push_items++;
3843                 push_space += this_item_size + sizeof(*item);
3844         }
3845
3846         if (push_items == 0) {
3847                 ret = 1;
3848                 goto out;
3849         }
3850         WARN_ON(!empty && push_items == btrfs_header_nritems(right));
3851
3852         /* push data from right to left */
3853         copy_extent_buffer(left, right,
3854                            btrfs_item_nr_offset(btrfs_header_nritems(left)),
3855                            btrfs_item_nr_offset(0),
3856                            push_items * sizeof(struct btrfs_item));
3857
3858         push_space = BTRFS_LEAF_DATA_SIZE(fs_info) -
3859                      btrfs_item_offset_nr(right, push_items - 1);
3860
3861         copy_extent_buffer(left, right, BTRFS_LEAF_DATA_OFFSET +
3862                      leaf_data_end(fs_info, left) - push_space,
3863                      BTRFS_LEAF_DATA_OFFSET +
3864                      btrfs_item_offset_nr(right, push_items - 1),
3865                      push_space);
3866         old_left_nritems = btrfs_header_nritems(left);
3867         BUG_ON(old_left_nritems <= 0);
3868
3869         old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
3870         for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
3871                 u32 ioff;
3872
3873                 item = btrfs_item_nr(i);
3874
3875                 ioff = btrfs_token_item_offset(left, item, &token);
3876                 btrfs_set_token_item_offset(left, item,
3877                       ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size),
3878                       &token);
3879         }
3880         btrfs_set_header_nritems(left, old_left_nritems + push_items);
3881
3882         /* fixup right node */
3883         if (push_items > right_nritems)
3884                 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
3885                        right_nritems);
3886
3887         if (push_items < right_nritems) {
3888                 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3889                                                   leaf_data_end(fs_info, right);
3890                 memmove_extent_buffer(right, BTRFS_LEAF_DATA_OFFSET +
3891                                       BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
3892                                       BTRFS_LEAF_DATA_OFFSET +
3893                                       leaf_data_end(fs_info, right), push_space);
3894
3895                 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
3896                               btrfs_item_nr_offset(push_items),
3897                              (btrfs_header_nritems(right) - push_items) *
3898                              sizeof(struct btrfs_item));
3899         }
3900         right_nritems -= push_items;
3901         btrfs_set_header_nritems(right, right_nritems);
3902         push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
3903         for (i = 0; i < right_nritems; i++) {
3904                 item = btrfs_item_nr(i);
3905
3906                 push_space = push_space - btrfs_token_item_size(right,
3907                                                                 item, &token);
3908                 btrfs_set_token_item_offset(right, item, push_space, &token);
3909         }
3910
3911         btrfs_mark_buffer_dirty(left);
3912         if (right_nritems)
3913                 btrfs_mark_buffer_dirty(right);
3914         else
3915                 clean_tree_block(fs_info, right);
3916
3917         btrfs_item_key(right, &disk_key, 0);
3918         fixup_low_keys(fs_info, path, &disk_key, 1);
3919
3920         /* then fixup the leaf pointer in the path */
3921         if (path->slots[0] < push_items) {
3922                 path->slots[0] += old_left_nritems;
3923                 btrfs_tree_unlock(path->nodes[0]);
3924                 free_extent_buffer(path->nodes[0]);
3925                 path->nodes[0] = left;
3926                 path->slots[1] -= 1;
3927         } else {
3928                 btrfs_tree_unlock(left);
3929                 free_extent_buffer(left);
3930                 path->slots[0] -= push_items;
3931         }
3932         BUG_ON(path->slots[0] < 0);
3933         return ret;
3934 out:
3935         btrfs_tree_unlock(left);
3936         free_extent_buffer(left);
3937         return ret;
3938 }
3939
3940 /*
3941  * push some data in the path leaf to the left, trying to free up at
3942  * least data_size bytes.  returns zero if the push worked, nonzero otherwise
3943  *
3944  * max_slot can put a limit on how far into the leaf we'll push items.  The
3945  * item at 'max_slot' won't be touched.  Use (u32)-1 to make us push all the
3946  * items
3947  */
3948 static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
3949                           *root, struct btrfs_path *path, int min_data_size,
3950                           int data_size, int empty, u32 max_slot)
3951 {
3952         struct btrfs_fs_info *fs_info = root->fs_info;
3953         struct extent_buffer *right = path->nodes[0];
3954         struct extent_buffer *left;
3955         int slot;
3956         int free_space;
3957         u32 right_nritems;
3958         int ret = 0;
3959
3960         slot = path->slots[1];
3961         if (slot == 0)
3962                 return 1;
3963         if (!path->nodes[1])
3964                 return 1;
3965
3966         right_nritems = btrfs_header_nritems(right);
3967         if (right_nritems == 0)
3968                 return 1;
3969
3970         btrfs_assert_tree_locked(path->nodes[1]);
3971
3972         left = read_node_slot(fs_info, path->nodes[1], slot - 1);
3973         /*
3974          * slot - 1 is not valid or we fail to read the left node,
3975          * no big deal, just return.
3976          */
3977         if (IS_ERR(left))
3978                 return 1;
3979
3980         btrfs_tree_lock(left);
3981         btrfs_set_lock_blocking(left);
3982
3983         free_space = btrfs_leaf_free_space(fs_info, left);
3984         if (free_space < data_size) {
3985                 ret = 1;
3986                 goto out;
3987         }
3988
3989         /* cow and double check */
3990         ret = btrfs_cow_block(trans, root, left,
3991                               path->nodes[1], slot - 1, &left);
3992         if (ret) {
3993                 /* we hit -ENOSPC, but it isn't fatal here */
3994                 if (ret == -ENOSPC)
3995                         ret = 1;
3996                 goto out;
3997         }
3998
3999         free_space = btrfs_leaf_free_space(fs_info, left);
4000         if (free_space < data_size) {
4001                 ret = 1;
4002                 goto out;
4003         }
4004
4005         return __push_leaf_left(fs_info, path, min_data_size,
4006                                empty, left, free_space, right_nritems,
4007                                max_slot);
4008 out:
4009         btrfs_tree_unlock(left);
4010         free_extent_buffer(left);
4011         return ret;
4012 }
4013
4014 /*
4015  * split the path's leaf in two, making sure there is at least data_size
4016  * available for the resulting leaf level of the path.
4017  */
4018 static noinline void copy_for_split(struct btrfs_trans_handle *trans,
4019                                     struct btrfs_fs_info *fs_info,
4020                                     struct btrfs_path *path,
4021                                     struct extent_buffer *l,
4022                                     struct extent_buffer *right,
4023                                     int slot, int mid, int nritems)
4024 {
4025         int data_copy_size;
4026         int rt_data_off;
4027         int i;
4028         struct btrfs_disk_key disk_key;
4029         struct btrfs_map_token token;
4030
4031         btrfs_init_map_token(&token);
4032
4033         nritems = nritems - mid;
4034         btrfs_set_header_nritems(right, nritems);
4035         data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(fs_info, l);
4036
4037         copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4038                            btrfs_item_nr_offset(mid),
4039                            nritems * sizeof(struct btrfs_item));
4040
4041         copy_extent_buffer(right, l,
4042                      BTRFS_LEAF_DATA_OFFSET + BTRFS_LEAF_DATA_SIZE(fs_info) -
4043                      data_copy_size, BTRFS_LEAF_DATA_OFFSET +
4044                      leaf_data_end(fs_info, l), data_copy_size);
4045
4046         rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_end_nr(l, mid);
4047
4048         for (i = 0; i < nritems; i++) {
4049                 struct btrfs_item *item = btrfs_item_nr(i);
4050                 u32 ioff;
4051
4052                 ioff = btrfs_token_item_offset(right, item, &token);
4053                 btrfs_set_token_item_offset(right, item,
4054                                             ioff + rt_data_off, &token);
4055         }
4056
4057         btrfs_set_header_nritems(l, mid);
4058         btrfs_item_key(right, &disk_key, 0);
4059         insert_ptr(trans, fs_info, path, &disk_key, right->start,
4060                    path->slots[1] + 1, 1);
4061
4062         btrfs_mark_buffer_dirty(right);
4063         btrfs_mark_buffer_dirty(l);
4064         BUG_ON(path->slots[0] != slot);
4065
4066         if (mid <= slot) {
4067                 btrfs_tree_unlock(path->nodes[0]);
4068                 free_extent_buffer(path->nodes[0]);
4069                 path->nodes[0] = right;
4070                 path->slots[0] -= mid;
4071                 path->slots[1] += 1;
4072         } else {
4073                 btrfs_tree_unlock(right);
4074                 free_extent_buffer(right);
4075         }
4076
4077         BUG_ON(path->slots[0] < 0);
4078 }
4079
4080 /*
4081  * double splits happen when we need to insert a big item in the middle
4082  * of a leaf.  A double split can leave us with 3 mostly empty leaves:
4083  * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4084  *          A                 B                 C
4085  *
4086  * We avoid this by trying to push the items on either side of our target
4087  * into the adjacent leaves.  If all goes well we can avoid the double split
4088  * completely.
4089  */
4090 static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4091                                           struct btrfs_root *root,
4092                                           struct btrfs_path *path,
4093                                           int data_size)
4094 {
4095         struct btrfs_fs_info *fs_info = root->fs_info;
4096         int ret;
4097         int progress = 0;
4098         int slot;
4099         u32 nritems;
4100         int space_needed = data_size;
4101
4102         slot = path->slots[0];
4103         if (slot < btrfs_header_nritems(path->nodes[0]))
4104                 space_needed -= btrfs_leaf_free_space(fs_info, path->nodes[0]);
4105
4106         /*
4107          * try to push all the items after our slot into the
4108          * right leaf
4109          */
4110         ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
4111         if (ret < 0)
4112                 return ret;
4113
4114         if (ret == 0)
4115                 progress++;
4116
4117         nritems = btrfs_header_nritems(path->nodes[0]);
4118         /*
4119          * our goal is to get our slot at the start or end of a leaf.  If
4120          * we've done so we're done
4121          */
4122         if (path->slots[0] == 0 || path->slots[0] == nritems)
4123                 return 0;
4124
4125         if (btrfs_leaf_free_space(fs_info, path->nodes[0]) >= data_size)
4126                 return 0;
4127
4128         /* try to push all the items before our slot into the next leaf */
4129         slot = path->slots[0];
4130         space_needed = data_size;
4131         if (slot > 0)
4132                 space_needed -= btrfs_leaf_free_space(fs_info, path->nodes[0]);
4133         ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
4134         if (ret < 0)
4135                 return ret;
4136
4137         if (ret == 0)
4138                 progress++;
4139
4140         if (progress)
4141                 return 0;
4142         return 1;
4143 }
4144
4145 /*
4146  * split the path's leaf in two, making sure there is at least data_size
4147  * available for the resulting leaf level of the path.
4148  *
4149  * returns 0 if all went well and < 0 on failure.
4150  */
4151 static noinline int split_leaf(struct btrfs_trans_handle *trans,
4152                                struct btrfs_root *root,
4153                                const struct btrfs_key *ins_key,
4154                                struct btrfs_path *path, int data_size,
4155                                int extend)
4156 {
4157         struct btrfs_disk_key disk_key;
4158         struct extent_buffer *l;
4159         u32 nritems;
4160         int mid;
4161         int slot;
4162         struct extent_buffer *right;
4163         struct btrfs_fs_info *fs_info = root->fs_info;
4164         int ret = 0;
4165         int wret;
4166         int split;
4167         int num_doubles = 0;
4168         int tried_avoid_double = 0;
4169
4170         l = path->nodes[0];
4171         slot = path->slots[0];
4172         if (extend && data_size + btrfs_item_size_nr(l, slot) +
4173             sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info))
4174                 return -EOVERFLOW;
4175
4176         /* first try to make some room by pushing left and right */
4177         if (data_size && path->nodes[1]) {
4178                 int space_needed = data_size;
4179
4180                 if (slot < btrfs_header_nritems(l))
4181                         space_needed -= btrfs_leaf_free_space(fs_info, l);
4182
4183                 wret = push_leaf_right(trans, root, path, space_needed,
4184                                        space_needed, 0, 0);
4185                 if (wret < 0)
4186                         return wret;
4187                 if (wret) {
4188                         space_needed = data_size;
4189                         if (slot > 0)
4190                                 space_needed -= btrfs_leaf_free_space(fs_info,
4191                                                                       l);
4192                         wret = push_leaf_left(trans, root, path, space_needed,
4193                                               space_needed, 0, (u32)-1);
4194                         if (wret < 0)
4195                                 return wret;
4196                 }
4197                 l = path->nodes[0];
4198
4199                 /* did the pushes work? */
4200                 if (btrfs_leaf_free_space(fs_info, l) >= data_size)
4201                         return 0;
4202         }
4203
4204         if (!path->nodes[1]) {
4205                 ret = insert_new_root(trans, root, path, 1);
4206                 if (ret)
4207                         return ret;
4208         }
4209 again:
4210         split = 1;
4211         l = path->nodes[0];
4212         slot = path->slots[0];
4213         nritems = btrfs_header_nritems(l);
4214         mid = (nritems + 1) / 2;
4215
4216         if (mid <= slot) {
4217                 if (nritems == 1 ||
4218                     leaf_space_used(l, mid, nritems - mid) + data_size >
4219                         BTRFS_LEAF_DATA_SIZE(fs_info)) {
4220                         if (slot >= nritems) {
4221                                 split = 0;
4222                         } else {
4223                                 mid = slot;
4224                                 if (mid != nritems &&
4225                                     leaf_space_used(l, mid, nritems - mid) +
4226                                     data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
4227                                         if (data_size && !tried_avoid_double)
4228                                                 goto push_for_double;
4229                                         split = 2;
4230                                 }
4231                         }
4232                 }
4233         } else {
4234                 if (leaf_space_used(l, 0, mid) + data_size >
4235                         BTRFS_LEAF_DATA_SIZE(fs_info)) {
4236                         if (!extend && data_size && slot == 0) {
4237                                 split = 0;
4238                         } else if ((extend || !data_size) && slot == 0) {
4239                                 mid = 1;
4240                         } else {
4241                                 mid = slot;
4242                                 if (mid != nritems &&
4243                                     leaf_space_used(l, mid, nritems - mid) +
4244                                     data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
4245                                         if (data_size && !tried_avoid_double)
4246                                                 goto push_for_double;
4247                                         split = 2;
4248                                 }
4249                         }
4250                 }
4251         }
4252
4253         if (split == 0)
4254                 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4255         else
4256                 btrfs_item_key(l, &disk_key, mid);
4257
4258         right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
4259                         &disk_key, 0, l->start, 0);
4260         if (IS_ERR(right))
4261                 return PTR_ERR(right);
4262
4263         root_add_used(root, fs_info->nodesize);
4264
4265         memzero_extent_buffer(right, 0, sizeof(struct btrfs_header));
4266         btrfs_set_header_bytenr(right, right->start);
4267         btrfs_set_header_generation(right, trans->transid);
4268         btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
4269         btrfs_set_header_owner(right, root->root_key.objectid);
4270         btrfs_set_header_level(right, 0);
4271         write_extent_buffer_fsid(right, fs_info->fsid);
4272         write_extent_buffer_chunk_tree_uuid(right, fs_info->chunk_tree_uuid);
4273
4274         if (split == 0) {
4275                 if (mid <= slot) {
4276                         btrfs_set_header_nritems(right, 0);
4277                         insert_ptr(trans, fs_info, path, &disk_key,
4278                                    right->start, path->slots[1] + 1, 1);
4279                         btrfs_tree_unlock(path->nodes[0]);
4280                         free_extent_buffer(path->nodes[0]);
4281                         path->nodes[0] = right;
4282                         path->slots[0] = 0;
4283                         path->slots[1] += 1;
4284                 } else {
4285                         btrfs_set_header_nritems(right, 0);
4286                         insert_ptr(trans, fs_info, path, &disk_key,
4287                                    right->start, path->slots[1], 1);
4288                         btrfs_tree_unlock(path->nodes[0]);
4289                         free_extent_buffer(path->nodes[0]);
4290                         path->nodes[0] = right;
4291                         path->slots[0] = 0;
4292                         if (path->slots[1] == 0)
4293                                 fixup_low_keys(fs_info, path, &disk_key, 1);
4294                 }
4295                 /*
4296                  * We create a new leaf 'right' for the required ins_len and
4297                  * we'll do btrfs_mark_buffer_dirty() on this leaf after copying
4298                  * the content of ins_len to 'right'.
4299                  */
4300                 return ret;
4301         }
4302
4303         copy_for_split(trans, fs_info, path, l, right, slot, mid, nritems);
4304
4305         if (split == 2) {
4306                 BUG_ON(num_doubles != 0);
4307                 num_doubles++;
4308                 goto again;
4309         }
4310
4311         return 0;
4312
4313 push_for_double:
4314         push_for_double_split(trans, root, path, data_size);
4315         tried_avoid_double = 1;
4316         if (btrfs_leaf_free_space(fs_info, path->nodes[0]) >= data_size)
4317                 return 0;
4318         goto again;
4319 }
4320
4321 static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4322                                          struct btrfs_root *root,
4323                                          struct btrfs_path *path, int ins_len)
4324 {
4325         struct btrfs_fs_info *fs_info = root->fs_info;
4326         struct btrfs_key key;
4327         struct extent_buffer *leaf;
4328         struct btrfs_file_extent_item *fi;
4329         u64 extent_len = 0;
4330         u32 item_size;
4331         int ret;
4332
4333         leaf = path->nodes[0];
4334         btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4335
4336         BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4337                key.type != BTRFS_EXTENT_CSUM_KEY);
4338
4339         if (btrfs_leaf_free_space(fs_info, leaf) >= ins_len)
4340                 return 0;
4341
4342         item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4343         if (key.type == BTRFS_EXTENT_DATA_KEY) {
4344                 fi = btrfs_item_ptr(leaf, path->slots[0],
4345                                     struct btrfs_file_extent_item);
4346                 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4347         }
4348         btrfs_release_path(path);
4349
4350         path->keep_locks = 1;
4351         path->search_for_split = 1;
4352         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
4353         path->search_for_split = 0;
4354         if (ret > 0)
4355                 ret = -EAGAIN;
4356         if (ret < 0)
4357                 goto err;
4358
4359         ret = -EAGAIN;
4360         leaf = path->nodes[0];
4361         /* if our item isn't there, return now */
4362         if (item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4363                 goto err;
4364
4365         /* the leaf has  changed, it now has room.  return now */
4366         if (btrfs_leaf_free_space(fs_info, path->nodes[0]) >= ins_len)
4367                 goto err;
4368
4369         if (key.type == BTRFS_EXTENT_DATA_KEY) {
4370                 fi = btrfs_item_ptr(leaf, path->slots[0],
4371                                     struct btrfs_file_extent_item);
4372                 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4373                         goto err;
4374         }
4375
4376         btrfs_set_path_blocking(path);
4377         ret = split_leaf(trans, root, &key, path, ins_len, 1);
4378         if (ret)
4379                 goto err;
4380
4381         path->keep_locks = 0;
4382         btrfs_unlock_up_safe(path, 1);
4383         return 0;
4384 err:
4385         path->keep_locks = 0;
4386         return ret;
4387 }
4388
4389 static noinline int split_item(struct btrfs_fs_info *fs_info,
4390                                struct btrfs_path *path,
4391                                const struct btrfs_key *new_key,
4392                                unsigned long split_offset)
4393 {
4394         struct extent_buffer *leaf;
4395         struct btrfs_item *item;
4396         struct btrfs_item *new_item;
4397         int slot;
4398         char *buf;
4399         u32 nritems;
4400         u32 item_size;
4401         u32 orig_offset;
4402         struct btrfs_disk_key disk_key;
4403
4404         leaf = path->nodes[0];
4405         BUG_ON(btrfs_leaf_free_space(fs_info, leaf) < sizeof(struct btrfs_item));
4406
4407         btrfs_set_path_blocking(path);
4408
4409         item = btrfs_item_nr(path->slots[0]);
4410         orig_offset = btrfs_item_offset(leaf, item);
4411         item_size = btrfs_item_size(leaf, item);
4412
4413         buf = kmalloc(item_size, GFP_NOFS);
4414         if (!buf)
4415                 return -ENOMEM;
4416
4417         read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4418                             path->slots[0]), item_size);
4419
4420         slot = path->slots[0] + 1;
4421         nritems = btrfs_header_nritems(leaf);
4422         if (slot != nritems) {
4423                 /* shift the items */
4424                 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
4425                                 btrfs_item_nr_offset(slot),
4426                                 (nritems - slot) * sizeof(struct btrfs_item));
4427         }
4428
4429         btrfs_cpu_key_to_disk(&disk_key, new_key);
4430         btrfs_set_item_key(leaf, &disk_key, slot);
4431
4432         new_item = btrfs_item_nr(slot);
4433
4434         btrfs_set_item_offset(leaf, new_item, orig_offset);
4435         btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4436
4437         btrfs_set_item_offset(leaf, item,
4438                               orig_offset + item_size - split_offset);
4439         btrfs_set_item_size(leaf, item, split_offset);
4440
4441         btrfs_set_header_nritems(leaf, nritems + 1);
4442
4443         /* write the data for the start of the original item */
4444         write_extent_buffer(leaf, buf,
4445                             btrfs_item_ptr_offset(leaf, path->slots[0]),
4446                             split_offset);
4447
4448         /* write the data for the new item */
4449         write_extent_buffer(leaf, buf + split_offset,
4450                             btrfs_item_ptr_offset(leaf, slot),
4451                             item_size - split_offset);
4452         btrfs_mark_buffer_dirty(leaf);
4453
4454         BUG_ON(btrfs_leaf_free_space(fs_info, leaf) < 0);
4455         kfree(buf);
4456         return 0;
4457 }
4458
4459 /*
4460  * This function splits a single item into two items,
4461  * giving 'new_key' to the new item and splitting the
4462  * old one at split_offset (from the start of the item).
4463  *
4464  * The path may be released by this operation.  After
4465  * the split, the path is pointing to the old item.  The
4466  * new item is going to be in the same node as the old one.
4467  *
4468  * Note, the item being split must be smaller enough to live alone on
4469  * a tree block with room for one extra struct btrfs_item
4470  *
4471  * This allows us to split the item in place, keeping a lock on the
4472  * leaf the entire time.
4473  */
4474 int btrfs_split_item(struct btrfs_trans_handle *trans,
4475                      struct btrfs_root *root,
4476                      struct btrfs_path *path,
4477                      const struct btrfs_key *new_key,
4478                      unsigned long split_offset)
4479 {
4480         int ret;
4481         ret = setup_leaf_for_split(trans, root, path,
4482                                    sizeof(struct btrfs_item));
4483         if (ret)
4484                 return ret;
4485
4486         ret = split_item(root->fs_info, path, new_key, split_offset);
4487         return ret;
4488 }
4489
4490 /*
4491  * This function duplicate a item, giving 'new_key' to the new item.
4492  * It guarantees both items live in the same tree leaf and the new item
4493  * is contiguous with the original item.
4494  *
4495  * This allows us to split file extent in place, keeping a lock on the
4496  * leaf the entire time.
4497  */
4498 int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4499                          struct btrfs_root *root,
4500                          struct btrfs_path *path,
4501                          const struct btrfs_key *new_key)
4502 {
4503         struct extent_buffer *leaf;
4504         int ret;
4505         u32 item_size;
4506
4507         leaf = path->nodes[0];
4508         item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4509         ret = setup_leaf_for_split(trans, root, path,
4510                                    item_size + sizeof(struct btrfs_item));
4511         if (ret)
4512                 return ret;
4513
4514         path->slots[0]++;
4515         setup_items_for_insert(root, path, new_key, &item_size,
4516                                item_size, item_size +
4517                                sizeof(struct btrfs_item), 1);
4518         leaf = path->nodes[0];
4519         memcpy_extent_buffer(leaf,
4520                              btrfs_item_ptr_offset(leaf, path->slots[0]),
4521                              btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4522                              item_size);
4523         return 0;
4524 }
4525
4526 /*
4527  * make the item pointed to by the path smaller.  new_size indicates
4528  * how small to make it, and from_end tells us if we just chop bytes
4529  * off the end of the item or if we shift the item to chop bytes off
4530  * the front.
4531  */
4532 void btrfs_truncate_item(struct btrfs_fs_info *fs_info,
4533                          struct btrfs_path *path, u32 new_size, int from_end)
4534 {
4535         int slot;
4536         struct extent_buffer *leaf;
4537         struct btrfs_item *item;
4538         u32 nritems;
4539         unsigned int data_end;
4540         unsigned int old_data_start;
4541         unsigned int old_size;
4542         unsigned int size_diff;
4543         int i;
4544         struct btrfs_map_token token;
4545
4546         btrfs_init_map_token(&token);
4547
4548         leaf = path->nodes[0];
4549         slot = path->slots[0];
4550
4551         old_size = btrfs_item_size_nr(leaf, slot);
4552         if (old_size == new_size)
4553                 return;
4554
4555         nritems = btrfs_header_nritems(leaf);
4556         data_end = leaf_data_end(fs_info, leaf);
4557
4558         old_data_start = btrfs_item_offset_nr(leaf, slot);
4559
4560         size_diff = old_size - new_size;
4561
4562         BUG_ON(slot < 0);
4563         BUG_ON(slot >= nritems);
4564
4565         /*
4566          * item0..itemN ... dataN.offset..dataN.size .. data0.size
4567          */
4568         /* first correct the data pointers */
4569         for (i = slot; i < nritems; i++) {
4570                 u32 ioff;
4571                 item = btrfs_item_nr(i);
4572
4573                 ioff = btrfs_token_item_offset(leaf, item, &token);
4574                 btrfs_set_token_item_offset(leaf, item,
4575                                             ioff + size_diff, &token);
4576         }
4577
4578         /* shift the data */
4579         if (from_end) {
4580                 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4581                               data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
4582                               data_end, old_data_start + new_size - data_end);
4583         } else {
4584                 struct btrfs_disk_key disk_key;
4585                 u64 offset;
4586
4587                 btrfs_item_key(leaf, &disk_key, slot);
4588
4589                 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4590                         unsigned long ptr;
4591                         struct btrfs_file_extent_item *fi;
4592
4593                         fi = btrfs_item_ptr(leaf, slot,
4594                                             struct btrfs_file_extent_item);
4595                         fi = (struct btrfs_file_extent_item *)(
4596                              (unsigned long)fi - size_diff);
4597
4598                         if (btrfs_file_extent_type(leaf, fi) ==
4599                             BTRFS_FILE_EXTENT_INLINE) {
4600                                 ptr = btrfs_item_ptr_offset(leaf, slot);
4601                                 memmove_extent_buffer(leaf, ptr,
4602                                       (unsigned long)fi,
4603                                       BTRFS_FILE_EXTENT_INLINE_DATA_START);
4604                         }
4605                 }
4606
4607                 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4608                               data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
4609                               data_end, old_data_start - data_end);
4610
4611                 offset = btrfs_disk_key_offset(&disk_key);
4612                 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4613                 btrfs_set_item_key(leaf, &disk_key, slot);
4614                 if (slot == 0)
4615                         fixup_low_keys(fs_info, path, &disk_key, 1);
4616         }
4617
4618         item = btrfs_item_nr(slot);
4619         btrfs_set_item_size(leaf, item, new_size);
4620         btrfs_mark_buffer_dirty(leaf);
4621
4622         if (btrfs_leaf_free_space(fs_info, leaf) < 0) {
4623                 btrfs_print_leaf(leaf);
4624                 BUG();
4625         }
4626 }
4627
4628 /*
4629  * make the item pointed to by the path bigger, data_size is the added size.
4630  */
4631 void btrfs_extend_item(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
4632                        u32 data_size)
4633 {
4634         int slot;
4635         struct extent_buffer *leaf;
4636         struct btrfs_item *item;
4637         u32 nritems;
4638         unsigned int data_end;
4639         unsigned int old_data;
4640         unsigned int old_size;
4641         int i;
4642         struct btrfs_map_token token;
4643
4644         btrfs_init_map_token(&token);
4645
4646         leaf = path->nodes[0];
4647
4648         nritems = btrfs_header_nritems(leaf);
4649         data_end = leaf_data_end(fs_info, leaf);
4650
4651         if (btrfs_leaf_free_space(fs_info, leaf) < data_size) {
4652                 btrfs_print_leaf(leaf);
4653                 BUG();
4654         }
4655         slot = path->slots[0];
4656         old_data = btrfs_item_end_nr(leaf, slot);
4657
4658         BUG_ON(slot < 0);
4659         if (slot >= nritems) {
4660                 btrfs_print_leaf(leaf);
4661                 btrfs_crit(fs_info, "slot %d too large, nritems %d",
4662                            slot, nritems);
4663                 BUG_ON(1);
4664         }
4665
4666         /*
4667          * item0..itemN ... dataN.offset..dataN.size .. data0.size
4668          */
4669         /* first correct the data pointers */
4670         for (i = slot; i < nritems; i++) {
4671                 u32 ioff;
4672                 item = btrfs_item_nr(i);
4673
4674                 ioff = btrfs_token_item_offset(leaf, item, &token);
4675                 btrfs_set_token_item_offset(leaf, item,
4676                                             ioff - data_size, &token);
4677         }
4678
4679         /* shift the data */
4680         memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4681                       data_end - data_size, BTRFS_LEAF_DATA_OFFSET +
4682                       data_end, old_data - data_end);
4683
4684         data_end = old_data;
4685         old_size = btrfs_item_size_nr(leaf, slot);
4686         item = btrfs_item_nr(slot);
4687         btrfs_set_item_size(leaf, item, old_size + data_size);
4688         btrfs_mark_buffer_dirty(leaf);
4689
4690         if (btrfs_leaf_free_space(fs_info, leaf) < 0) {
4691                 btrfs_print_leaf(leaf);
4692                 BUG();
4693         }
4694 }
4695
4696 /*
4697  * this is a helper for btrfs_insert_empty_items, the main goal here is
4698  * to save stack depth by doing the bulk of the work in a function
4699  * that doesn't call btrfs_search_slot
4700  */
4701 void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
4702                             const struct btrfs_key *cpu_key, u32 *data_size,
4703                             u32 total_data, u32 total_size, int nr)
4704 {
4705         struct btrfs_fs_info *fs_info = root->fs_info;
4706         struct btrfs_item *item;
4707         int i;
4708         u32 nritems;
4709         unsigned int data_end;
4710         struct btrfs_disk_key disk_key;
4711         struct extent_buffer *leaf;
4712         int slot;
4713         struct btrfs_map_token token;
4714
4715         if (path->slots[0] == 0) {
4716                 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
4717                 fixup_low_keys(fs_info, path, &disk_key, 1);
4718         }
4719         btrfs_unlock_up_safe(path, 1);
4720
4721         btrfs_init_map_token(&token);
4722
4723         leaf = path->nodes[0];
4724         slot = path->slots[0];
4725
4726         nritems = btrfs_header_nritems(leaf);
4727         data_end = leaf_data_end(fs_info, leaf);
4728
4729         if (btrfs_leaf_free_space(fs_info, leaf) < total_size) {
4730                 btrfs_print_leaf(leaf);
4731                 btrfs_crit(fs_info, "not enough freespace need %u have %d",
4732                            total_size, btrfs_leaf_free_space(fs_info, leaf));
4733                 BUG();
4734         }
4735
4736         if (slot != nritems) {
4737                 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
4738
4739                 if (old_data < data_end) {
4740                         btrfs_print_leaf(leaf);
4741                         btrfs_crit(fs_info, "slot %d old_data %d data_end %d",
4742                                    slot, old_data, data_end);
4743                         BUG_ON(1);
4744                 }
4745                 /*
4746                  * item0..itemN ... dataN.offset..dataN.size .. data0.size
4747                  */
4748                 /* first correct the data pointers */
4749                 for (i = slot; i < nritems; i++) {
4750                         u32 ioff;
4751
4752                         item = btrfs_item_nr(i);
4753                         ioff = btrfs_token_item_offset(leaf, item, &token);
4754                         btrfs_set_token_item_offset(leaf, item,
4755                                                     ioff - total_data, &token);
4756                 }
4757                 /* shift the items */
4758                 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
4759                               btrfs_item_nr_offset(slot),
4760                               (nritems - slot) * sizeof(struct btrfs_item));
4761
4762                 /* shift the data */
4763                 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4764                               data_end - total_data, BTRFS_LEAF_DATA_OFFSET +
4765                               data_end, old_data - data_end);
4766                 data_end = old_data;
4767         }
4768
4769         /* setup the item for the new data */
4770         for (i = 0; i < nr; i++) {
4771                 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4772                 btrfs_set_item_key(leaf, &disk_key, slot + i);
4773                 item = btrfs_item_nr(slot + i);
4774                 btrfs_set_token_item_offset(leaf, item,
4775                                             data_end - data_size[i], &token);
4776                 data_end -= data_size[i];
4777                 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
4778         }
4779
4780         btrfs_set_header_nritems(leaf, nritems + nr);
4781         btrfs_mark_buffer_dirty(leaf);
4782
4783         if (btrfs_leaf_free_space(fs_info, leaf) < 0) {
4784                 btrfs_print_leaf(leaf);
4785                 BUG();
4786         }
4787 }
4788
4789 /*
4790  * Given a key and some data, insert items into the tree.
4791  * This does all the path init required, making room in the tree if needed.
4792  */
4793 int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4794                             struct btrfs_root *root,
4795                             struct btrfs_path *path,
4796                             const struct btrfs_key *cpu_key, u32 *data_size,
4797                             int nr)
4798 {
4799         int ret = 0;
4800         int slot;
4801         int i;
4802         u32 total_size = 0;
4803         u32 total_data = 0;
4804
4805         for (i = 0; i < nr; i++)
4806                 total_data += data_size[i];
4807
4808         total_size = total_data + (nr * sizeof(struct btrfs_item));
4809         ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4810         if (ret == 0)
4811                 return -EEXIST;
4812         if (ret < 0)
4813                 return ret;
4814
4815         slot = path->slots[0];
4816         BUG_ON(slot < 0);
4817
4818         setup_items_for_insert(root, path, cpu_key, data_size,
4819                                total_data, total_size, nr);
4820         return 0;
4821 }
4822
4823 /*
4824  * Given a key and some data, insert an item into the tree.
4825  * This does all the path init required, making room in the tree if needed.
4826  */
4827 int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4828                       const struct btrfs_key *cpu_key, void *data,
4829                       u32 data_size)
4830 {
4831         int ret = 0;
4832         struct btrfs_path *path;
4833         struct extent_buffer *leaf;
4834         unsigned long ptr;
4835
4836         path = btrfs_alloc_path();
4837         if (!path)
4838                 return -ENOMEM;
4839         ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
4840         if (!ret) {
4841                 leaf = path->nodes[0];
4842                 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4843                 write_extent_buffer(leaf, data, ptr, data_size);
4844                 btrfs_mark_buffer_dirty(leaf);
4845         }
4846         btrfs_free_path(path);
4847         return ret;
4848 }
4849
4850 /*
4851  * delete the pointer from a given node.
4852  *
4853  * the tree should have been previously balanced so the deletion does not
4854  * empty a node.
4855  */
4856 static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4857                     int level, int slot)
4858 {
4859         struct btrfs_fs_info *fs_info = root->fs_info;
4860         struct extent_buffer *parent = path->nodes[level];
4861         u32 nritems;
4862         int ret;
4863
4864         nritems = btrfs_header_nritems(parent);
4865         if (slot != nritems - 1) {
4866                 if (level) {
4867                         ret = tree_mod_log_insert_move(parent, slot, slot + 1,
4868                                         nritems - slot - 1);
4869                         BUG_ON(ret < 0);
4870                 }
4871                 memmove_extent_buffer(parent,
4872                               btrfs_node_key_ptr_offset(slot),
4873                               btrfs_node_key_ptr_offset(slot + 1),
4874                               sizeof(struct btrfs_key_ptr) *
4875                               (nritems - slot - 1));
4876         } else if (level) {
4877                 ret = tree_mod_log_insert_key(parent, slot, MOD_LOG_KEY_REMOVE,
4878                                 GFP_NOFS);
4879                 BUG_ON(ret < 0);
4880         }
4881
4882         nritems--;
4883         btrfs_set_header_nritems(parent, nritems);
4884         if (nritems == 0 && parent == root->node) {
4885                 BUG_ON(btrfs_header_level(root->node) != 1);
4886                 /* just turn the root into a leaf and break */
4887                 btrfs_set_header_level(root->node, 0);
4888         } else if (slot == 0) {
4889                 struct btrfs_disk_key disk_key;
4890
4891                 btrfs_node_key(parent, &disk_key, 0);
4892                 fixup_low_keys(fs_info, path, &disk_key, level + 1);
4893         }
4894         btrfs_mark_buffer_dirty(parent);
4895 }
4896
4897 /*
4898  * a helper function to delete the leaf pointed to by path->slots[1] and
4899  * path->nodes[1].
4900  *
4901  * This deletes the pointer in path->nodes[1] and frees the leaf
4902  * block extent.  zero is returned if it all worked out, < 0 otherwise.
4903  *
4904  * The path must have already been setup for deleting the leaf, including
4905  * all the proper balancing.  path->nodes[1] must be locked.
4906  */
4907 static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4908                                     struct btrfs_root *root,
4909                                     struct btrfs_path *path,
4910                                     struct extent_buffer *leaf)
4911 {
4912         WARN_ON(btrfs_header_generation(leaf) != trans->transid);
4913         del_ptr(root, path, 1, path->slots[1]);
4914
4915         /*
4916          * btrfs_free_extent is expensive, we want to make sure we
4917          * aren't holding any locks when we call it
4918          */
4919         btrfs_unlock_up_safe(path, 0);
4920
4921         root_sub_used(root, leaf->len);
4922
4923         extent_buffer_get(leaf);
4924         btrfs_free_tree_block(trans, root, leaf, 0, 1);
4925         free_extent_buffer_stale(leaf);
4926 }
4927 /*
4928  * delete the item at the leaf level in path.  If that empties
4929  * the leaf, remove it from the tree
4930  */
4931 int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4932                     struct btrfs_path *path, int slot, int nr)
4933 {
4934         struct btrfs_fs_info *fs_info = root->fs_info;
4935         struct extent_buffer *leaf;
4936         struct btrfs_item *item;
4937         u32 last_off;
4938         u32 dsize = 0;
4939         int ret = 0;
4940         int wret;
4941         int i;
4942         u32 nritems;
4943         struct btrfs_map_token token;
4944
4945         btrfs_init_map_token(&token);
4946
4947         leaf = path->nodes[0];
4948         last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4949
4950         for (i = 0; i < nr; i++)
4951                 dsize += btrfs_item_size_nr(leaf, slot + i);
4952
4953         nritems = btrfs_header_nritems(leaf);
4954
4955         if (slot + nr != nritems) {
4956                 int data_end = leaf_data_end(fs_info, leaf);
4957
4958                 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4959                               data_end + dsize,
4960                               BTRFS_LEAF_DATA_OFFSET + data_end,
4961                               last_off - data_end);
4962
4963                 for (i = slot + nr; i < nritems; i++) {
4964                         u32 ioff;
4965
4966                         item = btrfs_item_nr(i);
4967                         ioff = btrfs_token_item_offset(leaf, item, &token);
4968                         btrfs_set_token_item_offset(leaf, item,
4969                                                     ioff + dsize, &token);
4970                 }
4971
4972                 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
4973                               btrfs_item_nr_offset(slot + nr),
4974                               sizeof(struct btrfs_item) *
4975                               (nritems - slot - nr));
4976         }
4977         btrfs_set_header_nritems(leaf, nritems - nr);
4978         nritems -= nr;
4979
4980         /* delete the leaf if we've emptied it */
4981         if (nritems == 0) {
4982                 if (leaf == root->node) {
4983                         btrfs_set_header_level(leaf, 0);
4984                 } else {
4985                         btrfs_set_path_blocking(path);
4986                         clean_tree_block(fs_info, leaf);
4987                         btrfs_del_leaf(trans, root, path, leaf);
4988                 }
4989         } else {
4990                 int used = leaf_space_used(leaf, 0, nritems);
4991                 if (slot == 0) {
4992                         struct btrfs_disk_key disk_key;
4993
4994                         btrfs_item_key(leaf, &disk_key, 0);
4995                         fixup_low_keys(fs_info, path, &disk_key, 1);
4996                 }
4997
4998                 /* delete the leaf if it is mostly empty */
4999                 if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) {
5000                         /* push_leaf_left fixes the path.
5001                          * make sure the path still points to our leaf
5002                          * for possible call to del_ptr below
5003                          */
5004                         slot = path->slots[1];
5005                         extent_buffer_get(leaf);
5006
5007                         btrfs_set_path_blocking(path);
5008                         wret = push_leaf_left(trans, root, path, 1, 1,
5009                                               1, (u32)-1);
5010                         if (wret < 0 && wret != -ENOSPC)
5011                                 ret = wret;
5012
5013                         if (path->nodes[0] == leaf &&
5014                             btrfs_header_nritems(leaf)) {
5015                                 wret = push_leaf_right(trans, root, path, 1,
5016                                                        1, 1, 0);
5017                                 if (wret < 0 && wret != -ENOSPC)
5018                                         ret = wret;
5019                         }
5020
5021                         if (btrfs_header_nritems(leaf) == 0) {
5022                                 path->slots[1] = slot;
5023                                 btrfs_del_leaf(trans, root, path, leaf);
5024                                 free_extent_buffer(leaf);
5025                                 ret = 0;
5026                         } else {
5027                                 /* if we're still in the path, make sure
5028                                  * we're dirty.  Otherwise, one of the
5029                                  * push_leaf functions must have already
5030                                  * dirtied this buffer
5031                                  */
5032                                 if (path->nodes[0] == leaf)
5033                                         btrfs_mark_buffer_dirty(leaf);
5034                                 free_extent_buffer(leaf);
5035                         }
5036                 } else {
5037                         btrfs_mark_buffer_dirty(leaf);
5038                 }
5039         }
5040         return ret;
5041 }
5042
5043 /*
5044  * search the tree again to find a leaf with lesser keys
5045  * returns 0 if it found something or 1 if there are no lesser leaves.
5046  * returns < 0 on io errors.
5047  *
5048  * This may release the path, and so you may lose any locks held at the
5049  * time you call it.
5050  */
5051 int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
5052 {
5053         struct btrfs_key key;
5054         struct btrfs_disk_key found_key;
5055         int ret;
5056
5057         btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
5058
5059         if (key.offset > 0) {
5060                 key.offset--;
5061         } else if (key.type > 0) {
5062                 key.type--;
5063                 key.offset = (u64)-1;
5064         } else if (key.objectid > 0) {
5065                 key.objectid--;
5066                 key.type = (u8)-1;
5067                 key.offset = (u64)-1;
5068         } else {
5069                 return 1;
5070         }
5071
5072         btrfs_release_path(path);
5073         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5074         if (ret < 0)
5075                 return ret;
5076         btrfs_item_key(path->nodes[0], &found_key, 0);
5077         ret = comp_keys(&found_key, &key);
5078         /*
5079          * We might have had an item with the previous key in the tree right
5080          * before we released our path. And after we released our path, that
5081          * item might have been pushed to the first slot (0) of the leaf we
5082          * were holding due to a tree balance. Alternatively, an item with the
5083          * previous key can exist as the only element of a leaf (big fat item).
5084          * Therefore account for these 2 cases, so that our callers (like
5085          * btrfs_previous_item) don't miss an existing item with a key matching
5086          * the previous key we computed above.
5087          */
5088         if (ret <= 0)
5089                 return 0;
5090         return 1;
5091 }
5092
5093 /*
5094  * A helper function to walk down the tree starting at min_key, and looking
5095  * for nodes or leaves that are have a minimum transaction id.
5096  * This is used by the btree defrag code, and tree logging
5097  *
5098  * This does not cow, but it does stuff the starting key it finds back
5099  * into min_key, so you can call btrfs_search_slot with cow=1 on the
5100  * key and get a writable path.
5101  *
5102  * This honors path->lowest_level to prevent descent past a given level
5103  * of the tree.
5104  *
5105  * min_trans indicates the oldest transaction that you are interested
5106  * in walking through.  Any nodes or leaves older than min_trans are
5107  * skipped over (without reading them).
5108  *
5109  * returns zero if something useful was found, < 0 on error and 1 if there
5110  * was nothing in the tree that matched the search criteria.
5111  */
5112 int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
5113                          struct btrfs_path *path,
5114                          u64 min_trans)
5115 {
5116         struct btrfs_fs_info *fs_info = root->fs_info;
5117         struct extent_buffer *cur;
5118         struct btrfs_key found_key;
5119         int slot;
5120         int sret;
5121         u32 nritems;
5122         int level;
5123         int ret = 1;
5124         int keep_locks = path->keep_locks;
5125
5126         path->keep_locks = 1;
5127 again:
5128         cur = btrfs_read_lock_root_node(root);
5129         level = btrfs_header_level(cur);
5130         WARN_ON(path->nodes[level]);
5131         path->nodes[level] = cur;
5132         path->locks[level] = BTRFS_READ_LOCK;
5133
5134         if (btrfs_header_generation(cur) < min_trans) {
5135                 ret = 1;
5136                 goto out;
5137         }
5138         while (1) {
5139                 nritems = btrfs_header_nritems(cur);
5140                 level = btrfs_header_level(cur);
5141                 sret = btrfs_bin_search(cur, min_key, level, &slot);
5142
5143                 /* at the lowest level, we're done, setup the path and exit */
5144                 if (level == path->lowest_level) {
5145                         if (slot >= nritems)
5146                                 goto find_next_key;
5147                         ret = 0;
5148                         path->slots[level] = slot;
5149                         btrfs_item_key_to_cpu(cur, &found_key, slot);
5150                         goto out;
5151                 }
5152                 if (sret && slot > 0)
5153                         slot--;
5154                 /*
5155                  * check this node pointer against the min_trans parameters.
5156                  * If it is too old, old, skip to the next one.
5157                  */
5158                 while (slot < nritems) {
5159                         u64 gen;
5160
5161                         gen = btrfs_node_ptr_generation(cur, slot);
5162                         if (gen < min_trans) {
5163                                 slot++;
5164                                 continue;
5165                         }
5166                         break;
5167                 }
5168 find_next_key:
5169                 /*
5170                  * we didn't find a candidate key in this node, walk forward
5171                  * and find another one
5172                  */
5173                 if (slot >= nritems) {
5174                         path->slots[level] = slot;
5175                         btrfs_set_path_blocking(path);
5176                         sret = btrfs_find_next_key(root, path, min_key, level,
5177                                                   min_trans);
5178                         if (sret == 0) {
5179                                 btrfs_release_path(path);
5180                                 goto again;
5181                         } else {
5182                                 goto out;
5183                         }
5184                 }
5185                 /* save our key for returning back */
5186                 btrfs_node_key_to_cpu(cur, &found_key, slot);
5187                 path->slots[level] = slot;
5188                 if (level == path->lowest_level) {
5189                         ret = 0;
5190                         goto out;
5191                 }
5192                 btrfs_set_path_blocking(path);
5193                 cur = read_node_slot(fs_info, cur, slot);
5194                 if (IS_ERR(cur)) {
5195                         ret = PTR_ERR(cur);
5196                         goto out;
5197                 }
5198
5199                 btrfs_tree_read_lock(cur);
5200
5201                 path->locks[level - 1] = BTRFS_READ_LOCK;
5202                 path->nodes[level - 1] = cur;
5203                 unlock_up(path, level, 1, 0, NULL);
5204                 btrfs_clear_path_blocking(path, NULL, 0);
5205         }
5206 out:
5207         path->keep_locks = keep_locks;
5208         if (ret == 0) {
5209                 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5210                 btrfs_set_path_blocking(path);
5211                 memcpy(min_key, &found_key, sizeof(found_key));
5212         }
5213         return ret;
5214 }
5215
5216 static int tree_move_down(struct btrfs_fs_info *fs_info,
5217                            struct btrfs_path *path,
5218                            int *level)
5219 {
5220         struct extent_buffer *eb;
5221
5222         BUG_ON(*level == 0);
5223         eb = read_node_slot(fs_info, path->nodes[*level], path->slots[*level]);
5224         if (IS_ERR(eb))
5225                 return PTR_ERR(eb);
5226
5227         path->nodes[*level - 1] = eb;
5228         path->slots[*level - 1] = 0;
5229         (*level)--;
5230         return 0;
5231 }
5232
5233 static int tree_move_next_or_upnext(struct btrfs_path *path,
5234                                     int *level, int root_level)
5235 {
5236         int ret = 0;
5237         int nritems;
5238         nritems = btrfs_header_nritems(path->nodes[*level]);
5239
5240         path->slots[*level]++;
5241
5242         while (path->slots[*level] >= nritems) {
5243                 if (*level == root_level)
5244                         return -1;
5245
5246                 /* move upnext */
5247                 path->slots[*level] = 0;
5248                 free_extent_buffer(path->nodes[*level]);
5249                 path->nodes[*level] = NULL;
5250                 (*level)++;
5251                 path->slots[*level]++;
5252
5253                 nritems = btrfs_header_nritems(path->nodes[*level]);
5254                 ret = 1;
5255         }
5256         return ret;
5257 }
5258
5259 /*
5260  * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5261  * or down.
5262  */
5263 static int tree_advance(struct btrfs_fs_info *fs_info,
5264                         struct btrfs_path *path,
5265                         int *level, int root_level,
5266                         int allow_down,
5267                         struct btrfs_key *key)
5268 {
5269         int ret;
5270
5271         if (*level == 0 || !allow_down) {
5272                 ret = tree_move_next_or_upnext(path, level, root_level);
5273         } else {
5274                 ret = tree_move_down(fs_info, path, level);
5275         }
5276         if (ret >= 0) {
5277                 if (*level == 0)
5278                         btrfs_item_key_to_cpu(path->nodes[*level], key,
5279                                         path->slots[*level]);
5280                 else
5281                         btrfs_node_key_to_cpu(path->nodes[*level], key,
5282                                         path->slots[*level]);
5283         }
5284         return ret;
5285 }
5286
5287 static int tree_compare_item(struct btrfs_path *left_path,
5288                              struct btrfs_path *right_path,
5289                              char *tmp_buf)
5290 {
5291         int cmp;
5292         int len1, len2;
5293         unsigned long off1, off2;
5294
5295         len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5296         len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5297         if (len1 != len2)
5298                 return 1;
5299
5300         off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5301         off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5302                                 right_path->slots[0]);
5303
5304         read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5305
5306         cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5307         if (cmp)
5308                 return 1;
5309         return 0;
5310 }
5311
5312 #define ADVANCE 1
5313 #define ADVANCE_ONLY_NEXT -1
5314
5315 /*
5316  * This function compares two trees and calls the provided callback for
5317  * every changed/new/deleted item it finds.
5318  * If shared tree blocks are encountered, whole subtrees are skipped, making
5319  * the compare pretty fast on snapshotted subvolumes.
5320  *
5321  * This currently works on commit roots only. As commit roots are read only,
5322  * we don't do any locking. The commit roots are protected with transactions.
5323  * Transactions are ended and rejoined when a commit is tried in between.
5324  *
5325  * This function checks for modifications done to the trees while comparing.
5326  * If it detects a change, it aborts immediately.
5327  */
5328 int btrfs_compare_trees(struct btrfs_root *left_root,
5329                         struct btrfs_root *right_root,
5330                         btrfs_changed_cb_t changed_cb, void *ctx)
5331 {
5332         struct btrfs_fs_info *fs_info = left_root->fs_info;
5333         int ret;
5334         int cmp;
5335         struct btrfs_path *left_path = NULL;
5336         struct btrfs_path *right_path = NULL;
5337         struct btrfs_key left_key;
5338         struct btrfs_key right_key;
5339         char *tmp_buf = NULL;
5340         int left_root_level;
5341         int right_root_level;
5342         int left_level;
5343         int right_level;
5344         int left_end_reached;
5345         int right_end_reached;
5346         int advance_left;
5347         int advance_right;
5348         u64 left_blockptr;
5349         u64 right_blockptr;
5350         u64 left_gen;
5351         u64 right_gen;
5352
5353         left_path = btrfs_alloc_path();
5354         if (!left_path) {
5355                 ret = -ENOMEM;
5356                 goto out;
5357         }
5358         right_path = btrfs_alloc_path();
5359         if (!right_path) {
5360                 ret = -ENOMEM;
5361                 goto out;
5362         }
5363
5364         tmp_buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
5365         if (!tmp_buf) {
5366                 ret = -ENOMEM;
5367                 goto out;
5368         }
5369
5370         left_path->search_commit_root = 1;
5371         left_path->skip_locking = 1;
5372         right_path->search_commit_root = 1;
5373         right_path->skip_locking = 1;
5374
5375         /*
5376          * Strategy: Go to the first items of both trees. Then do
5377          *
5378          * If both trees are at level 0
5379          *   Compare keys of current items
5380          *     If left < right treat left item as new, advance left tree
5381          *       and repeat
5382          *     If left > right treat right item as deleted, advance right tree
5383          *       and repeat
5384          *     If left == right do deep compare of items, treat as changed if
5385          *       needed, advance both trees and repeat
5386          * If both trees are at the same level but not at level 0
5387          *   Compare keys of current nodes/leafs
5388          *     If left < right advance left tree and repeat
5389          *     If left > right advance right tree and repeat
5390          *     If left == right compare blockptrs of the next nodes/leafs
5391          *       If they match advance both trees but stay at the same level
5392          *         and repeat
5393          *       If they don't match advance both trees while allowing to go
5394          *         deeper and repeat
5395          * If tree levels are different
5396          *   Advance the tree that needs it and repeat
5397          *
5398          * Advancing a tree means:
5399          *   If we are at level 0, try to go to the next slot. If that's not
5400          *   possible, go one level up and repeat. Stop when we found a level
5401          *   where we could go to the next slot. We may at this point be on a
5402          *   node or a leaf.
5403          *
5404          *   If we are not at level 0 and not on shared tree blocks, go one
5405          *   level deeper.
5406          *
5407          *   If we are not at level 0 and on shared tree blocks, go one slot to
5408          *   the right if possible or go up and right.
5409          */
5410
5411         down_read(&fs_info->commit_root_sem);
5412         left_level = btrfs_header_level(left_root->commit_root);
5413         left_root_level = left_level;
5414         left_path->nodes[left_level] = left_root->commit_root;
5415         extent_buffer_get(left_path->nodes[left_level]);
5416
5417         right_level = btrfs_header_level(right_root->commit_root);
5418         right_root_level = right_level;
5419         right_path->nodes[right_level] = right_root->commit_root;
5420         extent_buffer_get(right_path->nodes[right_level]);
5421         up_read(&fs_info->commit_root_sem);
5422
5423         if (left_level == 0)
5424                 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5425                                 &left_key, left_path->slots[left_level]);
5426         else
5427                 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5428                                 &left_key, left_path->slots[left_level]);
5429         if (right_level == 0)
5430                 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5431                                 &right_key, right_path->slots[right_level]);
5432         else
5433                 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5434                                 &right_key, right_path->slots[right_level]);
5435
5436         left_end_reached = right_end_reached = 0;
5437         advance_left = advance_right = 0;
5438
5439         while (1) {
5440                 if (advance_left && !left_end_reached) {
5441                         ret = tree_advance(fs_info, left_path, &left_level,
5442                                         left_root_level,
5443                                         advance_left != ADVANCE_ONLY_NEXT,
5444                                         &left_key);
5445                         if (ret == -1)
5446                                 left_end_reached = ADVANCE;
5447                         else if (ret < 0)
5448                                 goto out;
5449                         advance_left = 0;
5450                 }
5451                 if (advance_right && !right_end_reached) {
5452                         ret = tree_advance(fs_info, right_path, &right_level,
5453                                         right_root_level,
5454                                         advance_right != ADVANCE_ONLY_NEXT,
5455                                         &right_key);
5456                         if (ret == -1)
5457                                 right_end_reached = ADVANCE;
5458                         else if (ret < 0)
5459                                 goto out;
5460                         advance_right = 0;
5461                 }
5462
5463                 if (left_end_reached && right_end_reached) {
5464                         ret = 0;
5465                         goto out;
5466                 } else if (left_end_reached) {
5467                         if (right_level == 0) {
5468                                 ret = changed_cb(left_path, right_path,
5469                                                 &right_key,
5470                                                 BTRFS_COMPARE_TREE_DELETED,
5471                                                 ctx);
5472                                 if (ret < 0)
5473                                         goto out;
5474                         }
5475                         advance_right = ADVANCE;
5476                         continue;
5477                 } else if (right_end_reached) {
5478                         if (left_level == 0) {
5479                                 ret = changed_cb(left_path, right_path,
5480                                                 &left_key,
5481                                                 BTRFS_COMPARE_TREE_NEW,
5482                                                 ctx);
5483                                 if (ret < 0)
5484                                         goto out;
5485                         }
5486                         advance_left = ADVANCE;
5487                         continue;
5488                 }
5489
5490                 if (left_level == 0 && right_level == 0) {
5491                         cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5492                         if (cmp < 0) {
5493                                 ret = changed_cb(left_path, right_path,
5494                                                 &left_key,
5495                                                 BTRFS_COMPARE_TREE_NEW,
5496                                                 ctx);
5497                                 if (ret < 0)
5498                                         goto out;
5499                                 advance_left = ADVANCE;
5500                         } else if (cmp > 0) {
5501                                 ret = changed_cb(left_path, right_path,
5502                                                 &right_key,
5503                                                 BTRFS_COMPARE_TREE_DELETED,
5504                                                 ctx);
5505                                 if (ret < 0)
5506                                         goto out;
5507                                 advance_right = ADVANCE;
5508                         } else {
5509                                 enum btrfs_compare_tree_result result;
5510
5511                                 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
5512                                 ret = tree_compare_item(left_path, right_path,
5513                                                         tmp_buf);
5514                                 if (ret)
5515                                         result = BTRFS_COMPARE_TREE_CHANGED;
5516                                 else
5517                                         result = BTRFS_COMPARE_TREE_SAME;
5518                                 ret = changed_cb(left_path, right_path,
5519                                                  &left_key, result, ctx);
5520                                 if (ret < 0)
5521                                         goto out;
5522                                 advance_left = ADVANCE;
5523                                 advance_right = ADVANCE;
5524                         }
5525                 } else if (left_level == right_level) {
5526                         cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5527                         if (cmp < 0) {
5528                                 advance_left = ADVANCE;
5529                         } else if (cmp > 0) {
5530                                 advance_right = ADVANCE;
5531                         } else {
5532                                 left_blockptr = btrfs_node_blockptr(
5533                                                 left_path->nodes[left_level],
5534                                                 left_path->slots[left_level]);
5535                                 right_blockptr = btrfs_node_blockptr(
5536                                                 right_path->nodes[right_level],
5537                                                 right_path->slots[right_level]);
5538                                 left_gen = btrfs_node_ptr_generation(
5539                                                 left_path->nodes[left_level],
5540                                                 left_path->slots[left_level]);
5541                                 right_gen = btrfs_node_ptr_generation(
5542                                                 right_path->nodes[right_level],
5543                                                 right_path->slots[right_level]);
5544                                 if (left_blockptr == right_blockptr &&
5545                                     left_gen == right_gen) {
5546                                         /*
5547                                          * As we're on a shared block, don't
5548                                          * allow to go deeper.
5549                                          */
5550                                         advance_left = ADVANCE_ONLY_NEXT;
5551                                         advance_right = ADVANCE_ONLY_NEXT;
5552                                 } else {
5553                                         advance_left = ADVANCE;
5554                                         advance_right = ADVANCE;
5555                                 }
5556                         }
5557                 } else if (left_level < right_level) {
5558                         advance_right = ADVANCE;
5559                 } else {
5560                         advance_left = ADVANCE;
5561                 }
5562         }
5563
5564 out:
5565         btrfs_free_path(left_path);
5566         btrfs_free_path(right_path);
5567         kvfree(tmp_buf);
5568         return ret;
5569 }
5570
5571 /*
5572  * this is similar to btrfs_next_leaf, but does not try to preserve
5573  * and fixup the path.  It looks for and returns the next key in the
5574  * tree based on the current path and the min_trans parameters.
5575  *
5576  * 0 is returned if another key is found, < 0 if there are any errors
5577  * and 1 is returned if there are no higher keys in the tree
5578  *
5579  * path->keep_locks should be set to 1 on the search made before
5580  * calling this function.
5581  */
5582 int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
5583                         struct btrfs_key *key, int level, u64 min_trans)
5584 {
5585         int slot;
5586         struct extent_buffer *c;
5587
5588         WARN_ON(!path->keep_locks);
5589         while (level < BTRFS_MAX_LEVEL) {
5590                 if (!path->nodes[level])
5591                         return 1;
5592
5593                 slot = path->slots[level] + 1;
5594                 c = path->nodes[level];
5595 next:
5596                 if (slot >= btrfs_header_nritems(c)) {
5597                         int ret;
5598                         int orig_lowest;
5599                         struct btrfs_key cur_key;
5600                         if (level + 1 >= BTRFS_MAX_LEVEL ||
5601                             !path->nodes[level + 1])
5602                                 return 1;
5603
5604                         if (path->locks[level + 1]) {
5605                                 level++;
5606                                 continue;
5607                         }
5608
5609                         slot = btrfs_header_nritems(c) - 1;
5610                         if (level == 0)
5611                                 btrfs_item_key_to_cpu(c, &cur_key, slot);
5612                         else
5613                                 btrfs_node_key_to_cpu(c, &cur_key, slot);
5614
5615                         orig_lowest = path->lowest_level;
5616                         btrfs_release_path(path);
5617                         path->lowest_level = level;
5618                         ret = btrfs_search_slot(NULL, root, &cur_key, path,
5619                                                 0, 0);
5620                         path->lowest_level = orig_lowest;
5621                         if (ret < 0)
5622                                 return ret;
5623
5624                         c = path->nodes[level];
5625                         slot = path->slots[level];
5626                         if (ret == 0)
5627                                 slot++;
5628                         goto next;
5629                 }
5630
5631                 if (level == 0)
5632                         btrfs_item_key_to_cpu(c, key, slot);
5633                 else {
5634                         u64 gen = btrfs_node_ptr_generation(c, slot);
5635
5636                         if (gen < min_trans) {
5637                                 slot++;
5638                                 goto next;
5639                         }
5640                         btrfs_node_key_to_cpu(c, key, slot);
5641                 }
5642                 return 0;
5643         }
5644         return 1;
5645 }
5646
5647 /*
5648  * search the tree again to find a leaf with greater keys
5649  * returns 0 if it found something or 1 if there are no greater leaves.
5650  * returns < 0 on io errors.
5651  */
5652 int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
5653 {
5654         return btrfs_next_old_leaf(root, path, 0);
5655 }
5656
5657 int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5658                         u64 time_seq)
5659 {
5660         int slot;
5661         int level;
5662         struct extent_buffer *c;
5663         struct extent_buffer *next;
5664         struct btrfs_key key;
5665         u32 nritems;
5666         int ret;
5667         int old_spinning = path->leave_spinning;
5668         int next_rw_lock = 0;
5669
5670         nritems = btrfs_header_nritems(path->nodes[0]);
5671         if (nritems == 0)
5672                 return 1;
5673
5674         btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5675 again:
5676         level = 1;
5677         next = NULL;
5678         next_rw_lock = 0;
5679         btrfs_release_path(path);
5680
5681         path->keep_locks = 1;
5682         path->leave_spinning = 1;
5683
5684         if (time_seq)
5685                 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5686         else
5687                 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5688         path->keep_locks = 0;
5689
5690         if (ret < 0)
5691                 return ret;
5692
5693         nritems = btrfs_header_nritems(path->nodes[0]);
5694         /*
5695          * by releasing the path above we dropped all our locks.  A balance
5696          * could have added more items next to the key that used to be
5697          * at the very end of the block.  So, check again here and
5698          * advance the path if there are now more items available.
5699          */
5700         if (nritems > 0 && path->slots[0] < nritems - 1) {
5701                 if (ret == 0)
5702                         path->slots[0]++;
5703                 ret = 0;
5704                 goto done;
5705         }
5706         /*
5707          * So the above check misses one case:
5708          * - after releasing the path above, someone has removed the item that
5709          *   used to be at the very end of the block, and balance between leafs
5710          *   gets another one with bigger key.offset to replace it.
5711          *
5712          * This one should be returned as well, or we can get leaf corruption
5713          * later(esp. in __btrfs_drop_extents()).
5714          *
5715          * And a bit more explanation about this check,
5716          * with ret > 0, the key isn't found, the path points to the slot
5717          * where it should be inserted, so the path->slots[0] item must be the
5718          * bigger one.
5719          */
5720         if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5721                 ret = 0;
5722                 goto done;
5723         }
5724
5725         while (level < BTRFS_MAX_LEVEL) {
5726                 if (!path->nodes[level]) {
5727                         ret = 1;
5728                         goto done;
5729                 }
5730
5731                 slot = path->slots[level] + 1;
5732                 c = path->nodes[level];
5733                 if (slot >= btrfs_header_nritems(c)) {
5734                         level++;
5735                         if (level == BTRFS_MAX_LEVEL) {
5736                                 ret = 1;
5737                                 goto done;
5738                         }
5739                         continue;
5740                 }
5741
5742                 if (next) {
5743                         btrfs_tree_unlock_rw(next, next_rw_lock);
5744                         free_extent_buffer(next);
5745                 }
5746
5747                 next = c;
5748                 next_rw_lock = path->locks[level];
5749                 ret = read_block_for_search(root, path, &next, level,
5750                                             slot, &key);
5751                 if (ret == -EAGAIN)
5752                         goto again;
5753
5754                 if (ret < 0) {
5755                         btrfs_release_path(path);
5756                         goto done;
5757                 }
5758
5759                 if (!path->skip_locking) {
5760                         ret = btrfs_try_tree_read_lock(next);
5761                         if (!ret && time_seq) {
5762                                 /*
5763                                  * If we don't get the lock, we may be racing
5764                                  * with push_leaf_left, holding that lock while
5765                                  * itself waiting for the leaf we've currently
5766                                  * locked. To solve this situation, we give up
5767                                  * on our lock and cycle.
5768                                  */
5769                                 free_extent_buffer(next);
5770                                 btrfs_release_path(path);
5771                                 cond_resched();
5772                                 goto again;
5773                         }
5774                         if (!ret) {
5775                                 btrfs_set_path_blocking(path);
5776                                 btrfs_tree_read_lock(next);
5777                                 btrfs_clear_path_blocking(path, next,
5778                                                           BTRFS_READ_LOCK);
5779                         }
5780                         next_rw_lock = BTRFS_READ_LOCK;
5781                 }
5782                 break;
5783         }
5784         path->slots[level] = slot;
5785         while (1) {
5786                 level--;
5787                 c = path->nodes[level];
5788                 if (path->locks[level])
5789                         btrfs_tree_unlock_rw(c, path->locks[level]);
5790
5791                 free_extent_buffer(c);
5792                 path->nodes[level] = next;
5793                 path->slots[level] = 0;
5794                 if (!path->skip_locking)
5795                         path->locks[level] = next_rw_lock;
5796                 if (!level)
5797                         break;
5798
5799                 ret = read_block_for_search(root, path, &next, level,
5800                                             0, &key);
5801                 if (ret == -EAGAIN)
5802                         goto again;
5803
5804                 if (ret < 0) {
5805                         btrfs_release_path(path);
5806                         goto done;
5807                 }
5808
5809                 if (!path->skip_locking) {
5810                         ret = btrfs_try_tree_read_lock(next);
5811                         if (!ret) {
5812                                 btrfs_set_path_blocking(path);
5813                                 btrfs_tree_read_lock(next);
5814                                 btrfs_clear_path_blocking(path, next,
5815                                                           BTRFS_READ_LOCK);
5816                         }
5817                         next_rw_lock = BTRFS_READ_LOCK;
5818                 }
5819         }
5820         ret = 0;
5821 done:
5822         unlock_up(path, 0, 1, 0, NULL);
5823         path->leave_spinning = old_spinning;
5824         if (!old_spinning)
5825                 btrfs_set_path_blocking(path);
5826
5827         return ret;
5828 }
5829
5830 /*
5831  * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5832  * searching until it gets past min_objectid or finds an item of 'type'
5833  *
5834  * returns 0 if something is found, 1 if nothing was found and < 0 on error
5835  */
5836 int btrfs_previous_item(struct btrfs_root *root,
5837                         struct btrfs_path *path, u64 min_objectid,
5838                         int type)
5839 {
5840         struct btrfs_key found_key;
5841         struct extent_buffer *leaf;
5842         u32 nritems;
5843         int ret;
5844
5845         while (1) {
5846                 if (path->slots[0] == 0) {
5847                         btrfs_set_path_blocking(path);
5848                         ret = btrfs_prev_leaf(root, path);
5849                         if (ret != 0)
5850                                 return ret;
5851                 } else {
5852                         path->slots[0]--;
5853                 }
5854                 leaf = path->nodes[0];
5855                 nritems = btrfs_header_nritems(leaf);
5856                 if (nritems == 0)
5857                         return 1;
5858                 if (path->slots[0] == nritems)
5859                         path->slots[0]--;
5860
5861                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5862                 if (found_key.objectid < min_objectid)
5863                         break;
5864                 if (found_key.type == type)
5865                         return 0;
5866                 if (found_key.objectid == min_objectid &&
5867                     found_key.type < type)
5868                         break;
5869         }
5870         return 1;
5871 }
5872
5873 /*
5874  * search in extent tree to find a previous Metadata/Data extent item with
5875  * min objecitd.
5876  *
5877  * returns 0 if something is found, 1 if nothing was found and < 0 on error
5878  */
5879 int btrfs_previous_extent_item(struct btrfs_root *root,
5880                         struct btrfs_path *path, u64 min_objectid)
5881 {
5882         struct btrfs_key found_key;
5883         struct extent_buffer *leaf;
5884         u32 nritems;
5885         int ret;
5886
5887         while (1) {
5888                 if (path->slots[0] == 0) {
5889                         btrfs_set_path_blocking(path);
5890                         ret = btrfs_prev_leaf(root, path);
5891                         if (ret != 0)
5892                                 return ret;
5893                 } else {
5894                         path->slots[0]--;
5895                 }
5896                 leaf = path->nodes[0];
5897                 nritems = btrfs_header_nritems(leaf);
5898                 if (nritems == 0)
5899                         return 1;
5900                 if (path->slots[0] == nritems)
5901                         path->slots[0]--;
5902
5903                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5904                 if (found_key.objectid < min_objectid)
5905                         break;
5906                 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5907                     found_key.type == BTRFS_METADATA_ITEM_KEY)
5908                         return 0;
5909                 if (found_key.objectid == min_objectid &&
5910                     found_key.type < BTRFS_EXTENT_ITEM_KEY)
5911                         break;
5912         }
5913         return 1;
5914 }