ctree.c 42.2 KB
Newer Older
1
#include <linux/module.h>
2 3
#include "ctree.h"
#include "disk-io.h"
4
#include "transaction.h"
5

6 7 8 9 10
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level);
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int data_size);
static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
11
			  *root, struct buffer_head *dst, struct buffer_head
12 13
			  *src);
static int balance_node_right(struct btrfs_trans_handle *trans, struct
C
Chris Mason 已提交
14 15
			      btrfs_root *root, struct buffer_head *dst_buf,
			      struct buffer_head *src_buf);
16 17
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot);
18

C
Chris Mason 已提交
19
inline void btrfs_init_path(struct btrfs_path *p)
20 21 22 23
{
	memset(p, 0, sizeof(*p));
}

C
Chris Mason 已提交
24
void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
25 26
{
	int i;
C
Chris Mason 已提交
27
	for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
28 29
		if (!p->nodes[i])
			break;
C
Chris Mason 已提交
30
		btrfs_block_release(root, p->nodes[i]);
31
	}
C
Chris Mason 已提交
32
	memset(p, 0, sizeof(*p));
33 34
}

35
static int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
36 37
			   *root, struct buffer_head *buf, struct buffer_head
			   *parent, int parent_slot, struct buffer_head
38
			   **cow_ret)
C
Chris Mason 已提交
39
{
C
Chris Mason 已提交
40 41
	struct buffer_head *cow;
	struct btrfs_node *cow_node;
C
Chris Mason 已提交
42

43 44
	if (btrfs_header_generation(btrfs_buffer_header(buf)) ==
				    trans->transid) {
C
Chris Mason 已提交
45 46 47
		*cow_ret = buf;
		return 0;
	}
48
	cow = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
49 50 51
	cow_node = btrfs_buffer_node(cow);
	memcpy(cow_node, btrfs_buffer_node(buf), root->blocksize);
	btrfs_set_header_blocknr(&cow_node->header, cow->b_blocknr);
52
	btrfs_set_header_generation(&cow_node->header, trans->transid);
C
Chris Mason 已提交
53
	*cow_ret = cow;
C
Chris Mason 已提交
54
	btrfs_mark_buffer_dirty(cow);
55
	btrfs_inc_ref(trans, root, buf);
C
Chris Mason 已提交
56 57
	if (buf == root->node) {
		root->node = cow;
C
Chris Mason 已提交
58
		get_bh(cow);
59
		if (buf != root->commit_root)
C
Chris Mason 已提交
60
			btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
61
		btrfs_block_release(root, buf);
C
Chris Mason 已提交
62
	} else {
C
Chris Mason 已提交
63 64
		btrfs_set_node_blockptr(btrfs_buffer_node(parent), parent_slot,
					cow->b_blocknr);
C
Chris Mason 已提交
65
		btrfs_mark_buffer_dirty(parent);
C
Chris Mason 已提交
66
		btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
67
	}
C
Chris Mason 已提交
68
	btrfs_block_release(root, buf);
C
Chris Mason 已提交
69 70 71
	return 0;
}

C
Chris Mason 已提交
72 73 74 75 76
/*
 * The leaf data grows from end-to-front in the node.
 * this returns the address of the start of the last item,
 * which is the stop of the leaf data stack
 */
C
Chris Mason 已提交
77 78
static inline unsigned int leaf_data_end(struct btrfs_root *root,
					 struct btrfs_leaf *leaf)
79
{
80
	u32 nr = btrfs_header_nritems(&leaf->header);
81
	if (nr == 0)
C
Chris Mason 已提交
82
		return BTRFS_LEAF_DATA_SIZE(root);
C
Chris Mason 已提交
83
	return btrfs_item_offset(leaf->items + nr - 1);
84 85
}

C
Chris Mason 已提交
86 87 88 89 90
/*
 * The space between the end of the leaf items and
 * the start of the leaf data.  IOW, how much room
 * the leaf has left for both items and data
 */
C
Chris Mason 已提交
91
int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf)
92
{
C
Chris Mason 已提交
93
	int data_end = leaf_data_end(root, leaf);
94
	int nritems = btrfs_header_nritems(&leaf->header);
95
	char *items_end = (char *)(leaf->items + nritems + 1);
C
Chris Mason 已提交
96
	return (char *)(btrfs_leaf_data(leaf) + data_end) - (char *)items_end;
97 98
}

C
Chris Mason 已提交
99 100 101
/*
 * compare two keys in a memcmp fashion
 */
C
Chris Mason 已提交
102
static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
103
{
C
Chris Mason 已提交
104 105 106 107 108
	struct btrfs_key k1;

	btrfs_disk_key_to_cpu(&k1, disk);

	if (k1.objectid > k2->objectid)
109
		return 1;
C
Chris Mason 已提交
110
	if (k1.objectid < k2->objectid)
111
		return -1;
112 113 114 115
	if (k1.offset > k2->offset)
		return 1;
	if (k1.offset < k2->offset)
		return -1;
C
Chris Mason 已提交
116 117 118 119
	if (k1.flags > k2->flags)
		return 1;
	if (k1.flags < k2->flags)
		return -1;
120 121
	return 0;
}
C
Chris Mason 已提交
122

C
Chris Mason 已提交
123 124
static int check_node(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
125 126
{
	int i;
C
Chris Mason 已提交
127
	struct btrfs_node *parent = NULL;
C
Chris Mason 已提交
128
	struct btrfs_node *node = btrfs_buffer_node(path->nodes[level]);
C
Chris Mason 已提交
129
	int parent_slot;
130
	u32 nritems = btrfs_header_nritems(&node->header);
C
Chris Mason 已提交
131 132

	if (path->nodes[level + 1])
C
Chris Mason 已提交
133
		parent = btrfs_buffer_node(path->nodes[level + 1]);
C
Chris Mason 已提交
134
	parent_slot = path->slots[level + 1];
135 136
	BUG_ON(nritems == 0);
	if (parent) {
C
Chris Mason 已提交
137
		struct btrfs_disk_key *parent_key;
C
Chris Mason 已提交
138 139
		parent_key = &parent->ptrs[parent_slot].key;
		BUG_ON(memcmp(parent_key, &node->ptrs[0].key,
C
Chris Mason 已提交
140
			      sizeof(struct btrfs_disk_key)));
141
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
142
		       btrfs_header_blocknr(&node->header));
C
Chris Mason 已提交
143
	}
C
Chris Mason 已提交
144
	BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
145
	for (i = 0; nritems > 1 && i < nritems - 2; i++) {
C
Chris Mason 已提交
146
		struct btrfs_key cpukey;
C
Chris Mason 已提交
147 148
		btrfs_disk_key_to_cpu(&cpukey, &node->ptrs[i + 1].key);
		BUG_ON(comp_keys(&node->ptrs[i].key, &cpukey) >= 0);
C
Chris Mason 已提交
149 150 151 152
	}
	return 0;
}

C
Chris Mason 已提交
153 154
static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
155 156
{
	int i;
C
Chris Mason 已提交
157
	struct btrfs_leaf *leaf = btrfs_buffer_leaf(path->nodes[level]);
C
Chris Mason 已提交
158
	struct btrfs_node *parent = NULL;
C
Chris Mason 已提交
159
	int parent_slot;
160
	u32 nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
161 162

	if (path->nodes[level + 1])
C
Chris Mason 已提交
163
		parent = btrfs_buffer_node(path->nodes[level + 1]);
C
Chris Mason 已提交
164
	parent_slot = path->slots[level + 1];
C
Chris Mason 已提交
165
	BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
166 167 168 169 170

	if (nritems == 0)
		return 0;

	if (parent) {
C
Chris Mason 已提交
171
		struct btrfs_disk_key *parent_key;
C
Chris Mason 已提交
172
		parent_key = &parent->ptrs[parent_slot].key;
C
Chris Mason 已提交
173
		BUG_ON(memcmp(parent_key, &leaf->items[0].key,
C
Chris Mason 已提交
174
		       sizeof(struct btrfs_disk_key)));
175
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
176
		       btrfs_header_blocknr(&leaf->header));
C
Chris Mason 已提交
177
	}
