xref: /openbmc/linux/fs/btrfs/ctree.c (revision a724f313)
1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0
26cbd5570SChris Mason /*
3d352ac68SChris Mason  * Copyright (C) 2007,2008 Oracle.  All rights reserved.
46cbd5570SChris Mason  */
56cbd5570SChris Mason 
6a6b6e75eSChris Mason #include <linux/sched.h>
75a0e3ad6STejun Heo #include <linux/slab.h>
8bd989ba3SJan Schmidt #include <linux/rbtree.h>
9adf02123SDavid Sterba #include <linux/mm.h>
10e41d12f5SChristoph Hellwig #include <linux/error-injection.h>
119b569ea0SJosef Bacik #include "messages.h"
12eb60ceacSChris Mason #include "ctree.h"
13eb60ceacSChris Mason #include "disk-io.h"
147f5c1516SChris Mason #include "transaction.h"
155f39d397SChris Mason #include "print-tree.h"
16925baeddSChris Mason #include "locking.h"
17de37aa51SNikolay Borisov #include "volumes.h"
18f616f5cdSQu Wenruo #include "qgroup.h"
19f3a84ccdSFilipe Manana #include "tree-mod-log.h"
2088c602abSQu Wenruo #include "tree-checker.h"
21ec8eb376SJosef Bacik #include "fs.h"
22ad1ac501SJosef Bacik #include "accessors.h"
23a0231804SJosef Bacik #include "extent-tree.h"
2467707479SJosef Bacik #include "relocation.h"
256bfd0ffaSJosef Bacik #include "file-item.h"
269a8dd150SChris Mason 
27226463d7SJosef Bacik static struct kmem_cache *btrfs_path_cachep;
28226463d7SJosef Bacik 
29e089f05cSChris Mason static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
30e089f05cSChris Mason 		      *root, struct btrfs_path *path, int level);
31310712b2SOmar Sandoval static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root *root,
32310712b2SOmar Sandoval 		      const struct btrfs_key *ins_key, struct btrfs_path *path,
33310712b2SOmar Sandoval 		      int data_size, int extend);
345f39d397SChris Mason static int push_node_left(struct btrfs_trans_handle *trans,
352ff7e61eSJeff Mahoney 			  struct extent_buffer *dst,
36971a1f66SChris Mason 			  struct extent_buffer *src, int empty);
375f39d397SChris Mason static int balance_node_right(struct btrfs_trans_handle *trans,
385f39d397SChris Mason 			      struct extent_buffer *dst_buf,
395f39d397SChris Mason 			      struct extent_buffer *src_buf);
40afe5fea7STsutomu Itoh static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
41afe5fea7STsutomu Itoh 		    int level, int slot);
42d97e63b6SChris Mason 
43af024ed2SJohannes Thumshirn static const struct btrfs_csums {
44af024ed2SJohannes Thumshirn 	u16		size;
4559a0fcdbSDavid Sterba 	const char	name[10];
4659a0fcdbSDavid Sterba 	const char	driver[12];
47af024ed2SJohannes Thumshirn } btrfs_csums[] = {
48af024ed2SJohannes Thumshirn 	[BTRFS_CSUM_TYPE_CRC32] = { .size = 4, .name = "crc32c" },
493951e7f0SJohannes Thumshirn 	[BTRFS_CSUM_TYPE_XXHASH] = { .size = 8, .name = "xxhash64" },
503831bf00SJohannes Thumshirn 	[BTRFS_CSUM_TYPE_SHA256] = { .size = 32, .name = "sha256" },
51352ae07bSDavid Sterba 	[BTRFS_CSUM_TYPE_BLAKE2] = { .size = 32, .name = "blake2b",
52352ae07bSDavid Sterba 				     .driver = "blake2b-256" },
53af024ed2SJohannes Thumshirn };
54af024ed2SJohannes Thumshirn 
553a3178c7SJosef Bacik /*
563a3178c7SJosef Bacik  * The leaf data grows from end-to-front in the node.  this returns the address
573a3178c7SJosef Bacik  * of the start of the last item, which is the stop of the leaf data stack.
583a3178c7SJosef Bacik  */
593a3178c7SJosef Bacik static unsigned int leaf_data_end(const struct extent_buffer *leaf)
603a3178c7SJosef Bacik {
613a3178c7SJosef Bacik 	u32 nr = btrfs_header_nritems(leaf);
623a3178c7SJosef Bacik 
633a3178c7SJosef Bacik 	if (nr == 0)
643a3178c7SJosef Bacik 		return BTRFS_LEAF_DATA_SIZE(leaf->fs_info);
653a3178c7SJosef Bacik 	return btrfs_item_offset(leaf, nr - 1);
663a3178c7SJosef Bacik }
673a3178c7SJosef Bacik 
68637e3b48SJosef Bacik /*
69637e3b48SJosef Bacik  * Move data in a @leaf (using memmove, safe for overlapping ranges).
70637e3b48SJosef Bacik  *
71637e3b48SJosef Bacik  * @leaf:	leaf that we're doing a memmove on
72637e3b48SJosef Bacik  * @dst_offset:	item data offset we're moving to
73637e3b48SJosef Bacik  * @src_offset:	item data offset were' moving from
74637e3b48SJosef Bacik  * @len:	length of the data we're moving
75637e3b48SJosef Bacik  *
76637e3b48SJosef Bacik  * Wrapper around memmove_extent_buffer() that takes into account the header on
77637e3b48SJosef Bacik  * the leaf.  The btrfs_item offset's start directly after the header, so we
78637e3b48SJosef Bacik  * have to adjust any offsets to account for the header in the leaf.  This
79637e3b48SJosef Bacik  * handles that math to simplify the callers.
80637e3b48SJosef Bacik  */
81637e3b48SJosef Bacik static inline void memmove_leaf_data(const struct extent_buffer *leaf,
82637e3b48SJosef Bacik 				     unsigned long dst_offset,
83637e3b48SJosef Bacik 				     unsigned long src_offset,
84637e3b48SJosef Bacik 				     unsigned long len)
85637e3b48SJosef Bacik {
868009adf3SJosef Bacik 	memmove_extent_buffer(leaf, btrfs_item_nr_offset(leaf, 0) + dst_offset,
878009adf3SJosef Bacik 			      btrfs_item_nr_offset(leaf, 0) + src_offset, len);
88637e3b48SJosef Bacik }
89637e3b48SJosef Bacik 
90637e3b48SJosef Bacik /*
91637e3b48SJosef Bacik  * Copy item data from @src into @dst at the given @offset.
92637e3b48SJosef Bacik  *
93637e3b48SJosef Bacik  * @dst:	destination leaf that we're copying into
94637e3b48SJosef Bacik  * @src:	source leaf that we're copying from
95637e3b48SJosef Bacik  * @dst_offset:	item data offset we're copying to
96637e3b48SJosef Bacik  * @src_offset:	item data offset were' copying from
97637e3b48SJosef Bacik  * @len:	length of the data we're copying
98637e3b48SJosef Bacik  *
99637e3b48SJosef Bacik  * Wrapper around copy_extent_buffer() that takes into account the header on
100637e3b48SJosef Bacik  * the leaf.  The btrfs_item offset's start directly after the header, so we
101637e3b48SJosef Bacik  * have to adjust any offsets to account for the header in the leaf.  This
102637e3b48SJosef Bacik  * handles that math to simplify the callers.
103637e3b48SJosef Bacik  */
104637e3b48SJosef Bacik static inline void copy_leaf_data(const struct extent_buffer *dst,
105637e3b48SJosef Bacik 				  const struct extent_buffer *src,
106637e3b48SJosef Bacik 				  unsigned long dst_offset,
107637e3b48SJosef Bacik 				  unsigned long src_offset, unsigned long len)
108637e3b48SJosef Bacik {
1098009adf3SJosef Bacik 	copy_extent_buffer(dst, src, btrfs_item_nr_offset(dst, 0) + dst_offset,
1108009adf3SJosef Bacik 			   btrfs_item_nr_offset(src, 0) + src_offset, len);
111637e3b48SJosef Bacik }
112637e3b48SJosef Bacik 
113637e3b48SJosef Bacik /*
114637e3b48SJosef Bacik  * Move items in a @leaf (using memmove).
115637e3b48SJosef Bacik  *
116637e3b48SJosef Bacik  * @dst:	destination leaf for the items
117637e3b48SJosef Bacik  * @dst_item:	the item nr we're copying into
118637e3b48SJosef Bacik  * @src_item:	the item nr we're copying from
119637e3b48SJosef Bacik  * @nr_items:	the number of items to copy
120637e3b48SJosef Bacik  *
121637e3b48SJosef Bacik  * Wrapper around memmove_extent_buffer() that does the math to get the
122637e3b48SJosef Bacik  * appropriate offsets into the leaf from the item numbers.
123637e3b48SJosef Bacik  */
124637e3b48SJosef Bacik static inline void memmove_leaf_items(const struct extent_buffer *leaf,
125637e3b48SJosef Bacik 				      int dst_item, int src_item, int nr_items)
126637e3b48SJosef Bacik {
127637e3b48SJosef Bacik 	memmove_extent_buffer(leaf, btrfs_item_nr_offset(leaf, dst_item),
128637e3b48SJosef Bacik 			      btrfs_item_nr_offset(leaf, src_item),
129637e3b48SJosef Bacik 			      nr_items * sizeof(struct btrfs_item));
130637e3b48SJosef Bacik }
131637e3b48SJosef Bacik 
132637e3b48SJosef Bacik /*
133637e3b48SJosef Bacik  * Copy items from @src into @dst at the given @offset.
134637e3b48SJosef Bacik  *
135637e3b48SJosef Bacik  * @dst:	destination leaf for the items
136637e3b48SJosef Bacik  * @src:	source leaf for the items
137637e3b48SJosef Bacik  * @dst_item:	the item nr we're copying into
138637e3b48SJosef Bacik  * @src_item:	the item nr we're copying from
139637e3b48SJosef Bacik  * @nr_items:	the number of items to copy
140637e3b48SJosef Bacik  *
141637e3b48SJosef Bacik  * Wrapper around copy_extent_buffer() that does the math to get the
142637e3b48SJosef Bacik  * appropriate offsets into the leaf from the item numbers.
143637e3b48SJosef Bacik  */
144637e3b48SJosef Bacik static inline void copy_leaf_items(const struct extent_buffer *dst,
145637e3b48SJosef Bacik 				   const struct extent_buffer *src,
146637e3b48SJosef Bacik 				   int dst_item, int src_item, int nr_items)
147637e3b48SJosef Bacik {
148637e3b48SJosef Bacik 	copy_extent_buffer(dst, src, btrfs_item_nr_offset(dst, dst_item),
149637e3b48SJosef Bacik 			      btrfs_item_nr_offset(src, src_item),
150637e3b48SJosef Bacik 			      nr_items * sizeof(struct btrfs_item));
151637e3b48SJosef Bacik }
152637e3b48SJosef Bacik 
153af024ed2SJohannes Thumshirn int btrfs_super_csum_size(const struct btrfs_super_block *s)
154af024ed2SJohannes Thumshirn {
155af024ed2SJohannes Thumshirn 	u16 t = btrfs_super_csum_type(s);
156af024ed2SJohannes Thumshirn 	/*
157af024ed2SJohannes Thumshirn 	 * csum type is validated at mount time
158af024ed2SJohannes Thumshirn 	 */
159af024ed2SJohannes Thumshirn 	return btrfs_csums[t].size;
160af024ed2SJohannes Thumshirn }
161af024ed2SJohannes Thumshirn 
162af024ed2SJohannes Thumshirn const char *btrfs_super_csum_name(u16 csum_type)
163af024ed2SJohannes Thumshirn {
164af024ed2SJohannes Thumshirn 	/* csum type is validated at mount time */
165af024ed2SJohannes Thumshirn 	return btrfs_csums[csum_type].name;
166af024ed2SJohannes Thumshirn }
167af024ed2SJohannes Thumshirn 
168b4e967beSDavid Sterba /*
169b4e967beSDavid Sterba  * Return driver name if defined, otherwise the name that's also a valid driver
170b4e967beSDavid Sterba  * name
171b4e967beSDavid Sterba  */
172b4e967beSDavid Sterba const char *btrfs_super_csum_driver(u16 csum_type)
173b4e967beSDavid Sterba {
174b4e967beSDavid Sterba 	/* csum type is validated at mount time */
17559a0fcdbSDavid Sterba 	return btrfs_csums[csum_type].driver[0] ?
17659a0fcdbSDavid Sterba 		btrfs_csums[csum_type].driver :
177b4e967beSDavid Sterba 		btrfs_csums[csum_type].name;
178b4e967beSDavid Sterba }
179b4e967beSDavid Sterba 
180604997b4SDavid Sterba size_t __attribute_const__ btrfs_get_num_csums(void)
181f7cea56cSDavid Sterba {
182f7cea56cSDavid Sterba 	return ARRAY_SIZE(btrfs_csums);
183f7cea56cSDavid Sterba }
184f7cea56cSDavid Sterba 
1852c90e5d6SChris Mason struct btrfs_path *btrfs_alloc_path(void)
1862c90e5d6SChris Mason {
187a4c853afSChenXiaoSong 	might_sleep();
188a4c853afSChenXiaoSong 
189e2c89907SMasahiro Yamada 	return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
1902c90e5d6SChris Mason }
1912c90e5d6SChris Mason 
192d352ac68SChris Mason /* this also releases the path */
1932c90e5d6SChris Mason void btrfs_free_path(struct btrfs_path *p)
1942c90e5d6SChris Mason {
195ff175d57SJesper Juhl 	if (!p)
196ff175d57SJesper Juhl 		return;
197b3b4aa74SDavid Sterba 	btrfs_release_path(p);
1982c90e5d6SChris Mason 	kmem_cache_free(btrfs_path_cachep, p);
1992c90e5d6SChris Mason }
2002c90e5d6SChris Mason 
201d352ac68SChris Mason /*
202d352ac68SChris Mason  * path release drops references on the extent buffers in the path
203d352ac68SChris Mason  * and it drops any locks held by this path
204d352ac68SChris Mason  *
205d352ac68SChris Mason  * It is safe to call this on paths that no locks or extent buffers held.
206d352ac68SChris Mason  */
207b3b4aa74SDavid Sterba noinline void btrfs_release_path(struct btrfs_path *p)
208eb60ceacSChris Mason {
209eb60ceacSChris Mason 	int i;
210a2135011SChris Mason 
211234b63a0SChris Mason 	for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
2123f157a2fSChris Mason 		p->slots[i] = 0;
213eb60ceacSChris Mason 		if (!p->nodes[i])
214925baeddSChris Mason 			continue;
215925baeddSChris Mason 		if (p->locks[i]) {
216bd681513SChris Mason 			btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
217925baeddSChris Mason 			p->locks[i] = 0;
218925baeddSChris Mason 		}
2195f39d397SChris Mason 		free_extent_buffer(p->nodes[i]);
2203f157a2fSChris Mason 		p->nodes[i] = NULL;
221eb60ceacSChris Mason 	}
222eb60ceacSChris Mason }
223eb60ceacSChris Mason 
224d352ac68SChris Mason /*
2258bb808c6SDavid Sterba  * We want the transaction abort to print stack trace only for errors where the
2268bb808c6SDavid Sterba  * cause could be a bug, eg. due to ENOSPC, and not for common errors that are
2278bb808c6SDavid Sterba  * caused by external factors.
2288bb808c6SDavid Sterba  */
2298bb808c6SDavid Sterba bool __cold abort_should_print_stack(int errno)
2308bb808c6SDavid Sterba {
2318bb808c6SDavid Sterba 	switch (errno) {
2328bb808c6SDavid Sterba 	case -EIO:
2338bb808c6SDavid Sterba 	case -EROFS:
2348bb808c6SDavid Sterba 	case -ENOMEM:
2358bb808c6SDavid Sterba 		return false;
2368bb808c6SDavid Sterba 	}
2378bb808c6SDavid Sterba 	return true;
2388bb808c6SDavid Sterba }
2398bb808c6SDavid Sterba 
2408bb808c6SDavid Sterba /*
241d352ac68SChris Mason  * safely gets a reference on the root node of a tree.  A lock
242d352ac68SChris Mason  * is not taken, so a concurrent writer may put a different node
243d352ac68SChris Mason  * at the root of the tree.  See btrfs_lock_root_node for the
244d352ac68SChris Mason  * looping required.
245d352ac68SChris Mason  *
246d352ac68SChris Mason  * The extent buffer returned by this has a reference taken, so
247d352ac68SChris Mason  * it won't disappear.  It may stop being the root of the tree
248d352ac68SChris Mason  * at any time because there are no locks held.
249d352ac68SChris Mason  */
250925baeddSChris Mason struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
251925baeddSChris Mason {
252925baeddSChris Mason 	struct extent_buffer *eb;
253240f62c8SChris Mason 
2543083ee2eSJosef Bacik 	while (1) {
255240f62c8SChris Mason 		rcu_read_lock();
256240f62c8SChris Mason 		eb = rcu_dereference(root->node);
2573083ee2eSJosef Bacik 
2583083ee2eSJosef Bacik 		/*
2593083ee2eSJosef Bacik 		 * RCU really hurts here, we could free up the root node because
26001327610SNicholas D Steeves 		 * it was COWed but we may not get the new root node yet so do
2613083ee2eSJosef Bacik 		 * the inc_not_zero dance and if it doesn't work then
2623083ee2eSJosef Bacik 		 * synchronize_rcu and try again.
2633083ee2eSJosef Bacik 		 */
2643083ee2eSJosef Bacik 		if (atomic_inc_not_zero(&eb->refs)) {
265240f62c8SChris Mason 			rcu_read_unlock();
2663083ee2eSJosef Bacik 			break;
2673083ee2eSJosef Bacik 		}
2683083ee2eSJosef Bacik 		rcu_read_unlock();
2693083ee2eSJosef Bacik 		synchronize_rcu();
2703083ee2eSJosef Bacik 	}
271925baeddSChris Mason 	return eb;
272925baeddSChris Mason }
273925baeddSChris Mason 
27492a7cc42SQu Wenruo /*
27592a7cc42SQu Wenruo  * Cowonly root (not-shareable trees, everything not subvolume or reloc roots),
27692a7cc42SQu Wenruo  * just get put onto a simple dirty list.  Transaction walks this list to make
27792a7cc42SQu Wenruo  * sure they get properly updated on disk.
278d352ac68SChris Mason  */
2790b86a832SChris Mason static void add_root_to_dirty_list(struct btrfs_root *root)
2800b86a832SChris Mason {
2810b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
2820b246afaSJeff Mahoney 
283e7070be1SJosef Bacik 	if (test_bit(BTRFS_ROOT_DIRTY, &root->state) ||
284e7070be1SJosef Bacik 	    !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state))
285e7070be1SJosef Bacik 		return;
286e7070be1SJosef Bacik 
2870b246afaSJeff Mahoney 	spin_lock(&fs_info->trans_lock);
288e7070be1SJosef Bacik 	if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) {
289e7070be1SJosef Bacik 		/* Want the extent tree to be the last on the list */
2904fd786e6SMisono Tomohiro 		if (root->root_key.objectid == BTRFS_EXTENT_TREE_OBJECTID)
291e7070be1SJosef Bacik 			list_move_tail(&root->dirty_list,
2920b246afaSJeff Mahoney 				       &fs_info->dirty_cowonly_roots);
293e7070be1SJosef Bacik 		else
294e7070be1SJosef Bacik 			list_move(&root->dirty_list,
2950b246afaSJeff Mahoney 				  &fs_info->dirty_cowonly_roots);
2960b86a832SChris Mason 	}
2970b246afaSJeff Mahoney 	spin_unlock(&fs_info->trans_lock);
2980b86a832SChris Mason }
2990b86a832SChris Mason 
300d352ac68SChris Mason /*
301d352ac68SChris Mason  * used by snapshot creation to make a copy of a root for a tree with
302d352ac68SChris Mason  * a given objectid.  The buffer with the new root node is returned in
303d352ac68SChris Mason  * cow_ret, and this func returns zero on success or a negative error code.
304d352ac68SChris Mason  */
305be20aa9dSChris Mason int btrfs_copy_root(struct btrfs_trans_handle *trans,
306be20aa9dSChris Mason 		      struct btrfs_root *root,
307be20aa9dSChris Mason 		      struct extent_buffer *buf,
308be20aa9dSChris Mason 		      struct extent_buffer **cow_ret, u64 new_root_objectid)
309be20aa9dSChris Mason {
3100b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
311be20aa9dSChris Mason 	struct extent_buffer *cow;
312be20aa9dSChris Mason 	int ret = 0;
313be20aa9dSChris Mason 	int level;
3145d4f98a2SYan Zheng 	struct btrfs_disk_key disk_key;
315be20aa9dSChris Mason 
31692a7cc42SQu Wenruo 	WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
3170b246afaSJeff Mahoney 		trans->transid != fs_info->running_transaction->transid);
31892a7cc42SQu Wenruo 	WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
31927cdeb70SMiao Xie 		trans->transid != root->last_trans);
320be20aa9dSChris Mason 
321be20aa9dSChris Mason 	level = btrfs_header_level(buf);
3225d4f98a2SYan Zheng 	if (level == 0)
3235d4f98a2SYan Zheng 		btrfs_item_key(buf, &disk_key, 0);
3245d4f98a2SYan Zheng 	else
3255d4f98a2SYan Zheng 		btrfs_node_key(buf, &disk_key, 0);
32631840ae1SZheng Yan 
3274d75f8a9SDavid Sterba 	cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
328cf6f34aaSJosef Bacik 				     &disk_key, level, buf->start, 0,
329cf6f34aaSJosef Bacik 				     BTRFS_NESTING_NEW_ROOT);
3305d4f98a2SYan Zheng 	if (IS_ERR(cow))
331be20aa9dSChris Mason 		return PTR_ERR(cow);
332be20aa9dSChris Mason 
33358e8012cSDavid Sterba 	copy_extent_buffer_full(cow, buf);
334be20aa9dSChris Mason 	btrfs_set_header_bytenr(cow, cow->start);
335be20aa9dSChris Mason 	btrfs_set_header_generation(cow, trans->transid);
3365d4f98a2SYan Zheng 	btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
3375d4f98a2SYan Zheng 	btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
3385d4f98a2SYan Zheng 				     BTRFS_HEADER_FLAG_RELOC);
3395d4f98a2SYan Zheng 	if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
3405d4f98a2SYan Zheng 		btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
3415d4f98a2SYan Zheng 	else
342be20aa9dSChris Mason 		btrfs_set_header_owner(cow, new_root_objectid);
343be20aa9dSChris Mason 
344de37aa51SNikolay Borisov 	write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid);
3452b82032cSYan Zheng 
346be20aa9dSChris Mason 	WARN_ON(btrfs_header_generation(buf) > trans->transid);
3475d4f98a2SYan Zheng 	if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
348e339a6b0SJosef Bacik 		ret = btrfs_inc_ref(trans, root, cow, 1);
3495d4f98a2SYan Zheng 	else
350e339a6b0SJosef Bacik 		ret = btrfs_inc_ref(trans, root, cow, 0);
351867ed321SJosef Bacik 	if (ret) {
35272c9925fSFilipe Manana 		btrfs_tree_unlock(cow);
35372c9925fSFilipe Manana 		free_extent_buffer(cow);
354867ed321SJosef Bacik 		btrfs_abort_transaction(trans, ret);
355be20aa9dSChris Mason 		return ret;
356867ed321SJosef Bacik 	}
357be20aa9dSChris Mason 
358be20aa9dSChris Mason 	btrfs_mark_buffer_dirty(cow);
359be20aa9dSChris Mason 	*cow_ret = cow;
360be20aa9dSChris Mason 	return 0;
361be20aa9dSChris Mason }
362be20aa9dSChris Mason 
363d352ac68SChris Mason /*
3645d4f98a2SYan Zheng  * check if the tree block can be shared by multiple trees
3655d4f98a2SYan Zheng  */
3665d4f98a2SYan Zheng int btrfs_block_can_be_shared(struct btrfs_root *root,
3675d4f98a2SYan Zheng 			      struct extent_buffer *buf)
3685d4f98a2SYan Zheng {
3695d4f98a2SYan Zheng 	/*
37092a7cc42SQu Wenruo 	 * Tree blocks not in shareable trees and tree roots are never shared.
37192a7cc42SQu Wenruo 	 * If a block was allocated after the last snapshot and the block was
37292a7cc42SQu Wenruo 	 * not allocated by tree relocation, we know the block is not shared.
3735d4f98a2SYan Zheng 	 */
37492a7cc42SQu Wenruo 	if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
3755d4f98a2SYan Zheng 	    buf != root->node && buf != root->commit_root &&
3765d4f98a2SYan Zheng 	    (btrfs_header_generation(buf) <=
3775d4f98a2SYan Zheng 	     btrfs_root_last_snapshot(&root->root_item) ||
3785d4f98a2SYan Zheng 	     btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
3795d4f98a2SYan Zheng 		return 1;
380a79865c6SNikolay Borisov 
3815d4f98a2SYan Zheng 	return 0;
3825d4f98a2SYan Zheng }
3835d4f98a2SYan Zheng 
3845d4f98a2SYan Zheng static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
3855d4f98a2SYan Zheng 				       struct btrfs_root *root,
3865d4f98a2SYan Zheng 				       struct extent_buffer *buf,
387f0486c68SYan, Zheng 				       struct extent_buffer *cow,
388f0486c68SYan, Zheng 				       int *last_ref)
3895d4f98a2SYan Zheng {
3900b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
3915d4f98a2SYan Zheng 	u64 refs;
3925d4f98a2SYan Zheng 	u64 owner;
3935d4f98a2SYan Zheng 	u64 flags;
3945d4f98a2SYan Zheng 	u64 new_flags = 0;
3955d4f98a2SYan Zheng 	int ret;
3965d4f98a2SYan Zheng 
3975d4f98a2SYan Zheng 	/*
3985d4f98a2SYan Zheng 	 * Backrefs update rules:
3995d4f98a2SYan Zheng 	 *
4005d4f98a2SYan Zheng 	 * Always use full backrefs for extent pointers in tree block
4015d4f98a2SYan Zheng 	 * allocated by tree relocation.
4025d4f98a2SYan Zheng 	 *
4035d4f98a2SYan Zheng 	 * If a shared tree block is no longer referenced by its owner
4045d4f98a2SYan Zheng 	 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
4055d4f98a2SYan Zheng 	 * use full backrefs for extent pointers in tree block.
4065d4f98a2SYan Zheng 	 *
4075d4f98a2SYan Zheng 	 * If a tree block is been relocating
4085d4f98a2SYan Zheng 	 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
4095d4f98a2SYan Zheng 	 * use full backrefs for extent pointers in tree block.
4105d4f98a2SYan Zheng 	 * The reason for this is some operations (such as drop tree)
4115d4f98a2SYan Zheng 	 * are only allowed for blocks use full backrefs.
4125d4f98a2SYan Zheng 	 */
4135d4f98a2SYan Zheng 
4145d4f98a2SYan Zheng 	if (btrfs_block_can_be_shared(root, buf)) {
4152ff7e61eSJeff Mahoney 		ret = btrfs_lookup_extent_info(trans, fs_info, buf->start,
4163173a18fSJosef Bacik 					       btrfs_header_level(buf), 1,
4173173a18fSJosef Bacik 					       &refs, &flags);
418be1a5564SMark Fasheh 		if (ret)
419be1a5564SMark Fasheh 			return ret;
420e5df9573SMark Fasheh 		if (refs == 0) {
421e5df9573SMark Fasheh 			ret = -EROFS;
4220b246afaSJeff Mahoney 			btrfs_handle_fs_error(fs_info, ret, NULL);
423e5df9573SMark Fasheh 			return ret;
424e5df9573SMark Fasheh 		}
4255d4f98a2SYan Zheng 	} else {
4265d4f98a2SYan Zheng 		refs = 1;
4275d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
4285d4f98a2SYan Zheng 		    btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
4295d4f98a2SYan Zheng 			flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
4305d4f98a2SYan Zheng 		else
4315d4f98a2SYan Zheng 			flags = 0;
4325d4f98a2SYan Zheng 	}
4335d4f98a2SYan Zheng 
4345d4f98a2SYan Zheng 	owner = btrfs_header_owner(buf);
4355d4f98a2SYan Zheng 	BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
4365d4f98a2SYan Zheng 	       !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
4375d4f98a2SYan Zheng 
4385d4f98a2SYan Zheng 	if (refs > 1) {
4395d4f98a2SYan Zheng 		if ((owner == root->root_key.objectid ||
4405d4f98a2SYan Zheng 		     root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
4415d4f98a2SYan Zheng 		    !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
442e339a6b0SJosef Bacik 			ret = btrfs_inc_ref(trans, root, buf, 1);
443692826b2SJeff Mahoney 			if (ret)
444692826b2SJeff Mahoney 				return ret;
4455d4f98a2SYan Zheng 
4465d4f98a2SYan Zheng 			if (root->root_key.objectid ==
4475d4f98a2SYan Zheng 			    BTRFS_TREE_RELOC_OBJECTID) {
448e339a6b0SJosef Bacik 				ret = btrfs_dec_ref(trans, root, buf, 0);
449692826b2SJeff Mahoney 				if (ret)
450692826b2SJeff Mahoney 					return ret;
451e339a6b0SJosef Bacik 				ret = btrfs_inc_ref(trans, root, cow, 1);
452692826b2SJeff Mahoney 				if (ret)
453692826b2SJeff Mahoney 					return ret;
4545d4f98a2SYan Zheng 			}
4555d4f98a2SYan Zheng 			new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
4565d4f98a2SYan Zheng 		} else {
4575d4f98a2SYan Zheng 
4585d4f98a2SYan Zheng 			if (root->root_key.objectid ==
4595d4f98a2SYan Zheng 			    BTRFS_TREE_RELOC_OBJECTID)
460e339a6b0SJosef Bacik 				ret = btrfs_inc_ref(trans, root, cow, 1);
4615d4f98a2SYan Zheng 			else
462e339a6b0SJosef Bacik 				ret = btrfs_inc_ref(trans, root, cow, 0);
463692826b2SJeff Mahoney 			if (ret)
464692826b2SJeff Mahoney 				return ret;
4655d4f98a2SYan Zheng 		}
4665d4f98a2SYan Zheng 		if (new_flags != 0) {
467b1c79e09SJosef Bacik 			int level = btrfs_header_level(buf);
468b1c79e09SJosef Bacik 
46942c9d0b5SDavid Sterba 			ret = btrfs_set_disk_extent_flags(trans, buf,
4702fe6a5a1SDavid Sterba 							  new_flags, level);
471be1a5564SMark Fasheh 			if (ret)
472be1a5564SMark Fasheh 				return ret;
4735d4f98a2SYan Zheng 		}
4745d4f98a2SYan Zheng 	} else {
4755d4f98a2SYan Zheng 		if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
4765d4f98a2SYan Zheng 			if (root->root_key.objectid ==
4775d4f98a2SYan Zheng 			    BTRFS_TREE_RELOC_OBJECTID)
478e339a6b0SJosef Bacik 				ret = btrfs_inc_ref(trans, root, cow, 1);
4795d4f98a2SYan Zheng 			else
480e339a6b0SJosef Bacik 				ret = btrfs_inc_ref(trans, root, cow, 0);
481692826b2SJeff Mahoney 			if (ret)
482692826b2SJeff Mahoney 				return ret;
483e339a6b0SJosef Bacik 			ret = btrfs_dec_ref(trans, root, buf, 1);
484692826b2SJeff Mahoney 			if (ret)
485692826b2SJeff Mahoney 				return ret;
4865d4f98a2SYan Zheng 		}
487190a8339SJosef Bacik 		btrfs_clear_buffer_dirty(trans, buf);
488f0486c68SYan, Zheng 		*last_ref = 1;
4895d4f98a2SYan Zheng 	}
4905d4f98a2SYan Zheng 	return 0;
4915d4f98a2SYan Zheng }
4925d4f98a2SYan Zheng 
4935d4f98a2SYan Zheng /*
494d397712bSChris Mason  * does the dirty work in cow of a single block.  The parent block (if
495d397712bSChris Mason  * supplied) is updated to point to the new cow copy.  The new buffer is marked
496d397712bSChris Mason  * dirty and returned locked.  If you modify the block it needs to be marked
497d397712bSChris Mason  * dirty again.
498d352ac68SChris Mason  *
499d352ac68SChris Mason  * search_start -- an allocation hint for the new block
500d352ac68SChris Mason  *
501d397712bSChris Mason  * empty_size -- a hint that you plan on doing more cow.  This is the size in
502d397712bSChris Mason  * bytes the allocator should try to find free next to the block it returns.
503d397712bSChris Mason  * This is just a hint and may be ignored by the allocator.
504d352ac68SChris Mason  */
505d397712bSChris Mason static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
5065f39d397SChris Mason 			     struct btrfs_root *root,
5075f39d397SChris Mason 			     struct extent_buffer *buf,
5085f39d397SChris Mason 			     struct extent_buffer *parent, int parent_slot,
5095f39d397SChris Mason 			     struct extent_buffer **cow_ret,
5109631e4ccSJosef Bacik 			     u64 search_start, u64 empty_size,
5119631e4ccSJosef Bacik 			     enum btrfs_lock_nesting nest)
5126702ed49SChris Mason {
5130b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
5145d4f98a2SYan Zheng 	struct btrfs_disk_key disk_key;
5155f39d397SChris Mason 	struct extent_buffer *cow;
516be1a5564SMark Fasheh 	int level, ret;
517f0486c68SYan, Zheng 	int last_ref = 0;
518925baeddSChris Mason 	int unlock_orig = 0;
5190f5053ebSGoldwyn Rodrigues 	u64 parent_start = 0;
5206702ed49SChris Mason 
521925baeddSChris Mason 	if (*cow_ret == buf)
522925baeddSChris Mason 		unlock_orig = 1;
523925baeddSChris Mason 
52449d0c642SFilipe Manana 	btrfs_assert_tree_write_locked(buf);
525925baeddSChris Mason 
52692a7cc42SQu Wenruo 	WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
5270b246afaSJeff Mahoney 		trans->transid != fs_info->running_transaction->transid);
52892a7cc42SQu Wenruo 	WARN_ON(test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
52927cdeb70SMiao Xie 		trans->transid != root->last_trans);
5305f39d397SChris Mason 
5317bb86316SChris Mason 	level = btrfs_header_level(buf);
53231840ae1SZheng Yan 
5335d4f98a2SYan Zheng 	if (level == 0)
5345d4f98a2SYan Zheng 		btrfs_item_key(buf, &disk_key, 0);
5355d4f98a2SYan Zheng 	else
5365d4f98a2SYan Zheng 		btrfs_node_key(buf, &disk_key, 0);
5375d4f98a2SYan Zheng 
5380f5053ebSGoldwyn Rodrigues 	if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent)
5395d4f98a2SYan Zheng 		parent_start = parent->start;
5405d4f98a2SYan Zheng 
54179bd3712SFilipe Manana 	cow = btrfs_alloc_tree_block(trans, root, parent_start,
54279bd3712SFilipe Manana 				     root->root_key.objectid, &disk_key, level,
54379bd3712SFilipe Manana 				     search_start, empty_size, nest);
5446702ed49SChris Mason 	if (IS_ERR(cow))
5456702ed49SChris Mason 		return PTR_ERR(cow);
5466702ed49SChris Mason 
547b4ce94deSChris Mason 	/* cow is set to blocking by btrfs_init_new_buffer */
548b4ce94deSChris Mason 
54958e8012cSDavid Sterba 	copy_extent_buffer_full(cow, buf);
550db94535dSChris Mason 	btrfs_set_header_bytenr(cow, cow->start);
5515f39d397SChris Mason 	btrfs_set_header_generation(cow, trans->transid);
5525d4f98a2SYan Zheng 	btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
5535d4f98a2SYan Zheng 	btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
5545d4f98a2SYan Zheng 				     BTRFS_HEADER_FLAG_RELOC);
5555d4f98a2SYan Zheng 	if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
5565d4f98a2SYan Zheng 		btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
5575d4f98a2SYan Zheng 	else
5585f39d397SChris Mason 		btrfs_set_header_owner(cow, root->root_key.objectid);
5596702ed49SChris Mason 
560de37aa51SNikolay Borisov 	write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid);
5612b82032cSYan Zheng 
562be1a5564SMark Fasheh 	ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
563b68dc2a9SMark Fasheh 	if (ret) {
564572c83acSJosef Bacik 		btrfs_tree_unlock(cow);
565572c83acSJosef Bacik 		free_extent_buffer(cow);
56666642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
567b68dc2a9SMark Fasheh 		return ret;
568b68dc2a9SMark Fasheh 	}
5691a40e23bSZheng Yan 
57092a7cc42SQu Wenruo 	if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) {
57183d4cfd4SJosef Bacik 		ret = btrfs_reloc_cow_block(trans, root, buf, cow);
57293314e3bSZhaolei 		if (ret) {
573572c83acSJosef Bacik 			btrfs_tree_unlock(cow);
574572c83acSJosef Bacik 			free_extent_buffer(cow);
57566642832SJeff Mahoney 			btrfs_abort_transaction(trans, ret);
57683d4cfd4SJosef Bacik 			return ret;
57783d4cfd4SJosef Bacik 		}
57893314e3bSZhaolei 	}
5793fd0a558SYan, Zheng 
5806702ed49SChris Mason 	if (buf == root->node) {
581925baeddSChris Mason 		WARN_ON(parent && parent != buf);
5825d4f98a2SYan Zheng 		if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
5835d4f98a2SYan Zheng 		    btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
5845d4f98a2SYan Zheng 			parent_start = buf->start;
585925baeddSChris Mason 
58667439dadSDavid Sterba 		atomic_inc(&cow->refs);
587406808abSFilipe Manana 		ret = btrfs_tree_mod_log_insert_root(root->node, cow, true);
588d9d19a01SDavid Sterba 		BUG_ON(ret < 0);
589240f62c8SChris Mason 		rcu_assign_pointer(root->node, cow);
590925baeddSChris Mason 
5917a163608SFilipe Manana 		btrfs_free_tree_block(trans, btrfs_root_id(root), buf,
5927a163608SFilipe Manana 				      parent_start, last_ref);
5935f39d397SChris Mason 		free_extent_buffer(buf);
5940b86a832SChris Mason 		add_root_to_dirty_list(root);
5956702ed49SChris Mason 	} else {
5965d4f98a2SYan Zheng 		WARN_ON(trans->transid != btrfs_header_generation(parent));
597f3a84ccdSFilipe Manana 		btrfs_tree_mod_log_insert_key(parent, parent_slot,
59833cff222SFilipe Manana 					      BTRFS_MOD_LOG_KEY_REPLACE);
5995f39d397SChris Mason 		btrfs_set_node_blockptr(parent, parent_slot,
600db94535dSChris Mason 					cow->start);
60174493f7aSChris Mason 		btrfs_set_node_ptr_generation(parent, parent_slot,
60274493f7aSChris Mason 					      trans->transid);
6036702ed49SChris Mason 		btrfs_mark_buffer_dirty(parent);
6045de865eeSFilipe David Borba Manana 		if (last_ref) {
605f3a84ccdSFilipe Manana 			ret = btrfs_tree_mod_log_free_eb(buf);
6065de865eeSFilipe David Borba Manana 			if (ret) {
607572c83acSJosef Bacik 				btrfs_tree_unlock(cow);
608572c83acSJosef Bacik 				free_extent_buffer(cow);
60966642832SJeff Mahoney 				btrfs_abort_transaction(trans, ret);
6105de865eeSFilipe David Borba Manana 				return ret;
6115de865eeSFilipe David Borba Manana 			}
6125de865eeSFilipe David Borba Manana 		}
6137a163608SFilipe Manana 		btrfs_free_tree_block(trans, btrfs_root_id(root), buf,
6147a163608SFilipe Manana 				      parent_start, last_ref);
6156702ed49SChris Mason 	}
616925baeddSChris Mason 	if (unlock_orig)
617925baeddSChris Mason 		btrfs_tree_unlock(buf);
6183083ee2eSJosef Bacik 	free_extent_buffer_stale(buf);
6196702ed49SChris Mason 	btrfs_mark_buffer_dirty(cow);
6206702ed49SChris Mason 	*cow_ret = cow;
6216702ed49SChris Mason 	return 0;
6226702ed49SChris Mason }
6236702ed49SChris Mason 
6245d4f98a2SYan Zheng static inline int should_cow_block(struct btrfs_trans_handle *trans,
6255d4f98a2SYan Zheng 				   struct btrfs_root *root,
6265d4f98a2SYan Zheng 				   struct extent_buffer *buf)
6275d4f98a2SYan Zheng {
628f5ee5c9aSJeff Mahoney 	if (btrfs_is_testing(root->fs_info))
629faa2dbf0SJosef Bacik 		return 0;
630fccb84c9SDavid Sterba 
631d1980131SDavid Sterba 	/* Ensure we can see the FORCE_COW bit */
632d1980131SDavid Sterba 	smp_mb__before_atomic();
633f1ebcc74SLiu Bo 
634f1ebcc74SLiu Bo 	/*
635f1ebcc74SLiu Bo 	 * We do not need to cow a block if
636f1ebcc74SLiu Bo 	 * 1) this block is not created or changed in this transaction;
637f1ebcc74SLiu Bo 	 * 2) this block does not belong to TREE_RELOC tree;
638f1ebcc74SLiu Bo 	 * 3) the root is not forced COW.
639f1ebcc74SLiu Bo 	 *
640f1ebcc74SLiu Bo 	 * What is forced COW:
64101327610SNicholas D Steeves 	 *    when we create snapshot during committing the transaction,
64252042d8eSAndrea Gelmini 	 *    after we've finished copying src root, we must COW the shared
643f1ebcc74SLiu Bo 	 *    block to ensure the metadata consistency.
644f1ebcc74SLiu Bo 	 */
6455d4f98a2SYan Zheng 	if (btrfs_header_generation(buf) == trans->transid &&
6465d4f98a2SYan Zheng 	    !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
6475d4f98a2SYan Zheng 	    !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
648f1ebcc74SLiu Bo 	      btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
64927cdeb70SMiao Xie 	    !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
6505d4f98a2SYan Zheng 		return 0;
6515d4f98a2SYan Zheng 	return 1;
6525d4f98a2SYan Zheng }
6535d4f98a2SYan Zheng 
654d352ac68SChris Mason /*
655d352ac68SChris Mason  * cows a single block, see __btrfs_cow_block for the real work.
65601327610SNicholas D Steeves  * This version of it has extra checks so that a block isn't COWed more than
657d352ac68SChris Mason  * once per transaction, as long as it hasn't been written yet
658d352ac68SChris Mason  */
659d397712bSChris Mason noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
6605f39d397SChris Mason 		    struct btrfs_root *root, struct extent_buffer *buf,
6615f39d397SChris Mason 		    struct extent_buffer *parent, int parent_slot,
6629631e4ccSJosef Bacik 		    struct extent_buffer **cow_ret,
6639631e4ccSJosef Bacik 		    enum btrfs_lock_nesting nest)
66402217ed2SChris Mason {
6650b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
6666702ed49SChris Mason 	u64 search_start;
667f510cfecSChris Mason 	int ret;
668dc17ff8fSChris Mason 
66983354f07SJosef Bacik 	if (test_bit(BTRFS_ROOT_DELETING, &root->state))
67083354f07SJosef Bacik 		btrfs_err(fs_info,
67183354f07SJosef Bacik 			"COW'ing blocks on a fs root that's being dropped");
67283354f07SJosef Bacik 
6730b246afaSJeff Mahoney 	if (trans->transaction != fs_info->running_transaction)
67431b1a2bdSJulia Lawall 		WARN(1, KERN_CRIT "trans %llu running %llu\n",
675c1c9ff7cSGeert Uytterhoeven 		       trans->transid,
6760b246afaSJeff Mahoney 		       fs_info->running_transaction->transid);
67731b1a2bdSJulia Lawall 
6780b246afaSJeff Mahoney 	if (trans->transid != fs_info->generation)
67931b1a2bdSJulia Lawall 		WARN(1, KERN_CRIT "trans %llu running %llu\n",
6800b246afaSJeff Mahoney 		       trans->transid, fs_info->generation);
681dc17ff8fSChris Mason 
6825d4f98a2SYan Zheng 	if (!should_cow_block(trans, root, buf)) {
68302217ed2SChris Mason 		*cow_ret = buf;
68402217ed2SChris Mason 		return 0;
68502217ed2SChris Mason 	}
686c487685dSChris Mason 
687ee22184bSByongho Lee 	search_start = buf->start & ~((u64)SZ_1G - 1);
688b4ce94deSChris Mason 
689f616f5cdSQu Wenruo 	/*
690f616f5cdSQu Wenruo 	 * Before CoWing this block for later modification, check if it's
691f616f5cdSQu Wenruo 	 * the subtree root and do the delayed subtree trace if needed.
692f616f5cdSQu Wenruo 	 *
693f616f5cdSQu Wenruo 	 * Also We don't care about the error, as it's handled internally.
694f616f5cdSQu Wenruo 	 */
695f616f5cdSQu Wenruo 	btrfs_qgroup_trace_subtree_after_cow(trans, root, buf);
696f510cfecSChris Mason 	ret = __btrfs_cow_block(trans, root, buf, parent,
6979631e4ccSJosef Bacik 				 parent_slot, cow_ret, search_start, 0, nest);
6981abe9b8aSliubo 
6991abe9b8aSliubo 	trace_btrfs_cow_block(root, buf, *cow_ret);
7001abe9b8aSliubo 
701f510cfecSChris Mason 	return ret;
7022c90e5d6SChris Mason }
703f75e2b79SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_cow_block, ERRNO);
7046702ed49SChris Mason 
705d352ac68SChris Mason /*
706d352ac68SChris Mason  * helper function for defrag to decide if two blocks pointed to by a
707d352ac68SChris Mason  * node are actually close by
708d352ac68SChris Mason  */
7096b80053dSChris Mason static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
7106702ed49SChris Mason {
7116b80053dSChris Mason 	if (blocknr < other && other - (blocknr + blocksize) < 32768)
7126702ed49SChris Mason 		return 1;
7136b80053dSChris Mason 	if (blocknr > other && blocknr - (other + blocksize) < 32768)
7146702ed49SChris Mason 		return 1;
71502217ed2SChris Mason 	return 0;
71602217ed2SChris Mason }
71702217ed2SChris Mason 
718ce6ef5abSDavid Sterba #ifdef __LITTLE_ENDIAN
719ce6ef5abSDavid Sterba 
720ce6ef5abSDavid Sterba /*
721ce6ef5abSDavid Sterba  * Compare two keys, on little-endian the disk order is same as CPU order and
722ce6ef5abSDavid Sterba  * we can avoid the conversion.
723ce6ef5abSDavid Sterba  */
724ce6ef5abSDavid Sterba static int comp_keys(const struct btrfs_disk_key *disk_key,
725ce6ef5abSDavid Sterba 		     const struct btrfs_key *k2)
726ce6ef5abSDavid Sterba {
727ce6ef5abSDavid Sterba 	const struct btrfs_key *k1 = (const struct btrfs_key *)disk_key;
728ce6ef5abSDavid Sterba 
729ce6ef5abSDavid Sterba 	return btrfs_comp_cpu_keys(k1, k2);
730ce6ef5abSDavid Sterba }
731ce6ef5abSDavid Sterba 
732ce6ef5abSDavid Sterba #else
733ce6ef5abSDavid Sterba 
734081e9573SChris Mason /*
735081e9573SChris Mason  * compare two keys in a memcmp fashion
736081e9573SChris Mason  */
737310712b2SOmar Sandoval static int comp_keys(const struct btrfs_disk_key *disk,
738310712b2SOmar Sandoval 		     const struct btrfs_key *k2)
739081e9573SChris Mason {
740081e9573SChris Mason 	struct btrfs_key k1;
741081e9573SChris Mason 
742081e9573SChris Mason 	btrfs_disk_key_to_cpu(&k1, disk);
743081e9573SChris Mason 
74420736abaSDiego Calleja 	return btrfs_comp_cpu_keys(&k1, k2);
745081e9573SChris Mason }
746ce6ef5abSDavid Sterba #endif
747081e9573SChris Mason 
748f3465ca4SJosef Bacik /*
749f3465ca4SJosef Bacik  * same as comp_keys only with two btrfs_key's
750f3465ca4SJosef Bacik  */
751e1f60a65SDavid Sterba int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2)
752f3465ca4SJosef Bacik {
753f3465ca4SJosef Bacik 	if (k1->objectid > k2->objectid)
754f3465ca4SJosef Bacik 		return 1;
755f3465ca4SJosef Bacik 	if (k1->objectid < k2->objectid)
756f3465ca4SJosef Bacik 		return -1;
757f3465ca4SJosef Bacik 	if (k1->type > k2->type)
758f3465ca4SJosef Bacik 		return 1;
759f3465ca4SJosef Bacik 	if (k1->type < k2->type)
760f3465ca4SJosef Bacik 		return -1;
761f3465ca4SJosef Bacik 	if (k1->offset > k2->offset)
762f3465ca4SJosef Bacik 		return 1;
763f3465ca4SJosef Bacik 	if (k1->offset < k2->offset)
764f3465ca4SJosef Bacik 		return -1;
765f3465ca4SJosef Bacik 	return 0;
766f3465ca4SJosef Bacik }
767081e9573SChris Mason 
768d352ac68SChris Mason /*
769d352ac68SChris Mason  * this is used by the defrag code to go through all the
770d352ac68SChris Mason  * leaves pointed to by a node and reallocate them so that
771d352ac68SChris Mason  * disk order is close to key order
772d352ac68SChris Mason  */
7736702ed49SChris Mason int btrfs_realloc_node(struct btrfs_trans_handle *trans,
7745f39d397SChris Mason 		       struct btrfs_root *root, struct extent_buffer *parent,
775de78b51aSEric Sandeen 		       int start_slot, u64 *last_ret,
776a6b6e75eSChris Mason 		       struct btrfs_key *progress)
7776702ed49SChris Mason {
7780b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
7796b80053dSChris Mason 	struct extent_buffer *cur;
7806702ed49SChris Mason 	u64 blocknr;
781e9d0b13bSChris Mason 	u64 search_start = *last_ret;
782e9d0b13bSChris Mason 	u64 last_block = 0;
7836702ed49SChris Mason 	u64 other;
7846702ed49SChris Mason 	u32 parent_nritems;
7856702ed49SChris Mason 	int end_slot;
7866702ed49SChris Mason 	int i;
7876702ed49SChris Mason 	int err = 0;
7886b80053dSChris Mason 	u32 blocksize;
789081e9573SChris Mason 	int progress_passed = 0;
790081e9573SChris Mason 	struct btrfs_disk_key disk_key;
7916702ed49SChris Mason 
7920b246afaSJeff Mahoney 	WARN_ON(trans->transaction != fs_info->running_transaction);
7930b246afaSJeff Mahoney 	WARN_ON(trans->transid != fs_info->generation);
79486479a04SChris Mason 
7956b80053dSChris Mason 	parent_nritems = btrfs_header_nritems(parent);
7960b246afaSJeff Mahoney 	blocksize = fs_info->nodesize;
7975dfe2be7SFilipe Manana 	end_slot = parent_nritems - 1;
7986702ed49SChris Mason 
7995dfe2be7SFilipe Manana 	if (parent_nritems <= 1)
8006702ed49SChris Mason 		return 0;
8016702ed49SChris Mason 
8025dfe2be7SFilipe Manana 	for (i = start_slot; i <= end_slot; i++) {
8036702ed49SChris Mason 		int close = 1;
804a6b6e75eSChris Mason 
805081e9573SChris Mason 		btrfs_node_key(parent, &disk_key, i);
806081e9573SChris Mason 		if (!progress_passed && comp_keys(&disk_key, progress) < 0)
807081e9573SChris Mason 			continue;
808081e9573SChris Mason 
809081e9573SChris Mason 		progress_passed = 1;
8106b80053dSChris Mason 		blocknr = btrfs_node_blockptr(parent, i);
811e9d0b13bSChris Mason 		if (last_block == 0)
812e9d0b13bSChris Mason 			last_block = blocknr;
8135708b959SChris Mason 
8146702ed49SChris Mason 		if (i > 0) {
8156b80053dSChris Mason 			other = btrfs_node_blockptr(parent, i - 1);
8166b80053dSChris Mason 			close = close_blocks(blocknr, other, blocksize);
8176702ed49SChris Mason 		}
8185dfe2be7SFilipe Manana 		if (!close && i < end_slot) {
8196b80053dSChris Mason 			other = btrfs_node_blockptr(parent, i + 1);
8206b80053dSChris Mason 			close = close_blocks(blocknr, other, blocksize);
8216702ed49SChris Mason 		}
822e9d0b13bSChris Mason 		if (close) {
823e9d0b13bSChris Mason 			last_block = blocknr;
8246702ed49SChris Mason 			continue;
825e9d0b13bSChris Mason 		}
8266702ed49SChris Mason 
827206983b7SJosef Bacik 		cur = btrfs_read_node_slot(parent, i);
828206983b7SJosef Bacik 		if (IS_ERR(cur))
82964c043deSLiu Bo 			return PTR_ERR(cur);
830e9d0b13bSChris Mason 		if (search_start == 0)
8316b80053dSChris Mason 			search_start = last_block;
832e9d0b13bSChris Mason 
833e7a84565SChris Mason 		btrfs_tree_lock(cur);
8346b80053dSChris Mason 		err = __btrfs_cow_block(trans, root, cur, parent, i,
835e7a84565SChris Mason 					&cur, search_start,
8366b80053dSChris Mason 					min(16 * blocksize,
8379631e4ccSJosef Bacik 					    (end_slot - i) * blocksize),
8389631e4ccSJosef Bacik 					BTRFS_NESTING_COW);
839252c38f0SYan 		if (err) {
840e7a84565SChris Mason 			btrfs_tree_unlock(cur);
8416b80053dSChris Mason 			free_extent_buffer(cur);
8426702ed49SChris Mason 			break;
843252c38f0SYan 		}
844e7a84565SChris Mason 		search_start = cur->start;
845e7a84565SChris Mason 		last_block = cur->start;
846f2183bdeSChris Mason 		*last_ret = search_start;
847e7a84565SChris Mason 		btrfs_tree_unlock(cur);
848e7a84565SChris Mason 		free_extent_buffer(cur);
8496702ed49SChris Mason 	}
8506702ed49SChris Mason 	return err;
8516702ed49SChris Mason }
8526702ed49SChris Mason 
85374123bd7SChris Mason /*
854fb81212cSFilipe Manana  * Search for a key in the given extent_buffer.
8555f39d397SChris Mason  *
856*a724f313SFilipe Manana  * The lower boundary for the search is specified by the slot number @first_slot.
857*a724f313SFilipe Manana  * Use a value of 0 to search over the whole extent buffer.
85874123bd7SChris Mason  *
859fb81212cSFilipe Manana  * The slot in the extent buffer is returned via @slot. If the key exists in the
860fb81212cSFilipe Manana  * extent buffer, then @slot will point to the slot where the key is, otherwise
861fb81212cSFilipe Manana  * it points to the slot where you would insert the key.
862fb81212cSFilipe Manana  *
863fb81212cSFilipe Manana  * Slot may point to the total number of items (i.e. one position beyond the last
864fb81212cSFilipe Manana  * key) if the key is bigger than the last key in the extent buffer.
86574123bd7SChris Mason  */
866*a724f313SFilipe Manana int btrfs_generic_bin_search(struct extent_buffer *eb, int first_slot,
86767d5e289SMarcos Paulo de Souza 			     const struct btrfs_key *key, int *slot)
868be0e5c09SChris Mason {
869fb81212cSFilipe Manana 	unsigned long p;
870fb81212cSFilipe Manana 	int item_size;
871*a724f313SFilipe Manana 	/*
872*a724f313SFilipe Manana 	 * Use unsigned types for the low and high slots, so that we get a more
873*a724f313SFilipe Manana 	 * efficient division in the search loop below.
874*a724f313SFilipe Manana 	 */
875*a724f313SFilipe Manana 	u32 low = first_slot;
876*a724f313SFilipe Manana 	u32 high = btrfs_header_nritems(eb);
877be0e5c09SChris Mason 	int ret;
8785cd17f34SDavid Sterba 	const int key_size = sizeof(struct btrfs_disk_key);
879be0e5c09SChris Mason 
880*a724f313SFilipe Manana 	if (unlikely(low > high)) {
8815e24e9afSLiu Bo 		btrfs_err(eb->fs_info,
882*a724f313SFilipe Manana 		 "%s: low (%u) > high (%u) eb %llu owner %llu level %d",
8835e24e9afSLiu Bo 			  __func__, low, high, eb->start,
8845e24e9afSLiu Bo 			  btrfs_header_owner(eb), btrfs_header_level(eb));
8855e24e9afSLiu Bo 		return -EINVAL;
8865e24e9afSLiu Bo 	}
8875e24e9afSLiu Bo 
888fb81212cSFilipe Manana 	if (btrfs_header_level(eb) == 0) {
889fb81212cSFilipe Manana 		p = offsetof(struct btrfs_leaf, items);
890fb81212cSFilipe Manana 		item_size = sizeof(struct btrfs_item);
891fb81212cSFilipe Manana 	} else {
892fb81212cSFilipe Manana 		p = offsetof(struct btrfs_node, ptrs);
893fb81212cSFilipe Manana 		item_size = sizeof(struct btrfs_key_ptr);
894fb81212cSFilipe Manana 	}
895fb81212cSFilipe Manana 
896be0e5c09SChris Mason 	while (low < high) {
8975cd17f34SDavid Sterba 		unsigned long oip;
8985cd17f34SDavid Sterba 		unsigned long offset;
8995cd17f34SDavid Sterba 		struct btrfs_disk_key *tmp;
9005cd17f34SDavid Sterba 		struct btrfs_disk_key unaligned;
9015cd17f34SDavid Sterba 		int mid;
9025cd17f34SDavid Sterba 
903be0e5c09SChris Mason 		mid = (low + high) / 2;
9045f39d397SChris Mason 		offset = p + mid * item_size;
9055cd17f34SDavid Sterba 		oip = offset_in_page(offset);
9065f39d397SChris Mason 
9075cd17f34SDavid Sterba 		if (oip + key_size <= PAGE_SIZE) {
908884b07d0SQu Wenruo 			const unsigned long idx = get_eb_page_index(offset);
9095cd17f34SDavid Sterba 			char *kaddr = page_address(eb->pages[idx]);
910934d375bSChris Mason 
911884b07d0SQu Wenruo 			oip = get_eb_offset_in_page(eb, offset);
9125cd17f34SDavid Sterba 			tmp = (struct btrfs_disk_key *)(kaddr + oip);
9135cd17f34SDavid Sterba 		} else {
9145cd17f34SDavid Sterba 			read_extent_buffer(eb, &unaligned, offset, key_size);
9155f39d397SChris Mason 			tmp = &unaligned;
916479965d6SChris Mason 		}
917479965d6SChris Mason 
918be0e5c09SChris Mason 		ret = comp_keys(tmp, key);
919be0e5c09SChris Mason 
920be0e5c09SChris Mason 		if (ret < 0)
921be0e5c09SChris Mason 			low = mid + 1;
922be0e5c09SChris Mason 		else if (ret > 0)
923be0e5c09SChris Mason 			high = mid;
924be0e5c09SChris Mason 		else {
925be0e5c09SChris Mason 			*slot = mid;
926be0e5c09SChris Mason 			return 0;
927be0e5c09SChris Mason 		}
928be0e5c09SChris Mason 	}
929be0e5c09SChris Mason 	*slot = low;
930be0e5c09SChris Mason 	return 1;
931be0e5c09SChris Mason }
932be0e5c09SChris Mason 
933f0486c68SYan, Zheng static void root_add_used(struct btrfs_root *root, u32 size)
934f0486c68SYan, Zheng {
935f0486c68SYan, Zheng 	spin_lock(&root->accounting_lock);
936f0486c68SYan, Zheng 	btrfs_set_root_used(&root->root_item,
937f0486c68SYan, Zheng 			    btrfs_root_used(&root->root_item) + size);
938f0486c68SYan, Zheng 	spin_unlock(&root->accounting_lock);
939f0486c68SYan, Zheng }
940f0486c68SYan, Zheng 
941f0486c68SYan, Zheng static void root_sub_used(struct btrfs_root *root, u32 size)
942f0486c68SYan, Zheng {
943f0486c68SYan, Zheng 	spin_lock(&root->accounting_lock);
944f0486c68SYan, Zheng 	btrfs_set_root_used(&root->root_item,
945f0486c68SYan, Zheng 			    btrfs_root_used(&root->root_item) - size);
946f0486c68SYan, Zheng 	spin_unlock(&root->accounting_lock);
947f0486c68SYan, Zheng }
948f0486c68SYan, Zheng 
949d352ac68SChris Mason /* given a node and slot number, this reads the blocks it points to.  The
950d352ac68SChris Mason  * extent buffer is returned with a reference taken (but unlocked).
951d352ac68SChris Mason  */
9524b231ae4SDavid Sterba struct extent_buffer *btrfs_read_node_slot(struct extent_buffer *parent,
9534b231ae4SDavid Sterba 					   int slot)
954bb803951SChris Mason {
955ca7a79adSChris Mason 	int level = btrfs_header_level(parent);
956789d6a3aSQu Wenruo 	struct btrfs_tree_parent_check check = { 0 };
957416bc658SJosef Bacik 	struct extent_buffer *eb;
958416bc658SJosef Bacik 
959fb770ae4SLiu Bo 	if (slot < 0 || slot >= btrfs_header_nritems(parent))
960fb770ae4SLiu Bo 		return ERR_PTR(-ENOENT);
961ca7a79adSChris Mason 
962ca7a79adSChris Mason 	BUG_ON(level == 0);
963ca7a79adSChris Mason 
964789d6a3aSQu Wenruo 	check.level = level - 1;
965789d6a3aSQu Wenruo 	check.transid = btrfs_node_ptr_generation(parent, slot);
966789d6a3aSQu Wenruo 	check.owner_root = btrfs_header_owner(parent);
967789d6a3aSQu Wenruo 	check.has_first_key = true;
968789d6a3aSQu Wenruo 	btrfs_node_key_to_cpu(parent, &check.first_key, slot);
969789d6a3aSQu Wenruo 
970d0d20b0fSDavid Sterba 	eb = read_tree_block(parent->fs_info, btrfs_node_blockptr(parent, slot),
971789d6a3aSQu Wenruo 			     &check);
9724eb150d6SQu Wenruo 	if (IS_ERR(eb))
9734eb150d6SQu Wenruo 		return eb;
9744eb150d6SQu Wenruo 	if (!extent_buffer_uptodate(eb)) {
975416bc658SJosef Bacik 		free_extent_buffer(eb);
9764eb150d6SQu Wenruo 		return ERR_PTR(-EIO);
977416bc658SJosef Bacik 	}
978416bc658SJosef Bacik 
979416bc658SJosef Bacik 	return eb;
980bb803951SChris Mason }
981bb803951SChris Mason 
982d352ac68SChris Mason /*
983d352ac68SChris Mason  * node level balancing, used to make sure nodes are in proper order for
984d352ac68SChris Mason  * item deletion.  We balance from the top down, so we have to make sure
985d352ac68SChris Mason  * that a deletion won't leave an node completely empty later on.
986d352ac68SChris Mason  */
987e02119d5SChris Mason static noinline int balance_level(struct btrfs_trans_handle *trans,
98898ed5174SChris Mason 			 struct btrfs_root *root,
98998ed5174SChris Mason 			 struct btrfs_path *path, int level)
990bb803951SChris Mason {
9910b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
9925f39d397SChris Mason 	struct extent_buffer *right = NULL;
9935f39d397SChris Mason 	struct extent_buffer *mid;
9945f39d397SChris Mason 	struct extent_buffer *left = NULL;
9955f39d397SChris Mason 	struct extent_buffer *parent = NULL;
996bb803951SChris Mason 	int ret = 0;
997bb803951SChris Mason 	int wret;
998bb803951SChris Mason 	int pslot;
999bb803951SChris Mason 	int orig_slot = path->slots[level];
100079f95c82SChris Mason 	u64 orig_ptr;
1001bb803951SChris Mason 
100298e6b1ebSLiu Bo 	ASSERT(level > 0);
1003bb803951SChris Mason 
10045f39d397SChris Mason 	mid = path->nodes[level];
1005b4ce94deSChris Mason 
1006ac5887c8SJosef Bacik 	WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK);
10077bb86316SChris Mason 	WARN_ON(btrfs_header_generation(mid) != trans->transid);
10087bb86316SChris Mason 
10091d4f8a0cSChris Mason 	orig_ptr = btrfs_node_blockptr(mid, orig_slot);
101079f95c82SChris Mason 
1011a05a9bb1SLi Zefan 	if (level < BTRFS_MAX_LEVEL - 1) {
10125f39d397SChris Mason 		parent = path->nodes[level + 1];
1013bb803951SChris Mason 		pslot = path->slots[level + 1];
1014a05a9bb1SLi Zefan 	}
1015bb803951SChris Mason 
101640689478SChris Mason 	/*
101740689478SChris Mason 	 * deal with the case where there is only one pointer in the root
101840689478SChris Mason 	 * by promoting the node below to a root
101940689478SChris Mason 	 */
10205f39d397SChris Mason 	if (!parent) {
10215f39d397SChris Mason 		struct extent_buffer *child;
1022bb803951SChris Mason 
10235f39d397SChris Mason 		if (btrfs_header_nritems(mid) != 1)
1024bb803951SChris Mason 			return 0;
1025bb803951SChris Mason 
1026bb803951SChris Mason 		/* promote the child to a root */
10274b231ae4SDavid Sterba 		child = btrfs_read_node_slot(mid, 0);
1028fb770ae4SLiu Bo 		if (IS_ERR(child)) {
1029fb770ae4SLiu Bo 			ret = PTR_ERR(child);
10300b246afaSJeff Mahoney 			btrfs_handle_fs_error(fs_info, ret, NULL);
1031305a26afSMark Fasheh 			goto enospc;
1032305a26afSMark Fasheh 		}
1033305a26afSMark Fasheh 
1034925baeddSChris Mason 		btrfs_tree_lock(child);
10359631e4ccSJosef Bacik 		ret = btrfs_cow_block(trans, root, child, mid, 0, &child,
10369631e4ccSJosef Bacik 				      BTRFS_NESTING_COW);
1037f0486c68SYan, Zheng 		if (ret) {
1038f0486c68SYan, Zheng 			btrfs_tree_unlock(child);
1039f0486c68SYan, Zheng 			free_extent_buffer(child);
1040f0486c68SYan, Zheng 			goto enospc;
1041f0486c68SYan, Zheng 		}
10422f375ab9SYan 
1043406808abSFilipe Manana 		ret = btrfs_tree_mod_log_insert_root(root->node, child, true);
1044d9d19a01SDavid Sterba 		BUG_ON(ret < 0);
1045240f62c8SChris Mason 		rcu_assign_pointer(root->node, child);
1046925baeddSChris Mason 
10470b86a832SChris Mason 		add_root_to_dirty_list(root);
1048925baeddSChris Mason 		btrfs_tree_unlock(child);
1049b4ce94deSChris Mason 
1050925baeddSChris Mason 		path->locks[level] = 0;
1051bb803951SChris Mason 		path->nodes[level] = NULL;
1052190a8339SJosef Bacik 		btrfs_clear_buffer_dirty(trans, mid);
1053925baeddSChris Mason 		btrfs_tree_unlock(mid);
1054bb803951SChris Mason 		/* once for the path */
10555f39d397SChris Mason 		free_extent_buffer(mid);
1056f0486c68SYan, Zheng 
1057f0486c68SYan, Zheng 		root_sub_used(root, mid->len);
10587a163608SFilipe Manana 		btrfs_free_tree_block(trans, btrfs_root_id(root), mid, 0, 1);
1059bb803951SChris Mason 		/* once for the root ptr */
10603083ee2eSJosef Bacik 		free_extent_buffer_stale(mid);
1061f0486c68SYan, Zheng 		return 0;
1062bb803951SChris Mason 	}
10635f39d397SChris Mason 	if (btrfs_header_nritems(mid) >
10640b246afaSJeff Mahoney 	    BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4)
1065bb803951SChris Mason 		return 0;
1066bb803951SChris Mason 
10674b231ae4SDavid Sterba 	left = btrfs_read_node_slot(parent, pslot - 1);
1068fb770ae4SLiu Bo 	if (IS_ERR(left))
1069fb770ae4SLiu Bo 		left = NULL;
1070fb770ae4SLiu Bo 
10715f39d397SChris Mason 	if (left) {
1072bf77467aSJosef Bacik 		__btrfs_tree_lock(left, BTRFS_NESTING_LEFT);
10735f39d397SChris Mason 		wret = btrfs_cow_block(trans, root, left,
10749631e4ccSJosef Bacik 				       parent, pslot - 1, &left,
1075bf59a5a2SJosef Bacik 				       BTRFS_NESTING_LEFT_COW);
107654aa1f4dSChris Mason 		if (wret) {
107754aa1f4dSChris Mason 			ret = wret;
107854aa1f4dSChris Mason 			goto enospc;
107954aa1f4dSChris Mason 		}
10802cc58cf2SChris Mason 	}
1081fb770ae4SLiu Bo 
10824b231ae4SDavid Sterba 	right = btrfs_read_node_slot(parent, pslot + 1);
1083fb770ae4SLiu Bo 	if (IS_ERR(right))
1084fb770ae4SLiu Bo 		right = NULL;
1085fb770ae4SLiu Bo 
10865f39d397SChris Mason 	if (right) {
1087bf77467aSJosef Bacik 		__btrfs_tree_lock(right, BTRFS_NESTING_RIGHT);
10885f39d397SChris Mason 		wret = btrfs_cow_block(trans, root, right,
10899631e4ccSJosef Bacik 				       parent, pslot + 1, &right,
1090bf59a5a2SJosef Bacik 				       BTRFS_NESTING_RIGHT_COW);
10912cc58cf2SChris Mason 		if (wret) {
10922cc58cf2SChris Mason 			ret = wret;
10932cc58cf2SChris Mason 			goto enospc;
10942cc58cf2SChris Mason 		}
10952cc58cf2SChris Mason 	}
10962cc58cf2SChris Mason 
10972cc58cf2SChris Mason 	/* first, try to make some room in the middle buffer */
10985f39d397SChris Mason 	if (left) {
10995f39d397SChris Mason 		orig_slot += btrfs_header_nritems(left);
1100d30a668fSDavid Sterba 		wret = push_node_left(trans, left, mid, 1);
110179f95c82SChris Mason 		if (wret < 0)
110279f95c82SChris Mason 			ret = wret;
1103bb803951SChris Mason 	}
110479f95c82SChris Mason 
110579f95c82SChris Mason 	/*
110679f95c82SChris Mason 	 * then try to empty the right most buffer into the middle
110779f95c82SChris Mason 	 */
11085f39d397SChris Mason 	if (right) {
1109d30a668fSDavid Sterba 		wret = push_node_left(trans, mid, right, 1);
111054aa1f4dSChris Mason 		if (wret < 0 && wret != -ENOSPC)
111179f95c82SChris Mason 			ret = wret;
11125f39d397SChris Mason 		if (btrfs_header_nritems(right) == 0) {
1113190a8339SJosef Bacik 			btrfs_clear_buffer_dirty(trans, right);
1114925baeddSChris Mason 			btrfs_tree_unlock(right);
1115afe5fea7STsutomu Itoh 			del_ptr(root, path, level + 1, pslot + 1);
1116f0486c68SYan, Zheng 			root_sub_used(root, right->len);
11177a163608SFilipe Manana 			btrfs_free_tree_block(trans, btrfs_root_id(root), right,
11187a163608SFilipe Manana 					      0, 1);
11193083ee2eSJosef Bacik 			free_extent_buffer_stale(right);
1120f0486c68SYan, Zheng 			right = NULL;
1121bb803951SChris Mason 		} else {
11225f39d397SChris Mason 			struct btrfs_disk_key right_key;
11235f39d397SChris Mason 			btrfs_node_key(right, &right_key, 0);
1124f3a84ccdSFilipe Manana 			ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1,
112533cff222SFilipe Manana 					BTRFS_MOD_LOG_KEY_REPLACE);
11260e82bcfeSDavid Sterba 			BUG_ON(ret < 0);
11275f39d397SChris Mason 			btrfs_set_node_key(parent, &right_key, pslot + 1);
11285f39d397SChris Mason 			btrfs_mark_buffer_dirty(parent);
1129bb803951SChris Mason 		}
1130bb803951SChris Mason 	}
11315f39d397SChris Mason 	if (btrfs_header_nritems(mid) == 1) {
113279f95c82SChris Mason 		/*
113379f95c82SChris Mason 		 * we're not allowed to leave a node with one item in the
113479f95c82SChris Mason 		 * tree during a delete.  A deletion from lower in the tree
113579f95c82SChris Mason 		 * could try to delete the only pointer in this node.
113679f95c82SChris Mason 		 * So, pull some keys from the left.
113779f95c82SChris Mason 		 * There has to be a left pointer at this point because
113879f95c82SChris Mason 		 * otherwise we would have pulled some pointers from the
113979f95c82SChris Mason 		 * right
114079f95c82SChris Mason 		 */
1141305a26afSMark Fasheh 		if (!left) {
1142305a26afSMark Fasheh 			ret = -EROFS;
11430b246afaSJeff Mahoney 			btrfs_handle_fs_error(fs_info, ret, NULL);
1144305a26afSMark Fasheh 			goto enospc;
1145305a26afSMark Fasheh 		}
114655d32ed8SDavid Sterba 		wret = balance_node_right(trans, mid, left);
114754aa1f4dSChris Mason 		if (wret < 0) {
114879f95c82SChris Mason 			ret = wret;
114954aa1f4dSChris Mason 			goto enospc;
115054aa1f4dSChris Mason 		}
1151bce4eae9SChris Mason 		if (wret == 1) {
1152d30a668fSDavid Sterba 			wret = push_node_left(trans, left, mid, 1);
1153bce4eae9SChris Mason 			if (wret < 0)
1154bce4eae9SChris Mason 				ret = wret;
1155bce4eae9SChris Mason 		}
115679f95c82SChris Mason 		BUG_ON(wret == 1);
115779f95c82SChris Mason 	}
11585f39d397SChris Mason 	if (btrfs_header_nritems(mid) == 0) {
1159190a8339SJosef Bacik 		btrfs_clear_buffer_dirty(trans, mid);
1160925baeddSChris Mason 		btrfs_tree_unlock(mid);
1161afe5fea7STsutomu Itoh 		del_ptr(root, path, level + 1, pslot);
1162f0486c68SYan, Zheng 		root_sub_used(root, mid->len);
11637a163608SFilipe Manana 		btrfs_free_tree_block(trans, btrfs_root_id(root), mid, 0, 1);
11643083ee2eSJosef Bacik 		free_extent_buffer_stale(mid);
1165f0486c68SYan, Zheng 		mid = NULL;
116679f95c82SChris Mason 	} else {
116779f95c82SChris Mason 		/* update the parent key to reflect our changes */
11685f39d397SChris Mason 		struct btrfs_disk_key mid_key;
11695f39d397SChris Mason 		btrfs_node_key(mid, &mid_key, 0);
1170f3a84ccdSFilipe Manana 		ret = btrfs_tree_mod_log_insert_key(parent, pslot,
117133cff222SFilipe Manana 						    BTRFS_MOD_LOG_KEY_REPLACE);
11720e82bcfeSDavid Sterba 		BUG_ON(ret < 0);
11735f39d397SChris Mason 		btrfs_set_node_key(parent, &mid_key, pslot);
11745f39d397SChris Mason 		btrfs_mark_buffer_dirty(parent);
117579f95c82SChris Mason 	}
1176bb803951SChris Mason 
117779f95c82SChris Mason 	/* update the path */
11785f39d397SChris Mason 	if (left) {
11795f39d397SChris Mason 		if (btrfs_header_nritems(left) > orig_slot) {
118067439dadSDavid Sterba 			atomic_inc(&left->refs);
1181925baeddSChris Mason 			/* left was locked after cow */
11825f39d397SChris Mason 			path->nodes[level] = left;
1183bb803951SChris Mason 			path->slots[level + 1] -= 1;
1184bb803951SChris Mason 			path->slots[level] = orig_slot;
1185925baeddSChris Mason 			if (mid) {
1186925baeddSChris Mason 				btrfs_tree_unlock(mid);
11875f39d397SChris Mason 				free_extent_buffer(mid);
1188925baeddSChris Mason 			}
1189bb803951SChris Mason 		} else {
11905f39d397SChris Mason 			orig_slot -= btrfs_header_nritems(left);
1191bb803951SChris Mason 			path->slots[level] = orig_slot;
1192bb803951SChris Mason 		}
1193bb803951SChris Mason 	}
119479f95c82SChris Mason 	/* double check we haven't messed things up */
1195e20d96d6SChris Mason 	if (orig_ptr !=
11965f39d397SChris Mason 	    btrfs_node_blockptr(path->nodes[level], path->slots[level]))
119779f95c82SChris Mason 		BUG();
119854aa1f4dSChris Mason enospc:
1199925baeddSChris Mason 	if (right) {
1200925baeddSChris Mason 		btrfs_tree_unlock(right);
12015f39d397SChris Mason 		free_extent_buffer(right);
1202925baeddSChris Mason 	}
1203925baeddSChris Mason 	if (left) {
1204925baeddSChris Mason 		if (path->nodes[level] != left)
1205925baeddSChris Mason 			btrfs_tree_unlock(left);
12065f39d397SChris Mason 		free_extent_buffer(left);
1207925baeddSChris Mason 	}
1208bb803951SChris Mason 	return ret;
1209bb803951SChris Mason }
1210bb803951SChris Mason 
1211d352ac68SChris Mason /* Node balancing for insertion.  Here we only split or push nodes around
1212d352ac68SChris Mason  * when they are completely full.  This is also done top down, so we
1213d352ac68SChris Mason  * have to be pessimistic.
1214d352ac68SChris Mason  */
1215d397712bSChris Mason static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
1216e66f709bSChris Mason 					  struct btrfs_root *root,
1217e66f709bSChris Mason 					  struct btrfs_path *path, int level)
1218e66f709bSChris Mason {
12190b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
12205f39d397SChris Mason 	struct extent_buffer *right = NULL;
12215f39d397SChris Mason 	struct extent_buffer *mid;
12225f39d397SChris Mason 	struct extent_buffer *left = NULL;
12235f39d397SChris Mason 	struct extent_buffer *parent = NULL;
1224e66f709bSChris Mason 	int ret = 0;
1225e66f709bSChris Mason 	int wret;
1226e66f709bSChris Mason 	int pslot;
1227e66f709bSChris Mason 	int orig_slot = path->slots[level];
1228e66f709bSChris Mason 
1229e66f709bSChris Mason 	if (level == 0)
1230e66f709bSChris Mason 		return 1;
1231e66f709bSChris Mason 
12325f39d397SChris Mason 	mid = path->nodes[level];
12337bb86316SChris Mason 	WARN_ON(btrfs_header_generation(mid) != trans->transid);
1234e66f709bSChris Mason 
1235a05a9bb1SLi Zefan 	if (level < BTRFS_MAX_LEVEL - 1) {
12365f39d397SChris Mason 		parent = path->nodes[level + 1];
1237e66f709bSChris Mason 		pslot = path->slots[level + 1];
1238a05a9bb1SLi Zefan 	}
1239e66f709bSChris Mason 
12405f39d397SChris Mason 	if (!parent)
1241e66f709bSChris Mason 		return 1;
1242e66f709bSChris Mason 
12434b231ae4SDavid Sterba 	left = btrfs_read_node_slot(parent, pslot - 1);
1244fb770ae4SLiu Bo 	if (IS_ERR(left))
1245fb770ae4SLiu Bo 		left = NULL;
1246e66f709bSChris Mason 
1247e66f709bSChris Mason 	/* first, try to make some room in the middle buffer */
12485f39d397SChris Mason 	if (left) {
1249e66f709bSChris Mason 		u32 left_nr;
1250925baeddSChris Mason 
1251bf77467aSJosef Bacik 		__btrfs_tree_lock(left, BTRFS_NESTING_LEFT);
1252b4ce94deSChris Mason 
12535f39d397SChris Mason 		left_nr = btrfs_header_nritems(left);
12540b246afaSJeff Mahoney 		if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
125533ade1f8SChris Mason 			wret = 1;
125633ade1f8SChris Mason 		} else {
12575f39d397SChris Mason 			ret = btrfs_cow_block(trans, root, left, parent,
12589631e4ccSJosef Bacik 					      pslot - 1, &left,
1259bf59a5a2SJosef Bacik 					      BTRFS_NESTING_LEFT_COW);
126054aa1f4dSChris Mason 			if (ret)
126154aa1f4dSChris Mason 				wret = 1;
126254aa1f4dSChris Mason 			else {
1263d30a668fSDavid Sterba 				wret = push_node_left(trans, left, mid, 0);
126454aa1f4dSChris Mason 			}
126533ade1f8SChris Mason 		}
1266e66f709bSChris Mason 		if (wret < 0)
1267e66f709bSChris Mason 			ret = wret;
1268e66f709bSChris Mason 		if (wret == 0) {
12695f39d397SChris Mason 			struct btrfs_disk_key disk_key;
1270e66f709bSChris Mason 			orig_slot += left_nr;
12715f39d397SChris Mason 			btrfs_node_key(mid, &disk_key, 0);
1272f3a84ccdSFilipe Manana 			ret = btrfs_tree_mod_log_insert_key(parent, pslot,
127333cff222SFilipe Manana 					BTRFS_MOD_LOG_KEY_REPLACE);
12740e82bcfeSDavid Sterba 			BUG_ON(ret < 0);
12755f39d397SChris Mason 			btrfs_set_node_key(parent, &disk_key, pslot);
12765f39d397SChris Mason 			btrfs_mark_buffer_dirty(parent);
12775f39d397SChris Mason 			if (btrfs_header_nritems(left) > orig_slot) {
12785f39d397SChris Mason 				path->nodes[level] = left;
1279e66f709bSChris Mason 				path->slots[level + 1] -= 1;
1280e66f709bSChris Mason 				path->slots[level] = orig_slot;
1281925baeddSChris Mason 				btrfs_tree_unlock(mid);
12825f39d397SChris Mason 				free_extent_buffer(mid);
1283e66f709bSChris Mason 			} else {
1284e66f709bSChris Mason 				orig_slot -=
12855f39d397SChris Mason 					btrfs_header_nritems(left);
1286e66f709bSChris Mason 				path->slots[level] = orig_slot;
1287925baeddSChris Mason 				btrfs_tree_unlock(left);
12885f39d397SChris Mason 				free_extent_buffer(left);
1289e66f709bSChris Mason 			}
1290e66f709bSChris Mason 			return 0;
1291e66f709bSChris Mason 		}
1292925baeddSChris Mason 		btrfs_tree_unlock(left);
12935f39d397SChris Mason 		free_extent_buffer(left);
1294e66f709bSChris Mason 	}
12954b231ae4SDavid Sterba 	right = btrfs_read_node_slot(parent, pslot + 1);
1296fb770ae4SLiu Bo 	if (IS_ERR(right))
1297fb770ae4SLiu Bo 		right = NULL;
1298e66f709bSChris Mason 
1299e66f709bSChris Mason 	/*
1300e66f709bSChris Mason 	 * then try to empty the right most buffer into the middle
1301e66f709bSChris Mason 	 */
13025f39d397SChris Mason 	if (right) {
130333ade1f8SChris Mason 		u32 right_nr;
1304b4ce94deSChris Mason 
1305bf77467aSJosef Bacik 		__btrfs_tree_lock(right, BTRFS_NESTING_RIGHT);
1306b4ce94deSChris Mason 
13075f39d397SChris Mason 		right_nr = btrfs_header_nritems(right);
13080b246afaSJeff Mahoney 		if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
130933ade1f8SChris Mason 			wret = 1;
131033ade1f8SChris Mason 		} else {
13115f39d397SChris Mason 			ret = btrfs_cow_block(trans, root, right,
13125f39d397SChris Mason 					      parent, pslot + 1,
1313bf59a5a2SJosef Bacik 					      &right, BTRFS_NESTING_RIGHT_COW);
131454aa1f4dSChris Mason 			if (ret)
131554aa1f4dSChris Mason 				wret = 1;
131654aa1f4dSChris Mason 			else {
131755d32ed8SDavid Sterba 				wret = balance_node_right(trans, right, mid);
131833ade1f8SChris Mason 			}
131954aa1f4dSChris Mason 		}
1320e66f709bSChris Mason 		if (wret < 0)
1321e66f709bSChris Mason 			ret = wret;
1322e66f709bSChris Mason 		if (wret == 0) {
13235f39d397SChris Mason 			struct btrfs_disk_key disk_key;
13245f39d397SChris Mason 
13255f39d397SChris Mason 			btrfs_node_key(right, &disk_key, 0);
1326f3a84ccdSFilipe Manana 			ret = btrfs_tree_mod_log_insert_key(parent, pslot + 1,
132733cff222SFilipe Manana 					BTRFS_MOD_LOG_KEY_REPLACE);
13280e82bcfeSDavid Sterba 			BUG_ON(ret < 0);
13295f39d397SChris Mason 			btrfs_set_node_key(parent, &disk_key, pslot + 1);
13305f39d397SChris Mason 			btrfs_mark_buffer_dirty(parent);
13315f39d397SChris Mason 
13325f39d397SChris Mason 			if (btrfs_header_nritems(mid) <= orig_slot) {
13335f39d397SChris Mason 				path->nodes[level] = right;
1334e66f709bSChris Mason 				path->slots[level + 1] += 1;
1335e66f709bSChris Mason 				path->slots[level] = orig_slot -
13365f39d397SChris Mason 					btrfs_header_nritems(mid);
1337925baeddSChris Mason 				btrfs_tree_unlock(mid);
13385f39d397SChris Mason 				free_extent_buffer(mid);
1339e66f709bSChris Mason 			} else {
1340925baeddSChris Mason 				btrfs_tree_unlock(right);
13415f39d397SChris Mason 				free_extent_buffer(right);
1342e66f709bSChris Mason 			}
1343e66f709bSChris Mason 			return 0;
1344e66f709bSChris Mason 		}
1345925baeddSChris Mason 		btrfs_tree_unlock(right);
13465f39d397SChris Mason 		free_extent_buffer(right);
1347e66f709bSChris Mason 	}
1348e66f709bSChris Mason 	return 1;
1349e66f709bSChris Mason }
1350e66f709bSChris Mason 
135174123bd7SChris Mason /*
1352d352ac68SChris Mason  * readahead one full node of leaves, finding things that are close
1353d352ac68SChris Mason  * to the block in 'slot', and triggering ra on them.
13543c69faecSChris Mason  */
13552ff7e61eSJeff Mahoney static void reada_for_search(struct btrfs_fs_info *fs_info,
1356e02119d5SChris Mason 			     struct btrfs_path *path,
135701f46658SChris Mason 			     int level, int slot, u64 objectid)
13583c69faecSChris Mason {
13595f39d397SChris Mason 	struct extent_buffer *node;
136001f46658SChris Mason 	struct btrfs_disk_key disk_key;
13613c69faecSChris Mason 	u32 nritems;
13623c69faecSChris Mason 	u64 search;
1363a7175319SChris Mason 	u64 target;
13646b80053dSChris Mason 	u64 nread = 0;
1365ace75066SFilipe Manana 	u64 nread_max;
13666b80053dSChris Mason 	u32 nr;
13676b80053dSChris Mason 	u32 blocksize;
13686b80053dSChris Mason 	u32 nscan = 0;
1369db94535dSChris Mason 
1370ace75066SFilipe Manana 	if (level != 1 && path->reada != READA_FORWARD_ALWAYS)
13713c69faecSChris Mason 		return;
13723c69faecSChris Mason 
13736702ed49SChris Mason 	if (!path->nodes[level])
13746702ed49SChris Mason 		return;
13756702ed49SChris Mason 
13765f39d397SChris Mason 	node = path->nodes[level];
1377925baeddSChris Mason 
1378ace75066SFilipe Manana 	/*
1379ace75066SFilipe Manana 	 * Since the time between visiting leaves is much shorter than the time
1380ace75066SFilipe Manana 	 * between visiting nodes, limit read ahead of nodes to 1, to avoid too
1381ace75066SFilipe Manana 	 * much IO at once (possibly random).
1382ace75066SFilipe Manana 	 */
1383ace75066SFilipe Manana 	if (path->reada == READA_FORWARD_ALWAYS) {
1384ace75066SFilipe Manana 		if (level > 1)
1385ace75066SFilipe Manana 			nread_max = node->fs_info->nodesize;
1386ace75066SFilipe Manana 		else
1387ace75066SFilipe Manana 			nread_max = SZ_128K;
1388ace75066SFilipe Manana 	} else {
1389ace75066SFilipe Manana 		nread_max = SZ_64K;
1390ace75066SFilipe Manana 	}
1391ace75066SFilipe Manana 
13923c69faecSChris Mason 	search = btrfs_node_blockptr(node, slot);
13930b246afaSJeff Mahoney 	blocksize = fs_info->nodesize;
1394069a2e37SFilipe Manana 	if (path->reada != READA_FORWARD_ALWAYS) {
1395069a2e37SFilipe Manana 		struct extent_buffer *eb;
1396069a2e37SFilipe Manana 
13970b246afaSJeff Mahoney 		eb = find_extent_buffer(fs_info, search);
13985f39d397SChris Mason 		if (eb) {
13995f39d397SChris Mason 			free_extent_buffer(eb);
14003c69faecSChris Mason 			return;
14013c69faecSChris Mason 		}
1402069a2e37SFilipe Manana 	}
14033c69faecSChris Mason 
1404a7175319SChris Mason 	target = search;
14056b80053dSChris Mason 
14065f39d397SChris Mason 	nritems = btrfs_header_nritems(node);
14076b80053dSChris Mason 	nr = slot;
140825b8b936SJosef Bacik 
14093c69faecSChris Mason 	while (1) {
1410e4058b54SDavid Sterba 		if (path->reada == READA_BACK) {
14116b80053dSChris Mason 			if (nr == 0)
14123c69faecSChris Mason 				break;
14136b80053dSChris Mason 			nr--;
1414ace75066SFilipe Manana 		} else if (path->reada == READA_FORWARD ||
1415ace75066SFilipe Manana 			   path->reada == READA_FORWARD_ALWAYS) {
14166b80053dSChris Mason 			nr++;
14176b80053dSChris Mason 			if (nr >= nritems)
14186b80053dSChris Mason 				break;
14193c69faecSChris Mason 		}
1420e4058b54SDavid Sterba 		if (path->reada == READA_BACK && objectid) {
142101f46658SChris Mason 			btrfs_node_key(node, &disk_key, nr);
142201f46658SChris Mason 			if (btrfs_disk_key_objectid(&disk_key) != objectid)
142301f46658SChris Mason 				break;
142401f46658SChris Mason 		}
14256b80053dSChris Mason 		search = btrfs_node_blockptr(node, nr);
1426ace75066SFilipe Manana 		if (path->reada == READA_FORWARD_ALWAYS ||
1427ace75066SFilipe Manana 		    (search <= target && target - search <= 65536) ||
1428a7175319SChris Mason 		    (search > target && search - target <= 65536)) {
1429bfb484d9SJosef Bacik 			btrfs_readahead_node_child(node, nr);
14306b80053dSChris Mason 			nread += blocksize;
14313c69faecSChris Mason 		}
14326b80053dSChris Mason 		nscan++;
1433ace75066SFilipe Manana 		if (nread > nread_max || nscan > 32)
14346b80053dSChris Mason 			break;
14353c69faecSChris Mason 	}
14363c69faecSChris Mason }
1437925baeddSChris Mason 
1438bfb484d9SJosef Bacik static noinline void reada_for_balance(struct btrfs_path *path, int level)
1439b4ce94deSChris Mason {
1440bfb484d9SJosef Bacik 	struct extent_buffer *parent;
1441b4ce94deSChris Mason 	int slot;
1442b4ce94deSChris Mason 	int nritems;
1443b4ce94deSChris Mason 
14448c594ea8SChris Mason 	parent = path->nodes[level + 1];
1445b4ce94deSChris Mason 	if (!parent)
14460b08851fSJosef Bacik 		return;
1447b4ce94deSChris Mason 
1448b4ce94deSChris Mason 	nritems = btrfs_header_nritems(parent);
14498c594ea8SChris Mason 	slot = path->slots[level + 1];
1450b4ce94deSChris Mason 
1451bfb484d9SJosef Bacik 	if (slot > 0)
1452bfb484d9SJosef Bacik 		btrfs_readahead_node_child(parent, slot - 1);
1453bfb484d9SJosef Bacik 	if (slot + 1 < nritems)
1454bfb484d9SJosef Bacik 		btrfs_readahead_node_child(parent, slot + 1);
1455b4ce94deSChris Mason }
1456b4ce94deSChris Mason 
1457b4ce94deSChris Mason 
1458b4ce94deSChris Mason /*
1459d397712bSChris Mason  * when we walk down the tree, it is usually safe to unlock the higher layers
1460d397712bSChris Mason  * in the tree.  The exceptions are when our path goes through slot 0, because
1461d397712bSChris Mason  * operations on the tree might require changing key pointers higher up in the
1462d397712bSChris Mason  * tree.
1463d352ac68SChris Mason  *
1464d397712bSChris Mason  * callers might also have set path->keep_locks, which tells this code to keep
1465d397712bSChris Mason  * the lock if the path points to the last slot in the block.  This is part of
1466d397712bSChris Mason  * walking through the tree, and selecting the next slot in the higher block.
1467d352ac68SChris Mason  *
1468d397712bSChris Mason  * lowest_unlock sets the lowest level in the tree we're allowed to unlock.  so
1469d397712bSChris Mason  * if lowest_unlock is 1, level 0 won't be unlocked
1470d352ac68SChris Mason  */
1471e02119d5SChris Mason static noinline void unlock_up(struct btrfs_path *path, int level,
1472f7c79f30SChris Mason 			       int lowest_unlock, int min_write_lock_level,
1473f7c79f30SChris Mason 			       int *write_lock_level)
1474925baeddSChris Mason {
1475925baeddSChris Mason 	int i;
1476925baeddSChris Mason 	int skip_level = level;
1477c1227996SNikolay Borisov 	bool check_skip = true;
1478925baeddSChris Mason 
1479925baeddSChris Mason 	for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1480925baeddSChris Mason 		if (!path->nodes[i])
1481925baeddSChris Mason 			break;
1482925baeddSChris Mason 		if (!path->locks[i])
1483925baeddSChris Mason 			break;
1484c1227996SNikolay Borisov 
1485c1227996SNikolay Borisov 		if (check_skip) {
1486c1227996SNikolay Borisov 			if (path->slots[i] == 0) {
1487925baeddSChris Mason 				skip_level = i + 1;
1488925baeddSChris Mason 				continue;
1489925baeddSChris Mason 			}
1490c1227996SNikolay Borisov 
1491c1227996SNikolay Borisov 			if (path->keep_locks) {
1492925baeddSChris Mason 				u32 nritems;
1493c1227996SNikolay Borisov 
1494c1227996SNikolay Borisov 				nritems = btrfs_header_nritems(path->nodes[i]);
1495051e1b9fSChris Mason 				if (nritems < 1 || path->slots[i] >= nritems - 1) {
1496925baeddSChris Mason 					skip_level = i + 1;
1497925baeddSChris Mason 					continue;
1498925baeddSChris Mason 				}
1499925baeddSChris Mason 			}
1500c1227996SNikolay Borisov 		}
1501051e1b9fSChris Mason 
1502d80bb3f9SLiu Bo 		if (i >= lowest_unlock && i > skip_level) {
1503c1227996SNikolay Borisov 			check_skip = false;
1504c1227996SNikolay Borisov 			btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
1505925baeddSChris Mason 			path->locks[i] = 0;
1506f7c79f30SChris Mason 			if (write_lock_level &&
1507f7c79f30SChris Mason 			    i > min_write_lock_level &&
1508f7c79f30SChris Mason 			    i <= *write_lock_level) {
1509f7c79f30SChris Mason 				*write_lock_level = i - 1;
1510f7c79f30SChris Mason 			}
1511925baeddSChris Mason 		}
1512925baeddSChris Mason 	}
1513925baeddSChris Mason }
1514925baeddSChris Mason 
15153c69faecSChris Mason /*
1516376a21d7SFilipe Manana  * Helper function for btrfs_search_slot() and other functions that do a search
1517376a21d7SFilipe Manana  * on a btree. The goal is to find a tree block in the cache (the radix tree at
1518376a21d7SFilipe Manana  * fs_info->buffer_radix), but if we can't find it, or it's not up to date, read
1519376a21d7SFilipe Manana  * its pages from disk.
1520c8c42864SChris Mason  *
1521376a21d7SFilipe Manana  * Returns -EAGAIN, with the path unlocked, if the caller needs to repeat the
1522376a21d7SFilipe Manana  * whole btree search, starting again from the current root node.
1523c8c42864SChris Mason  */
1524c8c42864SChris Mason static int
1525d07b8528SLiu Bo read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
1526c8c42864SChris Mason 		      struct extent_buffer **eb_ret, int level, int slot,
1527cda79c54SDavid Sterba 		      const struct btrfs_key *key)
1528c8c42864SChris Mason {
15290b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
1530789d6a3aSQu Wenruo 	struct btrfs_tree_parent_check check = { 0 };
1531c8c42864SChris Mason 	u64 blocknr;
1532c8c42864SChris Mason 	u64 gen;
1533c8c42864SChris Mason 	struct extent_buffer *tmp;
153476a05b35SChris Mason 	int ret;
1535581c1760SQu Wenruo 	int parent_level;
1536b246666eSFilipe Manana 	bool unlock_up;
1537c8c42864SChris Mason 
1538b246666eSFilipe Manana 	unlock_up = ((level + 1 < BTRFS_MAX_LEVEL) && p->locks[level + 1]);
1539213ff4b7SNikolay Borisov 	blocknr = btrfs_node_blockptr(*eb_ret, slot);
1540213ff4b7SNikolay Borisov 	gen = btrfs_node_ptr_generation(*eb_ret, slot);
1541213ff4b7SNikolay Borisov 	parent_level = btrfs_header_level(*eb_ret);
1542789d6a3aSQu Wenruo 	btrfs_node_key_to_cpu(*eb_ret, &check.first_key, slot);
1543789d6a3aSQu Wenruo 	check.has_first_key = true;
1544789d6a3aSQu Wenruo 	check.level = parent_level - 1;
1545789d6a3aSQu Wenruo 	check.transid = gen;
1546789d6a3aSQu Wenruo 	check.owner_root = root->root_key.objectid;
1547c8c42864SChris Mason 
1548b246666eSFilipe Manana 	/*
1549b246666eSFilipe Manana 	 * If we need to read an extent buffer from disk and we are holding locks
1550b246666eSFilipe Manana 	 * on upper level nodes, we unlock all the upper nodes before reading the
1551b246666eSFilipe Manana 	 * extent buffer, and then return -EAGAIN to the caller as it needs to
1552b246666eSFilipe Manana 	 * restart the search. We don't release the lock on the current level
1553b246666eSFilipe Manana 	 * because we need to walk this node to figure out which blocks to read.
1554b246666eSFilipe Manana 	 */
15550b246afaSJeff Mahoney 	tmp = find_extent_buffer(fs_info, blocknr);
1556cb44921aSChris Mason 	if (tmp) {
1557ace75066SFilipe Manana 		if (p->reada == READA_FORWARD_ALWAYS)
1558ace75066SFilipe Manana 			reada_for_search(fs_info, p, level, slot, key->objectid);
1559ace75066SFilipe Manana 
1560b9fab919SChris Mason 		/* first we do an atomic uptodate check */
1561b9fab919SChris Mason 		if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
1562448de471SQu Wenruo 			/*
1563448de471SQu Wenruo 			 * Do extra check for first_key, eb can be stale due to
1564448de471SQu Wenruo 			 * being cached, read from scrub, or have multiple
1565448de471SQu Wenruo 			 * parents (shared tree blocks).
1566448de471SQu Wenruo 			 */
1567e064d5e9SDavid Sterba 			if (btrfs_verify_level_key(tmp,
1568789d6a3aSQu Wenruo 					parent_level - 1, &check.first_key, gen)) {
1569448de471SQu Wenruo 				free_extent_buffer(tmp);
1570448de471SQu Wenruo 				return -EUCLEAN;
1571448de471SQu Wenruo 			}
1572c8c42864SChris Mason 			*eb_ret = tmp;
1573c8c42864SChris Mason 			return 0;
1574c8c42864SChris Mason 		}
1575bdf7c00eSJosef Bacik 
1576857bc13fSJosef Bacik 		if (p->nowait) {
1577857bc13fSJosef Bacik 			free_extent_buffer(tmp);
1578857bc13fSJosef Bacik 			return -EAGAIN;
1579857bc13fSJosef Bacik 		}
1580857bc13fSJosef Bacik 
1581b246666eSFilipe Manana 		if (unlock_up)
1582b246666eSFilipe Manana 			btrfs_unlock_up_safe(p, level + 1);
1583b246666eSFilipe Manana 
1584b9fab919SChris Mason 		/* now we're allowed to do a blocking uptodate check */
1585789d6a3aSQu Wenruo 		ret = btrfs_read_extent_buffer(tmp, &check);
15869a4ffa1bSQu Wenruo 		if (ret) {
1587cb44921aSChris Mason 			free_extent_buffer(tmp);
1588b3b4aa74SDavid Sterba 			btrfs_release_path(p);
1589cb44921aSChris Mason 			return -EIO;
1590cb44921aSChris Mason 		}
159188c602abSQu Wenruo 		if (btrfs_check_eb_owner(tmp, root->root_key.objectid)) {
159288c602abSQu Wenruo 			free_extent_buffer(tmp);
159388c602abSQu Wenruo 			btrfs_release_path(p);
159488c602abSQu Wenruo 			return -EUCLEAN;
159588c602abSQu Wenruo 		}
1596b246666eSFilipe Manana 
1597b246666eSFilipe Manana 		if (unlock_up)
1598b246666eSFilipe Manana 			ret = -EAGAIN;
1599b246666eSFilipe Manana 
1600b246666eSFilipe Manana 		goto out;
1601857bc13fSJosef Bacik 	} else if (p->nowait) {
1602857bc13fSJosef Bacik 		return -EAGAIN;
16039a4ffa1bSQu Wenruo 	}
1604c8c42864SChris Mason 
1605b246666eSFilipe Manana 	if (unlock_up) {
16068c594ea8SChris Mason 		btrfs_unlock_up_safe(p, level + 1);
16074bb59055SFilipe Manana 		ret = -EAGAIN;
16084bb59055SFilipe Manana 	} else {
16094bb59055SFilipe Manana 		ret = 0;
16104bb59055SFilipe Manana 	}
16118c594ea8SChris Mason 
1612e4058b54SDavid Sterba 	if (p->reada != READA_NONE)
16132ff7e61eSJeff Mahoney 		reada_for_search(fs_info, p, level, slot, key->objectid);
1614c8c42864SChris Mason 
1615789d6a3aSQu Wenruo 	tmp = read_tree_block(fs_info, blocknr, &check);
16164eb150d6SQu Wenruo 	if (IS_ERR(tmp)) {
16174eb150d6SQu Wenruo 		btrfs_release_path(p);
16184eb150d6SQu Wenruo 		return PTR_ERR(tmp);
16194eb150d6SQu Wenruo 	}
162076a05b35SChris Mason 	/*
162176a05b35SChris Mason 	 * If the read above didn't mark this buffer up to date,
162276a05b35SChris Mason 	 * it will never end up being up to date.  Set ret to EIO now
162376a05b35SChris Mason 	 * and give up so that our caller doesn't loop forever
162476a05b35SChris Mason 	 * on our EAGAINs.
162576a05b35SChris Mason 	 */
1626e6a1d6fdSLiu Bo 	if (!extent_buffer_uptodate(tmp))
162776a05b35SChris Mason 		ret = -EIO;
162802a3307aSLiu Bo 
1629b246666eSFilipe Manana out:
16304bb59055SFilipe Manana 	if (ret == 0) {
16314bb59055SFilipe Manana 		*eb_ret = tmp;
16324bb59055SFilipe Manana 	} else {
16334bb59055SFilipe Manana 		free_extent_buffer(tmp);
163402a3307aSLiu Bo 		btrfs_release_path(p);
16354bb59055SFilipe Manana 	}
16364bb59055SFilipe Manana 
163776a05b35SChris Mason 	return ret;
1638c8c42864SChris Mason }
1639c8c42864SChris Mason 
1640c8c42864SChris Mason /*
1641c8c42864SChris Mason  * helper function for btrfs_search_slot.  This does all of the checks
1642c8c42864SChris Mason  * for node-level blocks and does any balancing required based on
1643c8c42864SChris Mason  * the ins_len.
1644c8c42864SChris Mason  *
1645c8c42864SChris Mason  * If no extra work was required, zero is returned.  If we had to
1646c8c42864SChris Mason  * drop the path, -EAGAIN is returned and btrfs_search_slot must
1647c8c42864SChris Mason  * start over
1648c8c42864SChris Mason  */
1649c8c42864SChris Mason static int
1650c8c42864SChris Mason setup_nodes_for_search(struct btrfs_trans_handle *trans,
1651c8c42864SChris Mason 		       struct btrfs_root *root, struct btrfs_path *p,
1652bd681513SChris Mason 		       struct extent_buffer *b, int level, int ins_len,
1653bd681513SChris Mason 		       int *write_lock_level)
1654c8c42864SChris Mason {
16550b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
165695b982deSNikolay Borisov 	int ret = 0;
16570b246afaSJeff Mahoney 
1658c8c42864SChris Mason 	if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
16590b246afaSJeff Mahoney 	    BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) {
1660c8c42864SChris Mason 
1661bd681513SChris Mason 		if (*write_lock_level < level + 1) {
1662bd681513SChris Mason 			*write_lock_level = level + 1;
1663bd681513SChris Mason 			btrfs_release_path(p);
166495b982deSNikolay Borisov 			return -EAGAIN;
1665bd681513SChris Mason 		}
1666bd681513SChris Mason 
1667bfb484d9SJosef Bacik 		reada_for_balance(p, level);
166895b982deSNikolay Borisov 		ret = split_node(trans, root, p, level);
1669c8c42864SChris Mason 
1670c8c42864SChris Mason 		b = p->nodes[level];
1671c8c42864SChris Mason 	} else if (ins_len < 0 && btrfs_header_nritems(b) <
16720b246afaSJeff Mahoney 		   BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) {
1673c8c42864SChris Mason 
1674bd681513SChris Mason 		if (*write_lock_level < level + 1) {
1675bd681513SChris Mason 			*write_lock_level = level + 1;
1676bd681513SChris Mason 			btrfs_release_path(p);
167795b982deSNikolay Borisov 			return -EAGAIN;
1678bd681513SChris Mason 		}
1679bd681513SChris Mason 
1680bfb484d9SJosef Bacik 		reada_for_balance(p, level);
168195b982deSNikolay Borisov 		ret = balance_level(trans, root, p, level);
168295b982deSNikolay Borisov 		if (ret)
168395b982deSNikolay Borisov 			return ret;
1684c8c42864SChris Mason 
1685c8c42864SChris Mason 		b = p->nodes[level];
1686c8c42864SChris Mason 		if (!b) {
1687b3b4aa74SDavid Sterba 			btrfs_release_path(p);
168895b982deSNikolay Borisov 			return -EAGAIN;
1689c8c42864SChris Mason 		}
1690c8c42864SChris Mason 		BUG_ON(btrfs_header_nritems(b) == 1);
1691c8c42864SChris Mason 	}
1692c8c42864SChris Mason 	return ret;
1693c8c42864SChris Mason }
1694c8c42864SChris Mason 
1695381cf658SDavid Sterba int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
1696e33d5c3dSKelley Nielsen 		u64 iobjectid, u64 ioff, u8 key_type,
1697e33d5c3dSKelley Nielsen 		struct btrfs_key *found_key)
1698e33d5c3dSKelley Nielsen {
1699e33d5c3dSKelley Nielsen 	int ret;
1700e33d5c3dSKelley Nielsen 	struct btrfs_key key;
1701e33d5c3dSKelley Nielsen 	struct extent_buffer *eb;
1702381cf658SDavid Sterba 
1703381cf658SDavid Sterba 	ASSERT(path);
17041d4c08e0SDavid Sterba 	ASSERT(found_key);
1705e33d5c3dSKelley Nielsen 
1706e33d5c3dSKelley Nielsen 	key.type = key_type;
1707e33d5c3dSKelley Nielsen 	key.objectid = iobjectid;
1708e33d5c3dSKelley Nielsen 	key.offset = ioff;
1709e33d5c3dSKelley Nielsen 
1710e33d5c3dSKelley Nielsen 	ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
17111d4c08e0SDavid Sterba 	if (ret < 0)
1712e33d5c3dSKelley Nielsen 		return ret;
1713e33d5c3dSKelley Nielsen 
1714e33d5c3dSKelley Nielsen 	eb = path->nodes[0];
1715e33d5c3dSKelley Nielsen 	if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
1716e33d5c3dSKelley Nielsen 		ret = btrfs_next_leaf(fs_root, path);
1717e33d5c3dSKelley Nielsen 		if (ret)
1718e33d5c3dSKelley Nielsen 			return ret;
1719e33d5c3dSKelley Nielsen 		eb = path->nodes[0];
1720e33d5c3dSKelley Nielsen 	}
1721e33d5c3dSKelley Nielsen 
1722e33d5c3dSKelley Nielsen 	btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
1723e33d5c3dSKelley Nielsen 	if (found_key->type != key.type ||
1724e33d5c3dSKelley Nielsen 			found_key->objectid != key.objectid)
1725e33d5c3dSKelley Nielsen 		return 1;
1726e33d5c3dSKelley Nielsen 
1727e33d5c3dSKelley Nielsen 	return 0;
1728e33d5c3dSKelley Nielsen }
1729e33d5c3dSKelley Nielsen 
17301fc28d8eSLiu Bo static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root,
17311fc28d8eSLiu Bo 							struct btrfs_path *p,
17321fc28d8eSLiu Bo 							int write_lock_level)
17331fc28d8eSLiu Bo {
17341fc28d8eSLiu Bo 	struct extent_buffer *b;
1735120de408SJosef Bacik 	int root_lock = 0;
17361fc28d8eSLiu Bo 	int level = 0;
17371fc28d8eSLiu Bo 
17381fc28d8eSLiu Bo 	if (p->search_commit_root) {
17391fc28d8eSLiu Bo 		b = root->commit_root;
174067439dadSDavid Sterba 		atomic_inc(&b->refs);
17411fc28d8eSLiu Bo 		level = btrfs_header_level(b);
1742f9ddfd05SLiu Bo 		/*
1743f9ddfd05SLiu Bo 		 * Ensure that all callers have set skip_locking when
1744f9ddfd05SLiu Bo 		 * p->search_commit_root = 1.
1745f9ddfd05SLiu Bo 		 */
1746f9ddfd05SLiu Bo 		ASSERT(p->skip_locking == 1);
17471fc28d8eSLiu Bo 
17481fc28d8eSLiu Bo 		goto out;
17491fc28d8eSLiu Bo 	}
17501fc28d8eSLiu Bo 
17511fc28d8eSLiu Bo 	if (p->skip_locking) {
17521fc28d8eSLiu Bo 		b = btrfs_root_node(root);
17531fc28d8eSLiu Bo 		level = btrfs_header_level(b);
17541fc28d8eSLiu Bo 		goto out;
17551fc28d8eSLiu Bo 	}
17561fc28d8eSLiu Bo 
1757120de408SJosef Bacik 	/* We try very hard to do read locks on the root */
1758120de408SJosef Bacik 	root_lock = BTRFS_READ_LOCK;
1759120de408SJosef Bacik 
17601fc28d8eSLiu Bo 	/*
1761662c653bSLiu Bo 	 * If the level is set to maximum, we can skip trying to get the read
1762662c653bSLiu Bo 	 * lock.
1763662c653bSLiu Bo 	 */
1764662c653bSLiu Bo 	if (write_lock_level < BTRFS_MAX_LEVEL) {
1765662c653bSLiu Bo 		/*
1766662c653bSLiu Bo 		 * We don't know the level of the root node until we actually
1767662c653bSLiu Bo 		 * have it read locked
17681fc28d8eSLiu Bo 		 */
1769857bc13fSJosef Bacik 		if (p->nowait) {
1770857bc13fSJosef Bacik 			b = btrfs_try_read_lock_root_node(root);
1771857bc13fSJosef Bacik 			if (IS_ERR(b))
1772857bc13fSJosef Bacik 				return b;
1773857bc13fSJosef Bacik 		} else {
17741bb96598SJosef Bacik 			b = btrfs_read_lock_root_node(root);
1775857bc13fSJosef Bacik 		}
17761fc28d8eSLiu Bo 		level = btrfs_header_level(b);
17771fc28d8eSLiu Bo 		if (level > write_lock_level)
17781fc28d8eSLiu Bo 			goto out;
17791fc28d8eSLiu Bo 
1780662c653bSLiu Bo 		/* Whoops, must trade for write lock */
17811fc28d8eSLiu Bo 		btrfs_tree_read_unlock(b);
17821fc28d8eSLiu Bo 		free_extent_buffer(b);
1783662c653bSLiu Bo 	}
1784662c653bSLiu Bo 
17851fc28d8eSLiu Bo 	b = btrfs_lock_root_node(root);
17861fc28d8eSLiu Bo 	root_lock = BTRFS_WRITE_LOCK;
17871fc28d8eSLiu Bo 
17881fc28d8eSLiu Bo 	/* The level might have changed, check again */
17891fc28d8eSLiu Bo 	level = btrfs_header_level(b);
17901fc28d8eSLiu Bo 
17911fc28d8eSLiu Bo out:
1792120de408SJosef Bacik 	/*
1793120de408SJosef Bacik 	 * The root may have failed to write out at some point, and thus is no
1794120de408SJosef Bacik 	 * longer valid, return an error in this case.
1795120de408SJosef Bacik 	 */
1796120de408SJosef Bacik 	if (!extent_buffer_uptodate(b)) {
1797120de408SJosef Bacik 		if (root_lock)
1798120de408SJosef Bacik 			btrfs_tree_unlock_rw(b, root_lock);
1799120de408SJosef Bacik 		free_extent_buffer(b);
1800120de408SJosef Bacik 		return ERR_PTR(-EIO);
1801120de408SJosef Bacik 	}
1802120de408SJosef Bacik 
18031fc28d8eSLiu Bo 	p->nodes[level] = b;
18041fc28d8eSLiu Bo 	if (!p->skip_locking)
18051fc28d8eSLiu Bo 		p->locks[level] = root_lock;
18061fc28d8eSLiu Bo 	/*
18071fc28d8eSLiu Bo 	 * Callers are responsible for dropping b's references.
18081fc28d8eSLiu Bo 	 */
18091fc28d8eSLiu Bo 	return b;
18101fc28d8eSLiu Bo }
18111fc28d8eSLiu Bo 
1812d96b3424SFilipe Manana /*
1813d96b3424SFilipe Manana  * Replace the extent buffer at the lowest level of the path with a cloned
1814d96b3424SFilipe Manana  * version. The purpose is to be able to use it safely, after releasing the
1815d96b3424SFilipe Manana  * commit root semaphore, even if relocation is happening in parallel, the
1816d96b3424SFilipe Manana  * transaction used for relocation is committed and the extent buffer is
1817d96b3424SFilipe Manana  * reallocated in the next transaction.
1818d96b3424SFilipe Manana  *
1819d96b3424SFilipe Manana  * This is used in a context where the caller does not prevent transaction
1820d96b3424SFilipe Manana  * commits from happening, either by holding a transaction handle or holding
1821d96b3424SFilipe Manana  * some lock, while it's doing searches through a commit root.
1822d96b3424SFilipe Manana  * At the moment it's only used for send operations.
1823d96b3424SFilipe Manana  */
1824d96b3424SFilipe Manana static int finish_need_commit_sem_search(struct btrfs_path *path)
1825d96b3424SFilipe Manana {
1826d96b3424SFilipe Manana 	const int i = path->lowest_level;
1827d96b3424SFilipe Manana 	const int slot = path->slots[i];
1828d96b3424SFilipe Manana 	struct extent_buffer *lowest = path->nodes[i];
1829d96b3424SFilipe Manana 	struct extent_buffer *clone;
1830d96b3424SFilipe Manana 
1831d96b3424SFilipe Manana 	ASSERT(path->need_commit_sem);
1832d96b3424SFilipe Manana 
1833d96b3424SFilipe Manana 	if (!lowest)
1834d96b3424SFilipe Manana 		return 0;
1835d96b3424SFilipe Manana 
1836d96b3424SFilipe Manana 	lockdep_assert_held_read(&lowest->fs_info->commit_root_sem);
1837d96b3424SFilipe Manana 
1838d96b3424SFilipe Manana 	clone = btrfs_clone_extent_buffer(lowest);
1839d96b3424SFilipe Manana 	if (!clone)
1840d96b3424SFilipe Manana 		return -ENOMEM;
1841d96b3424SFilipe Manana 
1842d96b3424SFilipe Manana 	btrfs_release_path(path);
1843d96b3424SFilipe Manana 	path->nodes[i] = clone;
1844d96b3424SFilipe Manana 	path->slots[i] = slot;
1845d96b3424SFilipe Manana 
1846d96b3424SFilipe Manana 	return 0;
1847d96b3424SFilipe Manana }
18481fc28d8eSLiu Bo 
1849e2e58d0fSFilipe Manana static inline int search_for_key_slot(struct extent_buffer *eb,
1850e2e58d0fSFilipe Manana 				      int search_low_slot,
1851e2e58d0fSFilipe Manana 				      const struct btrfs_key *key,
1852e2e58d0fSFilipe Manana 				      int prev_cmp,
1853e2e58d0fSFilipe Manana 				      int *slot)
1854e2e58d0fSFilipe Manana {
1855e2e58d0fSFilipe Manana 	/*
1856e2e58d0fSFilipe Manana 	 * If a previous call to btrfs_bin_search() on a parent node returned an
1857e2e58d0fSFilipe Manana 	 * exact match (prev_cmp == 0), we can safely assume the target key will
1858e2e58d0fSFilipe Manana 	 * always be at slot 0 on lower levels, since each key pointer
1859e2e58d0fSFilipe Manana 	 * (struct btrfs_key_ptr) refers to the lowest key accessible from the
1860e2e58d0fSFilipe Manana 	 * subtree it points to. Thus we can skip searching lower levels.
1861e2e58d0fSFilipe Manana 	 */
1862e2e58d0fSFilipe Manana 	if (prev_cmp == 0) {
1863e2e58d0fSFilipe Manana 		*slot = 0;
1864e2e58d0fSFilipe Manana 		return 0;
1865e2e58d0fSFilipe Manana 	}
1866e2e58d0fSFilipe Manana 
18677b00dfffSFilipe Manana 	return btrfs_generic_bin_search(eb, search_low_slot, key, slot);
1868e2e58d0fSFilipe Manana }
1869e2e58d0fSFilipe Manana 
1870109324cfSFilipe Manana static int search_leaf(struct btrfs_trans_handle *trans,
1871109324cfSFilipe Manana 		       struct btrfs_root *root,
1872109324cfSFilipe Manana 		       const struct btrfs_key *key,
1873109324cfSFilipe Manana 		       struct btrfs_path *path,
1874109324cfSFilipe Manana 		       int ins_len,
1875109324cfSFilipe Manana 		       int prev_cmp)
1876109324cfSFilipe Manana {
1877109324cfSFilipe Manana 	struct extent_buffer *leaf = path->nodes[0];
1878109324cfSFilipe Manana 	int leaf_free_space = -1;
1879109324cfSFilipe Manana 	int search_low_slot = 0;
1880109324cfSFilipe Manana 	int ret;
1881109324cfSFilipe Manana 	bool do_bin_search = true;
1882109324cfSFilipe Manana 
1883109324cfSFilipe Manana 	/*
1884109324cfSFilipe Manana 	 * If we are doing an insertion, the leaf has enough free space and the
1885109324cfSFilipe Manana 	 * destination slot for the key is not slot 0, then we can unlock our
1886109324cfSFilipe Manana 	 * write lock on the parent, and any other upper nodes, before doing the
1887109324cfSFilipe Manana 	 * binary search on the leaf (with search_for_key_slot()), allowing other
1888109324cfSFilipe Manana 	 * tasks to lock the parent and any other upper nodes.
1889109324cfSFilipe Manana 	 */
1890109324cfSFilipe Manana 	if (ins_len > 0) {
1891109324cfSFilipe Manana 		/*
1892109324cfSFilipe Manana 		 * Cache the leaf free space, since we will need it later and it
1893109324cfSFilipe Manana 		 * will not change until then.
1894109324cfSFilipe Manana 		 */
1895109324cfSFilipe Manana 		leaf_free_space = btrfs_leaf_free_space(leaf);
1896109324cfSFilipe Manana 
1897109324cfSFilipe Manana 		/*
1898109324cfSFilipe Manana 		 * !path->locks[1] means we have a single node tree, the leaf is
1899109324cfSFilipe Manana 		 * the root of the tree.
1900109324cfSFilipe Manana 		 */
1901109324cfSFilipe Manana 		if (path->locks[1] && leaf_free_space >= ins_len) {
1902109324cfSFilipe Manana 			struct btrfs_disk_key first_key;
1903109324cfSFilipe Manana 
1904109324cfSFilipe Manana 			ASSERT(btrfs_header_nritems(leaf) > 0);
1905109324cfSFilipe Manana 			btrfs_item_key(leaf, &first_key, 0);
1906109324cfSFilipe Manana 
1907109324cfSFilipe Manana 			/*
1908109324cfSFilipe Manana 			 * Doing the extra comparison with the first key is cheap,
1909109324cfSFilipe Manana 			 * taking into account that the first key is very likely
1910109324cfSFilipe Manana 			 * already in a cache line because it immediately follows
1911109324cfSFilipe Manana 			 * the extent buffer's header and we have recently accessed
1912109324cfSFilipe Manana 			 * the header's level field.
1913109324cfSFilipe Manana 			 */
1914109324cfSFilipe Manana 			ret = comp_keys(&first_key, key);
1915109324cfSFilipe Manana 			if (ret < 0) {
1916109324cfSFilipe Manana 				/*
1917109324cfSFilipe Manana 				 * The first key is smaller than the key we want
1918109324cfSFilipe Manana 				 * to insert, so we are safe to unlock all upper
1919109324cfSFilipe Manana 				 * nodes and we have to do the binary search.
1920109324cfSFilipe Manana 				 *
1921109324cfSFilipe Manana 				 * We do use btrfs_unlock_up_safe() and not
1922109324cfSFilipe Manana 				 * unlock_up() because the later does not unlock
1923109324cfSFilipe Manana 				 * nodes with a slot of 0 - we can safely unlock
1924109324cfSFilipe Manana 				 * any node even if its slot is 0 since in this
1925109324cfSFilipe Manana 				 * case the key does not end up at slot 0 of the
1926109324cfSFilipe Manana 				 * leaf and there's no need to split the leaf.
1927109324cfSFilipe Manana 				 */
1928109324cfSFilipe Manana 				btrfs_unlock_up_safe(path, 1);
1929109324cfSFilipe Manana 				search_low_slot = 1;
1930109324cfSFilipe Manana 			} else {
1931109324cfSFilipe Manana 				/*
1932109324cfSFilipe Manana 				 * The first key is >= then the key we want to
1933109324cfSFilipe Manana 				 * insert, so we can skip the binary search as
1934109324cfSFilipe Manana 				 * the target key will be at slot 0.
1935109324cfSFilipe Manana 				 *
1936109324cfSFilipe Manana 				 * We can not unlock upper nodes when the key is
1937109324cfSFilipe Manana 				 * less than the first key, because we will need
1938109324cfSFilipe Manana 				 * to update the key at slot 0 of the parent node
1939109324cfSFilipe Manana 				 * and possibly of other upper nodes too.
1940109324cfSFilipe Manana 				 * If the key matches the first key, then we can
1941109324cfSFilipe Manana 				 * unlock all the upper nodes, using
1942109324cfSFilipe Manana 				 * btrfs_unlock_up_safe() instead of unlock_up()
1943109324cfSFilipe Manana 				 * as stated above.
1944109324cfSFilipe Manana 				 */
1945109324cfSFilipe Manana 				if (ret == 0)
1946109324cfSFilipe Manana 					btrfs_unlock_up_safe(path, 1);
1947109324cfSFilipe Manana 				/*
1948109324cfSFilipe Manana 				 * ret is already 0 or 1, matching the result of
1949109324cfSFilipe Manana 				 * a btrfs_bin_search() call, so there is no need
1950109324cfSFilipe Manana 				 * to adjust it.
1951109324cfSFilipe Manana 				 */
1952109324cfSFilipe Manana 				do_bin_search = false;
1953109324cfSFilipe Manana 				path->slots[0] = 0;
1954109324cfSFilipe Manana 			}
1955109324cfSFilipe Manana 		}
1956109324cfSFilipe Manana 	}
1957109324cfSFilipe Manana 
1958109324cfSFilipe Manana 	if (do_bin_search) {
1959109324cfSFilipe Manana 		ret = search_for_key_slot(leaf, search_low_slot, key,
1960109324cfSFilipe Manana 					  prev_cmp, &path->slots[0]);
1961109324cfSFilipe Manana 		if (ret < 0)
1962109324cfSFilipe Manana 			return ret;
1963109324cfSFilipe Manana 	}
1964109324cfSFilipe Manana 
1965109324cfSFilipe Manana 	if (ins_len > 0) {
1966109324cfSFilipe Manana 		/*
1967109324cfSFilipe Manana 		 * Item key already exists. In this case, if we are allowed to
1968109324cfSFilipe Manana 		 * insert the item (for example, in dir_item case, item key
1969109324cfSFilipe Manana 		 * collision is allowed), it will be merged with the original
1970109324cfSFilipe Manana 		 * item. Only the item size grows, no new btrfs item will be
1971109324cfSFilipe Manana 		 * added. If search_for_extension is not set, ins_len already
1972109324cfSFilipe Manana 		 * accounts the size btrfs_item, deduct it here so leaf space
1973109324cfSFilipe Manana 		 * check will be correct.
1974109324cfSFilipe Manana 		 */
1975109324cfSFilipe Manana 		if (ret == 0 && !path->search_for_extension) {
1976109324cfSFilipe Manana 			ASSERT(ins_len >= sizeof(struct btrfs_item));
1977109324cfSFilipe Manana 			ins_len -= sizeof(struct btrfs_item);
1978109324cfSFilipe Manana 		}
1979109324cfSFilipe Manana 
1980109324cfSFilipe Manana 		ASSERT(leaf_free_space >= 0);
1981109324cfSFilipe Manana 
1982109324cfSFilipe Manana 		if (leaf_free_space < ins_len) {
1983109324cfSFilipe Manana 			int err;
1984109324cfSFilipe Manana 
1985109324cfSFilipe Manana 			err = split_leaf(trans, root, key, path, ins_len,
1986109324cfSFilipe Manana 					 (ret == 0));
1987bb8e9a60SFilipe Manana 			ASSERT(err <= 0);
1988bb8e9a60SFilipe Manana 			if (WARN_ON(err > 0))
1989bb8e9a60SFilipe Manana 				err = -EUCLEAN;
1990109324cfSFilipe Manana 			if (err)
1991109324cfSFilipe Manana 				ret = err;
1992109324cfSFilipe Manana 		}
1993109324cfSFilipe Manana 	}
1994109324cfSFilipe Manana 
1995109324cfSFilipe Manana 	return ret;
1996109324cfSFilipe Manana }
1997109324cfSFilipe Manana 
1998c8c42864SChris Mason /*
19994271eceaSNikolay Borisov  * btrfs_search_slot - look for a key in a tree and perform necessary
20004271eceaSNikolay Borisov  * modifications to preserve tree invariants.
200174123bd7SChris Mason  *
20024271eceaSNikolay Borisov  * @trans:	Handle of transaction, used when modifying the tree
20034271eceaSNikolay Borisov  * @p:		Holds all btree nodes along the search path
20044271eceaSNikolay Borisov  * @root:	The root node of the tree
20054271eceaSNikolay Borisov  * @key:	The key we are looking for
20069a664971Sethanwu  * @ins_len:	Indicates purpose of search:
20079a664971Sethanwu  *              >0  for inserts it's size of item inserted (*)
20089a664971Sethanwu  *              <0  for deletions
20099a664971Sethanwu  *               0  for plain searches, not modifying the tree
20109a664971Sethanwu  *
20119a664971Sethanwu  *              (*) If size of item inserted doesn't include
20129a664971Sethanwu  *              sizeof(struct btrfs_item), then p->search_for_extension must
20139a664971Sethanwu  *              be set.
20144271eceaSNikolay Borisov  * @cow:	boolean should CoW operations be performed. Must always be 1
20154271eceaSNikolay Borisov  *		when modifying the tree.
201697571fd0SChris Mason  *
20174271eceaSNikolay Borisov  * If @ins_len > 0, nodes and leaves will be split as we walk down the tree.
20184271eceaSNikolay Borisov  * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible)
20194271eceaSNikolay Borisov  *
20204271eceaSNikolay Borisov  * If @key is found, 0 is returned and you can find the item in the leaf level
20214271eceaSNikolay Borisov  * of the path (level 0)
20224271eceaSNikolay Borisov  *
20234271eceaSNikolay Borisov  * If @key isn't found, 1 is returned and the leaf level of the path (level 0)
20244271eceaSNikolay Borisov  * points to the slot where it should be inserted
20254271eceaSNikolay Borisov  *
20264271eceaSNikolay Borisov  * If an error is encountered while searching the tree a negative error number
20274271eceaSNikolay Borisov  * is returned
202874123bd7SChris Mason  */
2029310712b2SOmar Sandoval int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2030310712b2SOmar Sandoval 		      const struct btrfs_key *key, struct btrfs_path *p,
2031310712b2SOmar Sandoval 		      int ins_len, int cow)
2032be0e5c09SChris Mason {
2033d96b3424SFilipe Manana 	struct btrfs_fs_info *fs_info = root->fs_info;
20345f39d397SChris Mason 	struct extent_buffer *b;
2035be0e5c09SChris Mason 	int slot;
2036be0e5c09SChris Mason 	int ret;
203733c66f43SYan Zheng 	int err;
2038be0e5c09SChris Mason 	int level;
2039925baeddSChris Mason 	int lowest_unlock = 1;
2040bd681513SChris Mason 	/* everything at write_lock_level or lower must be write locked */
2041bd681513SChris Mason 	int write_lock_level = 0;
20429f3a7427SChris Mason 	u8 lowest_level = 0;
2043f7c79f30SChris Mason 	int min_write_lock_level;
2044d7396f07SFilipe David Borba Manana 	int prev_cmp;
20459f3a7427SChris Mason 
2046a4c853afSChenXiaoSong 	might_sleep();
2047a4c853afSChenXiaoSong 
20486702ed49SChris Mason 	lowest_level = p->lowest_level;
2049323ac95bSChris Mason 	WARN_ON(lowest_level && ins_len > 0);
205022b0ebdaSChris Mason 	WARN_ON(p->nodes[0] != NULL);
2051eb653de1SFilipe David Borba Manana 	BUG_ON(!cow && ins_len);
205225179201SJosef Bacik 
2053857bc13fSJosef Bacik 	/*
2054857bc13fSJosef Bacik 	 * For now only allow nowait for read only operations.  There's no
2055857bc13fSJosef Bacik 	 * strict reason why we can't, we just only need it for reads so it's
2056857bc13fSJosef Bacik 	 * only implemented for reads.
2057857bc13fSJosef Bacik 	 */
2058857bc13fSJosef Bacik 	ASSERT(!p->nowait || !cow);
2059857bc13fSJosef Bacik 
2060bd681513SChris Mason 	if (ins_len < 0) {
2061925baeddSChris Mason 		lowest_unlock = 2;
206265b51a00SChris Mason 
2063bd681513SChris Mason 		/* when we are removing items, we might have to go up to level
2064bd681513SChris Mason 		 * two as we update tree pointers  Make sure we keep write
2065bd681513SChris Mason 		 * for those levels as well
2066bd681513SChris Mason 		 */
2067bd681513SChris Mason 		write_lock_level = 2;
2068bd681513SChris Mason 	} else if (ins_len > 0) {
2069bd681513SChris Mason 		/*
2070bd681513SChris Mason 		 * for inserting items, make sure we have a write lock on
2071bd681513SChris Mason 		 * level 1 so we can update keys
2072bd681513SChris Mason 		 */
2073bd681513SChris Mason 		write_lock_level = 1;
2074bd681513SChris Mason 	}
2075bd681513SChris Mason 
2076bd681513SChris Mason 	if (!cow)
2077bd681513SChris Mason 		write_lock_level = -1;
2078bd681513SChris Mason 
207909a2a8f9SJosef Bacik 	if (cow && (p->keep_locks || p->lowest_level))
2080bd681513SChris Mason 		write_lock_level = BTRFS_MAX_LEVEL;
2081bd681513SChris Mason 
2082f7c79f30SChris Mason 	min_write_lock_level = write_lock_level;
2083f7c79f30SChris Mason 
2084d96b3424SFilipe Manana 	if (p->need_commit_sem) {
2085d96b3424SFilipe Manana 		ASSERT(p->search_commit_root);
2086857bc13fSJosef Bacik 		if (p->nowait) {
2087857bc13fSJosef Bacik 			if (!down_read_trylock(&fs_info->commit_root_sem))
2088857bc13fSJosef Bacik 				return -EAGAIN;
2089857bc13fSJosef Bacik 		} else {
2090d96b3424SFilipe Manana 			down_read(&fs_info->commit_root_sem);
2091d96b3424SFilipe Manana 		}
2092857bc13fSJosef Bacik 	}
2093d96b3424SFilipe Manana 
2094bb803951SChris Mason again:
2095d7396f07SFilipe David Borba Manana 	prev_cmp = -1;
20961fc28d8eSLiu Bo 	b = btrfs_search_slot_get_root(root, p, write_lock_level);
2097be6821f8SFilipe Manana 	if (IS_ERR(b)) {
2098be6821f8SFilipe Manana 		ret = PTR_ERR(b);
2099be6821f8SFilipe Manana 		goto done;
2100be6821f8SFilipe Manana 	}
2101925baeddSChris Mason 
2102eb60ceacSChris Mason 	while (b) {
2103f624d976SQu Wenruo 		int dec = 0;
2104f624d976SQu Wenruo 
21055f39d397SChris Mason 		level = btrfs_header_level(b);
210665b51a00SChris Mason 
210702217ed2SChris Mason 		if (cow) {
21089ea2c7c9SNikolay Borisov 			bool last_level = (level == (BTRFS_MAX_LEVEL - 1));
21099ea2c7c9SNikolay Borisov 
2110c8c42864SChris Mason 			/*
2111c8c42864SChris Mason 			 * if we don't really need to cow this block
2112c8c42864SChris Mason 			 * then we don't want to set the path blocking,
2113c8c42864SChris Mason 			 * so we test it here
2114c8c42864SChris Mason 			 */
21155963ffcaSJosef Bacik 			if (!should_cow_block(trans, root, b))
211665b51a00SChris Mason 				goto cow_done;
21175d4f98a2SYan Zheng 
2118bd681513SChris Mason 			/*
2119bd681513SChris Mason 			 * must have write locks on this node and the
2120bd681513SChris Mason 			 * parent
2121bd681513SChris Mason 			 */
21225124e00eSJosef Bacik 			if (level > write_lock_level ||
21235124e00eSJosef Bacik 			    (level + 1 > write_lock_level &&
21245124e00eSJosef Bacik 			    level + 1 < BTRFS_MAX_LEVEL &&
21255124e00eSJosef Bacik 			    p->nodes[level + 1])) {
2126bd681513SChris Mason 				write_lock_level = level + 1;
2127bd681513SChris Mason 				btrfs_release_path(p);
2128bd681513SChris Mason 				goto again;
2129bd681513SChris Mason 			}
2130bd681513SChris Mason 
21319ea2c7c9SNikolay Borisov 			if (last_level)
21329ea2c7c9SNikolay Borisov 				err = btrfs_cow_block(trans, root, b, NULL, 0,
21339631e4ccSJosef Bacik 						      &b,
21349631e4ccSJosef Bacik 						      BTRFS_NESTING_COW);
21359ea2c7c9SNikolay Borisov 			else
213633c66f43SYan Zheng 				err = btrfs_cow_block(trans, root, b,
2137e20d96d6SChris Mason 						      p->nodes[level + 1],
21389631e4ccSJosef Bacik 						      p->slots[level + 1], &b,
21399631e4ccSJosef Bacik 						      BTRFS_NESTING_COW);
214033c66f43SYan Zheng 			if (err) {
214133c66f43SYan Zheng 				ret = err;
214265b51a00SChris Mason 				goto done;
214354aa1f4dSChris Mason 			}
214402217ed2SChris Mason 		}
214565b51a00SChris Mason cow_done:
2146eb60ceacSChris Mason 		p->nodes[level] = b;
2147b4ce94deSChris Mason 
2148b4ce94deSChris Mason 		/*
2149b4ce94deSChris Mason 		 * we have a lock on b and as long as we aren't changing
2150b4ce94deSChris Mason 		 * the tree, there is no way to for the items in b to change.
2151b4ce94deSChris Mason 		 * It is safe to drop the lock on our parent before we
2152b4ce94deSChris Mason 		 * go through the expensive btree search on b.
2153b4ce94deSChris Mason 		 *
2154eb653de1SFilipe David Borba Manana 		 * If we're inserting or deleting (ins_len != 0), then we might
2155eb653de1SFilipe David Borba Manana 		 * be changing slot zero, which may require changing the parent.
2156eb653de1SFilipe David Borba Manana 		 * So, we can't drop the lock until after we know which slot
2157eb653de1SFilipe David Borba Manana 		 * we're operating on.
2158b4ce94deSChris Mason 		 */
2159eb653de1SFilipe David Borba Manana 		if (!ins_len && !p->keep_locks) {
2160eb653de1SFilipe David Borba Manana 			int u = level + 1;
2161eb653de1SFilipe David Borba Manana 
2162eb653de1SFilipe David Borba Manana 			if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2163eb653de1SFilipe David Borba Manana 				btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2164eb653de1SFilipe David Borba Manana 				p->locks[u] = 0;
2165eb653de1SFilipe David Borba Manana 			}
2166eb653de1SFilipe David Borba Manana 		}
2167b4ce94deSChris Mason 
2168e2e58d0fSFilipe Manana 		if (level == 0) {
2169109324cfSFilipe Manana 			if (ins_len > 0)
2170e5e1c174SFilipe Manana 				ASSERT(write_lock_level >= 1);
2171bd681513SChris Mason 
2172109324cfSFilipe Manana 			ret = search_leaf(trans, root, key, p, ins_len, prev_cmp);
2173459931ecSChris Mason 			if (!p->search_for_split)
2174f7c79f30SChris Mason 				unlock_up(p, level, lowest_unlock,
21754b6f8e96SLiu Bo 					  min_write_lock_level, NULL);
217665b51a00SChris Mason 			goto done;
217765b51a00SChris Mason 		}
2178e2e58d0fSFilipe Manana 
2179e2e58d0fSFilipe Manana 		ret = search_for_key_slot(b, 0, key, prev_cmp, &slot);
2180e2e58d0fSFilipe Manana 		if (ret < 0)
2181e2e58d0fSFilipe Manana 			goto done;
2182e2e58d0fSFilipe Manana 		prev_cmp = ret;
2183e2e58d0fSFilipe Manana 
2184f624d976SQu Wenruo 		if (ret && slot > 0) {
2185f624d976SQu Wenruo 			dec = 1;
2186f624d976SQu Wenruo 			slot--;
2187f624d976SQu Wenruo 		}
2188f624d976SQu Wenruo 		p->slots[level] = slot;
2189f624d976SQu Wenruo 		err = setup_nodes_for_search(trans, root, p, b, level, ins_len,
2190f624d976SQu Wenruo 					     &write_lock_level);
2191f624d976SQu Wenruo 		if (err == -EAGAIN)
2192f624d976SQu Wenruo 			goto again;
2193f624d976SQu Wenruo 		if (err) {
2194f624d976SQu Wenruo 			ret = err;
2195f624d976SQu Wenruo 			goto done;
2196f624d976SQu Wenruo 		}
2197f624d976SQu Wenruo 		b = p->nodes[level];
2198f624d976SQu Wenruo 		slot = p->slots[level];
2199f624d976SQu Wenruo 
2200f624d976SQu Wenruo 		/*
2201f624d976SQu Wenruo 		 * Slot 0 is special, if we change the key we have to update
2202f624d976SQu Wenruo 		 * the parent pointer which means we must have a write lock on
2203f624d976SQu Wenruo 		 * the parent
2204f624d976SQu Wenruo 		 */
2205f624d976SQu Wenruo 		if (slot == 0 && ins_len && write_lock_level < level + 1) {
2206f624d976SQu Wenruo 			write_lock_level = level + 1;
2207f624d976SQu Wenruo 			btrfs_release_path(p);
2208f624d976SQu Wenruo 			goto again;
2209f624d976SQu Wenruo 		}
2210f624d976SQu Wenruo 
2211f624d976SQu Wenruo 		unlock_up(p, level, lowest_unlock, min_write_lock_level,
2212f624d976SQu Wenruo 			  &write_lock_level);
2213f624d976SQu Wenruo 
2214f624d976SQu Wenruo 		if (level == lowest_level) {
2215f624d976SQu Wenruo 			if (dec)
2216f624d976SQu Wenruo 				p->slots[level]++;
2217f624d976SQu Wenruo 			goto done;
2218f624d976SQu Wenruo 		}
2219f624d976SQu Wenruo 
2220f624d976SQu Wenruo 		err = read_block_for_search(root, p, &b, level, slot, key);
2221f624d976SQu Wenruo 		if (err == -EAGAIN)
2222f624d976SQu Wenruo 			goto again;
2223f624d976SQu Wenruo 		if (err) {
2224f624d976SQu Wenruo 			ret = err;
2225f624d976SQu Wenruo 			goto done;
2226f624d976SQu Wenruo 		}
2227f624d976SQu Wenruo 
2228f624d976SQu Wenruo 		if (!p->skip_locking) {
2229f624d976SQu Wenruo 			level = btrfs_header_level(b);
2230b40130b2SJosef Bacik 
2231b40130b2SJosef Bacik 			btrfs_maybe_reset_lockdep_class(root, b);
2232b40130b2SJosef Bacik 
2233f624d976SQu Wenruo 			if (level <= write_lock_level) {
2234f624d976SQu Wenruo 				btrfs_tree_lock(b);
2235f624d976SQu Wenruo 				p->locks[level] = BTRFS_WRITE_LOCK;
2236f624d976SQu Wenruo 			} else {
2237857bc13fSJosef Bacik 				if (p->nowait) {
2238857bc13fSJosef Bacik 					if (!btrfs_try_tree_read_lock(b)) {
2239857bc13fSJosef Bacik 						free_extent_buffer(b);
2240857bc13fSJosef Bacik 						ret = -EAGAIN;
2241857bc13fSJosef Bacik 						goto done;
2242857bc13fSJosef Bacik 					}
2243857bc13fSJosef Bacik 				} else {
2244fe596ca3SJosef Bacik 					btrfs_tree_read_lock(b);
2245857bc13fSJosef Bacik 				}
2246f624d976SQu Wenruo 				p->locks[level] = BTRFS_READ_LOCK;
2247f624d976SQu Wenruo 			}
2248f624d976SQu Wenruo 			p->nodes[level] = b;
2249f624d976SQu Wenruo 		}
225065b51a00SChris Mason 	}
225165b51a00SChris Mason 	ret = 1;
225265b51a00SChris Mason done:
22535f5bc6b1SFilipe Manana 	if (ret < 0 && !p->skip_release_on_error)
2254b3b4aa74SDavid Sterba 		btrfs_release_path(p);
2255d96b3424SFilipe Manana 
2256d96b3424SFilipe Manana 	if (p->need_commit_sem) {
2257d96b3424SFilipe Manana 		int ret2;
2258d96b3424SFilipe Manana 
2259d96b3424SFilipe Manana 		ret2 = finish_need_commit_sem_search(p);
2260d96b3424SFilipe Manana 		up_read(&fs_info->commit_root_sem);
2261d96b3424SFilipe Manana 		if (ret2)
2262d96b3424SFilipe Manana 			ret = ret2;
2263d96b3424SFilipe Manana 	}
2264d96b3424SFilipe Manana 
2265be0e5c09SChris Mason 	return ret;
2266be0e5c09SChris Mason }
2267f75e2b79SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_search_slot, ERRNO);
2268be0e5c09SChris Mason 
226974123bd7SChris Mason /*
22705d9e75c4SJan Schmidt  * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
22715d9e75c4SJan Schmidt  * current state of the tree together with the operations recorded in the tree
22725d9e75c4SJan Schmidt  * modification log to search for the key in a previous version of this tree, as
22735d9e75c4SJan Schmidt  * denoted by the time_seq parameter.
22745d9e75c4SJan Schmidt  *
22755d9e75c4SJan Schmidt  * Naturally, there is no support for insert, delete or cow operations.
22765d9e75c4SJan Schmidt  *
22775d9e75c4SJan Schmidt  * The resulting path and return value will be set up as if we called
22785d9e75c4SJan Schmidt  * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
22795d9e75c4SJan Schmidt  */
2280310712b2SOmar Sandoval int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
22815d9e75c4SJan Schmidt 			  struct btrfs_path *p, u64 time_seq)
22825d9e75c4SJan Schmidt {
22830b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
22845d9e75c4SJan Schmidt 	struct extent_buffer *b;
22855d9e75c4SJan Schmidt 	int slot;
22865d9e75c4SJan Schmidt 	int ret;
22875d9e75c4SJan Schmidt 	int err;
22885d9e75c4SJan Schmidt 	int level;
22895d9e75c4SJan Schmidt 	int lowest_unlock = 1;
22905d9e75c4SJan Schmidt 	u8 lowest_level = 0;
22915d9e75c4SJan Schmidt 
22925d9e75c4SJan Schmidt 	lowest_level = p->lowest_level;
22935d9e75c4SJan Schmidt 	WARN_ON(p->nodes[0] != NULL);
2294c922b016SStefan Roesch 	ASSERT(!p->nowait);
22955d9e75c4SJan Schmidt 
22965d9e75c4SJan Schmidt 	if (p->search_commit_root) {
22975d9e75c4SJan Schmidt 		BUG_ON(time_seq);
22985d9e75c4SJan Schmidt 		return btrfs_search_slot(NULL, root, key, p, 0, 0);
22995d9e75c4SJan Schmidt 	}
23005d9e75c4SJan Schmidt 
23015d9e75c4SJan Schmidt again:
2302f3a84ccdSFilipe Manana 	b = btrfs_get_old_root(root, time_seq);
2303315bed43SNikolay Borisov 	if (!b) {
2304315bed43SNikolay Borisov 		ret = -EIO;
2305315bed43SNikolay Borisov 		goto done;
2306315bed43SNikolay Borisov 	}
23075d9e75c4SJan Schmidt 	level = btrfs_header_level(b);
23085d9e75c4SJan Schmidt 	p->locks[level] = BTRFS_READ_LOCK;
23095d9e75c4SJan Schmidt 
23105d9e75c4SJan Schmidt 	while (b) {
2311abe9339dSQu Wenruo 		int dec = 0;
2312abe9339dSQu Wenruo 
23135d9e75c4SJan Schmidt 		level = btrfs_header_level(b);
23145d9e75c4SJan Schmidt 		p->nodes[level] = b;
23155d9e75c4SJan Schmidt 
23165d9e75c4SJan Schmidt 		/*
23175d9e75c4SJan Schmidt 		 * we have a lock on b and as long as we aren't changing
23185d9e75c4SJan Schmidt 		 * the tree, there is no way to for the items in b to change.
23195d9e75c4SJan Schmidt 		 * It is safe to drop the lock on our parent before we
23205d9e75c4SJan Schmidt 		 * go through the expensive btree search on b.
23215d9e75c4SJan Schmidt 		 */
23225d9e75c4SJan Schmidt 		btrfs_unlock_up_safe(p, level + 1);
23235d9e75c4SJan Schmidt 
2324995e9a16SNikolay Borisov 		ret = btrfs_bin_search(b, key, &slot);
2325cbca7d59SFilipe Manana 		if (ret < 0)
2326cbca7d59SFilipe Manana 			goto done;
23275d9e75c4SJan Schmidt 
2328abe9339dSQu Wenruo 		if (level == 0) {
2329abe9339dSQu Wenruo 			p->slots[level] = slot;
2330abe9339dSQu Wenruo 			unlock_up(p, level, lowest_unlock, 0, NULL);
2331abe9339dSQu Wenruo 			goto done;
2332abe9339dSQu Wenruo 		}
2333abe9339dSQu Wenruo 
23345d9e75c4SJan Schmidt 		if (ret && slot > 0) {
23355d9e75c4SJan Schmidt 			dec = 1;
2336abe9339dSQu Wenruo 			slot--;
23375d9e75c4SJan Schmidt 		}
23385d9e75c4SJan Schmidt 		p->slots[level] = slot;
23395d9e75c4SJan Schmidt 		unlock_up(p, level, lowest_unlock, 0, NULL);
23405d9e75c4SJan Schmidt 
23415d9e75c4SJan Schmidt 		if (level == lowest_level) {
23425d9e75c4SJan Schmidt 			if (dec)
23435d9e75c4SJan Schmidt 				p->slots[level]++;
23445d9e75c4SJan Schmidt 			goto done;
23455d9e75c4SJan Schmidt 		}
23465d9e75c4SJan Schmidt 
2347abe9339dSQu Wenruo 		err = read_block_for_search(root, p, &b, level, slot, key);
23485d9e75c4SJan Schmidt 		if (err == -EAGAIN)
23495d9e75c4SJan Schmidt 			goto again;
23505d9e75c4SJan Schmidt 		if (err) {
23515d9e75c4SJan Schmidt 			ret = err;
23525d9e75c4SJan Schmidt 			goto done;
23535d9e75c4SJan Schmidt 		}
23545d9e75c4SJan Schmidt 
23555d9e75c4SJan Schmidt 		level = btrfs_header_level(b);
23565d9e75c4SJan Schmidt 		btrfs_tree_read_lock(b);
2357f3a84ccdSFilipe Manana 		b = btrfs_tree_mod_log_rewind(fs_info, p, b, time_seq);
2358db7f3436SJosef Bacik 		if (!b) {
2359db7f3436SJosef Bacik 			ret = -ENOMEM;
2360db7f3436SJosef Bacik 			goto done;
2361db7f3436SJosef Bacik 		}
23625d9e75c4SJan Schmidt 		p->locks[level] = BTRFS_READ_LOCK;
23635d9e75c4SJan Schmidt 		p->nodes[level] = b;
23645d9e75c4SJan Schmidt 	}
23655d9e75c4SJan Schmidt 	ret = 1;
23665d9e75c4SJan Schmidt done:
23675d9e75c4SJan Schmidt 	if (ret < 0)
23685d9e75c4SJan Schmidt 		btrfs_release_path(p);
23695d9e75c4SJan Schmidt 
23705d9e75c4SJan Schmidt 	return ret;
23715d9e75c4SJan Schmidt }
23725d9e75c4SJan Schmidt 
23735d9e75c4SJan Schmidt /*
23742f38b3e1SArne Jansen  * helper to use instead of search slot if no exact match is needed but
23752f38b3e1SArne Jansen  * instead the next or previous item should be returned.
23762f38b3e1SArne Jansen  * When find_higher is true, the next higher item is returned, the next lower
23772f38b3e1SArne Jansen  * otherwise.
23782f38b3e1SArne Jansen  * When return_any and find_higher are both true, and no higher item is found,
23792f38b3e1SArne Jansen  * return the next lower instead.
23802f38b3e1SArne Jansen  * When return_any is true and find_higher is false, and no lower item is found,
23812f38b3e1SArne Jansen  * return the next higher instead.
23822f38b3e1SArne Jansen  * It returns 0 if any item is found, 1 if none is found (tree empty), and
23832f38b3e1SArne Jansen  * < 0 on error
23842f38b3e1SArne Jansen  */
23852f38b3e1SArne Jansen int btrfs_search_slot_for_read(struct btrfs_root *root,
2386310712b2SOmar Sandoval 			       const struct btrfs_key *key,
2387310712b2SOmar Sandoval 			       struct btrfs_path *p, int find_higher,
2388310712b2SOmar Sandoval 			       int return_any)
23892f38b3e1SArne Jansen {
23902f38b3e1SArne Jansen 	int ret;
23912f38b3e1SArne Jansen 	struct extent_buffer *leaf;
23922f38b3e1SArne Jansen 
23932f38b3e1SArne Jansen again:
23942f38b3e1SArne Jansen 	ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
23952f38b3e1SArne Jansen 	if (ret <= 0)
23962f38b3e1SArne Jansen 		return ret;
23972f38b3e1SArne Jansen 	/*
23982f38b3e1SArne Jansen 	 * a return value of 1 means the path is at the position where the
23992f38b3e1SArne Jansen 	 * item should be inserted. Normally this is the next bigger item,
24002f38b3e1SArne Jansen 	 * but in case the previous item is the last in a leaf, path points
24012f38b3e1SArne Jansen 	 * to the first free slot in the previous leaf, i.e. at an invalid
24022f38b3e1SArne Jansen 	 * item.
24032f38b3e1SArne Jansen 	 */
24042f38b3e1SArne Jansen 	leaf = p->nodes[0];
24052f38b3e1SArne Jansen 
24062f38b3e1SArne Jansen 	if (find_higher) {
24072f38b3e1SArne Jansen 		if (p->slots[0] >= btrfs_header_nritems(leaf)) {
24082f38b3e1SArne Jansen 			ret = btrfs_next_leaf(root, p);
24092f38b3e1SArne Jansen 			if (ret <= 0)
24102f38b3e1SArne Jansen 				return ret;
24112f38b3e1SArne Jansen 			if (!return_any)
24122f38b3e1SArne Jansen 				return 1;
24132f38b3e1SArne Jansen 			/*
24142f38b3e1SArne Jansen 			 * no higher item found, return the next
24152f38b3e1SArne Jansen 			 * lower instead
24162f38b3e1SArne Jansen 			 */
24172f38b3e1SArne Jansen 			return_any = 0;
24182f38b3e1SArne Jansen 			find_higher = 0;
24192f38b3e1SArne Jansen 			btrfs_release_path(p);
24202f38b3e1SArne Jansen 			goto again;
24212f38b3e1SArne Jansen 		}
24222f38b3e1SArne Jansen 	} else {
24232f38b3e1SArne Jansen 		if (p->slots[0] == 0) {
24242f38b3e1SArne Jansen 			ret = btrfs_prev_leaf(root, p);
2425e6793769SArne Jansen 			if (ret < 0)
24262f38b3e1SArne Jansen 				return ret;
2427e6793769SArne Jansen 			if (!ret) {
242823c6bf6aSFilipe David Borba Manana 				leaf = p->nodes[0];
242923c6bf6aSFilipe David Borba Manana 				if (p->slots[0] == btrfs_header_nritems(leaf))
243023c6bf6aSFilipe David Borba Manana 					p->slots[0]--;
2431e6793769SArne Jansen 				return 0;
2432e6793769SArne Jansen 			}
24332f38b3e1SArne Jansen 			if (!return_any)
24342f38b3e1SArne Jansen 				return 1;
24352f38b3e1SArne Jansen 			/*
24362f38b3e1SArne Jansen 			 * no lower item found, return the next
24372f38b3e1SArne Jansen 			 * higher instead
24382f38b3e1SArne Jansen 			 */
24392f38b3e1SArne Jansen 			return_any = 0;
24402f38b3e1SArne Jansen 			find_higher = 1;
24412f38b3e1SArne Jansen 			btrfs_release_path(p);
24422f38b3e1SArne Jansen 			goto again;
2443e6793769SArne Jansen 		} else {
24442f38b3e1SArne Jansen 			--p->slots[0];
24452f38b3e1SArne Jansen 		}
24462f38b3e1SArne Jansen 	}
24472f38b3e1SArne Jansen 	return 0;
24482f38b3e1SArne Jansen }
24492f38b3e1SArne Jansen 
24502f38b3e1SArne Jansen /*
24510ff40a91SMarcos Paulo de Souza  * Execute search and call btrfs_previous_item to traverse backwards if the item
24520ff40a91SMarcos Paulo de Souza  * was not found.
24530ff40a91SMarcos Paulo de Souza  *
24540ff40a91SMarcos Paulo de Souza  * Return 0 if found, 1 if not found and < 0 if error.
24550ff40a91SMarcos Paulo de Souza  */
24560ff40a91SMarcos Paulo de Souza int btrfs_search_backwards(struct btrfs_root *root, struct btrfs_key *key,
24570ff40a91SMarcos Paulo de Souza 			   struct btrfs_path *path)
24580ff40a91SMarcos Paulo de Souza {
24590ff40a91SMarcos Paulo de Souza 	int ret;
24600ff40a91SMarcos Paulo de Souza 
24610ff40a91SMarcos Paulo de Souza 	ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
24620ff40a91SMarcos Paulo de Souza 	if (ret > 0)
24630ff40a91SMarcos Paulo de Souza 		ret = btrfs_previous_item(root, path, key->objectid, key->type);
24640ff40a91SMarcos Paulo de Souza 
24650ff40a91SMarcos Paulo de Souza 	if (ret == 0)
24660ff40a91SMarcos Paulo de Souza 		btrfs_item_key_to_cpu(path->nodes[0], key, path->slots[0]);
24670ff40a91SMarcos Paulo de Souza 
24680ff40a91SMarcos Paulo de Souza 	return ret;
24690ff40a91SMarcos Paulo de Souza }
24700ff40a91SMarcos Paulo de Souza 
247143dd529aSDavid Sterba /*
247262142be3SGabriel Niebler  * Search for a valid slot for the given path.
247362142be3SGabriel Niebler  *
247462142be3SGabriel Niebler  * @root:	The root node of the tree.
247562142be3SGabriel Niebler  * @key:	Will contain a valid item if found.
247662142be3SGabriel Niebler  * @path:	The starting point to validate the slot.
247762142be3SGabriel Niebler  *
247862142be3SGabriel Niebler  * Return: 0  if the item is valid
247962142be3SGabriel Niebler  *         1  if not found
248062142be3SGabriel Niebler  *         <0 if error.
248162142be3SGabriel Niebler  */
248262142be3SGabriel Niebler int btrfs_get_next_valid_item(struct btrfs_root *root, struct btrfs_key *key,
248362142be3SGabriel Niebler 			      struct btrfs_path *path)
248462142be3SGabriel Niebler {
248562142be3SGabriel Niebler 	while (1) {
248662142be3SGabriel Niebler 		int ret;
248762142be3SGabriel Niebler 		const int slot = path->slots[0];
248862142be3SGabriel Niebler 		const struct extent_buffer *leaf = path->nodes[0];
248962142be3SGabriel Niebler 
249062142be3SGabriel Niebler 		/* This is where we start walking the path. */
249162142be3SGabriel Niebler 		if (slot >= btrfs_header_nritems(leaf)) {
249262142be3SGabriel Niebler 			/*
249362142be3SGabriel Niebler 			 * If we've reached the last slot in this leaf we need
249462142be3SGabriel Niebler 			 * to go to the next leaf and reset the path.
249562142be3SGabriel Niebler 			 */
249662142be3SGabriel Niebler 			ret = btrfs_next_leaf(root, path);
249762142be3SGabriel Niebler 			if (ret)
249862142be3SGabriel Niebler 				return ret;
249962142be3SGabriel Niebler 			continue;
250062142be3SGabriel Niebler 		}
250162142be3SGabriel Niebler 		/* Store the found, valid item in @key. */
250262142be3SGabriel Niebler 		btrfs_item_key_to_cpu(leaf, key, slot);
250362142be3SGabriel Niebler 		break;
250462142be3SGabriel Niebler 	}
250562142be3SGabriel Niebler 	return 0;
250662142be3SGabriel Niebler }
250762142be3SGabriel Niebler 
25080ff40a91SMarcos Paulo de Souza /*
250974123bd7SChris Mason  * adjust the pointers going up the tree, starting at level
251074123bd7SChris Mason  * making sure the right key of each node is points to 'key'.
251174123bd7SChris Mason  * This is used after shifting pointers to the left, so it stops
251274123bd7SChris Mason  * fixing up pointers when a given leaf/node is not in slot 0 of the
251374123bd7SChris Mason  * higher levels
2514aa5d6bedSChris Mason  *
251574123bd7SChris Mason  */
2516b167fa91SNikolay Borisov static void fixup_low_keys(struct btrfs_path *path,
25175f39d397SChris Mason 			   struct btrfs_disk_key *key, int level)
2518be0e5c09SChris Mason {
2519be0e5c09SChris Mason 	int i;
25205f39d397SChris Mason 	struct extent_buffer *t;
25210e82bcfeSDavid Sterba 	int ret;
25225f39d397SChris Mason 
2523234b63a0SChris Mason 	for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2524be0e5c09SChris Mason 		int tslot = path->slots[i];
25250e82bcfeSDavid Sterba 
2526eb60ceacSChris Mason 		if (!path->nodes[i])
2527be0e5c09SChris Mason 			break;
25285f39d397SChris Mason 		t = path->nodes[i];
2529f3a84ccdSFilipe Manana 		ret = btrfs_tree_mod_log_insert_key(t, tslot,
253033cff222SFilipe Manana 						    BTRFS_MOD_LOG_KEY_REPLACE);
25310e82bcfeSDavid Sterba 		BUG_ON(ret < 0);
25325f39d397SChris Mason 		btrfs_set_node_key(t, key, tslot);
2533d6025579SChris Mason 		btrfs_mark_buffer_dirty(path->nodes[i]);
2534be0e5c09SChris Mason 		if (tslot != 0)
2535be0e5c09SChris Mason 			break;
2536be0e5c09SChris Mason 	}
2537be0e5c09SChris Mason }
2538be0e5c09SChris Mason 
253974123bd7SChris Mason /*
254031840ae1SZheng Yan  * update item key.
254131840ae1SZheng Yan  *
254231840ae1SZheng Yan  * This function isn't completely safe. It's the caller's responsibility
254331840ae1SZheng Yan  * that the new key won't break the order
254431840ae1SZheng Yan  */
2545b7a0365eSDaniel Dressler void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
2546b7a0365eSDaniel Dressler 			     struct btrfs_path *path,
2547310712b2SOmar Sandoval 			     const struct btrfs_key *new_key)
254831840ae1SZheng Yan {
254931840ae1SZheng Yan 	struct btrfs_disk_key disk_key;
255031840ae1SZheng Yan 	struct extent_buffer *eb;
255131840ae1SZheng Yan 	int slot;
255231840ae1SZheng Yan 
255331840ae1SZheng Yan 	eb = path->nodes[0];
255431840ae1SZheng Yan 	slot = path->slots[0];
255531840ae1SZheng Yan 	if (slot > 0) {
255631840ae1SZheng Yan 		btrfs_item_key(eb, &disk_key, slot - 1);
25577c15d410SQu Wenruo 		if (unlikely(comp_keys(&disk_key, new_key) >= 0)) {
25587c15d410SQu Wenruo 			btrfs_crit(fs_info,
25597c15d410SQu Wenruo 		"slot %u key (%llu %u %llu) new key (%llu %u %llu)",
25607c15d410SQu Wenruo 				   slot, btrfs_disk_key_objectid(&disk_key),
25617c15d410SQu Wenruo 				   btrfs_disk_key_type(&disk_key),
25627c15d410SQu Wenruo 				   btrfs_disk_key_offset(&disk_key),
25637c15d410SQu Wenruo 				   new_key->objectid, new_key->type,
25647c15d410SQu Wenruo 				   new_key->offset);
25657c15d410SQu Wenruo 			btrfs_print_leaf(eb);
25667c15d410SQu Wenruo 			BUG();
25677c15d410SQu Wenruo 		}
256831840ae1SZheng Yan 	}
256931840ae1SZheng Yan 	if (slot < btrfs_header_nritems(eb) - 1) {
257031840ae1SZheng Yan 		btrfs_item_key(eb, &disk_key, slot + 1);
25717c15d410SQu Wenruo 		if (unlikely(comp_keys(&disk_key, new_key) <= 0)) {
25727c15d410SQu Wenruo 			btrfs_crit(fs_info,
25737c15d410SQu Wenruo 		"slot %u key (%llu %u %llu) new key (%llu %u %llu)",
25747c15d410SQu Wenruo 				   slot, btrfs_disk_key_objectid(&disk_key),
25757c15d410SQu Wenruo 				   btrfs_disk_key_type(&disk_key),
25767c15d410SQu Wenruo 				   btrfs_disk_key_offset(&disk_key),
25777c15d410SQu Wenruo 				   new_key->objectid, new_key->type,
25787c15d410SQu Wenruo 				   new_key->offset);
25797c15d410SQu Wenruo 			btrfs_print_leaf(eb);
25807c15d410SQu Wenruo 			BUG();
25817c15d410SQu Wenruo 		}
258231840ae1SZheng Yan 	}
258331840ae1SZheng Yan 
258431840ae1SZheng Yan 	btrfs_cpu_key_to_disk(&disk_key, new_key);
258531840ae1SZheng Yan 	btrfs_set_item_key(eb, &disk_key, slot);
258631840ae1SZheng Yan 	btrfs_mark_buffer_dirty(eb);
258731840ae1SZheng Yan 	if (slot == 0)
2588b167fa91SNikolay Borisov 		fixup_low_keys(path, &disk_key, 1);
258931840ae1SZheng Yan }
259031840ae1SZheng Yan 
259131840ae1SZheng Yan /*
2592d16c702fSQu Wenruo  * Check key order of two sibling extent buffers.
2593d16c702fSQu Wenruo  *
2594d16c702fSQu Wenruo  * Return true if something is wrong.
2595d16c702fSQu Wenruo  * Return false if everything is fine.
2596d16c702fSQu Wenruo  *
2597d16c702fSQu Wenruo  * Tree-checker only works inside one tree block, thus the following
2598d16c702fSQu Wenruo  * corruption can not be detected by tree-checker:
2599d16c702fSQu Wenruo  *
2600d16c702fSQu Wenruo  * Leaf @left			| Leaf @right
2601d16c702fSQu Wenruo  * --------------------------------------------------------------
2602d16c702fSQu Wenruo  * | 1 | 2 | 3 | 4 | 5 | f6 |   | 7 | 8 |
2603d16c702fSQu Wenruo  *
2604d16c702fSQu Wenruo  * Key f6 in leaf @left itself is valid, but not valid when the next
2605d16c702fSQu Wenruo  * key in leaf @right is 7.
2606d16c702fSQu Wenruo  * This can only be checked at tree block merge time.
2607d16c702fSQu Wenruo  * And since tree checker has ensured all key order in each tree block
2608d16c702fSQu Wenruo  * is correct, we only need to bother the last key of @left and the first
2609d16c702fSQu Wenruo  * key of @right.
2610d16c702fSQu Wenruo  */
2611d16c702fSQu Wenruo static bool check_sibling_keys(struct extent_buffer *left,
2612d16c702fSQu Wenruo 			       struct extent_buffer *right)
2613d16c702fSQu Wenruo {
2614d16c702fSQu Wenruo 	struct btrfs_key left_last;
2615d16c702fSQu Wenruo 	struct btrfs_key right_first;
2616d16c702fSQu Wenruo 	int level = btrfs_header_level(left);
2617d16c702fSQu Wenruo 	int nr_left = btrfs_header_nritems(left);
2618d16c702fSQu Wenruo 	int nr_right = btrfs_header_nritems(right);
2619d16c702fSQu Wenruo 
2620d16c702fSQu Wenruo 	/* No key to check in one of the tree blocks */
2621d16c702fSQu Wenruo 	if (!nr_left || !nr_right)
2622d16c702fSQu Wenruo 		return false;
2623d16c702fSQu Wenruo 
2624d16c702fSQu Wenruo 	if (level) {
2625d16c702fSQu Wenruo 		btrfs_node_key_to_cpu(left, &left_last, nr_left - 1);
2626d16c702fSQu Wenruo 		btrfs_node_key_to_cpu(right, &right_first, 0);
2627d16c702fSQu Wenruo 	} else {
2628d16c702fSQu Wenruo 		btrfs_item_key_to_cpu(left, &left_last, nr_left - 1);
2629d16c702fSQu Wenruo 		btrfs_item_key_to_cpu(right, &right_first, 0);
2630d16c702fSQu Wenruo 	}
2631d16c702fSQu Wenruo 
2632d16c702fSQu Wenruo 	if (btrfs_comp_cpu_keys(&left_last, &right_first) >= 0) {
2633d16c702fSQu Wenruo 		btrfs_crit(left->fs_info,
2634d16c702fSQu Wenruo "bad key order, sibling blocks, left last (%llu %u %llu) right first (%llu %u %llu)",
2635d16c702fSQu Wenruo 			   left_last.objectid, left_last.type,
2636d16c702fSQu Wenruo 			   left_last.offset, right_first.objectid,
2637d16c702fSQu Wenruo 			   right_first.type, right_first.offset);
2638d16c702fSQu Wenruo 		return true;
2639d16c702fSQu Wenruo 	}
2640d16c702fSQu Wenruo 	return false;
2641d16c702fSQu Wenruo }
2642d16c702fSQu Wenruo 
2643d16c702fSQu Wenruo /*
264474123bd7SChris Mason  * try to push data from one node into the next node left in the
264579f95c82SChris Mason  * tree.
2646aa5d6bedSChris Mason  *
2647aa5d6bedSChris Mason  * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
2648aa5d6bedSChris Mason  * error, and > 0 if there was no room in the left hand block.
264974123bd7SChris Mason  */
265098ed5174SChris Mason static int push_node_left(struct btrfs_trans_handle *trans,
26512ff7e61eSJeff Mahoney 			  struct extent_buffer *dst,
2652971a1f66SChris Mason 			  struct extent_buffer *src, int empty)
2653be0e5c09SChris Mason {
2654d30a668fSDavid Sterba 	struct btrfs_fs_info *fs_info = trans->fs_info;
2655be0e5c09SChris Mason 	int push_items = 0;
2656bb803951SChris Mason 	int src_nritems;
2657bb803951SChris Mason 	int dst_nritems;
2658aa5d6bedSChris Mason 	int ret = 0;
2659be0e5c09SChris Mason 
26605f39d397SChris Mason 	src_nritems = btrfs_header_nritems(src);
26615f39d397SChris Mason 	dst_nritems = btrfs_header_nritems(dst);
26620b246afaSJeff Mahoney 	push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
26637bb86316SChris Mason 	WARN_ON(btrfs_header_generation(src) != trans->transid);
26647bb86316SChris Mason 	WARN_ON(btrfs_header_generation(dst) != trans->transid);
266554aa1f4dSChris Mason 
2666bce4eae9SChris Mason 	if (!empty && src_nritems <= 8)
2667971a1f66SChris Mason 		return 1;
2668971a1f66SChris Mason 
2669d397712bSChris Mason 	if (push_items <= 0)
2670be0e5c09SChris Mason 		return 1;
2671be0e5c09SChris Mason 
2672bce4eae9SChris Mason 	if (empty) {
2673971a1f66SChris Mason 		push_items = min(src_nritems, push_items);
2674bce4eae9SChris Mason 		if (push_items < src_nritems) {
2675bce4eae9SChris Mason 			/* leave at least 8 pointers in the node if
2676bce4eae9SChris Mason 			 * we aren't going to empty it
2677bce4eae9SChris Mason 			 */
2678bce4eae9SChris Mason 			if (src_nritems - push_items < 8) {
2679bce4eae9SChris Mason 				if (push_items <= 8)
2680bce4eae9SChris Mason 					return 1;
2681bce4eae9SChris Mason 				push_items -= 8;
2682bce4eae9SChris Mason 			}
2683bce4eae9SChris Mason 		}
2684bce4eae9SChris Mason 	} else
2685bce4eae9SChris Mason 		push_items = min(src_nritems - 8, push_items);
268679f95c82SChris Mason 
2687d16c702fSQu Wenruo 	/* dst is the left eb, src is the middle eb */
2688d16c702fSQu Wenruo 	if (check_sibling_keys(dst, src)) {
2689d16c702fSQu Wenruo 		ret = -EUCLEAN;
2690d16c702fSQu Wenruo 		btrfs_abort_transaction(trans, ret);
2691d16c702fSQu Wenruo 		return ret;
2692d16c702fSQu Wenruo 	}
2693f3a84ccdSFilipe Manana 	ret = btrfs_tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items);
26945de865eeSFilipe David Borba Manana 	if (ret) {
269566642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
26965de865eeSFilipe David Borba Manana 		return ret;
26975de865eeSFilipe David Borba Manana 	}
26985f39d397SChris Mason 	copy_extent_buffer(dst, src,
2699e23efd8eSJosef Bacik 			   btrfs_node_key_ptr_offset(dst, dst_nritems),
2700e23efd8eSJosef Bacik 			   btrfs_node_key_ptr_offset(src, 0),
2701123abc88SChris Mason 			   push_items * sizeof(struct btrfs_key_ptr));
27025f39d397SChris Mason 
2703bb803951SChris Mason 	if (push_items < src_nritems) {
270457911b8bSJan Schmidt 		/*
2705f3a84ccdSFilipe Manana 		 * Don't call btrfs_tree_mod_log_insert_move() here, key removal
2706f3a84ccdSFilipe Manana 		 * was already fully logged by btrfs_tree_mod_log_eb_copy() above.
270757911b8bSJan Schmidt 		 */
2708e23efd8eSJosef Bacik 		memmove_extent_buffer(src, btrfs_node_key_ptr_offset(src, 0),
2709e23efd8eSJosef Bacik 				      btrfs_node_key_ptr_offset(src, push_items),
2710e2fa7227SChris Mason 				      (src_nritems - push_items) *
2711123abc88SChris Mason 				      sizeof(struct btrfs_key_ptr));
2712bb803951SChris Mason 	}
27135f39d397SChris Mason 	btrfs_set_header_nritems(src, src_nritems - push_items);
27145f39d397SChris Mason 	btrfs_set_header_nritems(dst, dst_nritems + push_items);
27155f39d397SChris Mason 	btrfs_mark_buffer_dirty(src);
27165f39d397SChris Mason 	btrfs_mark_buffer_dirty(dst);
271731840ae1SZheng Yan 
2718bb803951SChris Mason 	return ret;
2719be0e5c09SChris Mason }
2720be0e5c09SChris Mason 
272197571fd0SChris Mason /*
272279f95c82SChris Mason  * try to push data from one node into the next node right in the
272379f95c82SChris Mason  * tree.
272479f95c82SChris Mason  *
272579f95c82SChris Mason  * returns 0 if some ptrs were pushed, < 0 if there was some horrible
272679f95c82SChris Mason  * error, and > 0 if there was no room in the right hand block.
272779f95c82SChris Mason  *
272879f95c82SChris Mason  * this will  only push up to 1/2 the contents of the left node over
272979f95c82SChris Mason  */
27305f39d397SChris Mason static int balance_node_right(struct btrfs_trans_handle *trans,
27315f39d397SChris Mason 			      struct extent_buffer *dst,
27325f39d397SChris Mason 			      struct extent_buffer *src)
273379f95c82SChris Mason {
273455d32ed8SDavid Sterba 	struct btrfs_fs_info *fs_info = trans->fs_info;
273579f95c82SChris Mason 	int push_items = 0;
273679f95c82SChris Mason 	int max_push;
273779f95c82SChris Mason 	int src_nritems;
273879f95c82SChris Mason 	int dst_nritems;
273979f95c82SChris Mason 	int ret = 0;
274079f95c82SChris Mason 
27417bb86316SChris Mason 	WARN_ON(btrfs_header_generation(src) != trans->transid);
27427bb86316SChris Mason 	WARN_ON(btrfs_header_generation(dst) != trans->transid);
27437bb86316SChris Mason 
27445f39d397SChris Mason 	src_nritems = btrfs_header_nritems(src);
27455f39d397SChris Mason 	dst_nritems = btrfs_header_nritems(dst);
27460b246afaSJeff Mahoney 	push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
2747d397712bSChris Mason 	if (push_items <= 0)
274879f95c82SChris Mason 		return 1;
2749bce4eae9SChris Mason 
2750d397712bSChris Mason 	if (src_nritems < 4)
2751bce4eae9SChris Mason 		return 1;
275279f95c82SChris Mason 
275379f95c82SChris Mason 	max_push = src_nritems / 2 + 1;
275479f95c82SChris Mason 	/* don't try to empty the node */
2755d397712bSChris Mason 	if (max_push >= src_nritems)
275679f95c82SChris Mason 		return 1;
2757252c38f0SYan 
275879f95c82SChris Mason 	if (max_push < push_items)
275979f95c82SChris Mason 		push_items = max_push;
276079f95c82SChris Mason 
2761d16c702fSQu Wenruo 	/* dst is the right eb, src is the middle eb */
2762d16c702fSQu Wenruo 	if (check_sibling_keys(src, dst)) {
2763d16c702fSQu Wenruo 		ret = -EUCLEAN;
2764d16c702fSQu Wenruo 		btrfs_abort_transaction(trans, ret);
2765d16c702fSQu Wenruo 		return ret;
2766d16c702fSQu Wenruo 	}
2767f3a84ccdSFilipe Manana 	ret = btrfs_tree_mod_log_insert_move(dst, push_items, 0, dst_nritems);
2768bf1d3425SDavid Sterba 	BUG_ON(ret < 0);
2769e23efd8eSJosef Bacik 	memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(dst, push_items),
2770e23efd8eSJosef Bacik 				      btrfs_node_key_ptr_offset(dst, 0),
27715f39d397SChris Mason 				      (dst_nritems) *
27725f39d397SChris Mason 				      sizeof(struct btrfs_key_ptr));
2773d6025579SChris Mason 
2774f3a84ccdSFilipe Manana 	ret = btrfs_tree_mod_log_eb_copy(dst, src, 0, src_nritems - push_items,
2775ed874f0dSDavid Sterba 					 push_items);
27765de865eeSFilipe David Borba Manana 	if (ret) {
277766642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
27785de865eeSFilipe David Borba Manana 		return ret;
27795de865eeSFilipe David Borba Manana 	}
27805f39d397SChris Mason 	copy_extent_buffer(dst, src,
2781e23efd8eSJosef Bacik 			   btrfs_node_key_ptr_offset(dst, 0),
2782e23efd8eSJosef Bacik 			   btrfs_node_key_ptr_offset(src, src_nritems - push_items),
2783123abc88SChris Mason 			   push_items * sizeof(struct btrfs_key_ptr));
278479f95c82SChris Mason 
27855f39d397SChris Mason 	btrfs_set_header_nritems(src, src_nritems - push_items);
27865f39d397SChris Mason 	btrfs_set_header_nritems(dst, dst_nritems + push_items);
278779f95c82SChris Mason 
27885f39d397SChris Mason 	btrfs_mark_buffer_dirty(src);
27895f39d397SChris Mason 	btrfs_mark_buffer_dirty(dst);
279031840ae1SZheng Yan 
279179f95c82SChris Mason 	return ret;
279279f95c82SChris Mason }
279379f95c82SChris Mason 
279479f95c82SChris Mason /*
279597571fd0SChris Mason  * helper function to insert a new root level in the tree.
279697571fd0SChris Mason  * A new node is allocated, and a single item is inserted to
279797571fd0SChris Mason  * point to the existing root
2798aa5d6bedSChris Mason  *
2799aa5d6bedSChris Mason  * returns zero on success or < 0 on failure.
280097571fd0SChris Mason  */
2801d397712bSChris Mason static noinline int insert_new_root(struct btrfs_trans_handle *trans,
28025f39d397SChris Mason 			   struct btrfs_root *root,
2803fdd99c72SLiu Bo 			   struct btrfs_path *path, int level)
280474123bd7SChris Mason {
28050b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
28067bb86316SChris Mason 	u64 lower_gen;
28075f39d397SChris Mason 	struct extent_buffer *lower;
28085f39d397SChris Mason 	struct extent_buffer *c;
2809925baeddSChris Mason 	struct extent_buffer *old;
28105f39d397SChris Mason 	struct btrfs_disk_key lower_key;
2811d9d19a01SDavid Sterba 	int ret;
28125c680ed6SChris Mason 
28135c680ed6SChris Mason 	BUG_ON(path->nodes[level]);
28145c680ed6SChris Mason 	BUG_ON(path->nodes[level-1] != root->node);
28155c680ed6SChris Mason 
28167bb86316SChris Mason 	lower = path->nodes[level-1];
28177bb86316SChris Mason 	if (level == 1)
28187bb86316SChris Mason 		btrfs_item_key(lower, &lower_key, 0);
28197bb86316SChris Mason 	else
28207bb86316SChris Mason 		btrfs_node_key(lower, &lower_key, 0);
28217bb86316SChris Mason 
282279bd3712SFilipe Manana 	c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
282379bd3712SFilipe Manana 				   &lower_key, level, root->node->start, 0,
2824cf6f34aaSJosef Bacik 				   BTRFS_NESTING_NEW_ROOT);
28255f39d397SChris Mason 	if (IS_ERR(c))
28265f39d397SChris Mason 		return PTR_ERR(c);
2827925baeddSChris Mason 
28280b246afaSJeff Mahoney 	root_add_used(root, fs_info->nodesize);
2829f0486c68SYan, Zheng 
28305f39d397SChris Mason 	btrfs_set_header_nritems(c, 1);
28315f39d397SChris Mason 	btrfs_set_node_key(c, &lower_key, 0);
2832db94535dSChris Mason 	btrfs_set_node_blockptr(c, 0, lower->start);
28337bb86316SChris Mason 	lower_gen = btrfs_header_generation(lower);
283431840ae1SZheng Yan 	WARN_ON(lower_gen != trans->transid);
28357bb86316SChris Mason 
28367bb86316SChris Mason 	btrfs_set_node_ptr_generation(c, 0, lower_gen);
28375f39d397SChris Mason 
28385f39d397SChris Mason 	btrfs_mark_buffer_dirty(c);
2839d5719762SChris Mason 
2840925baeddSChris Mason 	old = root->node;
2841406808abSFilipe Manana 	ret = btrfs_tree_mod_log_insert_root(root->node, c, false);
2842d9d19a01SDavid Sterba 	BUG_ON(ret < 0);
2843240f62c8SChris Mason 	rcu_assign_pointer(root->node, c);
2844925baeddSChris Mason 
2845925baeddSChris Mason 	/* the super has an extra ref to root->node */
2846925baeddSChris Mason 	free_extent_buffer(old);
2847925baeddSChris Mason 
28480b86a832SChris Mason 	add_root_to_dirty_list(root);
284967439dadSDavid Sterba 	atomic_inc(&c->refs);
28505f39d397SChris Mason 	path->nodes[level] = c;
2851ac5887c8SJosef Bacik 	path->locks[level] = BTRFS_WRITE_LOCK;
285274123bd7SChris Mason 	path->slots[level] = 0;
285374123bd7SChris Mason 	return 0;
285474123bd7SChris Mason }
28555c680ed6SChris Mason 
28565c680ed6SChris Mason /*
28575c680ed6SChris Mason  * worker function to insert a single pointer in a node.
28585c680ed6SChris Mason  * the node should have enough room for the pointer already
285997571fd0SChris Mason  *
28605c680ed6SChris Mason  * slot and level indicate where you want the key to go, and
28615c680ed6SChris Mason  * blocknr is the block the key points to.
28625c680ed6SChris Mason  */
2863143bede5SJeff Mahoney static void insert_ptr(struct btrfs_trans_handle *trans,
28646ad3cf6dSDavid Sterba 		       struct btrfs_path *path,
2865143bede5SJeff Mahoney 		       struct btrfs_disk_key *key, u64 bytenr,
2866c3e06965SJan Schmidt 		       int slot, int level)
28675c680ed6SChris Mason {
28685f39d397SChris Mason 	struct extent_buffer *lower;
28695c680ed6SChris Mason 	int nritems;
2870f3ea38daSJan Schmidt 	int ret;
28715c680ed6SChris Mason 
28725c680ed6SChris Mason 	BUG_ON(!path->nodes[level]);
287349d0c642SFilipe Manana 	btrfs_assert_tree_write_locked(path->nodes[level]);
28745f39d397SChris Mason 	lower = path->nodes[level];
28755f39d397SChris Mason 	nritems = btrfs_header_nritems(lower);
2876c293498bSStoyan Gaydarov 	BUG_ON(slot > nritems);
28776ad3cf6dSDavid Sterba 	BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(trans->fs_info));
287874123bd7SChris Mason 	if (slot != nritems) {
2879bf1d3425SDavid Sterba 		if (level) {
2880f3a84ccdSFilipe Manana 			ret = btrfs_tree_mod_log_insert_move(lower, slot + 1,
2881f3a84ccdSFilipe Manana 					slot, nritems - slot);
2882bf1d3425SDavid Sterba 			BUG_ON(ret < 0);
2883bf1d3425SDavid Sterba 		}
28845f39d397SChris Mason 		memmove_extent_buffer(lower,
2885e23efd8eSJosef Bacik 			      btrfs_node_key_ptr_offset(lower, slot + 1),
2886e23efd8eSJosef Bacik 			      btrfs_node_key_ptr_offset(lower, slot),
2887123abc88SChris Mason 			      (nritems - slot) * sizeof(struct btrfs_key_ptr));
288874123bd7SChris Mason 	}
2889c3e06965SJan Schmidt 	if (level) {
2890f3a84ccdSFilipe Manana 		ret = btrfs_tree_mod_log_insert_key(lower, slot,
289133cff222SFilipe Manana 						    BTRFS_MOD_LOG_KEY_ADD);
2892f3ea38daSJan Schmidt 		BUG_ON(ret < 0);
2893f3ea38daSJan Schmidt 	}
28945f39d397SChris Mason 	btrfs_set_node_key(lower, key, slot);
2895db94535dSChris Mason 	btrfs_set_node_blockptr(lower, slot, bytenr);
289674493f7aSChris Mason 	WARN_ON(trans->transid == 0);
289774493f7aSChris Mason 	btrfs_set_node_ptr_generation(lower, slot, trans->transid);
28985f39d397SChris Mason 	btrfs_set_header_nritems(lower, nritems + 1);
28995f39d397SChris Mason 	btrfs_mark_buffer_dirty(lower);
290074123bd7SChris Mason }
290174123bd7SChris Mason 
290297571fd0SChris Mason /*
290397571fd0SChris Mason  * split the node at the specified level in path in two.
290497571fd0SChris Mason  * The path is corrected to point to the appropriate node after the split
290597571fd0SChris Mason  *
290697571fd0SChris Mason  * Before splitting this tries to make some room in the node by pushing
290797571fd0SChris Mason  * left and right, if either one works, it returns right away.
2908aa5d6bedSChris Mason  *
2909aa5d6bedSChris Mason  * returns 0 on success and < 0 on failure
291097571fd0SChris Mason  */
2911e02119d5SChris Mason static noinline int split_node(struct btrfs_trans_handle *trans,
2912e02119d5SChris Mason 			       struct btrfs_root *root,
2913e02119d5SChris Mason 			       struct btrfs_path *path, int level)
2914be0e5c09SChris Mason {
29150b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
29165f39d397SChris Mason 	struct extent_buffer *c;
29175f39d397SChris Mason 	struct extent_buffer *split;
29185f39d397SChris Mason 	struct btrfs_disk_key disk_key;
2919be0e5c09SChris Mason 	int mid;
29205c680ed6SChris Mason 	int ret;
29217518a238SChris Mason 	u32 c_nritems;
2922be0e5c09SChris Mason 
29235f39d397SChris Mason 	c = path->nodes[level];
29247bb86316SChris Mason 	WARN_ON(btrfs_header_generation(c) != trans->transid);
29255f39d397SChris Mason 	if (c == root->node) {
2926d9abbf1cSJan Schmidt 		/*
292790f8d62eSJan Schmidt 		 * trying to split the root, lets make a new one
292890f8d62eSJan Schmidt 		 *
2929fdd99c72SLiu Bo 		 * tree mod log: We don't log_removal old root in
293090f8d62eSJan Schmidt 		 * insert_new_root, because that root buffer will be kept as a
293190f8d62eSJan Schmidt 		 * normal node. We are going to log removal of half of the
2932f3a84ccdSFilipe Manana 		 * elements below with btrfs_tree_mod_log_eb_copy(). We're
2933f3a84ccdSFilipe Manana 		 * holding a tree lock on the buffer, which is why we cannot
2934f3a84ccdSFilipe Manana 		 * race with other tree_mod_log users.
2935d9abbf1cSJan Schmidt 		 */
2936fdd99c72SLiu Bo 		ret = insert_new_root(trans, root, path, level + 1);
29375c680ed6SChris Mason 		if (ret)
29385c680ed6SChris Mason 			return ret;
2939b3612421SChris Mason 	} else {
2940e66f709bSChris Mason 		ret = push_nodes_for_insert(trans, root, path, level);
29415f39d397SChris Mason 		c = path->nodes[level];
29425f39d397SChris Mason 		if (!ret && btrfs_header_nritems(c) <
29430b246afaSJeff Mahoney 		    BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3)
2944e66f709bSChris Mason 			return 0;
294554aa1f4dSChris Mason 		if (ret < 0)
294654aa1f4dSChris Mason 			return ret;
29475c680ed6SChris Mason 	}
2948e66f709bSChris Mason 
29495f39d397SChris Mason 	c_nritems = btrfs_header_nritems(c);
29505d4f98a2SYan Zheng 	mid = (c_nritems + 1) / 2;
29515d4f98a2SYan Zheng 	btrfs_node_key(c, &disk_key, mid);
29527bb86316SChris Mason 
295379bd3712SFilipe Manana 	split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
295479bd3712SFilipe Manana 				       &disk_key, level, c->start, 0,
295579bd3712SFilipe Manana 				       BTRFS_NESTING_SPLIT);
29565f39d397SChris Mason 	if (IS_ERR(split))
29575f39d397SChris Mason 		return PTR_ERR(split);
295854aa1f4dSChris Mason 
29590b246afaSJeff Mahoney 	root_add_used(root, fs_info->nodesize);
2960bc877d28SNikolay Borisov 	ASSERT(btrfs_header_level(c) == level);
29615f39d397SChris Mason 
2962f3a84ccdSFilipe Manana 	ret = btrfs_tree_mod_log_eb_copy(split, c, 0, mid, c_nritems - mid);
29635de865eeSFilipe David Borba Manana 	if (ret) {
296466642832SJeff Mahoney 		btrfs_abort_transaction(trans, ret);
29655de865eeSFilipe David Borba Manana 		return ret;
29665de865eeSFilipe David Borba Manana 	}
29675f39d397SChris Mason 	copy_extent_buffer(split, c,
2968e23efd8eSJosef Bacik 			   btrfs_node_key_ptr_offset(split, 0),
2969e23efd8eSJosef Bacik 			   btrfs_node_key_ptr_offset(c, mid),
2970123abc88SChris Mason 			   (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
29715f39d397SChris Mason 	btrfs_set_header_nritems(split, c_nritems - mid);
29725f39d397SChris Mason 	btrfs_set_header_nritems(c, mid);
2973aa5d6bedSChris Mason 
29745f39d397SChris Mason 	btrfs_mark_buffer_dirty(c);
29755f39d397SChris Mason 	btrfs_mark_buffer_dirty(split);
29765f39d397SChris Mason 
29776ad3cf6dSDavid Sterba 	insert_ptr(trans, path, &disk_key, split->start,
2978c3e06965SJan Schmidt 		   path->slots[level + 1] + 1, level + 1);
2979aa5d6bedSChris Mason 
29805de08d7dSChris Mason 	if (path->slots[level] >= mid) {
29815c680ed6SChris Mason 		path->slots[level] -= mid;
2982925baeddSChris Mason 		btrfs_tree_unlock(c);
29835f39d397SChris Mason 		free_extent_buffer(c);
29845f39d397SChris Mason 		path->nodes[level] = split;
29855c680ed6SChris Mason 		path->slots[level + 1] += 1;
2986eb60ceacSChris Mason 	} else {
2987925baeddSChris Mason 		btrfs_tree_unlock(split);
29885f39d397SChris Mason 		free_extent_buffer(split);
2989be0e5c09SChris Mason 	}
2990d5286a92SNikolay Borisov 	return 0;
2991be0e5c09SChris Mason }
2992be0e5c09SChris Mason 
299374123bd7SChris Mason /*
299474123bd7SChris Mason  * how many bytes are required to store the items in a leaf.  start
299574123bd7SChris Mason  * and nr indicate which items in the leaf to check.  This totals up the
299674123bd7SChris Mason  * space used both by the item structs and the item data
299774123bd7SChris Mason  */
29985f39d397SChris Mason static int leaf_space_used(struct extent_buffer *l, int start, int nr)
2999be0e5c09SChris Mason {
3000be0e5c09SChris Mason 	int data_len;
30015f39d397SChris Mason 	int nritems = btrfs_header_nritems(l);
3002d4dbff95SChris Mason 	int end = min(nritems, start + nr) - 1;
3003be0e5c09SChris Mason 
3004be0e5c09SChris Mason 	if (!nr)
3005be0e5c09SChris Mason 		return 0;
30063212fa14SJosef Bacik 	data_len = btrfs_item_offset(l, start) + btrfs_item_size(l, start);
30073212fa14SJosef Bacik 	data_len = data_len - btrfs_item_offset(l, end);
30080783fcfcSChris Mason 	data_len += sizeof(struct btrfs_item) * nr;
3009d4dbff95SChris Mason 	WARN_ON(data_len < 0);
3010be0e5c09SChris Mason 	return data_len;
3011be0e5c09SChris Mason }
3012be0e5c09SChris Mason 
301374123bd7SChris Mason /*
3014d4dbff95SChris Mason  * The space between the end of the leaf items and
3015d4dbff95SChris Mason  * the start of the leaf data.  IOW, how much room
3016d4dbff95SChris Mason  * the leaf has left for both items and data
3017d4dbff95SChris Mason  */
3018e902baacSDavid Sterba noinline int btrfs_leaf_free_space(struct extent_buffer *leaf)
3019d4dbff95SChris Mason {
3020e902baacSDavid Sterba 	struct btrfs_fs_info *fs_info = leaf->fs_info;
30215f39d397SChris Mason 	int nritems = btrfs_header_nritems(leaf);
30225f39d397SChris Mason 	int ret;
30230b246afaSJeff Mahoney 
30240b246afaSJeff Mahoney 	ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems);
30255f39d397SChris Mason 	if (ret < 0) {
30260b246afaSJeff Mahoney 		btrfs_crit(fs_info,
3027efe120a0SFrank Holton 			   "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
3028da17066cSJeff Mahoney 			   ret,
30290b246afaSJeff Mahoney 			   (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info),
30305f39d397SChris Mason 			   leaf_space_used(leaf, 0, nritems), nritems);
30315f39d397SChris Mason 	}
30325f39d397SChris Mason 	return ret;
3033d4dbff95SChris Mason }
3034d4dbff95SChris Mason 
303599d8f83cSChris Mason /*
303699d8f83cSChris Mason  * min slot controls the lowest index we're willing to push to the
303799d8f83cSChris Mason  * right.  We'll push up to and including min_slot, but no lower
303899d8f83cSChris Mason  */
3039ed25dab3SJosef Bacik static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3040ed25dab3SJosef Bacik 				      struct btrfs_path *path,
304144871b1bSChris Mason 				      int data_size, int empty,
304244871b1bSChris Mason 				      struct extent_buffer *right,
304399d8f83cSChris Mason 				      int free_space, u32 left_nritems,
304499d8f83cSChris Mason 				      u32 min_slot)
304500ec4c51SChris Mason {
3046f72f0010SDavid Sterba 	struct btrfs_fs_info *fs_info = right->fs_info;
30475f39d397SChris Mason 	struct extent_buffer *left = path->nodes[0];
304844871b1bSChris Mason 	struct extent_buffer *upper = path->nodes[1];
3049cfed81a0SChris Mason 	struct btrfs_map_token token;
30505f39d397SChris Mason 	struct btrfs_disk_key disk_key;
305100ec4c51SChris Mason 	int slot;
305234a38218SChris Mason 	u32 i;
305300ec4c51SChris Mason 	int push_space = 0;
305400ec4c51SChris Mason 	int push_items = 0;
305534a38218SChris Mason 	u32 nr;
30567518a238SChris Mason 	u32 right_nritems;
30575f39d397SChris Mason 	u32 data_end;
3058db94535dSChris Mason 	u32 this_item_size;
305900ec4c51SChris Mason 
306034a38218SChris Mason 	if (empty)
306134a38218SChris Mason 		nr = 0;
306234a38218SChris Mason 	else
306399d8f83cSChris Mason 		nr = max_t(u32, 1, min_slot);
306434a38218SChris Mason 
306531840ae1SZheng Yan 	if (path->slots[0] >= left_nritems)
306687b29b20SYan Zheng 		push_space += data_size;
306731840ae1SZheng Yan 
306844871b1bSChris Mason 	slot = path->slots[1];
306934a38218SChris Mason 	i = left_nritems - 1;
307034a38218SChris Mason 	while (i >= nr) {
307131840ae1SZheng Yan 		if (!empty && push_items > 0) {
307231840ae1SZheng Yan 			if (path->slots[0] > i)
307331840ae1SZheng Yan 				break;
307431840ae1SZheng Yan 			if (path->slots[0] == i) {
3075e902baacSDavid Sterba 				int space = btrfs_leaf_free_space(left);
3076e902baacSDavid Sterba 
307731840ae1SZheng Yan 				if (space + push_space * 2 > free_space)
307831840ae1SZheng Yan 					break;
307931840ae1SZheng Yan 			}
308031840ae1SZheng Yan 		}
308131840ae1SZheng Yan 
308200ec4c51SChris Mason 		if (path->slots[0] == i)
308387b29b20SYan Zheng 			push_space += data_size;
3084db94535dSChris Mason 
30853212fa14SJosef Bacik 		this_item_size = btrfs_item_size(left, i);
308674794207SJosef Bacik 		if (this_item_size + sizeof(struct btrfs_item) +
308774794207SJosef Bacik 		    push_space > free_space)
308800ec4c51SChris Mason 			break;
308931840ae1SZheng Yan 
309000ec4c51SChris Mason 		push_items++;
309174794207SJosef Bacik 		push_space += this_item_size + sizeof(struct btrfs_item);
309234a38218SChris Mason 		if (i == 0)
309334a38218SChris Mason 			break;
309434a38218SChris Mason 		i--;
3095db94535dSChris Mason 	}
30965f39d397SChris Mason 
3097925baeddSChris Mason 	if (push_items == 0)
3098925baeddSChris Mason 		goto out_unlock;
30995f39d397SChris Mason 
31006c1500f2SJulia Lawall 	WARN_ON(!empty && push_items == left_nritems);
31015f39d397SChris Mason 
310200ec4c51SChris Mason 	/* push left to right */
31035f39d397SChris Mason 	right_nritems = btrfs_header_nritems(right);
310434a38218SChris Mason 
3105dc2e724eSJosef Bacik 	push_space = btrfs_item_data_end(left, left_nritems - push_items);
31068f881e8cSDavid Sterba 	push_space -= leaf_data_end(left);
31075f39d397SChris Mason 
310800ec4c51SChris Mason 	/* make room in the right data area */
31098f881e8cSDavid Sterba 	data_end = leaf_data_end(right);
3110637e3b48SJosef Bacik 	memmove_leaf_data(right, data_end - push_space, data_end,
31110b246afaSJeff Mahoney 			  BTRFS_LEAF_DATA_SIZE(fs_info) - data_end);
31125f39d397SChris Mason 
311300ec4c51SChris Mason 	/* copy from the left data area */
3114637e3b48SJosef Bacik 	copy_leaf_data(right, left, BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
3115637e3b48SJosef Bacik 		       leaf_data_end(left), push_space);
31165f39d397SChris Mason 
3117637e3b48SJosef Bacik 	memmove_leaf_items(right, push_items, 0, right_nritems);
31185f39d397SChris Mason 
311900ec4c51SChris Mason 	/* copy the items from left to right */
3120637e3b48SJosef Bacik 	copy_leaf_items(right, left, 0, left_nritems - push_items, push_items);
312100ec4c51SChris Mason 
312200ec4c51SChris Mason 	/* update the item pointers */
3123c82f823cSDavid Sterba 	btrfs_init_map_token(&token, right);
31247518a238SChris Mason 	right_nritems += push_items;
31255f39d397SChris Mason 	btrfs_set_header_nritems(right, right_nritems);
31260b246afaSJeff Mahoney 	push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
31277518a238SChris Mason 	for (i = 0; i < right_nritems; i++) {
31283212fa14SJosef Bacik 		push_space -= btrfs_token_item_size(&token, i);
31293212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, i, push_space);
3130db94535dSChris Mason 	}
3131db94535dSChris Mason 
31327518a238SChris Mason 	left_nritems -= push_items;
31335f39d397SChris Mason 	btrfs_set_header_nritems(left, left_nritems);
313400ec4c51SChris Mason 
313534a38218SChris Mason 	if (left_nritems)
31365f39d397SChris Mason 		btrfs_mark_buffer_dirty(left);
3137f0486c68SYan, Zheng 	else
3138190a8339SJosef Bacik 		btrfs_clear_buffer_dirty(trans, left);
3139f0486c68SYan, Zheng 
31405f39d397SChris Mason 	btrfs_mark_buffer_dirty(right);
3141a429e513SChris Mason 
31425f39d397SChris Mason 	btrfs_item_key(right, &disk_key, 0);
31435f39d397SChris Mason 	btrfs_set_node_key(upper, &disk_key, slot + 1);
3144d6025579SChris Mason 	btrfs_mark_buffer_dirty(upper);
314502217ed2SChris Mason 
314600ec4c51SChris Mason 	/* then fixup the leaf pointer in the path */
31477518a238SChris Mason 	if (path->slots[0] >= left_nritems) {
31487518a238SChris Mason 		path->slots[0] -= left_nritems;
3149925baeddSChris Mason 		if (btrfs_header_nritems(path->nodes[0]) == 0)
3150190a8339SJosef Bacik 			btrfs_clear_buffer_dirty(trans, path->nodes[0]);
3151925baeddSChris Mason 		btrfs_tree_unlock(path->nodes[0]);
31525f39d397SChris Mason 		free_extent_buffer(path->nodes[0]);
31535f39d397SChris Mason 		path->nodes[0] = right;
315400ec4c51SChris Mason 		path->slots[1] += 1;
315500ec4c51SChris Mason 	} else {
3156925baeddSChris Mason 		btrfs_tree_unlock(right);
31575f39d397SChris Mason 		free_extent_buffer(right);
315800ec4c51SChris Mason 	}
315900ec4c51SChris Mason 	return 0;
3160925baeddSChris Mason 
3161925baeddSChris Mason out_unlock:
3162925baeddSChris Mason 	btrfs_tree_unlock(right);
3163925baeddSChris Mason 	free_extent_buffer(right);
3164925baeddSChris Mason 	return 1;
316500ec4c51SChris Mason }
3166925baeddSChris Mason 
316700ec4c51SChris Mason /*
316844871b1bSChris Mason  * push some data in the path leaf to the right, trying to free up at
316974123bd7SChris Mason  * least data_size bytes.  returns zero if the push worked, nonzero otherwise
317044871b1bSChris Mason  *
317144871b1bSChris Mason  * returns 1 if the push failed because the other node didn't have enough
317244871b1bSChris Mason  * room, 0 if everything worked out and < 0 if there were major errors.
317399d8f83cSChris Mason  *
317499d8f83cSChris Mason  * this will push starting from min_slot to the end of the leaf.  It won't
317599d8f83cSChris Mason  * push any slot lower than min_slot
317674123bd7SChris Mason  */
317744871b1bSChris Mason static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
317899d8f83cSChris Mason 			   *root, struct btrfs_path *path,
317999d8f83cSChris Mason 			   int min_data_size, int data_size,
318099d8f83cSChris Mason 			   int empty, u32 min_slot)
3181be0e5c09SChris Mason {
318244871b1bSChris Mason 	struct extent_buffer *left = path->nodes[0];
318344871b1bSChris Mason 	struct extent_buffer *right;
318444871b1bSChris Mason 	struct extent_buffer *upper;
318544871b1bSChris Mason 	int slot;
318644871b1bSChris Mason 	int free_space;
318744871b1bSChris Mason 	u32 left_nritems;
318844871b1bSChris Mason 	int ret;
318944871b1bSChris Mason 
319044871b1bSChris Mason 	if (!path->nodes[1])
319144871b1bSChris Mason 		return 1;
319244871b1bSChris Mason 
319344871b1bSChris Mason 	slot = path->slots[1];
319444871b1bSChris Mason 	upper = path->nodes[1];
319544871b1bSChris Mason 	if (slot >= btrfs_header_nritems(upper) - 1)
319644871b1bSChris Mason 		return 1;
319744871b1bSChris Mason 
319849d0c642SFilipe Manana 	btrfs_assert_tree_write_locked(path->nodes[1]);
319944871b1bSChris Mason 
32004b231ae4SDavid Sterba 	right = btrfs_read_node_slot(upper, slot + 1);
3201fb770ae4SLiu Bo 	/*
3202fb770ae4SLiu Bo 	 * slot + 1 is not valid or we fail to read the right node,
3203fb770ae4SLiu Bo 	 * no big deal, just return.
3204fb770ae4SLiu Bo 	 */
3205fb770ae4SLiu Bo 	if (IS_ERR(right))
320691ca338dSTsutomu Itoh 		return 1;
320791ca338dSTsutomu Itoh 
3208bf77467aSJosef Bacik 	__btrfs_tree_lock(right, BTRFS_NESTING_RIGHT);
320944871b1bSChris Mason 
3210e902baacSDavid Sterba 	free_space = btrfs_leaf_free_space(right);
321144871b1bSChris Mason 	if (free_space < data_size)
321244871b1bSChris Mason 		goto out_unlock;
321344871b1bSChris Mason 
321444871b1bSChris Mason 	ret = btrfs_cow_block(trans, root, right, upper,
3215bf59a5a2SJosef Bacik 			      slot + 1, &right, BTRFS_NESTING_RIGHT_COW);
321644871b1bSChris Mason 	if (ret)
321744871b1bSChris Mason 		goto out_unlock;
321844871b1bSChris Mason 
321944871b1bSChris Mason 	left_nritems = btrfs_header_nritems(left);
322044871b1bSChris Mason 	if (left_nritems == 0)
322144871b1bSChris Mason 		goto out_unlock;
322244871b1bSChris Mason 
3223d16c702fSQu Wenruo 	if (check_sibling_keys(left, right)) {
3224d16c702fSQu Wenruo 		ret = -EUCLEAN;
3225d16c702fSQu Wenruo 		btrfs_tree_unlock(right);
3226d16c702fSQu Wenruo 		free_extent_buffer(right);
3227d16c702fSQu Wenruo 		return ret;
3228d16c702fSQu Wenruo 	}
32292ef1fed2SFilipe David Borba Manana 	if (path->slots[0] == left_nritems && !empty) {
32302ef1fed2SFilipe David Borba Manana 		/* Key greater than all keys in the leaf, right neighbor has
32312ef1fed2SFilipe David Borba Manana 		 * enough room for it and we're not emptying our leaf to delete
32322ef1fed2SFilipe David Borba Manana 		 * it, therefore use right neighbor to insert the new item and
323352042d8eSAndrea Gelmini 		 * no need to touch/dirty our left leaf. */
32342ef1fed2SFilipe David Borba Manana 		btrfs_tree_unlock(left);
32352ef1fed2SFilipe David Borba Manana 		free_extent_buffer(left);
32362ef1fed2SFilipe David Borba Manana 		path->nodes[0] = right;
32372ef1fed2SFilipe David Borba Manana 		path->slots[0] = 0;
32382ef1fed2SFilipe David Borba Manana 		path->slots[1]++;
32392ef1fed2SFilipe David Borba Manana 		return 0;
32402ef1fed2SFilipe David Borba Manana 	}
32412ef1fed2SFilipe David Borba Manana 
3242ed25dab3SJosef Bacik 	return __push_leaf_right(trans, path, min_data_size, empty, right,
3243ed25dab3SJosef Bacik 				 free_space, left_nritems, min_slot);
324444871b1bSChris Mason out_unlock:
324544871b1bSChris Mason 	btrfs_tree_unlock(right);
324644871b1bSChris Mason 	free_extent_buffer(right);
324744871b1bSChris Mason 	return 1;
324844871b1bSChris Mason }
324944871b1bSChris Mason 
325044871b1bSChris Mason /*
325144871b1bSChris Mason  * push some data in the path leaf to the left, trying to free up at
325244871b1bSChris Mason  * least data_size bytes.  returns zero if the push worked, nonzero otherwise
325399d8f83cSChris Mason  *
325499d8f83cSChris Mason  * max_slot can put a limit on how far into the leaf we'll push items.  The
325599d8f83cSChris Mason  * item at 'max_slot' won't be touched.  Use (u32)-1 to make us do all the
325699d8f83cSChris Mason  * items
325744871b1bSChris Mason  */
3258ed25dab3SJosef Bacik static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3259ed25dab3SJosef Bacik 				     struct btrfs_path *path, int data_size,
326044871b1bSChris Mason 				     int empty, struct extent_buffer *left,
326199d8f83cSChris Mason 				     int free_space, u32 right_nritems,
326299d8f83cSChris Mason 				     u32 max_slot)
326344871b1bSChris Mason {
32648087c193SDavid Sterba 	struct btrfs_fs_info *fs_info = left->fs_info;
32655f39d397SChris Mason 	struct btrfs_disk_key disk_key;
32665f39d397SChris Mason 	struct extent_buffer *right = path->nodes[0];
3267be0e5c09SChris Mason 	int i;
3268be0e5c09SChris Mason 	int push_space = 0;
3269be0e5c09SChris Mason 	int push_items = 0;
32707518a238SChris Mason 	u32 old_left_nritems;
327134a38218SChris Mason 	u32 nr;
3272aa5d6bedSChris Mason 	int ret = 0;
3273db94535dSChris Mason 	u32 this_item_size;
3274db94535dSChris Mason 	u32 old_left_item_size;
3275cfed81a0SChris Mason 	struct btrfs_map_token token;
3276cfed81a0SChris Mason 
327734a38218SChris Mason 	if (empty)
327899d8f83cSChris Mason 		nr = min(right_nritems, max_slot);
327934a38218SChris Mason 	else
328099d8f83cSChris Mason 		nr = min(right_nritems - 1, max_slot);
328134a38218SChris Mason 
328234a38218SChris Mason 	for (i = 0; i < nr; i++) {
328331840ae1SZheng Yan 		if (!empty && push_items > 0) {
328431840ae1SZheng Yan 			if (path->slots[0] < i)
328531840ae1SZheng Yan 				break;
328631840ae1SZheng Yan 			if (path->slots[0] == i) {
3287e902baacSDavid Sterba 				int space = btrfs_leaf_free_space(right);
3288e902baacSDavid Sterba 
328931840ae1SZheng Yan 				if (space + push_space * 2 > free_space)
329031840ae1SZheng Yan 					break;
329131840ae1SZheng Yan 			}
329231840ae1SZheng Yan 		}
329331840ae1SZheng Yan 
3294be0e5c09SChris Mason 		if (path->slots[0] == i)
329587b29b20SYan Zheng 			push_space += data_size;
3296db94535dSChris Mason 
32973212fa14SJosef Bacik 		this_item_size = btrfs_item_size(right, i);
329874794207SJosef Bacik 		if (this_item_size + sizeof(struct btrfs_item) + push_space >
329974794207SJosef Bacik 		    free_space)
3300be0e5c09SChris Mason 			break;
3301db94535dSChris Mason 
3302be0e5c09SChris Mason 		push_items++;
330374794207SJosef Bacik 		push_space += this_item_size + sizeof(struct btrfs_item);
3304be0e5c09SChris Mason 	}
3305db94535dSChris Mason 
3306be0e5c09SChris Mason 	if (push_items == 0) {
3307925baeddSChris Mason 		ret = 1;
3308925baeddSChris Mason 		goto out;
3309be0e5c09SChris Mason 	}
3310fae7f21cSDulshani Gunawardhana 	WARN_ON(!empty && push_items == btrfs_header_nritems(right));
33115f39d397SChris Mason 
3312be0e5c09SChris Mason 	/* push data from right to left */
3313637e3b48SJosef Bacik 	copy_leaf_items(left, right, btrfs_header_nritems(left), 0, push_items);
33145f39d397SChris Mason 
33150b246afaSJeff Mahoney 	push_space = BTRFS_LEAF_DATA_SIZE(fs_info) -
33163212fa14SJosef Bacik 		     btrfs_item_offset(right, push_items - 1);
33175f39d397SChris Mason 
3318637e3b48SJosef Bacik 	copy_leaf_data(left, right, leaf_data_end(left) - push_space,
3319637e3b48SJosef Bacik 		       btrfs_item_offset(right, push_items - 1), push_space);
33205f39d397SChris Mason 	old_left_nritems = btrfs_header_nritems(left);
332187b29b20SYan Zheng 	BUG_ON(old_left_nritems <= 0);
3322eb60ceacSChris Mason 
3323c82f823cSDavid Sterba 	btrfs_init_map_token(&token, left);
33243212fa14SJosef Bacik 	old_left_item_size = btrfs_item_offset(left, old_left_nritems - 1);
3325be0e5c09SChris Mason 	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
33265f39d397SChris Mason 		u32 ioff;
3327db94535dSChris Mason 
33283212fa14SJosef Bacik 		ioff = btrfs_token_item_offset(&token, i);
33293212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, i,
3330cc4c13d5SDavid Sterba 		      ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size));
3331be0e5c09SChris Mason 	}
33325f39d397SChris Mason 	btrfs_set_header_nritems(left, old_left_nritems + push_items);
3333be0e5c09SChris Mason 
3334be0e5c09SChris Mason 	/* fixup right node */
333531b1a2bdSJulia Lawall 	if (push_items > right_nritems)
333631b1a2bdSJulia Lawall 		WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
3337d397712bSChris Mason 		       right_nritems);
333834a38218SChris Mason 
333934a38218SChris Mason 	if (push_items < right_nritems) {
33403212fa14SJosef Bacik 		push_space = btrfs_item_offset(right, push_items - 1) -
33418f881e8cSDavid Sterba 						  leaf_data_end(right);
3342637e3b48SJosef Bacik 		memmove_leaf_data(right,
33430b246afaSJeff Mahoney 				  BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
33448f881e8cSDavid Sterba 				  leaf_data_end(right), push_space);
33455f39d397SChris Mason 
3346637e3b48SJosef Bacik 		memmove_leaf_items(right, 0, push_items,
3347637e3b48SJosef Bacik 				   btrfs_header_nritems(right) - push_items);
334834a38218SChris Mason 	}
3349c82f823cSDavid Sterba 
3350c82f823cSDavid Sterba 	btrfs_init_map_token(&token, right);
3351eef1c494SYan 	right_nritems -= push_items;
3352eef1c494SYan 	btrfs_set_header_nritems(right, right_nritems);
33530b246afaSJeff Mahoney 	push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
33545f39d397SChris Mason 	for (i = 0; i < right_nritems; i++) {
33553212fa14SJosef Bacik 		push_space = push_space - btrfs_token_item_size(&token, i);
33563212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, i, push_space);
3357db94535dSChris Mason 	}
3358eb60ceacSChris Mason 
33595f39d397SChris Mason 	btrfs_mark_buffer_dirty(left);
336034a38218SChris Mason 	if (right_nritems)
33615f39d397SChris Mason 		btrfs_mark_buffer_dirty(right);
3362f0486c68SYan, Zheng 	else
3363190a8339SJosef Bacik 		btrfs_clear_buffer_dirty(trans, right);
3364098f59c2SChris Mason 
33655f39d397SChris Mason 	btrfs_item_key(right, &disk_key, 0);
3366b167fa91SNikolay Borisov 	fixup_low_keys(path, &disk_key, 1);
3367be0e5c09SChris Mason 
3368be0e5c09SChris Mason 	/* then fixup the leaf pointer in the path */
3369be0e5c09SChris Mason 	if (path->slots[0] < push_items) {
3370be0e5c09SChris Mason 		path->slots[0] += old_left_nritems;
3371925baeddSChris Mason 		btrfs_tree_unlock(path->nodes[0]);
33725f39d397SChris Mason 		free_extent_buffer(path->nodes[0]);
33735f39d397SChris Mason 		path->nodes[0] = left;
3374be0e5c09SChris Mason 		path->slots[1] -= 1;
3375be0e5c09SChris Mason 	} else {
3376925baeddSChris Mason 		btrfs_tree_unlock(left);
33775f39d397SChris Mason 		free_extent_buffer(left);
3378be0e5c09SChris Mason 		path->slots[0] -= push_items;
3379be0e5c09SChris Mason 	}
3380eb60ceacSChris Mason 	BUG_ON(path->slots[0] < 0);
3381aa5d6bedSChris Mason 	return ret;
3382925baeddSChris Mason out:
3383925baeddSChris Mason 	btrfs_tree_unlock(left);
3384925baeddSChris Mason 	free_extent_buffer(left);
3385925baeddSChris Mason 	return ret;
3386be0e5c09SChris Mason }
3387be0e5c09SChris Mason 
338874123bd7SChris Mason /*
338944871b1bSChris Mason  * push some data in the path leaf to the left, trying to free up at
339044871b1bSChris Mason  * least data_size bytes.  returns zero if the push worked, nonzero otherwise
339199d8f83cSChris Mason  *
339299d8f83cSChris Mason  * max_slot can put a limit on how far into the leaf we'll push items.  The
339399d8f83cSChris Mason  * item at 'max_slot' won't be touched.  Use (u32)-1 to make us push all the
339499d8f83cSChris Mason  * items
339544871b1bSChris Mason  */
339644871b1bSChris Mason static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
339799d8f83cSChris Mason 			  *root, struct btrfs_path *path, int min_data_size,
339899d8f83cSChris Mason 			  int data_size, int empty, u32 max_slot)
339944871b1bSChris Mason {
340044871b1bSChris Mason 	struct extent_buffer *right = path->nodes[0];
340144871b1bSChris Mason 	struct extent_buffer *left;
340244871b1bSChris Mason 	int slot;
340344871b1bSChris Mason 	int free_space;
340444871b1bSChris Mason 	u32 right_nritems;
340544871b1bSChris Mason 	int ret = 0;
340644871b1bSChris Mason 
340744871b1bSChris Mason 	slot = path->slots[1];
340844871b1bSChris Mason 	if (slot == 0)
340944871b1bSChris Mason 		return 1;
341044871b1bSChris Mason 	if (!path->nodes[1])
341144871b1bSChris Mason 		return 1;
341244871b1bSChris Mason 
341344871b1bSChris Mason 	right_nritems = btrfs_header_nritems(right);
341444871b1bSChris Mason 	if (right_nritems == 0)
341544871b1bSChris Mason 		return 1;
341644871b1bSChris Mason 
341749d0c642SFilipe Manana 	btrfs_assert_tree_write_locked(path->nodes[1]);
341844871b1bSChris Mason 
34194b231ae4SDavid Sterba 	left = btrfs_read_node_slot(path->nodes[1], slot - 1);
3420fb770ae4SLiu Bo 	/*
3421fb770ae4SLiu Bo 	 * slot - 1 is not valid or we fail to read the left node,
3422fb770ae4SLiu Bo 	 * no big deal, just return.
3423fb770ae4SLiu Bo 	 */
3424fb770ae4SLiu Bo 	if (IS_ERR(left))
342591ca338dSTsutomu Itoh 		return 1;
342691ca338dSTsutomu Itoh 
3427bf77467aSJosef Bacik 	__btrfs_tree_lock(left, BTRFS_NESTING_LEFT);
342844871b1bSChris Mason 
3429e902baacSDavid Sterba 	free_space = btrfs_leaf_free_space(left);
343044871b1bSChris Mason 	if (free_space < data_size) {
343144871b1bSChris Mason 		ret = 1;
343244871b1bSChris Mason 		goto out;
343344871b1bSChris Mason 	}
343444871b1bSChris Mason 
343544871b1bSChris Mason 	ret = btrfs_cow_block(trans, root, left,
34369631e4ccSJosef Bacik 			      path->nodes[1], slot - 1, &left,
3437bf59a5a2SJosef Bacik 			      BTRFS_NESTING_LEFT_COW);
343844871b1bSChris Mason 	if (ret) {
343944871b1bSChris Mason 		/* we hit -ENOSPC, but it isn't fatal here */
344079787eaaSJeff Mahoney 		if (ret == -ENOSPC)
344144871b1bSChris Mason 			ret = 1;
344244871b1bSChris Mason 		goto out;
344344871b1bSChris Mason 	}
344444871b1bSChris Mason 
3445d16c702fSQu Wenruo 	if (check_sibling_keys(left, right)) {
3446d16c702fSQu Wenruo 		ret = -EUCLEAN;
3447d16c702fSQu Wenruo 		goto out;
3448d16c702fSQu Wenruo 	}
3449ed25dab3SJosef Bacik 	return __push_leaf_left(trans, path, min_data_size, empty, left,
3450ed25dab3SJosef Bacik 				free_space, right_nritems, max_slot);
345144871b1bSChris Mason out:
345244871b1bSChris Mason 	btrfs_tree_unlock(left);
345344871b1bSChris Mason 	free_extent_buffer(left);
345444871b1bSChris Mason 	return ret;
345544871b1bSChris Mason }
345644871b1bSChris Mason 
345744871b1bSChris Mason /*
345874123bd7SChris Mason  * split the path's leaf in two, making sure there is at least data_size
345974123bd7SChris Mason  * available for the resulting leaf level of the path.
346074123bd7SChris Mason  */
3461143bede5SJeff Mahoney static noinline void copy_for_split(struct btrfs_trans_handle *trans,
346244871b1bSChris Mason 				    struct btrfs_path *path,
346344871b1bSChris Mason 				    struct extent_buffer *l,
346444871b1bSChris Mason 				    struct extent_buffer *right,
346544871b1bSChris Mason 				    int slot, int mid, int nritems)
3466be0e5c09SChris Mason {
346794f94ad9SDavid Sterba 	struct btrfs_fs_info *fs_info = trans->fs_info;
3468be0e5c09SChris Mason 	int data_copy_size;
3469be0e5c09SChris Mason 	int rt_data_off;
3470be0e5c09SChris Mason 	int i;
3471d4dbff95SChris Mason 	struct btrfs_disk_key disk_key;
3472cfed81a0SChris Mason 	struct btrfs_map_token token;
3473cfed81a0SChris Mason 
34745f39d397SChris Mason 	nritems = nritems - mid;
34755f39d397SChris Mason 	btrfs_set_header_nritems(right, nritems);
3476dc2e724eSJosef Bacik 	data_copy_size = btrfs_item_data_end(l, mid) - leaf_data_end(l);
34775f39d397SChris Mason 
3478637e3b48SJosef Bacik 	copy_leaf_items(right, l, 0, mid, nritems);
34795f39d397SChris Mason 
3480637e3b48SJosef Bacik 	copy_leaf_data(right, l, BTRFS_LEAF_DATA_SIZE(fs_info) - data_copy_size,
34818f881e8cSDavid Sterba 		       leaf_data_end(l), data_copy_size);
348274123bd7SChris Mason 
3483dc2e724eSJosef Bacik 	rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_data_end(l, mid);
34845f39d397SChris Mason 
3485c82f823cSDavid Sterba 	btrfs_init_map_token(&token, right);
34865f39d397SChris Mason 	for (i = 0; i < nritems; i++) {
3487db94535dSChris Mason 		u32 ioff;
3488db94535dSChris Mason 
34893212fa14SJosef Bacik 		ioff = btrfs_token_item_offset(&token, i);
34903212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, i, ioff + rt_data_off);
34910783fcfcSChris Mason 	}
349274123bd7SChris Mason 
34935f39d397SChris Mason 	btrfs_set_header_nritems(l, mid);
34945f39d397SChris Mason 	btrfs_item_key(right, &disk_key, 0);
34956ad3cf6dSDavid Sterba 	insert_ptr(trans, path, &disk_key, right->start, path->slots[1] + 1, 1);
34965f39d397SChris Mason 
34975f39d397SChris Mason 	btrfs_mark_buffer_dirty(right);
34985f39d397SChris Mason 	btrfs_mark_buffer_dirty(l);
3499eb60ceacSChris Mason 	BUG_ON(path->slots[0] != slot);
35005f39d397SChris Mason 
3501be0e5c09SChris Mason 	if (mid <= slot) {
3502925baeddSChris Mason 		btrfs_tree_unlock(path->nodes[0]);
35035f39d397SChris Mason 		free_extent_buffer(path->nodes[0]);
35045f39d397SChris Mason 		path->nodes[0] = right;
3505be0e5c09SChris Mason 		path->slots[0] -= mid;
3506be0e5c09SChris Mason 		path->slots[1] += 1;
3507925baeddSChris Mason 	} else {
3508925baeddSChris Mason 		btrfs_tree_unlock(right);
35095f39d397SChris Mason 		free_extent_buffer(right);
3510925baeddSChris Mason 	}
35115f39d397SChris Mason 
3512eb60ceacSChris Mason 	BUG_ON(path->slots[0] < 0);
351344871b1bSChris Mason }
351444871b1bSChris Mason 
351544871b1bSChris Mason /*
351699d8f83cSChris Mason  * double splits happen when we need to insert a big item in the middle
351799d8f83cSChris Mason  * of a leaf.  A double split can leave us with 3 mostly empty leaves:
351899d8f83cSChris Mason  * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
351999d8f83cSChris Mason  *          A                 B                 C
352099d8f83cSChris Mason  *
352199d8f83cSChris Mason  * We avoid this by trying to push the items on either side of our target
352299d8f83cSChris Mason  * into the adjacent leaves.  If all goes well we can avoid the double split
352399d8f83cSChris Mason  * completely.
352499d8f83cSChris Mason  */
352599d8f83cSChris Mason static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
352699d8f83cSChris Mason 					  struct btrfs_root *root,
352799d8f83cSChris Mason 					  struct btrfs_path *path,
352899d8f83cSChris Mason 					  int data_size)
352999d8f83cSChris Mason {
353099d8f83cSChris Mason 	int ret;
353199d8f83cSChris Mason 	int progress = 0;
353299d8f83cSChris Mason 	int slot;
353399d8f83cSChris Mason 	u32 nritems;
35345a4267caSFilipe David Borba Manana 	int space_needed = data_size;
353599d8f83cSChris Mason 
353699d8f83cSChris Mason 	slot = path->slots[0];
35375a4267caSFilipe David Borba Manana 	if (slot < btrfs_header_nritems(path->nodes[0]))
3538e902baacSDavid Sterba 		space_needed -= btrfs_leaf_free_space(path->nodes[0]);
353999d8f83cSChris Mason 
354099d8f83cSChris Mason 	/*
354199d8f83cSChris Mason 	 * try to push all the items after our slot into the
354299d8f83cSChris Mason 	 * right leaf
354399d8f83cSChris Mason 	 */
35445a4267caSFilipe David Borba Manana 	ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
354599d8f83cSChris Mason 	if (ret < 0)
354699d8f83cSChris Mason 		return ret;
354799d8f83cSChris Mason 
354899d8f83cSChris Mason 	if (ret == 0)
354999d8f83cSChris Mason 		progress++;
355099d8f83cSChris Mason 
355199d8f83cSChris Mason 	nritems = btrfs_header_nritems(path->nodes[0]);
355299d8f83cSChris Mason 	/*
355399d8f83cSChris Mason 	 * our goal is to get our slot at the start or end of a leaf.  If
355499d8f83cSChris Mason 	 * we've done so we're done
355599d8f83cSChris Mason 	 */
355699d8f83cSChris Mason 	if (path->slots[0] == 0 || path->slots[0] == nritems)
355799d8f83cSChris Mason 		return 0;
355899d8f83cSChris Mason 
3559e902baacSDavid Sterba 	if (btrfs_leaf_free_space(path->nodes[0]) >= data_size)
356099d8f83cSChris Mason 		return 0;
356199d8f83cSChris Mason 
356299d8f83cSChris Mason 	/* try to push all the items before our slot into the next leaf */
356399d8f83cSChris Mason 	slot = path->slots[0];
3564263d3995SFilipe Manana 	space_needed = data_size;
3565263d3995SFilipe Manana 	if (slot > 0)
3566e902baacSDavid Sterba 		space_needed -= btrfs_leaf_free_space(path->nodes[0]);
35675a4267caSFilipe David Borba Manana 	ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
356899d8f83cSChris Mason 	if (ret < 0)
356999d8f83cSChris Mason 		return ret;
357099d8f83cSChris Mason 
357199d8f83cSChris Mason 	if (ret == 0)
357299d8f83cSChris Mason 		progress++;
357399d8f83cSChris Mason 
357499d8f83cSChris Mason 	if (progress)
357599d8f83cSChris Mason 		return 0;
357699d8f83cSChris Mason 	return 1;
357799d8f83cSChris Mason }
357899d8f83cSChris Mason 
357999d8f83cSChris Mason /*
358044871b1bSChris Mason  * split the path's leaf in two, making sure there is at least data_size
358144871b1bSChris Mason  * available for the resulting leaf level of the path.
358244871b1bSChris Mason  *
358344871b1bSChris Mason  * returns 0 if all went well and < 0 on failure.
358444871b1bSChris Mason  */
358544871b1bSChris Mason static noinline int split_leaf(struct btrfs_trans_handle *trans,
358644871b1bSChris Mason 			       struct btrfs_root *root,
3587310712b2SOmar Sandoval 			       const struct btrfs_key *ins_key,
358844871b1bSChris Mason 			       struct btrfs_path *path, int data_size,
358944871b1bSChris Mason 			       int extend)
359044871b1bSChris Mason {
35915d4f98a2SYan Zheng 	struct btrfs_disk_key disk_key;
359244871b1bSChris Mason 	struct extent_buffer *l;
359344871b1bSChris Mason 	u32 nritems;
359444871b1bSChris Mason 	int mid;
359544871b1bSChris Mason 	int slot;
359644871b1bSChris Mason 	struct extent_buffer *right;
3597b7a0365eSDaniel Dressler 	struct btrfs_fs_info *fs_info = root->fs_info;
359844871b1bSChris Mason 	int ret = 0;
359944871b1bSChris Mason 	int wret;
36005d4f98a2SYan Zheng 	int split;
360144871b1bSChris Mason 	int num_doubles = 0;
360299d8f83cSChris Mason 	int tried_avoid_double = 0;
360344871b1bSChris Mason 
3604a5719521SYan, Zheng 	l = path->nodes[0];
3605a5719521SYan, Zheng 	slot = path->slots[0];
36063212fa14SJosef Bacik 	if (extend && data_size + btrfs_item_size(l, slot) +
36070b246afaSJeff Mahoney 	    sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info))
3608a5719521SYan, Zheng 		return -EOVERFLOW;
3609a5719521SYan, Zheng 
361044871b1bSChris Mason 	/* first try to make some room by pushing left and right */
361133157e05SLiu Bo 	if (data_size && path->nodes[1]) {
36125a4267caSFilipe David Borba Manana 		int space_needed = data_size;
36135a4267caSFilipe David Borba Manana 
36145a4267caSFilipe David Borba Manana 		if (slot < btrfs_header_nritems(l))
3615e902baacSDavid Sterba 			space_needed -= btrfs_leaf_free_space(l);
36165a4267caSFilipe David Borba Manana 
36175a4267caSFilipe David Borba Manana 		wret = push_leaf_right(trans, root, path, space_needed,
36185a4267caSFilipe David Borba Manana 				       space_needed, 0, 0);
361944871b1bSChris Mason 		if (wret < 0)
362044871b1bSChris Mason 			return wret;
362144871b1bSChris Mason 		if (wret) {
3622263d3995SFilipe Manana 			space_needed = data_size;
3623263d3995SFilipe Manana 			if (slot > 0)
3624e902baacSDavid Sterba 				space_needed -= btrfs_leaf_free_space(l);
36255a4267caSFilipe David Borba Manana 			wret = push_leaf_left(trans, root, path, space_needed,
36265a4267caSFilipe David Borba Manana 					      space_needed, 0, (u32)-1);
362744871b1bSChris Mason 			if (wret < 0)
362844871b1bSChris Mason 				return wret;
362944871b1bSChris Mason 		}
363044871b1bSChris Mason 		l = path->nodes[0];
363144871b1bSChris Mason 
363244871b1bSChris Mason 		/* did the pushes work? */
3633e902baacSDavid Sterba 		if (btrfs_leaf_free_space(l) >= data_size)
363444871b1bSChris Mason 			return 0;
363544871b1bSChris Mason 	}
363644871b1bSChris Mason 
363744871b1bSChris Mason 	if (!path->nodes[1]) {
3638fdd99c72SLiu Bo 		ret = insert_new_root(trans, root, path, 1);
363944871b1bSChris Mason 		if (ret)
364044871b1bSChris Mason 			return ret;
364144871b1bSChris Mason 	}
364244871b1bSChris Mason again:
36435d4f98a2SYan Zheng 	split = 1;
364444871b1bSChris Mason 	l = path->nodes[0];
364544871b1bSChris Mason 	slot = path->slots[0];
364644871b1bSChris Mason 	nritems = btrfs_header_nritems(l);
364744871b1bSChris Mason 	mid = (nritems + 1) / 2;
364844871b1bSChris Mason 
36495d4f98a2SYan Zheng 	if (mid <= slot) {
36505d4f98a2SYan Zheng 		if (nritems == 1 ||
36515d4f98a2SYan Zheng 		    leaf_space_used(l, mid, nritems - mid) + data_size >
36520b246afaSJeff Mahoney 			BTRFS_LEAF_DATA_SIZE(fs_info)) {
36535d4f98a2SYan Zheng 			if (slot >= nritems) {
36545d4f98a2SYan Zheng 				split = 0;
36555d4f98a2SYan Zheng 			} else {
36565d4f98a2SYan Zheng 				mid = slot;
36575d4f98a2SYan Zheng 				if (mid != nritems &&
36585d4f98a2SYan Zheng 				    leaf_space_used(l, mid, nritems - mid) +
36590b246afaSJeff Mahoney 				    data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
366099d8f83cSChris Mason 					if (data_size && !tried_avoid_double)
366199d8f83cSChris Mason 						goto push_for_double;
36625d4f98a2SYan Zheng 					split = 2;
36635d4f98a2SYan Zheng 				}
36645d4f98a2SYan Zheng 			}
36655d4f98a2SYan Zheng 		}
36665d4f98a2SYan Zheng 	} else {
36675d4f98a2SYan Zheng 		if (leaf_space_used(l, 0, mid) + data_size >
36680b246afaSJeff Mahoney 			BTRFS_LEAF_DATA_SIZE(fs_info)) {
36695d4f98a2SYan Zheng 			if (!extend && data_size && slot == 0) {
36705d4f98a2SYan Zheng 				split = 0;
36715d4f98a2SYan Zheng 			} else if ((extend || !data_size) && slot == 0) {
36725d4f98a2SYan Zheng 				mid = 1;
36735d4f98a2SYan Zheng 			} else {
36745d4f98a2SYan Zheng 				mid = slot;
36755d4f98a2SYan Zheng 				if (mid != nritems &&
36765d4f98a2SYan Zheng 				    leaf_space_used(l, mid, nritems - mid) +
36770b246afaSJeff Mahoney 				    data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
367899d8f83cSChris Mason 					if (data_size && !tried_avoid_double)
367999d8f83cSChris Mason 						goto push_for_double;
36805d4f98a2SYan Zheng 					split = 2;
36815d4f98a2SYan Zheng 				}
36825d4f98a2SYan Zheng 			}
36835d4f98a2SYan Zheng 		}
36845d4f98a2SYan Zheng 	}
36855d4f98a2SYan Zheng 
36865d4f98a2SYan Zheng 	if (split == 0)
36875d4f98a2SYan Zheng 		btrfs_cpu_key_to_disk(&disk_key, ins_key);
36885d4f98a2SYan Zheng 	else
36895d4f98a2SYan Zheng 		btrfs_item_key(l, &disk_key, mid);
36905d4f98a2SYan Zheng 
3691ca9d473aSJosef Bacik 	/*
3692ca9d473aSJosef Bacik 	 * We have to about BTRFS_NESTING_NEW_ROOT here if we've done a double
3693ca9d473aSJosef Bacik 	 * split, because we're only allowed to have MAX_LOCKDEP_SUBCLASSES
3694ca9d473aSJosef Bacik 	 * subclasses, which is 8 at the time of this patch, and we've maxed it
3695ca9d473aSJosef Bacik 	 * out.  In the future we could add a
3696ca9d473aSJosef Bacik 	 * BTRFS_NESTING_SPLIT_THE_SPLITTENING if we need to, but for now just
3697ca9d473aSJosef Bacik 	 * use BTRFS_NESTING_NEW_ROOT.
3698ca9d473aSJosef Bacik 	 */
369979bd3712SFilipe Manana 	right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
370079bd3712SFilipe Manana 				       &disk_key, 0, l->start, 0,
370179bd3712SFilipe Manana 				       num_doubles ? BTRFS_NESTING_NEW_ROOT :
3702ca9d473aSJosef Bacik 				       BTRFS_NESTING_SPLIT);
3703f0486c68SYan, Zheng 	if (IS_ERR(right))
370444871b1bSChris Mason 		return PTR_ERR(right);
3705f0486c68SYan, Zheng 
37060b246afaSJeff Mahoney 	root_add_used(root, fs_info->nodesize);
370744871b1bSChris Mason 
37085d4f98a2SYan Zheng 	if (split == 0) {
370944871b1bSChris Mason 		if (mid <= slot) {
371044871b1bSChris Mason 			btrfs_set_header_nritems(right, 0);
37116ad3cf6dSDavid Sterba 			insert_ptr(trans, path, &disk_key,
37122ff7e61eSJeff Mahoney 				   right->start, path->slots[1] + 1, 1);
371344871b1bSChris Mason 			btrfs_tree_unlock(path->nodes[0]);
371444871b1bSChris Mason 			free_extent_buffer(path->nodes[0]);
371544871b1bSChris Mason 			path->nodes[0] = right;
371644871b1bSChris Mason 			path->slots[0] = 0;
371744871b1bSChris Mason 			path->slots[1] += 1;
371844871b1bSChris Mason 		} else {
371944871b1bSChris Mason 			btrfs_set_header_nritems(right, 0);
37206ad3cf6dSDavid Sterba 			insert_ptr(trans, path, &disk_key,
37212ff7e61eSJeff Mahoney 				   right->start, path->slots[1], 1);
372244871b1bSChris Mason 			btrfs_tree_unlock(path->nodes[0]);
372344871b1bSChris Mason 			free_extent_buffer(path->nodes[0]);
372444871b1bSChris Mason 			path->nodes[0] = right;
372544871b1bSChris Mason 			path->slots[0] = 0;
3726143bede5SJeff Mahoney 			if (path->slots[1] == 0)
3727b167fa91SNikolay Borisov 				fixup_low_keys(path, &disk_key, 1);
37285d4f98a2SYan Zheng 		}
3729196e0249SLiu Bo 		/*
3730196e0249SLiu Bo 		 * We create a new leaf 'right' for the required ins_len and
3731196e0249SLiu Bo 		 * we'll do btrfs_mark_buffer_dirty() on this leaf after copying
3732196e0249SLiu Bo 		 * the content of ins_len to 'right'.
3733196e0249SLiu Bo 		 */
373444871b1bSChris Mason 		return ret;
373544871b1bSChris Mason 	}
373644871b1bSChris Mason 
373794f94ad9SDavid Sterba 	copy_for_split(trans, path, l, right, slot, mid, nritems);
373844871b1bSChris Mason 
37395d4f98a2SYan Zheng 	if (split == 2) {
3740cc0c5538SChris Mason 		BUG_ON(num_doubles != 0);
3741cc0c5538SChris Mason 		num_doubles++;
3742cc0c5538SChris Mason 		goto again;
37433326d1b0SChris Mason 	}
374444871b1bSChris Mason 
3745143bede5SJeff Mahoney 	return 0;
374699d8f83cSChris Mason 
374799d8f83cSChris Mason push_for_double:
374899d8f83cSChris Mason 	push_for_double_split(trans, root, path, data_size);
374999d8f83cSChris Mason 	tried_avoid_double = 1;
3750e902baacSDavid Sterba 	if (btrfs_leaf_free_space(path->nodes[0]) >= data_size)
375199d8f83cSChris Mason 		return 0;
375299d8f83cSChris Mason 	goto again;
3753be0e5c09SChris Mason }
3754be0e5c09SChris Mason 
3755ad48fd75SYan, Zheng static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
3756ad48fd75SYan, Zheng 					 struct btrfs_root *root,
3757ad48fd75SYan, Zheng 					 struct btrfs_path *path, int ins_len)
3758ad48fd75SYan, Zheng {
3759ad48fd75SYan, Zheng 	struct btrfs_key key;
3760ad48fd75SYan, Zheng 	struct extent_buffer *leaf;
3761ad48fd75SYan, Zheng 	struct btrfs_file_extent_item *fi;
3762ad48fd75SYan, Zheng 	u64 extent_len = 0;
3763ad48fd75SYan, Zheng 	u32 item_size;
3764ad48fd75SYan, Zheng 	int ret;
3765ad48fd75SYan, Zheng 
3766ad48fd75SYan, Zheng 	leaf = path->nodes[0];
3767ad48fd75SYan, Zheng 	btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3768ad48fd75SYan, Zheng 
3769ad48fd75SYan, Zheng 	BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
3770ad48fd75SYan, Zheng 	       key.type != BTRFS_EXTENT_CSUM_KEY);
3771ad48fd75SYan, Zheng 
3772e902baacSDavid Sterba 	if (btrfs_leaf_free_space(leaf) >= ins_len)
3773ad48fd75SYan, Zheng 		return 0;
3774ad48fd75SYan, Zheng 
37753212fa14SJosef Bacik 	item_size = btrfs_item_size(leaf, path->slots[0]);
3776ad48fd75SYan, Zheng 	if (key.type == BTRFS_EXTENT_DATA_KEY) {
3777ad48fd75SYan, Zheng 		fi = btrfs_item_ptr(leaf, path->slots[0],
3778ad48fd75SYan, Zheng 				    struct btrfs_file_extent_item);
3779ad48fd75SYan, Zheng 		extent_len = btrfs_file_extent_num_bytes(leaf, fi);
3780ad48fd75SYan, Zheng 	}
3781b3b4aa74SDavid Sterba 	btrfs_release_path(path);
3782ad48fd75SYan, Zheng 
3783ad48fd75SYan, Zheng 	path->keep_locks = 1;
3784ad48fd75SYan, Zheng 	path->search_for_split = 1;
3785ad48fd75SYan, Zheng 	ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
3786ad48fd75SYan, Zheng 	path->search_for_split = 0;
3787a8df6fe6SFilipe Manana 	if (ret > 0)
3788a8df6fe6SFilipe Manana 		ret = -EAGAIN;
3789ad48fd75SYan, Zheng 	if (ret < 0)
3790ad48fd75SYan, Zheng 		goto err;
3791ad48fd75SYan, Zheng 
3792ad48fd75SYan, Zheng 	ret = -EAGAIN;
3793ad48fd75SYan, Zheng 	leaf = path->nodes[0];
3794a8df6fe6SFilipe Manana 	/* if our item isn't there, return now */
37953212fa14SJosef Bacik 	if (item_size != btrfs_item_size(leaf, path->slots[0]))
3796ad48fd75SYan, Zheng 		goto err;
3797ad48fd75SYan, Zheng 
3798109f6aefSChris Mason 	/* the leaf has  changed, it now has room.  return now */
3799e902baacSDavid Sterba 	if (btrfs_leaf_free_space(path->nodes[0]) >= ins_len)
3800109f6aefSChris Mason 		goto err;
3801109f6aefSChris Mason 
3802ad48fd75SYan, Zheng 	if (key.type == BTRFS_EXTENT_DATA_KEY) {
3803ad48fd75SYan, Zheng 		fi = btrfs_item_ptr(leaf, path->slots[0],
3804ad48fd75SYan, Zheng 				    struct btrfs_file_extent_item);
3805ad48fd75SYan, Zheng 		if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
3806ad48fd75SYan, Zheng 			goto err;
3807ad48fd75SYan, Zheng 	}
3808ad48fd75SYan, Zheng 
3809ad48fd75SYan, Zheng 	ret = split_leaf(trans, root, &key, path, ins_len, 1);
3810f0486c68SYan, Zheng 	if (ret)
3811f0486c68SYan, Zheng 		goto err;
3812ad48fd75SYan, Zheng 
3813ad48fd75SYan, Zheng 	path->keep_locks = 0;
3814ad48fd75SYan, Zheng 	btrfs_unlock_up_safe(path, 1);
3815ad48fd75SYan, Zheng 	return 0;
3816ad48fd75SYan, Zheng err:
3817ad48fd75SYan, Zheng 	path->keep_locks = 0;
3818ad48fd75SYan, Zheng 	return ret;
3819ad48fd75SYan, Zheng }
3820ad48fd75SYan, Zheng 
382125263cd7SDavid Sterba static noinline int split_item(struct btrfs_path *path,
3822310712b2SOmar Sandoval 			       const struct btrfs_key *new_key,
3823459931ecSChris Mason 			       unsigned long split_offset)
3824459931ecSChris Mason {
3825459931ecSChris Mason 	struct extent_buffer *leaf;
3826c91666b1SJosef Bacik 	int orig_slot, slot;
3827ad48fd75SYan, Zheng 	char *buf;
3828459931ecSChris Mason 	u32 nritems;
3829ad48fd75SYan, Zheng 	u32 item_size;
3830459931ecSChris Mason 	u32 orig_offset;
3831459931ecSChris Mason 	struct btrfs_disk_key disk_key;
3832459931ecSChris Mason 
3833459931ecSChris Mason 	leaf = path->nodes[0];
3834e902baacSDavid Sterba 	BUG_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item));
3835b9473439SChris Mason 
3836c91666b1SJosef Bacik 	orig_slot = path->slots[0];
38373212fa14SJosef Bacik 	orig_offset = btrfs_item_offset(leaf, path->slots[0]);
38383212fa14SJosef Bacik 	item_size = btrfs_item_size(leaf, path->slots[0]);
3839459931ecSChris Mason 
3840459931ecSChris Mason 	buf = kmalloc(item_size, GFP_NOFS);
3841ad48fd75SYan, Zheng 	if (!buf)
3842ad48fd75SYan, Zheng 		return -ENOMEM;
3843ad48fd75SYan, Zheng 
3844459931ecSChris Mason 	read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3845459931ecSChris Mason 			    path->slots[0]), item_size);
3846ad48fd75SYan, Zheng 
3847459931ecSChris Mason 	slot = path->slots[0] + 1;
3848459931ecSChris Mason 	nritems = btrfs_header_nritems(leaf);
3849459931ecSChris Mason 	if (slot != nritems) {
3850459931ecSChris Mason 		/* shift the items */
3851637e3b48SJosef Bacik 		memmove_leaf_items(leaf, slot + 1, slot, nritems - slot);
3852459931ecSChris Mason 	}
3853459931ecSChris Mason 
3854459931ecSChris Mason 	btrfs_cpu_key_to_disk(&disk_key, new_key);
3855459931ecSChris Mason 	btrfs_set_item_key(leaf, &disk_key, slot);
3856459931ecSChris Mason 
38573212fa14SJosef Bacik 	btrfs_set_item_offset(leaf, slot, orig_offset);
38583212fa14SJosef Bacik 	btrfs_set_item_size(leaf, slot, item_size - split_offset);
3859459931ecSChris Mason 
38603212fa14SJosef Bacik 	btrfs_set_item_offset(leaf, orig_slot,
3861459931ecSChris Mason 				 orig_offset + item_size - split_offset);
38623212fa14SJosef Bacik 	btrfs_set_item_size(leaf, orig_slot, split_offset);
3863459931ecSChris Mason 
3864459931ecSChris Mason 	btrfs_set_header_nritems(leaf, nritems + 1);
3865459931ecSChris Mason 
3866459931ecSChris Mason 	/* write the data for the start of the original item */
3867459931ecSChris Mason 	write_extent_buffer(leaf, buf,
3868459931ecSChris Mason 			    btrfs_item_ptr_offset(leaf, path->slots[0]),
3869459931ecSChris Mason 			    split_offset);
3870459931ecSChris Mason 
3871459931ecSChris Mason 	/* write the data for the new item */
3872459931ecSChris Mason 	write_extent_buffer(leaf, buf + split_offset,
3873459931ecSChris Mason 			    btrfs_item_ptr_offset(leaf, slot),
3874459931ecSChris Mason 			    item_size - split_offset);
3875459931ecSChris Mason 	btrfs_mark_buffer_dirty(leaf);
3876459931ecSChris Mason 
3877e902baacSDavid Sterba 	BUG_ON(btrfs_leaf_free_space(leaf) < 0);
3878459931ecSChris Mason 	kfree(buf);
3879ad48fd75SYan, Zheng 	return 0;
3880ad48fd75SYan, Zheng }
3881ad48fd75SYan, Zheng 
3882ad48fd75SYan, Zheng /*
3883ad48fd75SYan, Zheng  * This function splits a single item into two items,
3884ad48fd75SYan, Zheng  * giving 'new_key' to the new item and splitting the
3885ad48fd75SYan, Zheng  * old one at split_offset (from the start of the item).
3886ad48fd75SYan, Zheng  *
3887ad48fd75SYan, Zheng  * The path may be released by this operation.  After
3888ad48fd75SYan, Zheng  * the split, the path is pointing to the old item.  The
3889ad48fd75SYan, Zheng  * new item is going to be in the same node as the old one.
3890ad48fd75SYan, Zheng  *
3891ad48fd75SYan, Zheng  * Note, the item being split must be smaller enough to live alone on
3892ad48fd75SYan, Zheng  * a tree block with room for one extra struct btrfs_item
3893ad48fd75SYan, Zheng  *
3894ad48fd75SYan, Zheng  * This allows us to split the item in place, keeping a lock on the
3895ad48fd75SYan, Zheng  * leaf the entire time.
3896ad48fd75SYan, Zheng  */
3897ad48fd75SYan, Zheng int btrfs_split_item(struct btrfs_trans_handle *trans,
3898ad48fd75SYan, Zheng 		     struct btrfs_root *root,
3899ad48fd75SYan, Zheng 		     struct btrfs_path *path,
3900310712b2SOmar Sandoval 		     const struct btrfs_key *new_key,
3901ad48fd75SYan, Zheng 		     unsigned long split_offset)
3902ad48fd75SYan, Zheng {
3903ad48fd75SYan, Zheng 	int ret;
3904ad48fd75SYan, Zheng 	ret = setup_leaf_for_split(trans, root, path,
3905ad48fd75SYan, Zheng 				   sizeof(struct btrfs_item));
3906ad48fd75SYan, Zheng 	if (ret)
3907459931ecSChris Mason 		return ret;
3908ad48fd75SYan, Zheng 
390925263cd7SDavid Sterba 	ret = split_item(path, new_key, split_offset);
3910ad48fd75SYan, Zheng 	return ret;
3911ad48fd75SYan, Zheng }
3912ad48fd75SYan, Zheng 
3913ad48fd75SYan, Zheng /*
3914d352ac68SChris Mason  * make the item pointed to by the path smaller.  new_size indicates
3915d352ac68SChris Mason  * how small to make it, and from_end tells us if we just chop bytes
3916d352ac68SChris Mason  * off the end of the item or if we shift the item to chop bytes off
3917d352ac68SChris Mason  * the front.
3918d352ac68SChris Mason  */
391978ac4f9eSDavid Sterba void btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end)
3920b18c6685SChris Mason {
3921b18c6685SChris Mason 	int slot;
39225f39d397SChris Mason 	struct extent_buffer *leaf;
3923b18c6685SChris Mason 	u32 nritems;
3924b18c6685SChris Mason 	unsigned int data_end;
3925b18c6685SChris Mason 	unsigned int old_data_start;
3926b18c6685SChris Mason 	unsigned int old_size;
3927b18c6685SChris Mason 	unsigned int size_diff;
3928b18c6685SChris Mason 	int i;
3929cfed81a0SChris Mason 	struct btrfs_map_token token;
3930cfed81a0SChris Mason 
39315f39d397SChris Mason 	leaf = path->nodes[0];
3932179e29e4SChris Mason 	slot = path->slots[0];
3933179e29e4SChris Mason 
39343212fa14SJosef Bacik 	old_size = btrfs_item_size(leaf, slot);
3935179e29e4SChris Mason 	if (old_size == new_size)
3936143bede5SJeff Mahoney 		return;
3937b18c6685SChris Mason 
39385f39d397SChris Mason 	nritems = btrfs_header_nritems(leaf);
39398f881e8cSDavid Sterba 	data_end = leaf_data_end(leaf);
3940b18c6685SChris Mason 
39413212fa14SJosef Bacik 	old_data_start = btrfs_item_offset(leaf, slot);
3942179e29e4SChris Mason 
3943b18c6685SChris Mason 	size_diff = old_size - new_size;
3944b18c6685SChris Mason 
3945b18c6685SChris Mason 	BUG_ON(slot < 0);
3946b18c6685SChris Mason 	BUG_ON(slot >= nritems);
3947b18c6685SChris Mason 
3948b18c6685SChris Mason 	/*
3949b18c6685SChris Mason 	 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3950b18c6685SChris Mason 	 */
3951b18c6685SChris Mason 	/* first correct the data pointers */
3952c82f823cSDavid Sterba 	btrfs_init_map_token(&token, leaf);
3953b18c6685SChris Mason 	for (i = slot; i < nritems; i++) {
39545f39d397SChris Mason 		u32 ioff;
3955db94535dSChris Mason 
39563212fa14SJosef Bacik 		ioff = btrfs_token_item_offset(&token, i);
39573212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, i, ioff + size_diff);
3958b18c6685SChris Mason 	}
3959db94535dSChris Mason 
3960b18c6685SChris Mason 	/* shift the data */
3961179e29e4SChris Mason 	if (from_end) {
3962637e3b48SJosef Bacik 		memmove_leaf_data(leaf, data_end + size_diff, data_end,
3963637e3b48SJosef Bacik 				  old_data_start + new_size - data_end);
3964179e29e4SChris Mason 	} else {
3965179e29e4SChris Mason 		struct btrfs_disk_key disk_key;
3966179e29e4SChris Mason 		u64 offset;
3967179e29e4SChris Mason 
3968179e29e4SChris Mason 		btrfs_item_key(leaf, &disk_key, slot);
3969179e29e4SChris Mason 
3970179e29e4SChris Mason 		if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3971179e29e4SChris Mason 			unsigned long ptr;
3972179e29e4SChris Mason 			struct btrfs_file_extent_item *fi;
3973179e29e4SChris Mason 
3974179e29e4SChris Mason 			fi = btrfs_item_ptr(leaf, slot,
3975179e29e4SChris Mason 					    struct btrfs_file_extent_item);
3976179e29e4SChris Mason 			fi = (struct btrfs_file_extent_item *)(
3977179e29e4SChris Mason 			     (unsigned long)fi - size_diff);
3978179e29e4SChris Mason 
3979179e29e4SChris Mason 			if (btrfs_file_extent_type(leaf, fi) ==
3980179e29e4SChris Mason 			    BTRFS_FILE_EXTENT_INLINE) {
3981179e29e4SChris Mason 				ptr = btrfs_item_ptr_offset(leaf, slot);
3982179e29e4SChris Mason 				memmove_extent_buffer(leaf, ptr,
3983179e29e4SChris Mason 				      (unsigned long)fi,
39847ec20afbSDavid Sterba 				      BTRFS_FILE_EXTENT_INLINE_DATA_START);
3985179e29e4SChris Mason 			}
3986179e29e4SChris Mason 		}
3987179e29e4SChris Mason 
3988637e3b48SJosef Bacik 		memmove_leaf_data(leaf, data_end + size_diff, data_end,
3989637e3b48SJosef Bacik 				  old_data_start - data_end);
3990179e29e4SChris Mason 
3991179e29e4SChris Mason 		offset = btrfs_disk_key_offset(&disk_key);
3992179e29e4SChris Mason 		btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3993179e29e4SChris Mason 		btrfs_set_item_key(leaf, &disk_key, slot);
3994179e29e4SChris Mason 		if (slot == 0)
3995b167fa91SNikolay Borisov 			fixup_low_keys(path, &disk_key, 1);
3996179e29e4SChris Mason 	}
39975f39d397SChris Mason 
39983212fa14SJosef Bacik 	btrfs_set_item_size(leaf, slot, new_size);
39995f39d397SChris Mason 	btrfs_mark_buffer_dirty(leaf);
4000b18c6685SChris Mason 
4001e902baacSDavid Sterba 	if (btrfs_leaf_free_space(leaf) < 0) {
4002a4f78750SDavid Sterba 		btrfs_print_leaf(leaf);
4003b18c6685SChris Mason 		BUG();
40045f39d397SChris Mason 	}
4005b18c6685SChris Mason }
4006b18c6685SChris Mason 
4007d352ac68SChris Mason /*
40088f69dbd2SStefan Behrens  * make the item pointed to by the path bigger, data_size is the added size.
4009d352ac68SChris Mason  */
4010c71dd880SDavid Sterba void btrfs_extend_item(struct btrfs_path *path, u32 data_size)
40116567e837SChris Mason {
40126567e837SChris Mason 	int slot;
40135f39d397SChris Mason 	struct extent_buffer *leaf;
40146567e837SChris Mason 	u32 nritems;
40156567e837SChris Mason 	unsigned int data_end;
40166567e837SChris Mason 	unsigned int old_data;
40176567e837SChris Mason 	unsigned int old_size;
40186567e837SChris Mason 	int i;
4019cfed81a0SChris Mason 	struct btrfs_map_token token;
4020cfed81a0SChris Mason 
40215f39d397SChris Mason 	leaf = path->nodes[0];
40226567e837SChris Mason 
40235f39d397SChris Mason 	nritems = btrfs_header_nritems(leaf);
40248f881e8cSDavid Sterba 	data_end = leaf_data_end(leaf);
40256567e837SChris Mason 
4026e902baacSDavid Sterba 	if (btrfs_leaf_free_space(leaf) < data_size) {
4027a4f78750SDavid Sterba 		btrfs_print_leaf(leaf);
40286567e837SChris Mason 		BUG();
40295f39d397SChris Mason 	}
40306567e837SChris Mason 	slot = path->slots[0];
4031dc2e724eSJosef Bacik 	old_data = btrfs_item_data_end(leaf, slot);
40326567e837SChris Mason 
40336567e837SChris Mason 	BUG_ON(slot < 0);
40343326d1b0SChris Mason 	if (slot >= nritems) {
4035a4f78750SDavid Sterba 		btrfs_print_leaf(leaf);
4036c71dd880SDavid Sterba 		btrfs_crit(leaf->fs_info, "slot %d too large, nritems %d",
4037d397712bSChris Mason 			   slot, nritems);
4038290342f6SArnd Bergmann 		BUG();
40393326d1b0SChris Mason 	}
40406567e837SChris Mason 
40416567e837SChris Mason 	/*
40426567e837SChris Mason 	 * item0..itemN ... dataN.offset..dataN.size .. data0.size
40436567e837SChris Mason 	 */
40446567e837SChris Mason 	/* first correct the data pointers */
4045c82f823cSDavid Sterba 	btrfs_init_map_token(&token, leaf);
40466567e837SChris Mason 	for (i = slot; i < nritems; i++) {
40475f39d397SChris Mason 		u32 ioff;
4048db94535dSChris Mason 
40493212fa14SJosef Bacik 		ioff = btrfs_token_item_offset(&token, i);
40503212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, i, ioff - data_size);
40516567e837SChris Mason 	}
40525f39d397SChris Mason 
40536567e837SChris Mason 	/* shift the data */
4054637e3b48SJosef Bacik 	memmove_leaf_data(leaf, data_end - data_size, data_end,
4055637e3b48SJosef Bacik 			  old_data - data_end);
40565f39d397SChris Mason 
40576567e837SChris Mason 	data_end = old_data;
40583212fa14SJosef Bacik 	old_size = btrfs_item_size(leaf, slot);
40593212fa14SJosef Bacik 	btrfs_set_item_size(leaf, slot, old_size + data_size);
40605f39d397SChris Mason 	btrfs_mark_buffer_dirty(leaf);
40616567e837SChris Mason 
4062e902baacSDavid Sterba 	if (btrfs_leaf_free_space(leaf) < 0) {
4063a4f78750SDavid Sterba 		btrfs_print_leaf(leaf);
40646567e837SChris Mason 		BUG();
40655f39d397SChris Mason 	}
40666567e837SChris Mason }
40676567e837SChris Mason 
406843dd529aSDavid Sterba /*
406943dd529aSDavid Sterba  * Make space in the node before inserting one or more items.
4070da9ffb24SNikolay Borisov  *
4071da9ffb24SNikolay Borisov  * @root:	root we are inserting items to
4072da9ffb24SNikolay Borisov  * @path:	points to the leaf/slot where we are going to insert new items
4073b7ef5f3aSFilipe Manana  * @batch:      information about the batch of items to insert
407443dd529aSDavid Sterba  *
407543dd529aSDavid Sterba  * Main purpose is to save stack depth by doing the bulk of the work in a
407643dd529aSDavid Sterba  * function that doesn't call btrfs_search_slot
407774123bd7SChris Mason  */
4078f0641656SFilipe Manana static void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
4079b7ef5f3aSFilipe Manana 				   const struct btrfs_item_batch *batch)
4080be0e5c09SChris Mason {
40810b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
40829c58309dSChris Mason 	int i;
40837518a238SChris Mason 	u32 nritems;
4084be0e5c09SChris Mason 	unsigned int data_end;
4085e2fa7227SChris Mason 	struct btrfs_disk_key disk_key;
408644871b1bSChris Mason 	struct extent_buffer *leaf;
408744871b1bSChris Mason 	int slot;
4088cfed81a0SChris Mason 	struct btrfs_map_token token;
4089fc0d82e1SNikolay Borisov 	u32 total_size;
4090fc0d82e1SNikolay Borisov 
4091b7ef5f3aSFilipe Manana 	/*
4092b7ef5f3aSFilipe Manana 	 * Before anything else, update keys in the parent and other ancestors
4093b7ef5f3aSFilipe Manana 	 * if needed, then release the write locks on them, so that other tasks
4094b7ef5f3aSFilipe Manana 	 * can use them while we modify the leaf.
4095b7ef5f3aSFilipe Manana 	 */
409624cdc847SFilipe Manana 	if (path->slots[0] == 0) {
4097b7ef5f3aSFilipe Manana 		btrfs_cpu_key_to_disk(&disk_key, &batch->keys[0]);
4098b167fa91SNikolay Borisov 		fixup_low_keys(path, &disk_key, 1);
409924cdc847SFilipe Manana 	}
410024cdc847SFilipe Manana 	btrfs_unlock_up_safe(path, 1);
410124cdc847SFilipe Manana 
41025f39d397SChris Mason 	leaf = path->nodes[0];
410344871b1bSChris Mason 	slot = path->slots[0];
410474123bd7SChris Mason 
41055f39d397SChris Mason 	nritems = btrfs_header_nritems(leaf);
41068f881e8cSDavid Sterba 	data_end = leaf_data_end(leaf);
4107b7ef5f3aSFilipe Manana 	total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item));
4108eb60ceacSChris Mason 
4109e902baacSDavid Sterba 	if (btrfs_leaf_free_space(leaf) < total_size) {
4110a4f78750SDavid Sterba 		btrfs_print_leaf(leaf);
41110b246afaSJeff Mahoney 		btrfs_crit(fs_info, "not enough freespace need %u have %d",
4112e902baacSDavid Sterba 			   total_size, btrfs_leaf_free_space(leaf));
4113be0e5c09SChris Mason 		BUG();
4114d4dbff95SChris Mason 	}
41155f39d397SChris Mason 
4116c82f823cSDavid Sterba 	btrfs_init_map_token(&token, leaf);
4117be0e5c09SChris Mason 	if (slot != nritems) {
4118dc2e724eSJosef Bacik 		unsigned int old_data = btrfs_item_data_end(leaf, slot);
4119be0e5c09SChris Mason 
41205f39d397SChris Mason 		if (old_data < data_end) {
4121a4f78750SDavid Sterba 			btrfs_print_leaf(leaf);
41227269ddd2SNikolay Borisov 			btrfs_crit(fs_info,
41237269ddd2SNikolay Borisov 		"item at slot %d with data offset %u beyond data end of leaf %u",
41245f39d397SChris Mason 				   slot, old_data, data_end);
4125290342f6SArnd Bergmann 			BUG();
41265f39d397SChris Mason 		}
4127be0e5c09SChris Mason 		/*
4128be0e5c09SChris Mason 		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4129be0e5c09SChris Mason 		 */
4130be0e5c09SChris Mason 		/* first correct the data pointers */
41310783fcfcSChris Mason 		for (i = slot; i < nritems; i++) {
41325f39d397SChris Mason 			u32 ioff;
4133db94535dSChris Mason 
41343212fa14SJosef Bacik 			ioff = btrfs_token_item_offset(&token, i);
41353212fa14SJosef Bacik 			btrfs_set_token_item_offset(&token, i,
4136b7ef5f3aSFilipe Manana 						       ioff - batch->total_data_size);
41370783fcfcSChris Mason 		}
4138be0e5c09SChris Mason 		/* shift the items */
4139637e3b48SJosef Bacik 		memmove_leaf_items(leaf, slot + batch->nr, slot, nritems - slot);
4140be0e5c09SChris Mason 
4141be0e5c09SChris Mason 		/* shift the data */
4142637e3b48SJosef Bacik 		memmove_leaf_data(leaf, data_end - batch->total_data_size,
4143637e3b48SJosef Bacik 				  data_end, old_data - data_end);
4144be0e5c09SChris Mason 		data_end = old_data;
4145be0e5c09SChris Mason 	}
41465f39d397SChris Mason 
414762e2749eSChris Mason 	/* setup the item for the new data */
4148b7ef5f3aSFilipe Manana 	for (i = 0; i < batch->nr; i++) {
4149b7ef5f3aSFilipe Manana 		btrfs_cpu_key_to_disk(&disk_key, &batch->keys[i]);
41509c58309dSChris Mason 		btrfs_set_item_key(leaf, &disk_key, slot + i);
4151b7ef5f3aSFilipe Manana 		data_end -= batch->data_sizes[i];
41523212fa14SJosef Bacik 		btrfs_set_token_item_offset(&token, slot + i, data_end);
41533212fa14SJosef Bacik 		btrfs_set_token_item_size(&token, slot + i, batch->data_sizes[i]);
41549c58309dSChris Mason 	}
415544871b1bSChris Mason 
4156b7ef5f3aSFilipe Manana 	btrfs_set_header_nritems(leaf, nritems + batch->nr);
4157b9473439SChris Mason 	btrfs_mark_buffer_dirty(leaf);
4158aa5d6bedSChris Mason 
4159e902baacSDavid Sterba 	if (btrfs_leaf_free_space(leaf) < 0) {
4160a4f78750SDavid Sterba 		btrfs_print_leaf(leaf);
4161be0e5c09SChris Mason 		BUG();
41625f39d397SChris Mason 	}
416344871b1bSChris Mason }
416444871b1bSChris Mason 
416544871b1bSChris Mason /*
4166f0641656SFilipe Manana  * Insert a new item into a leaf.
4167f0641656SFilipe Manana  *
4168f0641656SFilipe Manana  * @root:      The root of the btree.
4169f0641656SFilipe Manana  * @path:      A path pointing to the target leaf and slot.
4170f0641656SFilipe Manana  * @key:       The key of the new item.
4171f0641656SFilipe Manana  * @data_size: The size of the data associated with the new key.
4172f0641656SFilipe Manana  */
4173f0641656SFilipe Manana void btrfs_setup_item_for_insert(struct btrfs_root *root,
4174f0641656SFilipe Manana 				 struct btrfs_path *path,
4175f0641656SFilipe Manana 				 const struct btrfs_key *key,
4176f0641656SFilipe Manana 				 u32 data_size)
4177f0641656SFilipe Manana {
4178f0641656SFilipe Manana 	struct btrfs_item_batch batch;
4179f0641656SFilipe Manana 
4180f0641656SFilipe Manana 	batch.keys = key;
4181f0641656SFilipe Manana 	batch.data_sizes = &data_size;
4182f0641656SFilipe Manana 	batch.total_data_size = data_size;
4183f0641656SFilipe Manana 	batch.nr = 1;
4184f0641656SFilipe Manana 
4185f0641656SFilipe Manana 	setup_items_for_insert(root, path, &batch);
4186f0641656SFilipe Manana }
4187f0641656SFilipe Manana 
4188f0641656SFilipe Manana /*
418944871b1bSChris Mason  * Given a key and some data, insert items into the tree.
419044871b1bSChris Mason  * This does all the path init required, making room in the tree if needed.
419144871b1bSChris Mason  */
419244871b1bSChris Mason int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
419344871b1bSChris Mason 			    struct btrfs_root *root,
419444871b1bSChris Mason 			    struct btrfs_path *path,
4195b7ef5f3aSFilipe Manana 			    const struct btrfs_item_batch *batch)
419644871b1bSChris Mason {
419744871b1bSChris Mason 	int ret = 0;
419844871b1bSChris Mason 	int slot;
4199b7ef5f3aSFilipe Manana 	u32 total_size;
420044871b1bSChris Mason 
4201b7ef5f3aSFilipe Manana 	total_size = batch->total_data_size + (batch->nr * sizeof(struct btrfs_item));
4202b7ef5f3aSFilipe Manana 	ret = btrfs_search_slot(trans, root, &batch->keys[0], path, total_size, 1);
420344871b1bSChris Mason 	if (ret == 0)
420444871b1bSChris Mason 		return -EEXIST;
420544871b1bSChris Mason 	if (ret < 0)
4206143bede5SJeff Mahoney 		return ret;
420744871b1bSChris Mason 
420844871b1bSChris Mason 	slot = path->slots[0];
420944871b1bSChris Mason 	BUG_ON(slot < 0);
421044871b1bSChris Mason 
4211b7ef5f3aSFilipe Manana 	setup_items_for_insert(root, path, batch);
4212143bede5SJeff Mahoney 	return 0;
421362e2749eSChris Mason }
421462e2749eSChris Mason 
421562e2749eSChris Mason /*
421662e2749eSChris Mason  * Given a key and some data, insert an item into the tree.
421762e2749eSChris Mason  * This does all the path init required, making room in the tree if needed.
421862e2749eSChris Mason  */
4219310712b2SOmar Sandoval int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4220310712b2SOmar Sandoval 		      const struct btrfs_key *cpu_key, void *data,
4221310712b2SOmar Sandoval 		      u32 data_size)
422262e2749eSChris Mason {
422362e2749eSChris Mason 	int ret = 0;
42242c90e5d6SChris Mason 	struct btrfs_path *path;
42255f39d397SChris Mason 	struct extent_buffer *leaf;
42265f39d397SChris Mason 	unsigned long ptr;
422762e2749eSChris Mason 
42282c90e5d6SChris Mason 	path = btrfs_alloc_path();
4229db5b493aSTsutomu Itoh 	if (!path)
4230db5b493aSTsutomu Itoh 		return -ENOMEM;
42312c90e5d6SChris Mason 	ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
423262e2749eSChris Mason 	if (!ret) {
42335f39d397SChris Mason 		leaf = path->nodes[0];
42345f39d397SChris Mason 		ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
42355f39d397SChris Mason 		write_extent_buffer(leaf, data, ptr, data_size);
42365f39d397SChris Mason 		btrfs_mark_buffer_dirty(leaf);
423762e2749eSChris Mason 	}
42382c90e5d6SChris Mason 	btrfs_free_path(path);
4239aa5d6bedSChris Mason 	return ret;
4240be0e5c09SChris Mason }
4241be0e5c09SChris Mason 
424274123bd7SChris Mason /*
4243f0641656SFilipe Manana  * This function duplicates an item, giving 'new_key' to the new item.
4244f0641656SFilipe Manana  * It guarantees both items live in the same tree leaf and the new item is
4245f0641656SFilipe Manana  * contiguous with the original item.
4246f0641656SFilipe Manana  *
4247f0641656SFilipe Manana  * This allows us to split a file extent in place, keeping a lock on the leaf
4248f0641656SFilipe Manana  * the entire time.
4249f0641656SFilipe Manana  */
4250f0641656SFilipe Manana int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4251f0641656SFilipe Manana 			 struct btrfs_root *root,
4252f0641656SFilipe Manana 			 struct btrfs_path *path,
4253f0641656SFilipe Manana 			 const struct btrfs_key *new_key)
4254f0641656SFilipe Manana {
4255f0641656SFilipe Manana 	struct extent_buffer *leaf;
4256f0641656SFilipe Manana 	int ret;
4257f0641656SFilipe Manana 	u32 item_size;
4258f0641656SFilipe Manana 
4259f0641656SFilipe Manana 	leaf = path->nodes[0];
42603212fa14SJosef Bacik 	item_size = btrfs_item_size(leaf, path->slots[0]);
4261f0641656SFilipe Manana 	ret = setup_leaf_for_split(trans, root, path,
4262f0641656SFilipe Manana 				   item_size + sizeof(struct btrfs_item));
4263f0641656SFilipe Manana 	if (ret)
4264f0641656SFilipe Manana 		return ret;
4265f0641656SFilipe Manana 
4266f0641656SFilipe Manana 	path->slots[0]++;
4267f0641656SFilipe Manana 	btrfs_setup_item_for_insert(root, path, new_key, item_size);
4268f0641656SFilipe Manana 	leaf = path->nodes[0];
4269f0641656SFilipe Manana 	memcpy_extent_buffer(leaf,
4270f0641656SFilipe Manana 			     btrfs_item_ptr_offset(leaf, path->slots[0]),
4271f0641656SFilipe Manana 			     btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4272f0641656SFilipe Manana 			     item_size);
4273f0641656SFilipe Manana 	return 0;
4274f0641656SFilipe Manana }
4275f0641656SFilipe Manana 
4276f0641656SFilipe Manana /*
42775de08d7dSChris Mason  * delete the pointer from a given node.
427874123bd7SChris Mason  *
4279d352ac68SChris Mason  * the tree should have been previously balanced so the deletion does not
4280d352ac68SChris Mason  * empty a node.
428174123bd7SChris Mason  */
4282afe5fea7STsutomu Itoh static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4283afe5fea7STsutomu Itoh 		    int level, int slot)
4284be0e5c09SChris Mason {
42855f39d397SChris Mason 	struct extent_buffer *parent = path->nodes[level];
42867518a238SChris Mason 	u32 nritems;
4287f3ea38daSJan Schmidt 	int ret;
4288be0e5c09SChris Mason 
42895f39d397SChris Mason 	nritems = btrfs_header_nritems(parent);
4290be0e5c09SChris Mason 	if (slot != nritems - 1) {
4291bf1d3425SDavid Sterba 		if (level) {
4292f3a84ccdSFilipe Manana 			ret = btrfs_tree_mod_log_insert_move(parent, slot,
4293f3a84ccdSFilipe Manana 					slot + 1, nritems - slot - 1);
4294bf1d3425SDavid Sterba 			BUG_ON(ret < 0);
4295bf1d3425SDavid Sterba 		}
42965f39d397SChris Mason 		memmove_extent_buffer(parent,
4297e23efd8eSJosef Bacik 			      btrfs_node_key_ptr_offset(parent, slot),
4298e23efd8eSJosef Bacik 			      btrfs_node_key_ptr_offset(parent, slot + 1),
4299d6025579SChris Mason 			      sizeof(struct btrfs_key_ptr) *
4300d6025579SChris Mason 			      (nritems - slot - 1));
430157ba86c0SChris Mason 	} else if (level) {
4302f3a84ccdSFilipe Manana 		ret = btrfs_tree_mod_log_insert_key(parent, slot,
430333cff222SFilipe Manana 						    BTRFS_MOD_LOG_KEY_REMOVE);
430457ba86c0SChris Mason 		BUG_ON(ret < 0);
4305be0e5c09SChris Mason 	}
4306f3ea38daSJan Schmidt 
43077518a238SChris Mason 	nritems--;
43085f39d397SChris Mason 	btrfs_set_header_nritems(parent, nritems);
43097518a238SChris Mason 	if (nritems == 0 && parent == root->node) {
43105f39d397SChris Mason 		BUG_ON(btrfs_header_level(root->node) != 1);
4311eb60ceacSChris Mason 		/* just turn the root into a leaf and break */
43125f39d397SChris Mason 		btrfs_set_header_level(root->node, 0);
4313bb803951SChris Mason 	} else if (slot == 0) {
43145f39d397SChris Mason 		struct btrfs_disk_key disk_key;
43155f39d397SChris Mason 
43165f39d397SChris Mason 		btrfs_node_key(parent, &disk_key, 0);
4317b167fa91SNikolay Borisov 		fixup_low_keys(path, &disk_key, level + 1);
4318be0e5c09SChris Mason 	}
4319d6025579SChris Mason 	btrfs_mark_buffer_dirty(parent);
4320be0e5c09SChris Mason }
4321be0e5c09SChris Mason 
432274123bd7SChris Mason /*
4323323ac95bSChris Mason  * a helper function to delete the leaf pointed to by path->slots[1] and
43245d4f98a2SYan Zheng  * path->nodes[1].
4325323ac95bSChris Mason  *
4326323ac95bSChris Mason  * This deletes the pointer in path->nodes[1] and frees the leaf
4327323ac95bSChris Mason  * block extent.  zero is returned if it all worked out, < 0 otherwise.
4328323ac95bSChris Mason  *
4329323ac95bSChris Mason  * The path must have already been setup for deleting the leaf, including
4330323ac95bSChris Mason  * all the proper balancing.  path->nodes[1] must be locked.
4331323ac95bSChris Mason  */
4332143bede5SJeff Mahoney static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4333323ac95bSChris Mason 				    struct btrfs_root *root,
43345d4f98a2SYan Zheng 				    struct btrfs_path *path,
43355d4f98a2SYan Zheng 				    struct extent_buffer *leaf)
4336323ac95bSChris Mason {
43375d4f98a2SYan Zheng 	WARN_ON(btrfs_header_generation(leaf) != trans->transid);
4338afe5fea7STsutomu Itoh 	del_ptr(root, path, 1, path->slots[1]);
4339323ac95bSChris Mason 
43404d081c41SChris Mason 	/*
43414d081c41SChris Mason 	 * btrfs_free_extent is expensive, we want to make sure we
43424d081c41SChris Mason 	 * aren't holding any locks when we call it
43434d081c41SChris Mason 	 */
43444d081c41SChris Mason 	btrfs_unlock_up_safe(path, 0);
43454d081c41SChris Mason 
4346f0486c68SYan, Zheng 	root_sub_used(root, leaf->len);
4347f0486c68SYan, Zheng 
434867439dadSDavid Sterba 	atomic_inc(&leaf->refs);
43497a163608SFilipe Manana 	btrfs_free_tree_block(trans, btrfs_root_id(root), leaf, 0, 1);
43503083ee2eSJosef Bacik 	free_extent_buffer_stale(leaf);
4351323ac95bSChris Mason }
4352323ac95bSChris Mason /*
435374123bd7SChris Mason  * delete the item at the leaf level in path.  If that empties
435474123bd7SChris Mason  * the leaf, remove it from the tree
435574123bd7SChris Mason  */
435685e21bacSChris Mason int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
435785e21bacSChris Mason 		    struct btrfs_path *path, int slot, int nr)
4358be0e5c09SChris Mason {
43590b246afaSJeff Mahoney 	struct btrfs_fs_info *fs_info = root->fs_info;
43605f39d397SChris Mason 	struct extent_buffer *leaf;
4361aa5d6bedSChris Mason 	int ret = 0;
4362aa5d6bedSChris Mason 	int wret;
43637518a238SChris Mason 	u32 nritems;
4364be0e5c09SChris Mason 
43655f39d397SChris Mason 	leaf = path->nodes[0];
43665f39d397SChris Mason 	nritems = btrfs_header_nritems(leaf);
4367be0e5c09SChris Mason 
436885e21bacSChris Mason 	if (slot + nr != nritems) {
43690cae23b6SFilipe Manana 		const u32 last_off = btrfs_item_offset(leaf, slot + nr - 1);
43700cae23b6SFilipe Manana 		const int data_end = leaf_data_end(leaf);
4371c82f823cSDavid Sterba 		struct btrfs_map_token token;
43720cae23b6SFilipe Manana 		u32 dsize = 0;
43730cae23b6SFilipe Manana 		int i;
43740cae23b6SFilipe Manana 
43750cae23b6SFilipe Manana 		for (i = 0; i < nr; i++)
43760cae23b6SFilipe Manana 			dsize += btrfs_item_size(leaf, slot + i);
43775f39d397SChris Mason 
4378637e3b48SJosef Bacik 		memmove_leaf_data(leaf, data_end + dsize, data_end,
437985e21bacSChris Mason 				  last_off - data_end);
43805f39d397SChris Mason 
4381c82f823cSDavid Sterba 		btrfs_init_map_token(&token, leaf);
438285e21bacSChris Mason 		for (i = slot + nr; i < nritems; i++) {
43835f39d397SChris Mason 			u32 ioff;
4384db94535dSChris Mason 
43853212fa14SJosef Bacik 			ioff = btrfs_token_item_offset(&token, i);
43863212fa14SJosef Bacik 			btrfs_set_token_item_offset(&token, i, ioff + dsize);
43870783fcfcSChris Mason 		}
4388db94535dSChris Mason 
4389637e3b48SJosef Bacik 		memmove_leaf_items(leaf, slot, slot + nr, nritems - slot - nr);
4390be0e5c09SChris Mason 	}
439185e21bacSChris Mason 	btrfs_set_header_nritems(leaf, nritems - nr);
439285e21bacSChris Mason 	nritems -= nr;
43935f39d397SChris Mason 
439474123bd7SChris Mason 	/* delete the leaf if we've emptied it */
43957518a238SChris Mason 	if (nritems == 0) {
43965f39d397SChris Mason 		if (leaf == root->node) {
43975f39d397SChris Mason 			btrfs_set_header_level(leaf, 0);
43989a8dd150SChris Mason 		} else {
4399190a8339SJosef Bacik 			btrfs_clear_buffer_dirty(trans, leaf);
4400143bede5SJeff Mahoney 			btrfs_del_leaf(trans, root, path, leaf);
44019a8dd150SChris Mason 		}
4402be0e5c09SChris Mason 	} else {
44037518a238SChris Mason 		int used = leaf_space_used(leaf, 0, nritems);
4404aa5d6bedSChris Mason 		if (slot == 0) {
44055f39d397SChris Mason 			struct btrfs_disk_key disk_key;
44065f39d397SChris Mason 
44075f39d397SChris Mason 			btrfs_item_key(leaf, &disk_key, 0);
4408b167fa91SNikolay Borisov 			fixup_low_keys(path, &disk_key, 1);
4409aa5d6bedSChris Mason 		}
4410aa5d6bedSChris Mason 
44117c4063d1SFilipe Manana 		/*
44127c4063d1SFilipe Manana 		 * Try to delete the leaf if it is mostly empty. We do this by
44137c4063d1SFilipe Manana 		 * trying to move all its items into its left and right neighbours.
44147c4063d1SFilipe Manana 		 * If we can't move all the items, then we don't delete it - it's
44157c4063d1SFilipe Manana 		 * not ideal, but future insertions might fill the leaf with more
44167c4063d1SFilipe Manana 		 * items, or items from other leaves might be moved later into our
44177c4063d1SFilipe Manana 		 * leaf due to deletions on those leaves.
44187c4063d1SFilipe Manana 		 */
44190b246afaSJeff Mahoney 		if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) {
44207c4063d1SFilipe Manana 			u32 min_push_space;
44217c4063d1SFilipe Manana 
4422be0e5c09SChris Mason 			/* push_leaf_left fixes the path.
4423be0e5c09SChris Mason 			 * make sure the path still points to our leaf
4424be0e5c09SChris Mason 			 * for possible call to del_ptr below
4425be0e5c09SChris Mason 			 */
44264920c9acSChris Mason 			slot = path->slots[1];
442767439dadSDavid Sterba 			atomic_inc(&leaf->refs);
44287c4063d1SFilipe Manana 			/*
44297c4063d1SFilipe Manana 			 * We want to be able to at least push one item to the
44307c4063d1SFilipe Manana 			 * left neighbour leaf, and that's the first item.
44317c4063d1SFilipe Manana 			 */
44327c4063d1SFilipe Manana 			min_push_space = sizeof(struct btrfs_item) +
44337c4063d1SFilipe Manana 				btrfs_item_size(leaf, 0);
44347c4063d1SFilipe Manana 			wret = push_leaf_left(trans, root, path, 0,
44357c4063d1SFilipe Manana 					      min_push_space, 1, (u32)-1);
443654aa1f4dSChris Mason 			if (wret < 0 && wret != -ENOSPC)
4437aa5d6bedSChris Mason 				ret = wret;
44385f39d397SChris Mason 
44395f39d397SChris Mason 			if (path->nodes[0] == leaf &&
44405f39d397SChris Mason 			    btrfs_header_nritems(leaf)) {
44417c4063d1SFilipe Manana 				/*
44427c4063d1SFilipe Manana 				 * If we were not able to push all items from our
44437c4063d1SFilipe Manana 				 * leaf to its left neighbour, then attempt to
44447c4063d1SFilipe Manana 				 * either push all the remaining items to the
44457c4063d1SFilipe Manana 				 * right neighbour or none. There's no advantage
44467c4063d1SFilipe Manana 				 * in pushing only some items, instead of all, as
44477c4063d1SFilipe Manana 				 * it's pointless to end up with a leaf having
44487c4063d1SFilipe Manana 				 * too few items while the neighbours can be full
44497c4063d1SFilipe Manana 				 * or nearly full.
44507c4063d1SFilipe Manana 				 */
44517c4063d1SFilipe Manana 				nritems = btrfs_header_nritems(leaf);
44527c4063d1SFilipe Manana 				min_push_space = leaf_space_used(leaf, 0, nritems);
44537c4063d1SFilipe Manana 				wret = push_leaf_right(trans, root, path, 0,
44547c4063d1SFilipe Manana 						       min_push_space, 1, 0);
445554aa1f4dSChris Mason 				if (wret < 0 && wret != -ENOSPC)
4456aa5d6bedSChris Mason 					ret = wret;
4457aa5d6bedSChris Mason 			}
44585f39d397SChris Mason 
44595f39d397SChris Mason 			if (btrfs_header_nritems(leaf) == 0) {
4460323ac95bSChris Mason 				path->slots[1] = slot;
4461143bede5SJeff Mahoney 				btrfs_del_leaf(trans, root, path, leaf);
44625f39d397SChris Mason 				free_extent_buffer(leaf);
4463143bede5SJeff Mahoney 				ret = 0;
44645de08d7dSChris Mason 			} else {
4465925baeddSChris Mason 				/* if we're still in the path, make sure
4466925baeddSChris Mason 				 * we're dirty.  Otherwise, one of the
4467925baeddSChris Mason 				 * push_leaf functions must have already
4468925baeddSChris Mason 				 * dirtied this buffer
4469925baeddSChris Mason 				 */
4470925baeddSChris Mason 				if (path->nodes[0] == leaf)
44715f39d397SChris Mason 					btrfs_mark_buffer_dirty(leaf);
44725f39d397SChris Mason 				free_extent_buffer(leaf);
4473be0e5c09SChris Mason 			}
4474d5719762SChris Mason 		} else {
44755f39d397SChris Mason 			btrfs_mark_buffer_dirty(leaf);
4476be0e5c09SChris Mason 		}
44779a8dd150SChris Mason 	}
4478aa5d6bedSChris Mason 	return ret;
44799a8dd150SChris Mason }
44809a8dd150SChris Mason 
448197571fd0SChris Mason /*
4482925baeddSChris Mason  * search the tree again to find a leaf with lesser keys
44837bb86316SChris Mason  * returns 0 if it found something or 1 if there are no lesser leaves.
44847bb86316SChris Mason  * returns < 0 on io errors.
4485d352ac68SChris Mason  *
4486d352ac68SChris Mason  * This may release the path, and so you may lose any locks held at the
4487d352ac68SChris Mason  * time you call it.
44887bb86316SChris Mason  */
448916e7549fSJosef Bacik int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
44907bb86316SChris Mason {
4491925baeddSChris Mason 	struct btrfs_key key;
4492925baeddSChris Mason 	struct btrfs_disk_key found_key;
4493925baeddSChris Mason 	int ret;
44947bb86316SChris Mason 
4495925baeddSChris Mason 	btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
4496925baeddSChris Mason 
4497e8b0d724SFilipe David Borba Manana 	if (key.offset > 0) {
4498925baeddSChris Mason 		key.offset--;
4499e8b0d724SFilipe David Borba Manana 	} else if (key.type > 0) {
4500925baeddSChris Mason 		key.type--;
4501e8b0d724SFilipe David Borba Manana 		key.offset = (u64)-1;
4502e8b0d724SFilipe David Borba Manana 	} else if (key.objectid > 0) {
4503925baeddSChris Mason 		key.objectid--;
4504e8b0d724SFilipe David Borba Manana 		key.type = (u8)-1;
4505e8b0d724SFilipe David Borba Manana 		key.offset = (u64)-1;
4506e8b0d724SFilipe David Borba Manana 	} else {
45077bb86316SChris Mason 		return 1;
4508e8b0d724SFilipe David Borba Manana 	}
45097bb86316SChris Mason 
4510b3b4aa74SDavid Sterba 	btrfs_release_path(path);
4511925baeddSChris Mason 	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4512925baeddSChris Mason 	if (ret < 0)
4513925baeddSChris Mason 		return ret;
4514925baeddSChris Mason 	btrfs_item_key(path->nodes[0], &found_key, 0);
4515925baeddSChris Mason 	ret = comp_keys(&found_key, &key);
4516337c6f68SFilipe Manana 	/*
4517337c6f68SFilipe Manana 	 * We might have had an item with the previous key in the tree right
4518337c6f68SFilipe Manana 	 * before we released our path. And after we released our path, that
4519337c6f68SFilipe Manana 	 * item might have been pushed to the first slot (0) of the leaf we
4520337c6f68SFilipe Manana 	 * were holding due to a tree balance. Alternatively, an item with the
4521337c6f68SFilipe Manana 	 * previous key can exist as the only element of a leaf (big fat item).
4522337c6f68SFilipe Manana 	 * Therefore account for these 2 cases, so that our callers (like
4523337c6f68SFilipe Manana 	 * btrfs_previous_item) don't miss an existing item with a key matching
4524337c6f68SFilipe Manana 	 * the previous key we computed above.
4525337c6f68SFilipe Manana 	 */
4526337c6f68SFilipe Manana 	if (ret <= 0)
45277bb86316SChris Mason 		return 0;
4528925baeddSChris Mason 	return 1;
45297bb86316SChris Mason }
45307bb86316SChris Mason 
45313f157a2fSChris Mason /*
45323f157a2fSChris Mason  * A helper function to walk down the tree starting at min_key, and looking
4533de78b51aSEric Sandeen  * for nodes or leaves that are have a minimum transaction id.
4534de78b51aSEric Sandeen  * This is used by the btree defrag code, and tree logging
45353f157a2fSChris Mason  *
45363f157a2fSChris Mason  * This does not cow, but it does stuff the starting key it finds back
45373f157a2fSChris Mason  * into min_key, so you can call btrfs_search_slot with cow=1 on the
45383f157a2fSChris Mason  * key and get a writable path.
45393f157a2fSChris Mason  *
45403f157a2fSChris Mason  * This honors path->lowest_level to prevent descent past a given level
45413f157a2fSChris Mason  * of the tree.
45423f157a2fSChris Mason  *
4543d352ac68SChris Mason  * min_trans indicates the oldest transaction that you are interested
4544d352ac68SChris Mason  * in walking through.  Any nodes or leaves older than min_trans are
4545d352ac68SChris Mason  * skipped over (without reading them).
4546d352ac68SChris Mason  *
45473f157a2fSChris Mason  * returns zero if something useful was found, < 0 on error and 1 if there
45483f157a2fSChris Mason  * was nothing in the tree that matched the search criteria.
45493f157a2fSChris Mason  */
45503f157a2fSChris Mason int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
4551de78b51aSEric Sandeen 			 struct btrfs_path *path,
45523f157a2fSChris Mason 			 u64 min_trans)
45533f157a2fSChris Mason {
45543f157a2fSChris Mason 	struct extent_buffer *cur;
45553f157a2fSChris Mason 	struct btrfs_key found_key;
45563f157a2fSChris Mason 	int slot;
45579652480bSYan 	int sret;
45583f157a2fSChris Mason 	u32 nritems;
45593f157a2fSChris Mason 	int level;
45603f157a2fSChris Mason 	int ret = 1;
4561f98de9b9SFilipe Manana 	int keep_locks = path->keep_locks;
45623f157a2fSChris Mason 
4563c922b016SStefan Roesch 	ASSERT(!path->nowait);
4564f98de9b9SFilipe Manana 	path->keep_locks = 1;
45653f157a2fSChris Mason again:
4566bd681513SChris Mason 	cur = btrfs_read_lock_root_node(root);
45673f157a2fSChris Mason 	level = btrfs_header_level(cur);
4568e02119d5SChris Mason 	WARN_ON(path->nodes[level]);
45693f157a2fSChris Mason 	path->nodes[level] = cur;
4570bd681513SChris Mason 	path->locks[level] = BTRFS_READ_LOCK;
45713f157a2fSChris Mason 
45723f157a2fSChris Mason 	if (btrfs_header_generation(cur) < min_trans) {
45733f157a2fSChris Mason 		ret = 1;
45743f157a2fSChris Mason 		goto out;
45753f157a2fSChris Mason 	}
45763f157a2fSChris Mason 	while (1) {
45773f157a2fSChris Mason 		nritems = btrfs_header_nritems(cur);
45783f157a2fSChris Mason 		level = btrfs_header_level(cur);
4579e3b83361SQu Wenruo 		sret = btrfs_bin_search(cur, min_key, &slot);
4580cbca7d59SFilipe Manana 		if (sret < 0) {
4581cbca7d59SFilipe Manana 			ret = sret;
4582cbca7d59SFilipe Manana 			goto out;
4583cbca7d59SFilipe Manana 		}
45843f157a2fSChris Mason 
4585323ac95bSChris Mason 		/* at the lowest level, we're done, setup the path and exit */
4586323ac95bSChris Mason 		if (level == path->lowest_level) {
4587e02119d5SChris Mason 			if (slot >= nritems)
4588e02119d5SChris Mason 				goto find_next_key;
45893f157a2fSChris Mason 			ret = 0;
45903f157a2fSChris Mason 			path->slots[level] = slot;
45913f157a2fSChris Mason 			btrfs_item_key_to_cpu(cur, &found_key, slot);
45923f157a2fSChris Mason 			goto out;
45933f157a2fSChris Mason 		}
45949652480bSYan 		if (sret && slot > 0)
45959652480bSYan 			slot--;
45963f157a2fSChris Mason 		/*
4597de78b51aSEric Sandeen 		 * check this node pointer against the min_trans parameters.
4598260db43cSRandy Dunlap 		 * If it is too old, skip to the next one.
45993f157a2fSChris Mason 		 */
46003f157a2fSChris Mason 		while (slot < nritems) {
46013f157a2fSChris Mason 			u64 gen;
4602e02119d5SChris Mason 
46033f157a2fSChris Mason 			gen = btrfs_node_ptr_generation(cur, slot);
46043f157a2fSChris Mason 			if (gen < min_trans) {
46053f157a2fSChris Mason 				slot++;
46063f157a2fSChris Mason 				continue;
46073f157a2fSChris Mason 			}
46083f157a2fSChris Mason 			break;
46093f157a2fSChris Mason 		}
4610e02119d5SChris Mason find_next_key:
46113f157a2fSChris Mason 		/*
46123f157a2fSChris Mason 		 * we didn't find a candidate key in this node, walk forward
46133f157a2fSChris Mason 		 * and find another one
46143f157a2fSChris Mason 		 */
46153f157a2fSChris Mason 		if (slot >= nritems) {
4616e02119d5SChris Mason 			path->slots[level] = slot;
4617e02119d5SChris Mason 			sret = btrfs_find_next_key(root, path, min_key, level,
4618de78b51aSEric Sandeen 						  min_trans);
4619e02119d5SChris Mason 			if (sret == 0) {
4620b3b4aa74SDavid Sterba 				btrfs_release_path(path);
46213f157a2fSChris Mason 				goto again;
46223f157a2fSChris Mason 			} else {
46233f157a2fSChris Mason 				goto out;
46243f157a2fSChris Mason 			}
46253f157a2fSChris Mason 		}
46263f157a2fSChris Mason 		/* save our key for returning back */
46273f157a2fSChris Mason 		btrfs_node_key_to_cpu(cur, &found_key, slot);
46283f157a2fSChris Mason 		path->slots[level] = slot;
46293f157a2fSChris Mason 		if (level == path->lowest_level) {
46303f157a2fSChris Mason 			ret = 0;
46313f157a2fSChris Mason 			goto out;
46323f157a2fSChris Mason 		}
46334b231ae4SDavid Sterba 		cur = btrfs_read_node_slot(cur, slot);
4634fb770ae4SLiu Bo 		if (IS_ERR(cur)) {
4635fb770ae4SLiu Bo 			ret = PTR_ERR(cur);
4636fb770ae4SLiu Bo 			goto out;
4637fb770ae4SLiu Bo 		}
46383f157a2fSChris Mason 
4639bd681513SChris Mason 		btrfs_tree_read_lock(cur);
4640b4ce94deSChris Mason 
4641bd681513SChris Mason 		path->locks[level - 1] = BTRFS_READ_LOCK;
46423f157a2fSChris Mason 		path->nodes[level - 1] = cur;
4643f7c79f30SChris Mason 		unlock_up(path, level, 1, 0, NULL);
46443f157a2fSChris Mason 	}
46453f157a2fSChris Mason out:
4646f98de9b9SFilipe Manana 	path->keep_locks = keep_locks;
4647f98de9b9SFilipe Manana 	if (ret == 0) {
4648f98de9b9SFilipe Manana 		btrfs_unlock_up_safe(path, path->lowest_level + 1);
4649f98de9b9SFilipe Manana 		memcpy(min_key, &found_key, sizeof(found_key));
4650f98de9b9SFilipe Manana 	}
46513f157a2fSChris Mason 	return ret;
46523f157a2fSChris Mason }
46533f157a2fSChris Mason 
46543f157a2fSChris Mason /*
46553f157a2fSChris Mason  * this is similar to btrfs_next_leaf, but does not try to preserve
46563f157a2fSChris Mason  * and fixup the path.  It looks for and returns the next key in the
4657de78b51aSEric Sandeen  * tree based on the current path and the min_trans parameters.
46583f157a2fSChris Mason  *
46593f157a2fSChris Mason  * 0 is returned if another key is found, < 0 if there are any errors
46603f157a2fSChris Mason  * and 1 is returned if there are no higher keys in the tree
46613f157a2fSChris Mason  *
46623f157a2fSChris Mason  * path->keep_locks should be set to 1 on the search made before
46633f157a2fSChris Mason  * calling this function.
46643f157a2fSChris Mason  */
4665e7a84565SChris Mason int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
4666de78b51aSEric Sandeen 			struct btrfs_key *key, int level, u64 min_trans)
4667e7a84565SChris Mason {
4668e7a84565SChris Mason 	int slot;
4669e7a84565SChris Mason 	struct extent_buffer *c;
4670e7a84565SChris Mason 
46716a9fb468SJosef Bacik 	WARN_ON(!path->keep_locks && !path->skip_locking);
4672e7a84565SChris Mason 	while (level < BTRFS_MAX_LEVEL) {
4673e7a84565SChris Mason 		if (!path->nodes[level])
4674e7a84565SChris Mason 			return 1;
4675e7a84565SChris Mason 
4676e7a84565SChris Mason 		slot = path->slots[level] + 1;
4677e7a84565SChris Mason 		c = path->nodes[level];
46783f157a2fSChris Mason next:
4679e7a84565SChris Mason 		if (slot >= btrfs_header_nritems(c)) {
468033c66f43SYan Zheng 			int ret;
468133c66f43SYan Zheng 			int orig_lowest;
468233c66f43SYan Zheng 			struct btrfs_key cur_key;
468333c66f43SYan Zheng 			if (level + 1 >= BTRFS_MAX_LEVEL ||
468433c66f43SYan Zheng 			    !path->nodes[level + 1])
4685e7a84565SChris Mason 				return 1;
468633c66f43SYan Zheng 
46876a9fb468SJosef Bacik 			if (path->locks[level + 1] || path->skip_locking) {
468833c66f43SYan Zheng 				level++;
4689e7a84565SChris Mason 				continue;
4690e7a84565SChris Mason 			}
469133c66f43SYan Zheng 
469233c66f43SYan Zheng 			slot = btrfs_header_nritems(c) - 1;
469333c66f43SYan Zheng 			if (level == 0)
469433c66f43SYan Zheng 				btrfs_item_key_to_cpu(c, &cur_key, slot);
469533c66f43SYan Zheng 			else
469633c66f43SYan Zheng 				btrfs_node_key_to_cpu(c, &cur_key, slot);
469733c66f43SYan Zheng 
469833c66f43SYan Zheng 			orig_lowest = path->lowest_level;
4699b3b4aa74SDavid Sterba 			btrfs_release_path(path);
470033c66f43SYan Zheng 			path->lowest_level = level;
470133c66f43SYan Zheng 			ret = btrfs_search_slot(NULL, root, &cur_key, path,
470233c66f43SYan Zheng 						0, 0);
470333c66f43SYan Zheng 			path->lowest_level = orig_lowest;
470433c66f43SYan Zheng 			if (ret < 0)
470533c66f43SYan Zheng 				return ret;
470633c66f43SYan Zheng 
470733c66f43SYan Zheng 			c = path->nodes[level];
470833c66f43SYan Zheng 			slot = path->slots[level];
470933c66f43SYan Zheng 			if (ret == 0)
471033c66f43SYan Zheng 				slot++;
471133c66f43SYan Zheng 			goto next;
471233c66f43SYan Zheng 		}
471333c66f43SYan Zheng 
4714e7a84565SChris Mason 		if (level == 0)
4715e7a84565SChris Mason 			btrfs_item_key_to_cpu(c, key, slot);
47163f157a2fSChris Mason 		else {
47173f157a2fSChris Mason 			u64 gen = btrfs_node_ptr_generation(c, slot);
47183f157a2fSChris Mason 
47193f157a2fSChris Mason 			if (gen < min_trans) {
47203f157a2fSChris Mason 				slot++;
47213f157a2fSChris Mason 				goto next;
47223f157a2fSChris Mason 			}
4723e7a84565SChris Mason 			btrfs_node_key_to_cpu(c, key, slot);
47243f157a2fSChris Mason 		}
4725e7a84565SChris Mason 		return 0;
4726e7a84565SChris Mason 	}
4727e7a84565SChris Mason 	return 1;
4728e7a84565SChris Mason }
4729e7a84565SChris Mason 
47303d7806ecSJan Schmidt int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
47313d7806ecSJan Schmidt 			u64 time_seq)
47323d7806ecSJan Schmidt {
4733d97e63b6SChris Mason 	int slot;
47348e73f275SChris Mason 	int level;
47355f39d397SChris Mason 	struct extent_buffer *c;
47368e73f275SChris Mason 	struct extent_buffer *next;
4737d96b3424SFilipe Manana 	struct btrfs_fs_info *fs_info = root->fs_info;
4738925baeddSChris Mason 	struct btrfs_key key;
4739d96b3424SFilipe Manana 	bool need_commit_sem = false;
4740925baeddSChris Mason 	u32 nritems;
4741925baeddSChris Mason 	int ret;
47420e46318dSJosef Bacik 	int i;
4743925baeddSChris Mason 
4744bdcdd86cSFilipe Manana 	/*
4745bdcdd86cSFilipe Manana 	 * The nowait semantics are used only for write paths, where we don't
4746bdcdd86cSFilipe Manana 	 * use the tree mod log and sequence numbers.
4747bdcdd86cSFilipe Manana 	 */
4748bdcdd86cSFilipe Manana 	if (time_seq)
4749c922b016SStefan Roesch 		ASSERT(!path->nowait);
4750c922b016SStefan Roesch 
4751925baeddSChris Mason 	nritems = btrfs_header_nritems(path->nodes[0]);
4752d397712bSChris Mason 	if (nritems == 0)
4753925baeddSChris Mason 		return 1;
4754925baeddSChris Mason 
47558e73f275SChris Mason 	btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
47568e73f275SChris Mason again:
47578e73f275SChris Mason 	level = 1;
47588e73f275SChris Mason 	next = NULL;
4759b3b4aa74SDavid Sterba 	btrfs_release_path(path);
47608e73f275SChris Mason 
4761a2135011SChris Mason 	path->keep_locks = 1;
47628e73f275SChris Mason 
4763d96b3424SFilipe Manana 	if (time_seq) {
47643d7806ecSJan Schmidt 		ret = btrfs_search_old_slot(root, &key, path, time_seq);
4765d96b3424SFilipe Manana 	} else {
4766d96b3424SFilipe Manana 		if (path->need_commit_sem) {
4767d96b3424SFilipe Manana 			path->need_commit_sem = 0;
4768d96b3424SFilipe Manana 			need_commit_sem = true;
4769bdcdd86cSFilipe Manana 			if (path->nowait) {
4770bdcdd86cSFilipe Manana 				if (!down_read_trylock(&fs_info->commit_root_sem)) {
4771bdcdd86cSFilipe Manana 					ret = -EAGAIN;
4772bdcdd86cSFilipe Manana 					goto done;
4773bdcdd86cSFilipe Manana 				}
4774bdcdd86cSFilipe Manana 			} else {
4775d96b3424SFilipe Manana 				down_read(&fs_info->commit_root_sem);
4776d96b3424SFilipe Manana 			}
4777bdcdd86cSFilipe Manana 		}
4778925baeddSChris Mason 		ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4779d96b3424SFilipe Manana 	}
4780925baeddSChris Mason 	path->keep_locks = 0;
4781925baeddSChris Mason 
4782925baeddSChris Mason 	if (ret < 0)
4783d96b3424SFilipe Manana 		goto done;
4784925baeddSChris Mason 
4785a2135011SChris Mason 	nritems = btrfs_header_nritems(path->nodes[0]);
4786168fd7d2SChris Mason 	/*
4787168fd7d2SChris Mason 	 * by releasing the path above we dropped all our locks.  A balance
4788168fd7d2SChris Mason 	 * could have added more items next to the key that used to be
4789168fd7d2SChris Mason 	 * at the very end of the block.  So, check again here and
4790168fd7d2SChris Mason 	 * advance the path if there are now more items available.
4791168fd7d2SChris Mason 	 */
4792a2135011SChris Mason 	if (nritems > 0 && path->slots[0] < nritems - 1) {
4793e457afecSYan Zheng 		if (ret == 0)
4794168fd7d2SChris Mason 			path->slots[0]++;
47958e73f275SChris Mason 		ret = 0;
4796925baeddSChris Mason 		goto done;
4797925baeddSChris Mason 	}
47980b43e04fSLiu Bo 	/*
47990b43e04fSLiu Bo 	 * So the above check misses one case:
48000b43e04fSLiu Bo 	 * - after releasing the path above, someone has removed the item that
48010b43e04fSLiu Bo 	 *   used to be at the very end of the block, and balance between leafs
48020b43e04fSLiu Bo 	 *   gets another one with bigger key.offset to replace it.
48030b43e04fSLiu Bo 	 *
48040b43e04fSLiu Bo 	 * This one should be returned as well, or we can get leaf corruption
48050b43e04fSLiu Bo 	 * later(esp. in __btrfs_drop_extents()).
48060b43e04fSLiu Bo 	 *
48070b43e04fSLiu Bo 	 * And a bit more explanation about this check,
48080b43e04fSLiu Bo 	 * with ret > 0, the key isn't found, the path points to the slot
48090b43e04fSLiu Bo 	 * where it should be inserted, so the path->slots[0] item must be the
48100b43e04fSLiu Bo 	 * bigger one.
48110b43e04fSLiu Bo 	 */
48120b43e04fSLiu Bo 	if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
48130b43e04fSLiu Bo 		ret = 0;
48140b43e04fSLiu Bo 		goto done;
48150b43e04fSLiu Bo 	}
4816d97e63b6SChris Mason 
4817234b63a0SChris Mason 	while (level < BTRFS_MAX_LEVEL) {
48188e73f275SChris Mason 		if (!path->nodes[level]) {
48198e73f275SChris Mason 			ret = 1;
48208e73f275SChris Mason 			goto done;
48218e73f275SChris Mason 		}
48225f39d397SChris Mason 
4823d97e63b6SChris Mason 		slot = path->slots[level] + 1;
4824d97e63b6SChris Mason 		c = path->nodes[level];
48255f39d397SChris Mason 		if (slot >= btrfs_header_nritems(c)) {
4826d97e63b6SChris Mason 			level++;
48278e73f275SChris Mason 			if (level == BTRFS_MAX_LEVEL) {
48288e73f275SChris Mason 				ret = 1;
48298e73f275SChris Mason 				goto done;
48308e73f275SChris Mason 			}
4831d97e63b6SChris Mason 			continue;
4832d97e63b6SChris Mason 		}
48335f39d397SChris Mason 
48340e46318dSJosef Bacik 
48350e46318dSJosef Bacik 		/*
48360e46318dSJosef Bacik 		 * Our current level is where we're going to start from, and to
48370e46318dSJosef Bacik 		 * make sure lockdep doesn't complain we need to drop our locks
48380e46318dSJosef Bacik 		 * and nodes from 0 to our current level.
48390e46318dSJosef Bacik 		 */
48400e46318dSJosef Bacik 		for (i = 0; i < level; i++) {
48410e46318dSJosef Bacik 			if (path->locks[level]) {
48420e46318dSJosef Bacik 				btrfs_tree_read_unlock(path->nodes[i]);
48430e46318dSJosef Bacik 				path->locks[i] = 0;
48440e46318dSJosef Bacik 			}
48450e46318dSJosef Bacik 			free_extent_buffer(path->nodes[i]);
48460e46318dSJosef Bacik 			path->nodes[i] = NULL;
4847925baeddSChris Mason 		}
48485f39d397SChris Mason 
48498e73f275SChris Mason 		next = c;
4850d07b8528SLiu Bo 		ret = read_block_for_search(root, path, &next, level,
4851cda79c54SDavid Sterba 					    slot, &key);
4852bdcdd86cSFilipe Manana 		if (ret == -EAGAIN && !path->nowait)
48538e73f275SChris Mason 			goto again;
48545f39d397SChris Mason 
485576a05b35SChris Mason 		if (ret < 0) {
4856b3b4aa74SDavid Sterba 			btrfs_release_path(path);
485776a05b35SChris Mason 			goto done;
485876a05b35SChris Mason 		}
485976a05b35SChris Mason 
48605cd57b2cSChris Mason 		if (!path->skip_locking) {
4861bd681513SChris Mason 			ret = btrfs_try_tree_read_lock(next);
4862bdcdd86cSFilipe Manana 			if (!ret && path->nowait) {
4863bdcdd86cSFilipe Manana 				ret = -EAGAIN;
4864bdcdd86cSFilipe Manana 				goto done;
4865bdcdd86cSFilipe Manana 			}
4866d42244a0SJan Schmidt 			if (!ret && time_seq) {
4867d42244a0SJan Schmidt 				/*
4868d42244a0SJan Schmidt 				 * If we don't get the lock, we may be racing
4869d42244a0SJan Schmidt 				 * with push_leaf_left, holding that lock while
4870d42244a0SJan Schmidt 				 * itself waiting for the leaf we've currently
4871d42244a0SJan Schmidt 				 * locked. To solve this situation, we give up
4872d42244a0SJan Schmidt 				 * on our lock and cycle.
4873d42244a0SJan Schmidt 				 */
4874cf538830SJan Schmidt 				free_extent_buffer(next);
4875d42244a0SJan Schmidt 				btrfs_release_path(path);
4876d42244a0SJan Schmidt 				cond_resched();
4877d42244a0SJan Schmidt 				goto again;
4878d42244a0SJan Schmidt 			}
48790e46318dSJosef Bacik 			if (!ret)
48800e46318dSJosef Bacik 				btrfs_tree_read_lock(next);
4881bd681513SChris Mason 		}
4882d97e63b6SChris Mason 		break;
4883d97e63b6SChris Mason 	}
4884d97e63b6SChris Mason 	path->slots[level] = slot;
4885d97e63b6SChris Mason 	while (1) {
4886d97e63b6SChris Mason 		level--;
4887d97e63b6SChris Mason 		path->nodes[level] = next;
4888d97e63b6SChris Mason 		path->slots[level] = 0;
4889a74a4b97SChris Mason 		if (!path->skip_locking)
4890ffeb03cfSJosef Bacik 			path->locks[level] = BTRFS_READ_LOCK;
4891d97e63b6SChris Mason 		if (!level)
4892d97e63b6SChris Mason 			break;
4893b4ce94deSChris Mason 
4894d07b8528SLiu Bo 		ret = read_block_for_search(root, path, &next, level,
4895cda79c54SDavid Sterba 					    0, &key);
4896bdcdd86cSFilipe Manana 		if (ret == -EAGAIN && !path->nowait)
48978e73f275SChris Mason 			goto again;
48988e73f275SChris Mason 
489976a05b35SChris Mason 		if (ret < 0) {
4900b3b4aa74SDavid Sterba 			btrfs_release_path(path);
490176a05b35SChris Mason 			goto done;
490276a05b35SChris Mason 		}
490376a05b35SChris Mason 
4904bdcdd86cSFilipe Manana 		if (!path->skip_locking) {
4905bdcdd86cSFilipe Manana 			if (path->nowait) {
4906bdcdd86cSFilipe Manana 				if (!btrfs_try_tree_read_lock(next)) {
4907bdcdd86cSFilipe Manana 					ret = -EAGAIN;
4908bdcdd86cSFilipe Manana 					goto done;
4909bdcdd86cSFilipe Manana 				}
4910bdcdd86cSFilipe Manana 			} else {
49110e46318dSJosef Bacik 				btrfs_tree_read_lock(next);
4912d97e63b6SChris Mason 			}
4913bdcdd86cSFilipe Manana 		}
4914bdcdd86cSFilipe Manana 	}
49158e73f275SChris Mason 	ret = 0;
4916925baeddSChris Mason done:
4917f7c79f30SChris Mason 	unlock_up(path, 0, 1, 0, NULL);
4918d96b3424SFilipe Manana 	if (need_commit_sem) {
4919d96b3424SFilipe Manana 		int ret2;
4920d96b3424SFilipe Manana 
4921d96b3424SFilipe Manana 		path->need_commit_sem = 1;
4922d96b3424SFilipe Manana 		ret2 = finish_need_commit_sem_search(path);
4923d96b3424SFilipe Manana 		up_read(&fs_info->commit_root_sem);
4924d96b3424SFilipe Manana 		if (ret2)
4925d96b3424SFilipe Manana 			ret = ret2;
4926d96b3424SFilipe Manana 	}
49278e73f275SChris Mason 
49288e73f275SChris Mason 	return ret;
4929d97e63b6SChris Mason }
49300b86a832SChris Mason 
4931890d2b1aSJosef Bacik int btrfs_next_old_item(struct btrfs_root *root, struct btrfs_path *path, u64 time_seq)
4932890d2b1aSJosef Bacik {
4933890d2b1aSJosef Bacik 	path->slots[0]++;
4934890d2b1aSJosef Bacik 	if (path->slots[0] >= btrfs_header_nritems(path->nodes[0]))
4935890d2b1aSJosef Bacik 		return btrfs_next_old_leaf(root, path, time_seq);
4936890d2b1aSJosef Bacik 	return 0;
4937890d2b1aSJosef Bacik }
4938890d2b1aSJosef Bacik 
49393f157a2fSChris Mason /*
49403f157a2fSChris Mason  * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
49413f157a2fSChris Mason  * searching until it gets past min_objectid or finds an item of 'type'
49423f157a2fSChris Mason  *
49433f157a2fSChris Mason  * returns 0 if something is found, 1 if nothing was found and < 0 on error
49443f157a2fSChris Mason  */
49450b86a832SChris Mason int btrfs_previous_item(struct btrfs_root *root,
49460b86a832SChris Mason 			struct btrfs_path *path, u64 min_objectid,
49470b86a832SChris Mason 			int type)
49480b86a832SChris Mason {
49490b86a832SChris Mason 	struct btrfs_key found_key;
49500b86a832SChris Mason 	struct extent_buffer *leaf;
4951e02119d5SChris Mason 	u32 nritems;
49520b86a832SChris Mason 	int ret;
49530b86a832SChris Mason 
49540b86a832SChris Mason 	while (1) {
49550b86a832SChris Mason 		if (path->slots[0] == 0) {
49560b86a832SChris Mason 			ret = btrfs_prev_leaf(root, path);
49570b86a832SChris Mason 			if (ret != 0)
49580b86a832SChris Mason 				return ret;
49590b86a832SChris Mason 		} else {
49600b86a832SChris Mason 			path->slots[0]--;
49610b86a832SChris Mason 		}
49620b86a832SChris Mason 		leaf = path->nodes[0];
4963e02119d5SChris Mason 		nritems = btrfs_header_nritems(leaf);
4964e02119d5SChris Mason 		if (nritems == 0)
4965e02119d5SChris Mason 			return 1;
4966e02119d5SChris Mason 		if (path->slots[0] == nritems)
4967e02119d5SChris Mason 			path->slots[0]--;
4968e02119d5SChris Mason 
49690b86a832SChris Mason 		btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4970e02119d5SChris Mason 		if (found_key.objectid < min_objectid)
4971e02119d5SChris Mason 			break;
49720a4eefbbSYan Zheng 		if (found_key.type == type)
49730a4eefbbSYan Zheng 			return 0;
4974e02119d5SChris Mason 		if (found_key.objectid == min_objectid &&
4975e02119d5SChris Mason 		    found_key.type < type)
4976e02119d5SChris Mason 			break;
49770b86a832SChris Mason 	}
49780b86a832SChris Mason 	return 1;
49790b86a832SChris Mason }
4980ade2e0b3SWang Shilong 
4981ade2e0b3SWang Shilong /*
4982ade2e0b3SWang Shilong  * search in extent tree to find a previous Metadata/Data extent item with
4983ade2e0b3SWang Shilong  * min objecitd.
4984ade2e0b3SWang Shilong  *
4985ade2e0b3SWang Shilong  * returns 0 if something is found, 1 if nothing was found and < 0 on error
4986ade2e0b3SWang Shilong  */
4987ade2e0b3SWang Shilong int btrfs_previous_extent_item(struct btrfs_root *root,
4988ade2e0b3SWang Shilong 			struct btrfs_path *path, u64 min_objectid)
4989ade2e0b3SWang Shilong {
4990ade2e0b3SWang Shilong 	struct btrfs_key found_key;
4991ade2e0b3SWang Shilong 	struct extent_buffer *leaf;
4992ade2e0b3SWang Shilong 	u32 nritems;
4993ade2e0b3SWang Shilong 	int ret;
4994ade2e0b3SWang Shilong 
4995ade2e0b3SWang Shilong 	while (1) {
4996ade2e0b3SWang Shilong 		if (path->slots[0] == 0) {
4997ade2e0b3SWang Shilong 			ret = btrfs_prev_leaf(root, path);
4998ade2e0b3SWang Shilong 			if (ret != 0)
4999ade2e0b3SWang Shilong 				return ret;
5000ade2e0b3SWang Shilong 		} else {
5001ade2e0b3SWang Shilong 			path->slots[0]--;
5002ade2e0b3SWang Shilong 		}
5003ade2e0b3SWang Shilong 		leaf = path->nodes[0];
5004ade2e0b3SWang Shilong 		nritems = btrfs_header_nritems(leaf);
5005ade2e0b3SWang Shilong 		if (nritems == 0)
5006ade2e0b3SWang Shilong 			return 1;
5007ade2e0b3SWang Shilong 		if (path->slots[0] == nritems)
5008ade2e0b3SWang Shilong 			path->slots[0]--;
5009ade2e0b3SWang Shilong 
5010ade2e0b3SWang Shilong 		btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5011ade2e0b3SWang Shilong 		if (found_key.objectid < min_objectid)
5012ade2e0b3SWang Shilong 			break;
5013ade2e0b3SWang Shilong 		if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5014ade2e0b3SWang Shilong 		    found_key.type == BTRFS_METADATA_ITEM_KEY)
5015ade2e0b3SWang Shilong 			return 0;
5016ade2e0b3SWang Shilong 		if (found_key.objectid == min_objectid &&
5017ade2e0b3SWang Shilong 		    found_key.type < BTRFS_EXTENT_ITEM_KEY)
5018ade2e0b3SWang Shilong 			break;
5019ade2e0b3SWang Shilong 	}
5020ade2e0b3SWang Shilong 	return 1;
5021ade2e0b3SWang Shilong }
5022226463d7SJosef Bacik 
5023226463d7SJosef Bacik int __init btrfs_ctree_init(void)
5024226463d7SJosef Bacik {
5025226463d7SJosef Bacik 	btrfs_path_cachep = kmem_cache_create("btrfs_path",
5026226463d7SJosef Bacik 			sizeof(struct btrfs_path), 0,
5027226463d7SJosef Bacik 			SLAB_MEM_SPREAD, NULL);
5028226463d7SJosef Bacik 	if (!btrfs_path_cachep)
5029226463d7SJosef Bacik 		return -ENOMEM;
5030226463d7SJosef Bacik 	return 0;
5031226463d7SJosef Bacik }
5032226463d7SJosef Bacik 
5033226463d7SJosef Bacik void __cold btrfs_ctree_exit(void)
5034226463d7SJosef Bacik {
5035226463d7SJosef Bacik 	kmem_cache_destroy(btrfs_path_cachep);
5036226463d7SJosef Bacik }
5037