178
	for (i = 0; nritems > 1 && i < nritems - 2; i++) {
C
Chris Mason 已提交
179 180
		struct btrfs_key cpukey;
		btrfs_disk_key_to_cpu(&cpukey, &leaf->items[i + 1].key);
C
Chris Mason 已提交
181
		BUG_ON(comp_keys(&leaf->items[i].key,
C
Chris Mason 已提交
182
		                 &cpukey) >= 0);
C
Chris Mason 已提交
183 184
		BUG_ON(btrfs_item_offset(leaf->items + i) !=
			btrfs_item_end(leaf->items + i + 1));
C
Chris Mason 已提交
185
		if (i == 0) {
C
Chris Mason 已提交
186 187
			BUG_ON(btrfs_item_offset(leaf->items + i) +
			       btrfs_item_size(leaf->items + i) !=
C
Chris Mason 已提交
188
			       BTRFS_LEAF_DATA_SIZE(root));
C
Chris Mason 已提交
189 190 191 192 193
		}
	}
	return 0;
}

C
Chris Mason 已提交
194 195
static int check_block(struct btrfs_root *root, struct btrfs_path *path,
			int level)
C
Chris Mason 已提交
196 197
{
	if (level == 0)
C
Chris Mason 已提交
198 199
		return check_leaf(root, path, level);
	return check_node(root, path, level);
C
Chris Mason 已提交
200 201
}

C
Chris Mason 已提交
202 203 204 205 206 207 208 209 210
/*
 * search for key in the array p.  items p are item_size apart
 * and there are 'max' items in p
 * the slot in the array is returned via slot, and it points to
 * the place where you would insert key if it is not found in
 * the array.
 *
 * slot may point to max if the key is bigger than all of the keys
 */
C
Chris Mason 已提交
211
static int generic_bin_search(char *p, int item_size, struct btrfs_key *key,
212 213 214 215 216 217
		       int max, int *slot)
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
C
Chris Mason 已提交
218
	struct btrfs_disk_key *tmp;
219 220 221

	while(low < high) {
		mid = (low + high) / 2;
C
Chris Mason 已提交
222
		tmp = (struct btrfs_disk_key *)(p + mid * item_size);
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
		ret = comp_keys(tmp, key);

		if (ret < 0)
			low = mid + 1;
		else if (ret > 0)
			high = mid;
		else {
			*slot = mid;
			return 0;
		}
	}
	*slot = low;
	return 1;
}

C
Chris Mason 已提交
238 239 240 241
/*
 * simple bin_search frontend that does the right thing for
 * leaves vs nodes
 */
C
Chris Mason 已提交
242
static int bin_search(struct btrfs_node *c, struct btrfs_key *key, int *slot)
243
{
244
	if (btrfs_is_leaf(c)) {
C
Chris Mason 已提交
245
		struct btrfs_leaf *l = (struct btrfs_leaf *)c;
C
Chris Mason 已提交
246 247
		return generic_bin_search((void *)l->items,
					  sizeof(struct btrfs_item),
248 249
					  key, btrfs_header_nritems(&c->header),
					  slot);
250
	} else {
C
Chris Mason 已提交
251 252
		return generic_bin_search((void *)c->ptrs,
					  sizeof(struct btrfs_key_ptr),
253 254
					  key, btrfs_header_nritems(&c->header),
					  slot);
255 256 257 258
	}
	return -1;
}

C
Chris Mason 已提交
259 260
static struct buffer_head *read_node_slot(struct btrfs_root *root,
				   struct buffer_head *parent_buf,
261 262
				   int slot)
{
C
Chris Mason 已提交
263
	struct btrfs_node *node = btrfs_buffer_node(parent_buf);
264 265
	if (slot < 0)
		return NULL;
266
	if (slot >= btrfs_header_nritems(&node->header))
267
		return NULL;
268
	return read_tree_block(root, btrfs_node_blockptr(node, slot));
269 270
}

271 272
static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root
			 *root, struct btrfs_path *path, int level)
273
{
C
Chris Mason 已提交
274 275 276 277
	struct buffer_head *right_buf;
	struct buffer_head *mid_buf;
	struct buffer_head *left_buf;
	struct buffer_head *parent_buf = NULL;
C
Chris Mason 已提交
278 279 280 281
	struct btrfs_node *right = NULL;
	struct btrfs_node *mid;
	struct btrfs_node *left = NULL;
	struct btrfs_node *parent = NULL;
282 283 284 285
	int ret = 0;
	int wret;
	int pslot;
	int orig_slot = path->slots[level];
286
	u64 orig_ptr;
287 288 289 290 291

	if (level == 0)
		return 0;

	mid_buf = path->nodes[level];
C
Chris Mason 已提交
292
	mid = btrfs_buffer_node(mid_buf);
293
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);
294

C
Chris Mason 已提交
295
	if (level < BTRFS_MAX_LEVEL - 1)
296 297 298
		parent_buf = path->nodes[level + 1];
	pslot = path->slots[level + 1];

C
Chris Mason 已提交
299 300 301 302
	/*
	 * deal with the case where there is only one pointer in the root
	 * by promoting the node below to a root
	 */
303
	if (!parent_buf) {
C
Chris Mason 已提交
304 305
		struct buffer_head *child;
		u64 blocknr = mid_buf->b_blocknr;
306

307
		if (btrfs_header_nritems(&mid->header) != 1)
308 309 310 311 312 313 314
			return 0;

		/* promote the child to a root */
		child = read_node_slot(root, mid_buf, 0);
		BUG_ON(!child);
		root->node = child;
		path->nodes[level] = NULL;
C
Chris Mason 已提交
315 316
		clean_tree_block(trans, root, mid_buf);
		wait_on_buffer(mid_buf);
317
		/* once for the path */
C
Chris Mason 已提交
318
		btrfs_block_release(root, mid_buf);
319
		/* once for the root ptr */
C
Chris Mason 已提交
320
		btrfs_block_release(root, mid_buf);
321
		return btrfs_free_extent(trans, root, blocknr, 1, 1);
322
	}
C
Chris Mason 已提交
323
	parent = btrfs_buffer_node(parent_buf);
324

C
Chris Mason 已提交
325 326
	if (btrfs_header_nritems(&mid->header) >
	    BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
327 328 329 330
		return 0;

	left_buf = read_node_slot(root, parent_buf, pslot - 1);
	right_buf = read_node_slot(root, parent_buf, pslot + 1);
331 332

	/* first, try to make some room in the middle buffer */
333
	if (left_buf) {
334 335
		btrfs_cow_block(trans, root, left_buf, parent_buf, pslot - 1,
				&left_buf);
C
Chris Mason 已提交
336
		left = btrfs_buffer_node(left_buf);
337
		orig_slot += btrfs_header_nritems(&left->header);
338
		wret = push_node_left(trans, root, left_buf, mid_buf);
339 340
		if (wret < 0)
			ret = wret;
341
	}
342 343 344 345

	/*
	 * then try to empty the right most buffer into the middle
	 */
346
	if (right_buf) {
347 348
		btrfs_cow_block(trans, root, right_buf, parent_buf, pslot + 1,
				&right_buf);
C
Chris Mason 已提交
349
		right = btrfs_buffer_node(right_buf);
350
		wret = push_node_left(trans, root, mid_buf, right_buf);
351 352
		if (wret < 0)
			ret = wret;
353
		if (btrfs_header_nritems(&right->header) == 0) {
C
Chris Mason 已提交
354
			u64 blocknr = right_buf->b_blocknr;
355
			clean_tree_block(trans, root, right_buf);
C
Chris Mason 已提交
356 357
			wait_on_buffer(right_buf);
			btrfs_block_release(root, right_buf);
358 359
			right_buf = NULL;
			right = NULL;
360 361
			wret = del_ptr(trans, root, path, level + 1, pslot +
				       1);
362 363
			if (wret)
				ret = wret;
364
			wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
365 366 367
			if (wret)
				ret = wret;
		} else {
C
Chris Mason 已提交
368 369 370 371 372
			btrfs_memcpy(root, parent,
				     &parent->ptrs[pslot + 1].key,
				     &right->ptrs[0].key,
				     sizeof(struct btrfs_disk_key));
			btrfs_mark_buffer_dirty(parent_buf);
373 374
		}
	}
375
	if (btrfs_header_nritems(&mid->header) == 1) {
376 377 378 379 380 381 382 383 384 385
		/*
		 * we're not allowed to leave a node with one item in the
		 * tree during a delete.  A deletion from lower in the tree
		 * could try to delete the only pointer in this node.
		 * So, pull some keys from the left.
		 * There has to be a left pointer at this point because
		 * otherwise we would have pulled some pointers from the
		 * right
		 */
		BUG_ON(!left_buf);
386
		wret = balance_node_right(trans, root, mid_buf, left_buf);
387 388 389 390
		if (wret < 0)
			ret = wret;
		BUG_ON(wret == 1);
	}
391
	if (btrfs_header_nritems(&mid->header) == 0) {
392
		/* we've managed to empty the middle node, drop it */
C
Chris Mason 已提交
393
		u64 blocknr = mid_buf->b_blocknr;
394
		clean_tree_block(trans, root, mid_buf);
C
Chris Mason 已提交
395 396
		wait_on_buffer(mid_buf);
		btrfs_block_release(root, mid_buf);
397 398
		mid_buf = NULL;
		mid = NULL;
399
		wret = del_ptr(trans, root, path, level + 1, pslot);
400 401
		if (wret)
			ret = wret;
402
		wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
403 404
		if (wret)
			ret = wret;
405 406
	} else {
		/* update the parent key to reflect our changes */
C
Chris Mason 已提交
407 408 409 410
		btrfs_memcpy(root, parent,
			     &parent->ptrs[pslot].key, &mid->ptrs[0].key,
			     sizeof(struct btrfs_disk_key));
		btrfs_mark_buffer_dirty(parent_buf);
411
	}
412

413
	/* update the path */
414
	if (left_buf) {
415
		if (btrfs_header_nritems(&left->header) > orig_slot) {
C
Chris Mason 已提交
416
			get_bh(left_buf);
417 418 419 420
			path->nodes[level] = left_buf;
			path->slots[level + 1] -= 1;
			path->slots[level] = orig_slot;
			if (mid_buf)
C
Chris Mason 已提交
421
				btrfs_block_release(root, mid_buf);
422
		} else {
423
			orig_slot -= btrfs_header_nritems(&left->header);
424 425 426
			path->slots[level] = orig_slot;
		}
	}
427
	/* double check we haven't messed things up */
C
Chris Mason 已提交
428
	check_block(root, path, level);
C
Chris Mason 已提交
429 430 431
	if (orig_ptr !=
	    btrfs_node_blockptr(btrfs_buffer_node(path->nodes[level]),
				path->slots[level]))
432
		BUG();
433 434

	if (right_buf)
C
Chris Mason 已提交
435
		btrfs_block_release(root, right_buf);
436
	if (left_buf)
C
Chris Mason 已提交
437
		btrfs_block_release(root, left_buf);
438 439 440
	return ret;
}

C
Chris Mason 已提交
441 442 443 444 445 446
/*
 * look for key in the tree.  path is filled in with nodes along the way
 * if key is found, we return zero and you can find the item in the leaf
 * level of the path (level 0)
 *
 * If the key isn't found, the path points to the slot where it should
C
Chris Mason 已提交
447 448
 * be inserted, and 1 is returned.  If there are other errors during the
 * search a negative error number is returned.
C
Chris Mason 已提交
449 450 451 452
 *
 * if ins_len > 0, nodes and leaves will be split as we walk down the
 * tree.  if ins_len < 0, nodes will be merged as we walk down the tree (if
 * possible)
C
Chris Mason 已提交
453
 */
454 455 456
int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *key, struct btrfs_path *p, int
		      ins_len, int cow)
457
{
C
Chris Mason 已提交
458 459
	struct buffer_head *b;
	struct buffer_head *cow_buf;
C
Chris Mason 已提交
460
	struct btrfs_node *c;
461 462 463
	int slot;
	int ret;
	int level;
C
Chris Mason 已提交
464

C
Chris Mason 已提交
465 466
	WARN_ON(p->nodes[0] != NULL);
	WARN_ON(!mutex_is_locked(&root->fs_info->fs_mutex));
467 468
again:
	b = root->node;
C
Chris Mason 已提交
469
	get_bh(b);
470
	while (b) {
C
Chris Mason 已提交
471 472
		c = btrfs_buffer_node(b);
		level = btrfs_header_level(&c->header);
C
Chris Mason 已提交
473 474
		if (cow) {
			int wret;
C
Chris Mason 已提交
475 476 477
			wret = btrfs_cow_block(trans, root, b,
					       p->nodes[level + 1],
					       p->slots[level + 1],
478
					       &cow_buf);
C
Chris Mason 已提交
479 480 481
			b = cow_buf;
		}
		BUG_ON(!cow && ins_len);
C
Chris Mason 已提交
482
		c = btrfs_buffer_node(b);
483
		p->nodes[level] = b;
C
Chris Mason 已提交
484
		ret = check_block(root, p, level);
C
Chris Mason 已提交
485 486
		if (ret)
			return -1;
487
		ret = bin_search(c, key, &slot);
488
		if (!btrfs_is_leaf(c)) {
489 490 491
			if (ret && slot > 0)
				slot -= 1;
			p->slots[level] = slot;
492
			if (ins_len > 0 && btrfs_header_nritems(&c->header) ==
C
Chris Mason 已提交
493
			    BTRFS_NODEPTRS_PER_BLOCK(root)) {
494
				int sret = split_node(trans, root, p, level);
C
Chris Mason 已提交
495 496 497 498
				BUG_ON(sret > 0);
				if (sret)
					return sret;
				b = p->nodes[level];
C
Chris Mason 已提交
499
				c = btrfs_buffer_node(b);
C
Chris Mason 已提交
500
				slot = p->slots[level];
501
			} else if (ins_len < 0) {
502 503
				int sret = balance_level(trans, root, p,
							 level);
504 505 506 507 508
				if (sret)
					return sret;
				b = p->nodes[level];
				if (!b)
					goto again;
C
Chris Mason 已提交
509
				c = btrfs_buffer_node(b);
510
				slot = p->slots[level];
511
				BUG_ON(btrfs_header_nritems(&c->header) == 1);
C
Chris Mason 已提交
512
			}
513
			b = read_tree_block(root, btrfs_node_blockptr(c, slot));
514
		} else {
C
Chris Mason 已提交
515
			struct btrfs_leaf *l = (struct btrfs_leaf *)c;
516
			p->slots[level] = slot;
C
Chris Mason 已提交
517
			if (ins_len > 0 && btrfs_leaf_free_space(root, l) <
C
Chris Mason 已提交
518
			    sizeof(struct btrfs_item) + ins_len) {
519
				int sret = split_leaf(trans, root, p, ins_len);
C
Chris Mason 已提交
520 521 522 523
				BUG_ON(sret > 0);
				if (sret)
					return sret;
			}
524 525 526
			return ret;
		}
	}
C
Chris Mason 已提交
527
	return 1;
528 529
}

C
Chris Mason 已提交
530 531 532 533 534 535
/*
 * adjust the pointers going up the tree, starting at level
 * making sure the right key of each node is points to 'key'.
 * This is used after shifting pointers to the left, so it stops
 * fixing up pointers when a given leaf/node is not in slot 0 of the
 * higher levels
C
Chris Mason 已提交
536 537 538
 *
 * If this fails to write a tree block, it returns -1, but continues
 * fixing up the blocks in ram so the tree is consistent.
C
Chris Mason 已提交
539
 */
540 541 542
static int fixup_low_keys(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, struct btrfs_disk_key
			  *key, int level)
543 544
{
	int i;
C
Chris Mason 已提交
545
	int ret = 0;
C
Chris Mason 已提交
546 547
	for (i = level; i < BTRFS_MAX_LEVEL; i++) {
		struct btrfs_node *t;
548
		int tslot = path->slots[i];
549
		if (!path->nodes[i])
550
			break;
C
Chris Mason 已提交
551
		t = btrfs_buffer_node(path->nodes[i]);
C
Chris Mason 已提交
552 553
		btrfs_memcpy(root, t, &t->ptrs[tslot].key, key, sizeof(*key));
		btrfs_mark_buffer_dirty(path->nodes[i]);
554 555 556
		if (tslot != 0)
			break;
	}
C
Chris Mason 已提交
557
	return ret;
558 559
}

C
Chris Mason 已提交
560 561
/*
 * try to push data from one node into the next node left in the
562
 * tree.
C
Chris Mason 已提交
563 564 565
 *
 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
 * error, and > 0 if there was no room in the left hand block.
C
Chris Mason 已提交
566
 */
567
static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
568 569
			  *root, struct buffer_head *dst_buf, struct
			  buffer_head *src_buf)
570
{
C
Chris Mason 已提交
571 572
	struct btrfs_node *src = btrfs_buffer_node(src_buf);
	struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
573
	int push_items = 0;
574 575
	int src_nritems;
	int dst_nritems;
C
Chris Mason 已提交
576
	int ret = 0;
577

578 579
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
580
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
581
	if (push_items <= 0) {
582
		return 1;
583
	}
584

585
	if (src_nritems < push_items)
586 587
		push_items = src_nritems;

C
Chris Mason 已提交
588 589
	btrfs_memcpy(root, dst, dst->ptrs + dst_nritems, src->ptrs,
		     push_items * sizeof(struct btrfs_key_ptr));
590
	if (push_items < src_nritems) {
C
Chris Mason 已提交
591
		btrfs_memmove(root, src, src->ptrs, src->ptrs + push_items,
C
Chris Mason 已提交
592
			(src_nritems - push_items) *
C
Chris Mason 已提交
593
			sizeof(struct btrfs_key_ptr));
594
	}
595 596
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
C
Chris Mason 已提交
597 598
	btrfs_mark_buffer_dirty(src_buf);
	btrfs_mark_buffer_dirty(dst_buf);
599 600 601 602 603 604 605 606 607 608 609 610
	return ret;
}

/*
 * try to push data from one node into the next node right in the
 * tree.
 *
 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
 * error, and > 0 if there was no room in the right hand block.
 *
 * this will  only push up to 1/2 the contents of the left node over
 */
611
static int balance_node_right(struct btrfs_trans_handle *trans, struct
C
Chris Mason 已提交
612 613
			      btrfs_root *root, struct buffer_head *dst_buf,
			      struct buffer_head *src_buf)
614
{
C
Chris Mason 已提交
615 616
	struct btrfs_node *src = btrfs_buffer_node(src_buf);
	struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
617 618 619 620 621 622
	int push_items = 0;
	int max_push;
	int src_nritems;
	int dst_nritems;
	int ret = 0;

623 624
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
625
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
626 627 628 629 630 631 632 633 634 635 636
	if (push_items <= 0) {
		return 1;
	}

	max_push = src_nritems / 2 + 1;
	/* don't try to empty the node */
	if (max_push > src_nritems)
		return 1;
	if (max_push < push_items)
		push_items = max_push;

C
Chris Mason 已提交
637 638 639 640 641 642
	btrfs_memmove(root, dst, dst->ptrs + push_items, dst->ptrs,
		      dst_nritems * sizeof(struct btrfs_key_ptr));

	btrfs_memcpy(root, dst, dst->ptrs,
		     src->ptrs + src_nritems - push_items,
		     push_items * sizeof(struct btrfs_key_ptr));
643

644 645
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
646

C
Chris Mason 已提交
647 648
	btrfs_mark_buffer_dirty(src_buf);
	btrfs_mark_buffer_dirty(dst_buf);
C
Chris Mason 已提交
649
	return ret;
650 651
}

C
Chris Mason 已提交
652 653 654 655
/*
 * helper function to insert a new root level in the tree.
 * A new node is allocated, and a single item is inserted to
 * point to the existing root
C
Chris Mason 已提交
656 657
 *
 * returns zero on success or < 0 on failure.
C
Chris Mason 已提交
658
 */
659 660
static int insert_new_root(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int level)
C
Chris Mason 已提交
661
{
C
Chris Mason 已提交
662
	struct buffer_head *t;
C
Chris Mason 已提交
663 664
	struct btrfs_node *lower;
	struct btrfs_node *c;
C
Chris Mason 已提交
665
	struct btrfs_disk_key *lower_key;
C
Chris Mason 已提交
666 667 668 669

	BUG_ON(path->nodes[level]);
	BUG_ON(path->nodes[level-1] != root->node);

670
	t = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
671
	c = btrfs_buffer_node(t);
C
Chris Mason 已提交
672
	memset(c, 0, root->blocksize);
673 674
	btrfs_set_header_nritems(&c->header, 1);
	btrfs_set_header_level(&c->header, level);
C
Chris Mason 已提交
675
	btrfs_set_header_blocknr(&c->header, t->b_blocknr);
676
	btrfs_set_header_generation(&c->header, trans->transid);
677
	btrfs_set_header_parentid(&c->header,
C
Chris Mason 已提交
678 679
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
	lower = btrfs_buffer_node(path->nodes[level-1]);
680
	if (btrfs_is_leaf(lower))
C
Chris Mason 已提交
681
		lower_key = &((struct btrfs_leaf *)lower)->items[0].key;
C
Chris Mason 已提交
682
	else
C
Chris Mason 已提交
683
		lower_key = &lower->ptrs[0].key;
C
Chris Mason 已提交
684 685
	btrfs_memcpy(root, c, &c->ptrs[0].key, lower_key,
		     sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
686
	btrfs_set_node_blockptr(c, 0, path->nodes[level - 1]->b_blocknr);
687

C
Chris Mason 已提交
688
	btrfs_mark_buffer_dirty(t);
689

C
Chris Mason 已提交
690
	/* the super has an extra ref to root->node */
C
Chris Mason 已提交
691
	btrfs_block_release(root, root->node);
C
Chris Mason 已提交
692
	root->node = t;
C
Chris Mason 已提交
693
	get_bh(t);
C
Chris Mason 已提交
694 695 696 697 698
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
699 700 701
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
C
Chris Mason 已提交
702
 *
C
Chris Mason 已提交
703 704
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
C
Chris Mason 已提交
705 706
 *
 * returns zero on success and < 0 on any error
C
Chris Mason 已提交
707
 */
708 709 710
static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, struct btrfs_disk_key
		      *key, u64 blocknr, int slot, int level)
C
Chris Mason 已提交
711
{
C
Chris Mason 已提交
712
	struct btrfs_node *lower;
C
Chris Mason 已提交
713
	int nritems;
C
Chris Mason 已提交
714 715

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
716
	lower = btrfs_buffer_node(path->nodes[level]);
717
	nritems = btrfs_header_nritems(&lower->header);
C
Chris Mason 已提交
718 719
	if (slot > nritems)
		BUG();
C
Chris Mason 已提交
720
	if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
C
Chris Mason 已提交
721 722
		BUG();
	if (slot != nritems) {
C
Chris Mason 已提交
723 724 725
		btrfs_memmove(root, lower, lower->ptrs + slot + 1,
			      lower->ptrs + slot,
			      (nritems - slot) * sizeof(struct btrfs_key_ptr));
C
Chris Mason 已提交
726
	}
C
Chris Mason 已提交
727 728
	btrfs_memcpy(root, lower, &lower->ptrs[slot].key,
		     key, sizeof(struct btrfs_disk_key));
729
	btrfs_set_node_blockptr(lower, slot, blocknr);
730
	btrfs_set_header_nritems(&lower->header, nritems + 1);
C
Chris Mason 已提交
731
	btrfs_mark_buffer_dirty(path->nodes[level]);
C
Chris Mason 已提交
732 733 734
	return 0;
}

C
Chris Mason 已提交
735 736 737 738 739 740
/*
 * split the node at the specified level in path in two.
 * The path is corrected to point to the appropriate node after the split
 *
 * Before splitting this tries to make some room in the node by pushing
 * left and right, if either one works, it returns right away.
C
Chris Mason 已提交
741 742
 *
 * returns 0 on success and < 0 on failure
C
Chris Mason 已提交
743
 */
744 745
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level)
746
{
C
Chris Mason 已提交
747
	struct buffer_head *t;
C
Chris Mason 已提交
748
	struct btrfs_node *c;
C
Chris Mason 已提交
749
	struct buffer_head *split_buffer;
C
Chris Mason 已提交
750
	struct btrfs_node *split;
751
	int mid;
C
Chris Mason 已提交
752
	int ret;
C
Chris Mason 已提交
753
	int wret;
754
	u32 c_nritems;
755

C
Chris Mason 已提交
756
	t = path->nodes[level];
C
Chris Mason 已提交
757
	c = btrfs_buffer_node(t);
C
Chris Mason 已提交
758 759
	if (t == root->node) {
		/* trying to split the root, lets make a new one */
760
		ret = insert_new_root(trans, root, path, level + 1);
C
Chris Mason 已提交
761 762
		if (ret)
			return ret;
763
	}
764
	c_nritems = btrfs_header_nritems(&c->header);
765
	split_buffer = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
766
	split = btrfs_buffer_node(split_buffer);
767
	btrfs_set_header_flags(&split->header, btrfs_header_flags(&c->header));
768
	btrfs_set_header_level(&split->header, btrfs_header_level(&c->header));
C
Chris Mason 已提交
769
	btrfs_set_header_blocknr(&split->header, split_buffer->b_blocknr);
770
	btrfs_set_header_generation(&split->header, trans->transid);
771
	btrfs_set_header_parentid(&split->header,
C
Chris Mason 已提交
772
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
773
	mid = (c_nritems + 1) / 2;
C
Chris Mason 已提交
774 775
	btrfs_memcpy(root, split, split->ptrs, c->ptrs + mid,
		     (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
776 777
	btrfs_set_header_nritems(&split->header, c_nritems - mid);
	btrfs_set_header_nritems(&c->header, mid);
C
Chris Mason 已提交
778 779
	ret = 0;

C
Chris Mason 已提交
780 781
	btrfs_mark_buffer_dirty(t);
	btrfs_mark_buffer_dirty(split_buffer);
782
	wret = insert_ptr(trans, root, path, &split->ptrs[0].key,
C
Chris Mason 已提交
783
			  split_buffer->b_blocknr, path->slots[level + 1] + 1,
C
Chris Mason 已提交
784
			  level + 1);
C
Chris Mason 已提交
785 786 787
	if (wret)
		ret = wret;

C
Chris Mason 已提交
788
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
789
		path->slots[level] -= mid;
C
Chris Mason 已提交
790
		btrfs_block_release(root, t);
C
Chris Mason 已提交
791 792 793
		path->nodes[level] = split_buffer;
		path->slots[level + 1] += 1;
	} else {
C
Chris Mason 已提交
794
		btrfs_block_release(root, split_buffer);
795
	}
C
Chris Mason 已提交
796
	return ret;
797 798
}

C
Chris Mason 已提交
799 800 801 802 803
/*
 * how many bytes are required to store the items in a leaf.  start
 * and nr indicate which items in the leaf to check.  This totals up the
 * space used both by the item structs and the item data
 */
C
Chris Mason 已提交
804
static int leaf_space_used(struct btrfs_leaf *l, int start, int nr)
805 806 807 808 809 810
{
	int data_len;
	int end = start + nr - 1;

	if (!nr)
		return 0;
C
Chris Mason 已提交
811 812 813
	data_len = btrfs_item_end(l->items + start);
	data_len = data_len - btrfs_item_offset(l->items + end);
	data_len += sizeof(struct btrfs_item) * nr;
814 815 816
	return data_len;
}

C
Chris Mason 已提交
817 818 819
/*
 * push some data in the path leaf to the right, trying to free up at
 * least data_size bytes.  returns zero if the push worked, nonzero otherwise
C
Chris Mason 已提交
820 821 822
 *
 * returns 1 if the push failed because the other node didn't have enough
 * room, 0 if everything worked out and < 0 if there were major errors.
C
Chris Mason 已提交
823
 */
824 825
static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int data_size)
C
Chris Mason 已提交
826
{
C
Chris Mason 已提交
827 828
	struct buffer_head *left_buf = path->nodes[0];
	struct btrfs_leaf *left = btrfs_buffer_leaf(left_buf);
C
Chris Mason 已提交
829
	struct btrfs_leaf *right;
C
Chris Mason 已提交
830 831 832
	struct buffer_head *right_buf;
	struct buffer_head *upper;
	struct btrfs_node *upper_node;
C
Chris Mason 已提交
833 834 835 836 837
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
838
	struct btrfs_item *item;
839 840
	u32 left_nritems;
	u32 right_nritems;
C
Chris Mason 已提交
841 842 843 844 845 846

	slot = path->slots[1];
	if (!path->nodes[1]) {
		return 1;
	}
	upper = path->nodes[1];
C
Chris Mason 已提交
847 848
	upper_node = btrfs_buffer_node(upper);
	if (slot >= btrfs_header_nritems(&upper_node->header) - 1) {
C
Chris Mason 已提交
849 850
		return 1;
	}
C
Chris Mason 已提交
851 852 853
	right_buf = read_tree_block(root,
		    btrfs_node_blockptr(btrfs_buffer_node(upper), slot + 1));
	right = btrfs_buffer_leaf(right_buf);
C
Chris Mason 已提交
854
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
855
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
856
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
857 858
		return 1;
	}
C
Chris Mason 已提交
859
	/* cow and double check */
860
	btrfs_cow_block(trans, root, right_buf, upper, slot + 1, &right_buf);
C
Chris Mason 已提交
861
	right = btrfs_buffer_leaf(right_buf);
C
Chris Mason 已提交
862
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
863
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
864
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
865 866 867
		return 1;
	}

868 869
	left_nritems = btrfs_header_nritems(&left->header);
	for (i = left_nritems - 1; i >= 0; i--) {
C
Chris Mason 已提交
870 871 872
		item = left->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
873 874
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
C
Chris Mason 已提交
875 876
			break;
		push_items++;
C
Chris Mason 已提交
877
		push_space += btrfs_item_size(item) + sizeof(*item);
C
Chris Mason 已提交
878 879
	}
	if (push_items == 0) {
C
Chris Mason 已提交
880
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
881 882
		return 1;
	}
883
	right_nritems = btrfs_header_nritems(&right->header);
C
Chris Mason 已提交
884
	/* push left to right */
C
Chris Mason 已提交
885
	push_space = btrfs_item_end(left->items + left_nritems - push_items);
C
Chris Mason 已提交
886
	push_space -= leaf_data_end(root, left);
C
Chris Mason 已提交
887
	/* make room in the right data area */
C
Chris Mason 已提交
888 889 890 891 892
	btrfs_memmove(root, right, btrfs_leaf_data(right) +
		      leaf_data_end(root, right) - push_space,
		      btrfs_leaf_data(right) +
		      leaf_data_end(root, right), BTRFS_LEAF_DATA_SIZE(root) -
		      leaf_data_end(root, right));
C
Chris Mason 已提交
893
	/* copy from the left data area */
C
Chris Mason 已提交
894 895 896 897 898
	btrfs_memcpy(root, right, btrfs_leaf_data(right) +
		     BTRFS_LEAF_DATA_SIZE(root) - push_space,
		     btrfs_leaf_data(left) + leaf_data_end(root, left),
		     push_space);
	btrfs_memmove(root, right, right->items + push_items, right->items,
C
Chris Mason 已提交
899
		right_nritems * sizeof(struct btrfs_item));
C
Chris Mason 已提交
900
	/* copy the items from left to right */
C
Chris Mason 已提交
901 902 903
	btrfs_memcpy(root, right, right->items, left->items +
		     left_nritems - push_items,
		     push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
904 905

	/* update the item pointers */
906 907
	right_nritems += push_items;
	btrfs_set_header_nritems(&right->header, right_nritems);
C
Chris Mason 已提交
908
	push_space = BTRFS_LEAF_DATA_SIZE(root);
909
	for (i = 0; i < right_nritems; i++) {
C
Chris Mason 已提交
910 911 912
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
C
Chris Mason 已提交
913
	}
914 915
	left_nritems -= push_items;
	btrfs_set_header_nritems(&left->header, left_nritems);
C
Chris Mason 已提交
916

C
Chris Mason 已提交
917 918 919
	btrfs_mark_buffer_dirty(left_buf);
	btrfs_mark_buffer_dirty(right_buf);
	btrfs_memcpy(root, upper_node, &upper_node->ptrs[slot + 1].key,
C
Chris Mason 已提交
920
		&right->items[0].key, sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
921
	btrfs_mark_buffer_dirty(upper);
C
Chris Mason 已提交
922

C
Chris Mason 已提交
923
	/* then fixup the leaf pointer in the path */
924 925
	if (path->slots[0] >= left_nritems) {
		path->slots[0] -= left_nritems;
C
Chris Mason 已提交
926
		btrfs_block_release(root, path->nodes[0]);
C
Chris Mason 已提交
927 928 929
		path->nodes[0] = right_buf;
		path->slots[1] += 1;
	} else {
C
Chris Mason 已提交
930
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
931 932 933
	}
	return 0;
}
C
Chris Mason 已提交
934 935 936 937
/*
 * push some data in the path leaf to the left, trying to free up at
 * least data_size bytes.  returns zero if the push worked, nonzero otherwise
 */
938 939
static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, int data_size)
940
{
C
Chris Mason 已提交
941 942 943
	struct buffer_head *right_buf = path->nodes[0];
	struct btrfs_leaf *right = btrfs_buffer_leaf(right_buf);
	struct buffer_head *t;
C
Chris Mason 已提交
944
	struct btrfs_leaf *left;
945 946 947 948 949
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
950
	struct btrfs_item *item;
951
	u32 old_left_nritems;
C
Chris Mason 已提交
952 953
	int ret = 0;
	int wret;
954 955 956 957 958 959 960 961

	slot = path->slots[1];
	if (slot == 0) {
		return 1;
	}
	if (!path->nodes[1]) {
		return 1;
	}
C
Chris Mason 已提交
962 963 964
	t = read_tree_block(root,
	    btrfs_node_blockptr(btrfs_buffer_node(path->nodes[1]), slot - 1));
	left = btrfs_buffer_leaf(t);
C
Chris Mason 已提交
965
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
966
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
967
		btrfs_block_release(root, t);
968 969
		return 1;
	}
C
Chris Mason 已提交
970 971

	/* cow and double check */
972
	btrfs_cow_block(trans, root, t, path->nodes[1], slot - 1, &t);
C
Chris Mason 已提交
973
	left = btrfs_buffer_leaf(t);
C
Chris Mason 已提交
974
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
975
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
976
		btrfs_block_release(root, t);
C
Chris Mason 已提交
977 978 979
		return 1;
	}

980
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
981 982 983
		item = right->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
984 985
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
986 987
			break;
		push_items++;
C
Chris Mason 已提交
988
		push_space += btrfs_item_size(item) + sizeof(*item);
989 990
	}
	if (push_items == 0) {
C
Chris Mason 已提交
991
		btrfs_block_release(root, t);
992 993 994
		return 1;
	}
	/* push data from right to left */
C
Chris Mason 已提交
995 996 997
	btrfs_memcpy(root, left, left->items +
		     btrfs_header_nritems(&left->header),
		     right->items, push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
998
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
999
		     btrfs_item_offset(right->items + push_items -1);
C
Chris Mason 已提交
1000 1001 1002 1003 1004
	btrfs_memcpy(root, left, btrfs_leaf_data(left) +
		     leaf_data_end(root, left) - push_space,
		     btrfs_leaf_data(right) +
		     btrfs_item_offset(right->items + push_items - 1),
		     push_space);
1005
	old_left_nritems = btrfs_header_nritems(&left->header);
1006 1007
	BUG_ON(old_left_nritems < 0);

C
Chris Mason 已提交
1008
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
C
Chris Mason 已提交
1009 1010 1011
		u32 ioff = btrfs_item_offset(left->items + i);
		btrfs_set_item_offset(left->items + i, ioff -
				     (BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
1012 1013
				      btrfs_item_offset(left->items +
						        old_left_nritems - 1)));
1014
	}
1015
	btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
1016 1017

	/* fixup right node */
C
Chris Mason 已提交
1018
	push_space = btrfs_item_offset(right->items + push_items - 1) -
C
Chris Mason 已提交
1019
		     leaf_data_end(root, right);
C
Chris Mason 已提交
1020 1021 1022 1023 1024
	btrfs_memmove(root, right, btrfs_leaf_data(right) +
		      BTRFS_LEAF_DATA_SIZE(root) - push_space,
		      btrfs_leaf_data(right) +
		      leaf_data_end(root, right), push_space);
	btrfs_memmove(root, right, right->items, right->items + push_items,
1025
		(btrfs_header_nritems(&right->header) - push_items) *
C
Chris Mason 已提交
1026
		sizeof(struct btrfs_item));
1027 1028 1029
	btrfs_set_header_nritems(&right->header,
				 btrfs_header_nritems(&right->header) -
				 push_items);
C
Chris Mason 已提交
1030
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1031

1032
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1033 1034 1035
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
1036
	}
1037

C
Chris Mason 已提交
1038 1039
	btrfs_mark_buffer_dirty(t);
	btrfs_mark_buffer_dirty(right_buf);
1040

1041
	wret = fixup_low_keys(trans, root, path, &right->items[0].key, 1);
C
Chris Mason 已提交
1042 1043
	if (wret)
		ret = wret;
1044 1045 1046 1047

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
C
Chris Mason 已提交
1048
		btrfs_block_release(root, path->nodes[0]);
1049
		path->nodes[0] = t;
1050 1051
		path->slots[1] -= 1;
	} else {
C
Chris Mason 已提交
1052
		btrfs_block_release(root, t);
1053 1054
		path->slots[0] -= push_items;
	}
1055
	BUG_ON(path->slots[0] < 0);
C
Chris Mason 已提交
1056
	return ret;
1057 1058
}

C
Chris Mason 已提交
1059 1060 1061
/*
 * split the path's leaf in two, making sure there is at least data_size
 * available for the resulting leaf level of the path.
C
Chris Mason 已提交
1062 1063
 *
 * returns 0 if all went well and < 0 on failure.
C
Chris Mason 已提交
1064
 */
1065 1066
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int data_size)
1067
{
C
Chris Mason 已提交
1068
	struct buffer_head *l_buf;
C
Chris Mason 已提交
1069
	struct btrfs_leaf *l;
1070
	u32 nritems;
1071 1072
	int mid;
	int slot;
C
Chris Mason 已提交
1073
	struct btrfs_leaf *right;
C
Chris Mason 已提交
1074
	struct buffer_head *right_buffer;
C
Chris Mason 已提交
1075
	int space_needed = data_size + sizeof(struct btrfs_item);
1076 1077 1078 1079
	int data_copy_size;
	int rt_data_off;
	int i;
	int ret;
C
Chris Mason 已提交
1080 1081
	int wret;

C
Chris Mason 已提交
1082
	/* first try to make some room by pushing left and right */
1083
	wret = push_leaf_left(trans, root, path, data_size);
C
Chris Mason 已提交
1084 1085 1086
	if (wret < 0)
		return wret;
	if (wret) {
1087
		wret = push_leaf_right(trans, root, path, data_size);
C
Chris Mason 已提交
1088 1089 1090
		if (wret < 0)
			return wret;
	}
C
Chris Mason 已提交
1091
	l_buf = path->nodes[0];
C
Chris Mason 已提交
1092
	l = btrfs_buffer_leaf(l_buf);
C
Chris Mason 已提交
1093 1094

	/* did the pushes work? */
C
Chris Mason 已提交
1095 1096
	if (btrfs_leaf_free_space(root, l) >=
	    sizeof(struct btrfs_item) + data_size)
C
Chris Mason 已提交
1097 1098
		return 0;

C
Chris Mason 已提交
1099
	if (!path->nodes[1]) {
1100
		ret = insert_new_root(trans, root, path, 1);
C
Chris Mason 已提交
1101 1102 1103
		if (ret)
			return ret;
	}
1104
	slot = path->slots[0];
1105
	nritems = btrfs_header_nritems(&l->header);
1106
	mid = (nritems + 1)/ 2;
1107
	right_buffer = btrfs_alloc_free_block(trans, root);
1108 1109
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
C
Chris Mason 已提交
1110
	right = btrfs_buffer_leaf(right_buffer);
C
Chris Mason 已提交
1111
	memset(&right->header, 0, sizeof(right->header));
1112
	if (mid <= slot) {
C
Chris Mason 已提交
1113
		/* FIXME, just alloc a new leaf here */
1114
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
C
Chris Mason 已提交
1115
			BTRFS_LEAF_DATA_SIZE(root))
1116 1117
			BUG();
	} else {
C
Chris Mason 已提交
1118
		/* FIXME, just alloc a new leaf here */
1119
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
C
Chris Mason 已提交
1120
			BTRFS_LEAF_DATA_SIZE(root))
1121 1122
			BUG();
	}
1123
	btrfs_set_header_nritems(&right->header, nritems - mid);
C
Chris Mason 已提交
1124
	btrfs_set_header_blocknr(&right->header, right_buffer->b_blocknr);
1125
	btrfs_set_header_generation(&right->header, trans->transid);
1126 1127
	btrfs_set_header_level(&right->header, 0);
	btrfs_set_header_parentid(&right->header,
C
Chris Mason 已提交
1128
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
C
Chris Mason 已提交
1129 1130
	data_copy_size = btrfs_item_end(l->items + mid) -
			 leaf_data_end(root, l);
C
Chris Mason 已提交
1131 1132 1133 1134 1135 1136
	btrfs_memcpy(root, right, right->items, l->items + mid,
		     (nritems - mid) * sizeof(struct btrfs_item));
	btrfs_memcpy(root, right,
		     btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
		     data_copy_size, btrfs_leaf_data(l) +
		     leaf_data_end(root, l), data_copy_size);
C
Chris Mason 已提交
1137 1138
	rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
		      btrfs_item_end(l->items + mid);
C
Chris Mason 已提交
1139

C
Chris Mason 已提交
1140
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1141
		u32 ioff = btrfs_item_offset(right->items + i);
C
Chris Mason 已提交
1142 1143
		btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
	}
C
Chris Mason 已提交
1144

1145
	btrfs_set_header_nritems(&l->header, mid);
C
Chris Mason 已提交
1146
	ret = 0;
1147
	wret = insert_ptr(trans, root, path, &right->items[0].key,
C
Chris Mason 已提交
1148
			  right_buffer->b_blocknr, path->slots[1] + 1, 1);
C
Chris Mason 已提交
1149 1150
	if (wret)
		ret = wret;
C
Chris Mason 已提交
1151 1152
	btrfs_mark_buffer_dirty(right_buffer);
	btrfs_mark_buffer_dirty(l_buf);
1153
	BUG_ON(path->slots[0] != slot);
1154
	if (mid <= slot) {
C
Chris Mason 已提交
1155
		btrfs_block_release(root, path->nodes[0]);
1156
		path->nodes[0] = right_buffer;
1157 1158
		path->slots[0] -= mid;
		path->slots[1] += 1;
1159
	} else
C
Chris Mason 已提交
1160
		btrfs_block_release(root, right_buffer);
1161
	BUG_ON(path->slots[0] < 0);
1162 1163 1164
	return ret;
}

C
Chris Mason 已提交
1165 1166 1167 1168
/*
 * Given a key and some data, insert an item into the tree.
 * This does all the path init required, making room in the tree if needed.
 */
1169 1170 1171
int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
			    *root, struct btrfs_path *path, struct btrfs_key
			    *cpu_key, u32 data_size)
1172
{
C
Chris Mason 已提交
1173
	int ret = 0;
1174
	int slot;
1175
	int slot_orig;
C
Chris Mason 已提交
1176
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1177
	struct buffer_head *leaf_buf;
1178
	u32 nritems;
1179
	unsigned int data_end;
C
Chris Mason 已提交
1180 1181 1182
	struct btrfs_disk_key disk_key;

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
1183

C
Chris Mason 已提交
1184
	/* create a root if there isn't one */
C
Chris Mason 已提交
1185
	if (!root->node)
C
Chris Mason 已提交
1186
		BUG();
1187
	ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
1188
	if (ret == 0) {
1189
		return -EEXIST;
C
Chris Mason 已提交
1190
	}
1191 1192
	if (ret < 0)
		goto out;
1193

1194 1195
	slot_orig = path->slots[0];
	leaf_buf = path->nodes[0];
C
Chris Mason 已提交
1196
	leaf = btrfs_buffer_leaf(leaf_buf);
C
Chris Mason 已提交
1197

1198
	nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
1199
	data_end = leaf_data_end(root, leaf);
1200

C
Chris Mason 已提交
1201
	if (btrfs_leaf_free_space(root, leaf) <
C
Chris Mason 已提交
1202
	    sizeof(struct btrfs_item) + data_size)
1203 1204
		BUG();

1205
	slot = path->slots[0];
1206
	BUG_ON(slot < 0);
1207 1208
	if (slot != nritems) {
		int i;
C
Chris Mason 已提交
1209
		unsigned int old_data = btrfs_item_end(leaf->items + slot);
1210 1211 1212 1213 1214

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
1215
		for (i = slot; i < nritems; i++) {
C
Chris Mason 已提交
1216
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1217 1218 1219
			btrfs_set_item_offset(leaf->items + i,
					      ioff - data_size);
		}
1220 1221

		/* shift the items */
C
Chris Mason 已提交
1222 1223 1224
		btrfs_memmove(root, leaf, leaf->items + slot + 1,
			      leaf->items + slot,
			      (nritems - slot) * sizeof(struct btrfs_item));
1225 1226

		/* shift the data */
C
Chris Mason 已提交
1227 1228 1229
		btrfs_memmove(root, leaf, btrfs_leaf_data(leaf) +
			      data_end - data_size, btrfs_leaf_data(leaf) +
			      data_end, old_data - data_end);
1230 1231
		data_end = old_data;
	}
1232
	/* setup the item for the new data */
C
Chris Mason 已提交
1233 1234
	btrfs_memcpy(root, leaf, &leaf->items[slot].key, &disk_key,
		     sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
1235 1236
	btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
	btrfs_set_item_size(leaf->items + slot, data_size);
1237
	btrfs_set_header_nritems(&leaf->header, nritems + 1);
C
Chris Mason 已提交
1238
	btrfs_mark_buffer_dirty(leaf_buf);
C
Chris Mason 已提交
1239 1240

	ret = 0;
1241
	if (slot == 0)
1242
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
1243

C
Chris Mason 已提交
1244
	if (btrfs_leaf_free_space(root, leaf) < 0)
1245
		BUG();
1246
	check_leaf(root, path, 0);
1247
out:
1248 1249 1250 1251 1252 1253 1254
	return ret;
}

/*
 * Given a key and some data, insert an item into the tree.
 * This does all the path init required, making room in the tree if needed.
 */
1255 1256 1257
int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *cpu_key, void *data, u32
		      data_size)
1258 1259 1260 1261 1262 1263
{
	int ret = 0;
	struct btrfs_path path;
	u8 *ptr;

	btrfs_init_path(&path);
1264
	ret = btrfs_insert_empty_item(trans, root, &path, cpu_key, data_size);
1265
	if (!ret) {
C
Chris Mason 已提交
1266 1267
		ptr = btrfs_item_ptr(btrfs_buffer_leaf(path.nodes[0]),
				     path.slots[0], u8);
C
Chris Mason 已提交
1268 1269 1270
		btrfs_memcpy(root, path.nodes[0]->b_data,
			     ptr, data, data_size);
		btrfs_mark_buffer_dirty(path.nodes[0]);
1271
	}
C
Chris Mason 已提交
1272
	btrfs_release_path(root, &path);
C
Chris Mason 已提交
1273
	return ret;
1274 1275
}

C
Chris Mason 已提交
1276
/*
C
Chris Mason 已提交
1277
 * delete the pointer from a given node.
C
Chris Mason 已提交
1278 1279 1280 1281 1282
 *
 * If the delete empties a node, the node is removed from the tree,
 * continuing all the way the root if required.  The root is converted into
 * a leaf if all the nodes are emptied.
 */
1283 1284
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot)
1285
{
C
Chris Mason 已提交
1286
	struct btrfs_node *node;
C
Chris Mason 已提交
1287
	struct buffer_head *parent = path->nodes[level];
1288
	u32 nritems;
C
Chris Mason 已提交
1289
	int ret = 0;
1290
	int wret;
1291

C
Chris Mason 已提交
1292
	node = btrfs_buffer_node(parent);
1293
	nritems = btrfs_header_nritems(&node->header);
1294
	if (slot != nritems -1) {
C
Chris Mason 已提交
1295 1296 1297 1298
		btrfs_memmove(root, node, node->ptrs + slot,
			      node->ptrs + slot + 1,
			      sizeof(struct btrfs_key_ptr) *
			      (nritems - slot - 1));
1299
	}
1300 1301 1302
	nritems--;
	btrfs_set_header_nritems(&node->header, nritems);
	if (nritems == 0 && parent == root->node) {
C
Chris Mason 已提交
1303 1304
		struct btrfs_header *header = btrfs_buffer_header(root->node);
		BUG_ON(btrfs_header_level(header) != 1);
1305
		/* just turn the root into a leaf and break */
C
Chris Mason 已提交
1306
		btrfs_set_header_level(header, 0);
1307
	} else if (slot == 0) {
1308
		wret = fixup_low_keys(trans, root, path, &node->ptrs[0].key,
C
Chris Mason 已提交
1309
				      level + 1);
C
Chris Mason 已提交
1310 1311
		if (wret)
			ret = wret;
1312
	}
C
Chris Mason 已提交
1313
	btrfs_mark_buffer_dirty(parent);
C
Chris Mason 已提交
1314
	return ret;
1315 1316
}

C
Chris Mason 已提交
1317 1318 1319 1320
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
1321 1322
int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path)
1323 1324
{
	int slot;
C
Chris Mason 已提交
1325
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1326
	struct buffer_head *leaf_buf;
1327 1328
	int doff;
	int dsize;
C
Chris Mason 已提交
1329 1330
	int ret = 0;
	int wret;
1331
	u32 nritems;
1332

1333
	leaf_buf = path->nodes[0];
C
Chris Mason 已提交
1334
	leaf = btrfs_buffer_leaf(leaf_buf);
1335
	slot = path->slots[0];
C
Chris Mason 已提交
1336 1337
	doff = btrfs_item_offset(leaf->items + slot);
	dsize = btrfs_item_size(leaf->items + slot);
1338
	nritems = btrfs_header_nritems(&leaf->header);
1339

1340
	if (slot != nritems - 1) {
1341
		int i;
C
Chris Mason 已提交
1342
		int data_end = leaf_data_end(root, leaf);
C
Chris Mason 已提交
1343 1344 1345 1346
		btrfs_memmove(root, leaf, btrfs_leaf_data(leaf) +
			      data_end + dsize,
			      btrfs_leaf_data(leaf) + data_end,
			      doff - data_end);
C
Chris Mason 已提交
1347
		for (i = slot + 1; i < nritems; i++) {
C
Chris Mason 已提交
1348
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1349 1350
			btrfs_set_item_offset(leaf->items + i, ioff + dsize);
		}
C
Chris Mason 已提交
1351 1352 1353 1354
		btrfs_memmove(root, leaf, leaf->items + slot,
			      leaf->items + slot + 1,
			      sizeof(struct btrfs_item) *
			      (nritems - slot - 1));
1355
	}
1356 1357
	btrfs_set_header_nritems(&leaf->header, nritems - 1);
	nritems--;
C
Chris Mason 已提交
1358
	/* delete the leaf if we've emptied it */
1359
	if (nritems == 0) {
1360
		if (leaf_buf == root->node) {
1361
			btrfs_set_header_level(&leaf->header, 0);
1362
		} else {
1363
			clean_tree_block(trans, root, leaf_buf);
C
Chris Mason 已提交
1364
			wait_on_buffer(leaf_buf);
1365
			wret = del_ptr(trans, root, path, 1, path->slots[1]);
C
Chris Mason 已提交
1366 1367
			if (wret)
				ret = wret;
1368
			wret = btrfs_free_extent(trans, root,
C
Chris Mason 已提交
1369
						 leaf_buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
1370 1371
			if (wret)
				ret = wret;
1372
		}
1373
	} else {
1374
		int used = leaf_space_used(leaf, 0, nritems);
C
Chris Mason 已提交
1375
		if (slot == 0) {
1376 1377
			wret = fixup_low_keys(trans, root, path,
					      &leaf->items[0].key, 1);
C
Chris Mason 已提交
1378 1379 1380 1381
			if (wret)
				ret = wret;
		}

C
Chris Mason 已提交
1382
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
1383
		if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
1384 1385 1386 1387
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
1388
			slot = path->slots[1];
C
Chris Mason 已提交
1389
			get_bh(leaf_buf);
1390
			wret = push_leaf_left(trans, root, path, 1);
C
Chris Mason 已提交
1391 1392
			if (wret < 0)
				ret = wret;
1393
			if (path->nodes[0] == leaf_buf &&
1394
			    btrfs_header_nritems(&leaf->header)) {
1395
				wret = push_leaf_right(trans, root, path, 1);
C
Chris Mason 已提交
1396 1397 1398
				if (wret < 0)
					ret = wret;
			}
1399
			if (btrfs_header_nritems(&leaf->header) == 0) {
C
Chris Mason 已提交
1400
				u64 blocknr = leaf_buf->b_blocknr;
1401
				clean_tree_block(trans, root, leaf_buf);
C
Chris Mason 已提交
1402
				wait_on_buffer(leaf_buf);
1403
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
1404 1405
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1406
				btrfs_block_release(root, leaf_buf);
1407 1408
				wret = btrfs_free_extent(trans, root, blocknr,
							 1, 1);
C
Chris Mason 已提交
1409 1410
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1411
			} else {
C
Chris Mason 已提交
1412
				btrfs_mark_buffer_dirty(leaf_buf);
C
Chris Mason 已提交
1413
				btrfs_block_release(root, leaf_buf);
1414
			}
1415
		} else {
C
Chris Mason 已提交
1416
			btrfs_mark_buffer_dirty(leaf_buf);
1417 1418
		}
	}
C
Chris Mason 已提交
1419
	return ret;
1420 1421
}

C
Chris Mason 已提交
1422 1423
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
1424 1425
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
1426
 */
C
Chris Mason 已提交
1427
int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
1428 1429 1430 1431
{
	int slot;
	int level = 1;
	u64 blocknr;
C
Chris Mason 已提交
1432 1433 1434
	struct buffer_head *c;
	struct btrfs_node *c_node;
	struct buffer_head *next = NULL;
1435

C
Chris Mason 已提交
1436
	while(level < BTRFS_MAX_LEVEL) {
1437
		if (!path->nodes[level])
C
Chris Mason 已提交
1438
			return 1;
1439 1440
		slot = path->slots[level] + 1;
		c = path->nodes[level];
C
Chris Mason 已提交
1441 1442
		c_node = btrfs_buffer_node(c);
		if (slot >= btrfs_header_nritems(&c_node->header)) {
1443 1444 1445
			level++;
			continue;
		}
C
Chris Mason 已提交
1446
		blocknr = btrfs_node_blockptr(c_node, slot);
C
Chris Mason 已提交
1447
		if (next)
C
Chris Mason 已提交
1448
			btrfs_block_release(root, next);
1449 1450 1451 1452 1453 1454 1455
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
C
Chris Mason 已提交
1456
		btrfs_block_release(root, c);
1457 1458 1459 1460
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
1461
		next = read_tree_block(root,
C
Chris Mason 已提交
1462
		       btrfs_node_blockptr(btrfs_buffer_node(next), 0));
1463 1464 1465
	}
	return 0;
}