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

5 6 7 8 9
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 已提交
10
			  *root, struct buffer_head *dst, struct buffer_head
11 12
			  *src);
static int balance_node_right(struct btrfs_trans_handle *trans, struct
C
Chris Mason 已提交
13 14
			      btrfs_root *root, struct buffer_head *dst_buf,
			      struct buffer_head *src_buf);
15 16
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot);
17

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

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

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

42
	if (buffer_dirty(buf)) {
C
Chris Mason 已提交
43 44 45
		*cow_ret = buf;
		return 0;
	}
46
	cow = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
47 48 49
	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);
C
Chris Mason 已提交
50
	*cow_ret = cow;
51
	mark_buffer_dirty(cow);
52
	btrfs_inc_ref(trans, root, buf);
C
Chris Mason 已提交
53 54
	if (buf == root->node) {
		root->node = cow;
C
Chris Mason 已提交
55
		get_bh(cow);
56
		if (buf != root->commit_root)
C
Chris Mason 已提交
57
			btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
58
		btrfs_block_release(root, buf);
C
Chris Mason 已提交
59
	} else {
C
Chris Mason 已提交
60 61
		btrfs_set_node_blockptr(btrfs_buffer_node(parent), parent_slot,
					cow->b_blocknr);
62
		mark_buffer_dirty(parent);
C
Chris Mason 已提交
63
		btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
64
	}
C
Chris Mason 已提交
65
	btrfs_block_release(root, buf);
C
Chris Mason 已提交
66 67 68
	return 0;
}

C
Chris Mason 已提交
69 70 71 72 73
/*
 * 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 已提交
74 75
static inline unsigned int leaf_data_end(struct btrfs_root *root,
					 struct btrfs_leaf *leaf)
76
{
77
	u32 nr = btrfs_header_nritems(&leaf->header);
78
	if (nr == 0)
C
Chris Mason 已提交
79
		return BTRFS_LEAF_DATA_SIZE(root);
C
Chris Mason 已提交
80
	return btrfs_item_offset(leaf->items + nr - 1);
81 82
}

C
Chris Mason 已提交
83 84 85 86 87
/*
 * 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 已提交
88
int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf)
89
{
C
Chris Mason 已提交
90
	int data_end = leaf_data_end(root, leaf);
91
	int nritems = btrfs_header_nritems(&leaf->header);
92
	char *items_end = (char *)(leaf->items + nritems + 1);
C
Chris Mason 已提交
93
	return (char *)(btrfs_leaf_data(leaf) + data_end) - (char *)items_end;
94 95
}

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

	btrfs_disk_key_to_cpu(&k1, disk);

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

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

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

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

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

	if (nritems == 0)
		return 0;

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

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

C
Chris Mason 已提交
199 200 201 202 203 204 205 206 207
/*
 * 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 已提交
208
static int generic_bin_search(char *p, int item_size, struct btrfs_key *key,
209 210 211 212 213 214
		       int max, int *slot)
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
C
Chris Mason 已提交
215
	struct btrfs_disk_key *tmp;
216 217 218

	while(low < high) {
		mid = (low + high) / 2;
C
Chris Mason 已提交
219
		tmp = (struct btrfs_disk_key *)(p + mid * item_size);
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
		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 已提交
235 236 237 238
/*
 * simple bin_search frontend that does the right thing for
 * leaves vs nodes
 */
C
Chris Mason 已提交
239
static int bin_search(struct btrfs_node *c, struct btrfs_key *key, int *slot)
240
{
241
	if (btrfs_is_leaf(c)) {
C
Chris Mason 已提交
242
		struct btrfs_leaf *l = (struct btrfs_leaf *)c;
C
Chris Mason 已提交
243 244
		return generic_bin_search((void *)l->items,
					  sizeof(struct btrfs_item),
245 246
					  key, btrfs_header_nritems(&c->header),
					  slot);
247
	} else {
C
Chris Mason 已提交
248 249
		return generic_bin_search((void *)c->ptrs,
					  sizeof(struct btrfs_key_ptr),
250 251
					  key, btrfs_header_nritems(&c->header),
					  slot);
252 253 254 255
	}
	return -1;
}

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

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

	if (level == 0)
		return 0;

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

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

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

304
		if (btrfs_header_nritems(&mid->header) != 1)
305 306 307 308 309 310 311 312
			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;
		/* once for the path */
C
Chris Mason 已提交
313
		btrfs_block_release(root, mid_buf);
314
		/* once for the root ptr */
C
Chris Mason 已提交
315
		btrfs_block_release(root, mid_buf);
316 317
		clean_tree_block(trans, root, mid_buf);
		return btrfs_free_extent(trans, root, blocknr, 1, 1);
318
	}
C
Chris Mason 已提交
319
	parent = btrfs_buffer_node(parent_buf);
320

C
Chris Mason 已提交
321 322
	if (btrfs_header_nritems(&mid->header) >
	    BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
323 324 325 326
		return 0;

	left_buf = read_node_slot(root, parent_buf, pslot - 1);
	right_buf = read_node_slot(root, parent_buf, pslot + 1);
327 328

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

	/*
	 * then try to empty the right most buffer into the middle
	 */
342
	if (right_buf) {
343 344
		btrfs_cow_block(trans, root, right_buf, parent_buf, pslot + 1,
				&right_buf);
C
Chris Mason 已提交
345
		right = btrfs_buffer_node(right_buf);
346
		wret = push_node_left(trans, root, mid_buf, right_buf);
347 348
		if (wret < 0)
			ret = wret;
349
		if (btrfs_header_nritems(&right->header) == 0) {
C
Chris Mason 已提交
350
			u64 blocknr = right_buf->b_blocknr;
C
Chris Mason 已提交
351
			btrfs_block_release(root, right_buf);
352
			clean_tree_block(trans, root, right_buf);
353 354
			right_buf = NULL;
			right = NULL;
355 356
			wret = del_ptr(trans, root, path, level + 1, pslot +
				       1);
357 358
			if (wret)
				ret = wret;
359
			wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
360 361 362
			if (wret)
				ret = wret;
		} else {
C
Chris Mason 已提交
363 364
			memcpy(&parent->ptrs[pslot + 1].key,
				&right->ptrs[0].key,
C
Chris Mason 已提交
365
				sizeof(struct btrfs_disk_key));
366
			mark_buffer_dirty(parent_buf);
367 368
		}
	}
369
	if (btrfs_header_nritems(&mid->header) == 1) {
370 371 372 373 374 375 376 377 378 379
		/*
		 * 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);
380
		wret = balance_node_right(trans, root, mid_buf, left_buf);
381 382 383 384
		if (wret < 0)
			ret = wret;
		BUG_ON(wret == 1);
	}
385
	if (btrfs_header_nritems(&mid->header) == 0) {
386
		/* we've managed to empty the middle node, drop it */
C
Chris Mason 已提交
387
		u64 blocknr = mid_buf->b_blocknr;
C
Chris Mason 已提交
388
		btrfs_block_release(root, mid_buf);
389
		clean_tree_block(trans, root, mid_buf);
390 391
		mid_buf = NULL;
		mid = NULL;
392
		wret = del_ptr(trans, root, path, level + 1, pslot);
393 394
		if (wret)
			ret = wret;
395
		wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
396 397
		if (wret)
			ret = wret;
398 399
	} else {
		/* update the parent key to reflect our changes */
C
Chris Mason 已提交
400
		memcpy(&parent->ptrs[pslot].key, &mid->ptrs[0].key,
C
Chris Mason 已提交
401
		       sizeof(struct btrfs_disk_key));
402
		mark_buffer_dirty(parent_buf);
403
	}
404

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

	if (right_buf)
C
Chris Mason 已提交
427
		btrfs_block_release(root, right_buf);
428
	if (left_buf)
C
Chris Mason 已提交
429
		btrfs_block_release(root, left_buf);
430 431 432
	return ret;
}

C
Chris Mason 已提交
433 434 435 436 437 438
/*
 * 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 已提交
439 440
 * be inserted, and 1 is returned.  If there are other errors during the
 * search a negative error number is returned.
C
Chris Mason 已提交
441 442 443 444
 *
 * 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 已提交
445
 */
446 447 448
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)
449
{
C
Chris Mason 已提交
450 451
	struct buffer_head *b;
	struct buffer_head *cow_buf;
C
Chris Mason 已提交
452
	struct btrfs_node *c;
453 454 455
	int slot;
	int ret;
	int level;
C
Chris Mason 已提交
456

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

C
Chris Mason 已提交
520 521 522 523 524 525
/*
 * 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 已提交
526 527 528
 *
 * 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 已提交
529
 */
530 531 532
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)
533 534
{
	int i;
C
Chris Mason 已提交
535
	int ret = 0;
C
Chris Mason 已提交
536 537
	for (i = level; i < BTRFS_MAX_LEVEL; i++) {
		struct btrfs_node *t;
538
		int tslot = path->slots[i];
539
		if (!path->nodes[i])
540
			break;
C
Chris Mason 已提交
541
		t = btrfs_buffer_node(path->nodes[i]);
C
Chris Mason 已提交
542
		memcpy(&t->ptrs[tslot].key, key, sizeof(*key));
543
		mark_buffer_dirty(path->nodes[i]);
544 545 546
		if (tslot != 0)
			break;
	}
C
Chris Mason 已提交
547
	return ret;
548 549
}

C
Chris Mason 已提交
550 551
/*
 * try to push data from one node into the next node left in the
552
 * tree.
C
Chris Mason 已提交
553 554 555
 *
 * 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 已提交
556
 */
557
static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
558 559
			  *root, struct buffer_head *dst_buf, struct
			  buffer_head *src_buf)
560
{
C
Chris Mason 已提交
561 562
	struct btrfs_node *src = btrfs_buffer_node(src_buf);
	struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
563
	int push_items = 0;
564 565
	int src_nritems;
	int dst_nritems;
C
Chris Mason 已提交
566
	int ret = 0;
567

568 569
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
570
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
571
	if (push_items <= 0) {
572
		return 1;
573
	}
574

575
	if (src_nritems < push_items)
576 577
		push_items = src_nritems;

C
Chris Mason 已提交
578 579
	memcpy(dst->ptrs + dst_nritems, src->ptrs,
		push_items * sizeof(struct btrfs_key_ptr));
580
	if (push_items < src_nritems) {
C
Chris Mason 已提交
581
		memmove(src->ptrs, src->ptrs + push_items,
C
Chris Mason 已提交
582
			(src_nritems - push_items) *
C
Chris Mason 已提交
583
			sizeof(struct btrfs_key_ptr));
584
	}
585 586
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
587 588
	mark_buffer_dirty(src_buf);
	mark_buffer_dirty(dst_buf);
589 590 591 592 593 594 595 596 597 598 599 600
	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
 */
601
static int balance_node_right(struct btrfs_trans_handle *trans, struct
C
Chris Mason 已提交
602 603
			      btrfs_root *root, struct buffer_head *dst_buf,
			      struct buffer_head *src_buf)
604
{
C
Chris Mason 已提交
605 606
	struct btrfs_node *src = btrfs_buffer_node(src_buf);
	struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
607 608 609 610 611 612
	int push_items = 0;
	int max_push;
	int src_nritems;
	int dst_nritems;
	int ret = 0;

613 614
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
615
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
616 617 618 619 620 621 622 623 624 625 626
	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 已提交
627 628 629 630
	memmove(dst->ptrs + push_items, dst->ptrs,
		dst_nritems * sizeof(struct btrfs_key_ptr));
	memcpy(dst->ptrs, src->ptrs + src_nritems - push_items,
		push_items * sizeof(struct btrfs_key_ptr));
631

632 633
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
634

635 636
	mark_buffer_dirty(src_buf);
	mark_buffer_dirty(dst_buf);
C
Chris Mason 已提交
637
	return ret;
638 639
}

C
Chris Mason 已提交
640 641 642 643
/*
 * 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 已提交
644 645
 *
 * returns zero on success or < 0 on failure.
C
Chris Mason 已提交
646
 */
647 648
static int insert_new_root(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int level)
C
Chris Mason 已提交
649
{
C
Chris Mason 已提交
650
	struct buffer_head *t;
C
Chris Mason 已提交
651 652
	struct btrfs_node *lower;
	struct btrfs_node *c;
C
Chris Mason 已提交
653
	struct btrfs_disk_key *lower_key;
C
Chris Mason 已提交
654 655 656 657

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

658
	t = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
659
	c = btrfs_buffer_node(t);
C
Chris Mason 已提交
660
	memset(c, 0, root->blocksize);
661 662
	btrfs_set_header_nritems(&c->header, 1);
	btrfs_set_header_level(&c->header, level);
C
Chris Mason 已提交
663
	btrfs_set_header_blocknr(&c->header, t->b_blocknr);
664
	btrfs_set_header_parentid(&c->header,
C
Chris Mason 已提交
665 666
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
	lower = btrfs_buffer_node(path->nodes[level-1]);
667
	if (btrfs_is_leaf(lower))
C
Chris Mason 已提交
668
		lower_key = &((struct btrfs_leaf *)lower)->items[0].key;
C
Chris Mason 已提交
669
	else
C
Chris Mason 已提交
670 671
		lower_key = &lower->ptrs[0].key;
	memcpy(&c->ptrs[0].key, lower_key, sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
672
	btrfs_set_node_blockptr(c, 0, path->nodes[level - 1]->b_blocknr);
673 674 675

	mark_buffer_dirty(t);

C
Chris Mason 已提交
676
	/* the super has an extra ref to root->node */
C
Chris Mason 已提交
677
	btrfs_block_release(root, root->node);
C
Chris Mason 已提交
678
	root->node = t;
C
Chris Mason 已提交
679
	get_bh(t);
C
Chris Mason 已提交
680 681 682 683 684
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
685 686 687
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
C
Chris Mason 已提交
688
 *
C
Chris Mason 已提交
689 690
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
C
Chris Mason 已提交
691 692
 *
 * returns zero on success and < 0 on any error
C
Chris Mason 已提交
693
 */
694 695 696
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 已提交
697
{
C
Chris Mason 已提交
698
	struct btrfs_node *lower;
C
Chris Mason 已提交
699
	int nritems;
C
Chris Mason 已提交
700 701

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
702
	lower = btrfs_buffer_node(path->nodes[level]);
703
	nritems = btrfs_header_nritems(&lower->header);
C
Chris Mason 已提交
704 705
	if (slot > nritems)
		BUG();
C
Chris Mason 已提交
706
	if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
C
Chris Mason 已提交
707 708
		BUG();
	if (slot != nritems) {
C
Chris Mason 已提交
709 710
		memmove(lower->ptrs + slot + 1, lower->ptrs + slot,
			(nritems - slot) * sizeof(struct btrfs_key_ptr));
C
Chris Mason 已提交
711
	}
C
Chris Mason 已提交
712
	memcpy(&lower->ptrs[slot].key, key, sizeof(struct btrfs_disk_key));
713
	btrfs_set_node_blockptr(lower, slot, blocknr);
714
	btrfs_set_header_nritems(&lower->header, nritems + 1);
715
	mark_buffer_dirty(path->nodes[level]);
C
Chris Mason 已提交
716 717 718
	return 0;
}

C
Chris Mason 已提交
719 720 721 722 723 724
/*
 * 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 已提交
725 726
 *
 * returns 0 on success and < 0 on failure
C
Chris Mason 已提交
727
 */
728 729
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level)
730
{
C
Chris Mason 已提交
731
	struct buffer_head *t;
C
Chris Mason 已提交
732
	struct btrfs_node *c;
C
Chris Mason 已提交
733
	struct buffer_head *split_buffer;
C
Chris Mason 已提交
734
	struct btrfs_node *split;
735
	int mid;
C
Chris Mason 已提交
736
	int ret;
C
Chris Mason 已提交
737
	int wret;
738
	u32 c_nritems;
739

C
Chris Mason 已提交
740
	t = path->nodes[level];
C
Chris Mason 已提交
741
	c = btrfs_buffer_node(t);
C
Chris Mason 已提交
742 743
	if (t == root->node) {
		/* trying to split the root, lets make a new one */
744
		ret = insert_new_root(trans, root, path, level + 1);
C
Chris Mason 已提交
745 746
		if (ret)
			return ret;
747
	}
748
	c_nritems = btrfs_header_nritems(&c->header);
749
	split_buffer = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
750
	split = btrfs_buffer_node(split_buffer);
751
	btrfs_set_header_flags(&split->header, btrfs_header_flags(&c->header));
C
Chris Mason 已提交
752
	btrfs_set_header_blocknr(&split->header, split_buffer->b_blocknr);
753
	btrfs_set_header_parentid(&split->header,
C
Chris Mason 已提交
754
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
755
	mid = (c_nritems + 1) / 2;
C
Chris Mason 已提交
756 757
	memcpy(split->ptrs, c->ptrs + mid,
		(c_nritems - mid) * sizeof(struct btrfs_key_ptr));
758 759
	btrfs_set_header_nritems(&split->header, c_nritems - mid);
	btrfs_set_header_nritems(&c->header, mid);
C
Chris Mason 已提交
760 761
	ret = 0;

762 763
	mark_buffer_dirty(t);
	mark_buffer_dirty(split_buffer);
764
	wret = insert_ptr(trans, root, path, &split->ptrs[0].key,
C
Chris Mason 已提交
765
			  split_buffer->b_blocknr, path->slots[level + 1] + 1,
C
Chris Mason 已提交
766
			  level + 1);
C
Chris Mason 已提交
767 768 769
	if (wret)
		ret = wret;

C
Chris Mason 已提交
770
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
771
		path->slots[level] -= mid;
C
Chris Mason 已提交
772
		btrfs_block_release(root, t);
C
Chris Mason 已提交
773 774 775
		path->nodes[level] = split_buffer;
		path->slots[level + 1] += 1;
	} else {
C
Chris Mason 已提交
776
		btrfs_block_release(root, split_buffer);
777
	}
C
Chris Mason 已提交
778
	return ret;
779 780
}

C
Chris Mason 已提交
781 782 783 784 785
/*
 * 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 已提交
786
static int leaf_space_used(struct btrfs_leaf *l, int start, int nr)
787 788 789 790 791 792
{
	int data_len;
	int end = start + nr - 1;

	if (!nr)
		return 0;
C
Chris Mason 已提交
793 794 795
	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;
796 797 798
	return data_len;
}

C
Chris Mason 已提交
799 800 801
/*
 * 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 已提交
802 803 804
 *
 * 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 已提交
805
 */
806 807
static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int data_size)
C
Chris Mason 已提交
808
{
C
Chris Mason 已提交
809 810
	struct buffer_head *left_buf = path->nodes[0];
	struct btrfs_leaf *left = btrfs_buffer_leaf(left_buf);
C
Chris Mason 已提交
811
	struct btrfs_leaf *right;
C
Chris Mason 已提交
812 813 814
	struct buffer_head *right_buf;
	struct buffer_head *upper;
	struct btrfs_node *upper_node;
C
Chris Mason 已提交
815 816 817 818 819
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
820
	struct btrfs_item *item;
821 822
	u32 left_nritems;
	u32 right_nritems;
C
Chris Mason 已提交
823 824 825 826 827 828

	slot = path->slots[1];
	if (!path->nodes[1]) {
		return 1;
	}
	upper = path->nodes[1];
C
Chris Mason 已提交
829 830
	upper_node = btrfs_buffer_node(upper);
	if (slot >= btrfs_header_nritems(&upper_node->header) - 1) {
C
Chris Mason 已提交
831 832
		return 1;
	}
C
Chris Mason 已提交
833 834 835
	right_buf = read_tree_block(root,
		    btrfs_node_blockptr(btrfs_buffer_node(upper), slot + 1));
	right = btrfs_buffer_leaf(right_buf);
C
Chris Mason 已提交
836
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
837
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
838
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
839 840
		return 1;
	}
C
Chris Mason 已提交
841
	/* cow and double check */
842
	btrfs_cow_block(trans, root, right_buf, upper, slot + 1, &right_buf);
C
Chris Mason 已提交
843
	right = btrfs_buffer_leaf(right_buf);
C
Chris Mason 已提交
844
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
845
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
846
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
847 848 849
		return 1;
	}

850 851
	left_nritems = btrfs_header_nritems(&left->header);
	for (i = left_nritems - 1; i >= 0; i--) {
C
Chris Mason 已提交
852 853 854
		item = left->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
855 856
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
C
Chris Mason 已提交
857 858
			break;
		push_items++;
C
Chris Mason 已提交
859
		push_space += btrfs_item_size(item) + sizeof(*item);
C
Chris Mason 已提交
860 861
	}
	if (push_items == 0) {
C
Chris Mason 已提交
862
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
863 864
		return 1;
	}
865
	right_nritems = btrfs_header_nritems(&right->header);
C
Chris Mason 已提交
866
	/* push left to right */
C
Chris Mason 已提交
867
	push_space = btrfs_item_end(left->items + left_nritems - push_items);
C
Chris Mason 已提交
868
	push_space -= leaf_data_end(root, left);
C
Chris Mason 已提交
869
	/* make room in the right data area */
C
Chris Mason 已提交
870 871 872
	memmove(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 已提交
873
	/* copy from the left data area */
C
Chris Mason 已提交
874 875
	memcpy(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) - push_space,
		btrfs_leaf_data(left) + leaf_data_end(root, left), push_space);
C
Chris Mason 已提交
876
	memmove(right->items + push_items, right->items,
C
Chris Mason 已提交
877
		right_nritems * sizeof(struct btrfs_item));
C
Chris Mason 已提交
878
	/* copy the items from left to right */
879
	memcpy(right->items, left->items + left_nritems - push_items,
C
Chris Mason 已提交
880
		push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
881 882

	/* update the item pointers */
883 884
	right_nritems += push_items;
	btrfs_set_header_nritems(&right->header, right_nritems);
C
Chris Mason 已提交
885
	push_space = BTRFS_LEAF_DATA_SIZE(root);
886
	for (i = 0; i < right_nritems; i++) {
C
Chris Mason 已提交
887 888 889
		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 已提交
890
	}
891 892
	left_nritems -= push_items;
	btrfs_set_header_nritems(&left->header, left_nritems);
C
Chris Mason 已提交
893

894 895
	mark_buffer_dirty(left_buf);
	mark_buffer_dirty(right_buf);
C
Chris Mason 已提交
896
	memcpy(&upper_node->ptrs[slot + 1].key,
C
Chris Mason 已提交
897
		&right->items[0].key, sizeof(struct btrfs_disk_key));
898
	mark_buffer_dirty(upper);
C
Chris Mason 已提交
899

C
Chris Mason 已提交
900
	/* then fixup the leaf pointer in the path */
901 902
	if (path->slots[0] >= left_nritems) {
		path->slots[0] -= left_nritems;
C
Chris Mason 已提交
903
		btrfs_block_release(root, path->nodes[0]);
C
Chris Mason 已提交
904 905 906
		path->nodes[0] = right_buf;
		path->slots[1] += 1;
	} else {
C
Chris Mason 已提交
907
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
908 909 910
	}
	return 0;
}
C
Chris Mason 已提交
911 912 913 914
/*
 * 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
 */
915 916
static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, int data_size)
917
{
C
Chris Mason 已提交
918 919 920
	struct buffer_head *right_buf = path->nodes[0];
	struct btrfs_leaf *right = btrfs_buffer_leaf(right_buf);
	struct buffer_head *t;
C
Chris Mason 已提交
921
	struct btrfs_leaf *left;
922 923 924 925 926
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
927
	struct btrfs_item *item;
928
	u32 old_left_nritems;
C
Chris Mason 已提交
929 930
	int ret = 0;
	int wret;
931 932 933 934 935 936 937 938

	slot = path->slots[1];
	if (slot == 0) {
		return 1;
	}
	if (!path->nodes[1]) {
		return 1;
	}
C
Chris Mason 已提交
939 940 941
	t = read_tree_block(root,
	    btrfs_node_blockptr(btrfs_buffer_node(path->nodes[1]), slot - 1));
	left = btrfs_buffer_leaf(t);
C
Chris Mason 已提交
942
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
943
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
944
		btrfs_block_release(root, t);
945 946
		return 1;
	}
C
Chris Mason 已提交
947 948

	/* cow and double check */
949
	btrfs_cow_block(trans, root, t, path->nodes[1], slot - 1, &t);
C
Chris Mason 已提交
950
	left = btrfs_buffer_leaf(t);
C
Chris Mason 已提交
951
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
952
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
953
		btrfs_block_release(root, t);
C
Chris Mason 已提交
954 955 956
		return 1;
	}

957
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
958 959 960
		item = right->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
961 962
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
963 964
			break;
		push_items++;
C
Chris Mason 已提交
965
		push_space += btrfs_item_size(item) + sizeof(*item);
966 967
	}
	if (push_items == 0) {
C
Chris Mason 已提交
968
		btrfs_block_release(root, t);
969 970 971
		return 1;
	}
	/* push data from right to left */
972
	memcpy(left->items + btrfs_header_nritems(&left->header),
C
Chris Mason 已提交
973
		right->items, push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
974
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
975
		     btrfs_item_offset(right->items + push_items -1);
C
Chris Mason 已提交
976 977 978
	memcpy(btrfs_leaf_data(left) + leaf_data_end(root, left) - push_space,
		btrfs_leaf_data(right) +
		btrfs_item_offset(right->items + push_items - 1),
979
		push_space);
980
	old_left_nritems = btrfs_header_nritems(&left->header);
981 982
	BUG_ON(old_left_nritems < 0);

C
Chris Mason 已提交
983
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
C
Chris Mason 已提交
984 985 986
		u32 ioff = btrfs_item_offset(left->items + i);
		btrfs_set_item_offset(left->items + i, ioff -
				     (BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
987 988
				      btrfs_item_offset(left->items +
						        old_left_nritems - 1)));
989
	}
990
	btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
991 992

	/* fixup right node */
C
Chris Mason 已提交
993
	push_space = btrfs_item_offset(right->items + push_items - 1) -
C
Chris Mason 已提交
994 995 996 997
		     leaf_data_end(root, right);
	memmove(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
		push_space, btrfs_leaf_data(right) +
		leaf_data_end(root, right), push_space);
998
	memmove(right->items, right->items + push_items,
999
		(btrfs_header_nritems(&right->header) - push_items) *
C
Chris Mason 已提交
1000
		sizeof(struct btrfs_item));
1001 1002 1003
	btrfs_set_header_nritems(&right->header,
				 btrfs_header_nritems(&right->header) -
				 push_items);
C
Chris Mason 已提交
1004
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1005

1006
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1007 1008 1009
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
1010
	}
1011

1012 1013
	mark_buffer_dirty(t);
	mark_buffer_dirty(right_buf);
1014

1015
	wret = fixup_low_keys(trans, root, path, &right->items[0].key, 1);
C
Chris Mason 已提交
1016 1017
	if (wret)
		ret = wret;
1018 1019 1020 1021

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
C
Chris Mason 已提交
1022
		btrfs_block_release(root, path->nodes[0]);
1023
		path->nodes[0] = t;
1024 1025
		path->slots[1] -= 1;
	} else {
C
Chris Mason 已提交
1026
		btrfs_block_release(root, t);
1027 1028
		path->slots[0] -= push_items;
	}
1029
	BUG_ON(path->slots[0] < 0);
C
Chris Mason 已提交
1030
	return ret;
1031 1032
}

C
Chris Mason 已提交
1033 1034 1035
/*
 * 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 已提交
1036 1037
 *
 * returns 0 if all went well and < 0 on failure.
C
Chris Mason 已提交
1038
 */
1039 1040
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int data_size)
1041
{
C
Chris Mason 已提交
1042
	struct buffer_head *l_buf;
C
Chris Mason 已提交
1043
	struct btrfs_leaf *l;
1044
	u32 nritems;
1045 1046
	int mid;
	int slot;
C
Chris Mason 已提交
1047
	struct btrfs_leaf *right;
C
Chris Mason 已提交
1048
	struct buffer_head *right_buffer;
C
Chris Mason 已提交
1049
	int space_needed = data_size + sizeof(struct btrfs_item);
1050 1051 1052 1053
	int data_copy_size;
	int rt_data_off;
	int i;
	int ret;
C
Chris Mason 已提交
1054 1055
	int wret;

C
Chris Mason 已提交
1056
	/* first try to make some room by pushing left and right */
1057
	wret = push_leaf_left(trans, root, path, data_size);
C
Chris Mason 已提交
1058 1059 1060
	if (wret < 0)
		return wret;
	if (wret) {
1061
		wret = push_leaf_right(trans, root, path, data_size);
C
Chris Mason 已提交
1062 1063 1064
		if (wret < 0)
			return wret;
	}
C
Chris Mason 已提交
1065
	l_buf = path->nodes[0];
C
Chris Mason 已提交
1066
	l = btrfs_buffer_leaf(l_buf);
C
Chris Mason 已提交
1067 1068

	/* did the pushes work? */
C
Chris Mason 已提交
1069 1070
	if (btrfs_leaf_free_space(root, l) >=
	    sizeof(struct btrfs_item) + data_size)
C
Chris Mason 已提交
1071 1072
		return 0;

C
Chris Mason 已提交
1073
	if (!path->nodes[1]) {
1074
		ret = insert_new_root(trans, root, path, 1);
C
Chris Mason 已提交
1075 1076 1077
		if (ret)
			return ret;
	}
1078
	slot = path->slots[0];
1079
	nritems = btrfs_header_nritems(&l->header);
1080
	mid = (nritems + 1)/ 2;
1081
	right_buffer = btrfs_alloc_free_block(trans, root);
1082 1083
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
C
Chris Mason 已提交
1084
	right = btrfs_buffer_leaf(right_buffer);
C
Chris Mason 已提交
1085
	memset(&right->header, 0, sizeof(right->header));
1086
	if (mid <= slot) {
C
Chris Mason 已提交
1087
		/* FIXME, just alloc a new leaf here */
1088
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
C
Chris Mason 已提交
1089
			BTRFS_LEAF_DATA_SIZE(root))
1090 1091
			BUG();
	} else {
C
Chris Mason 已提交
1092
		/* FIXME, just alloc a new leaf here */
1093
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
C
Chris Mason 已提交
1094
			BTRFS_LEAF_DATA_SIZE(root))
1095 1096
			BUG();
	}
1097
	btrfs_set_header_nritems(&right->header, nritems - mid);
C
Chris Mason 已提交
1098
	btrfs_set_header_blocknr(&right->header, right_buffer->b_blocknr);
1099 1100
	btrfs_set_header_level(&right->header, 0);
	btrfs_set_header_parentid(&right->header,
C
Chris Mason 已提交
1101
	      btrfs_header_parentid(btrfs_buffer_header(root->node)));
C
Chris Mason 已提交
1102 1103
	data_copy_size = btrfs_item_end(l->items + mid) -
			 leaf_data_end(root, l);
1104
	memcpy(right->items, l->items + mid,
C
Chris Mason 已提交
1105
	       (nritems - mid) * sizeof(struct btrfs_item));
C
Chris Mason 已提交
1106 1107 1108 1109 1110
	memcpy(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
		data_copy_size, btrfs_leaf_data(l) +
		leaf_data_end(root, l), data_copy_size);
	rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
		      btrfs_item_end(l->items + mid);
C
Chris Mason 已提交
1111

C
Chris Mason 已提交
1112
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1113
		u32 ioff = btrfs_item_offset(right->items + i);
C
Chris Mason 已提交
1114 1115
		btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
	}
C
Chris Mason 已提交
1116

1117
	btrfs_set_header_nritems(&l->header, mid);
C
Chris Mason 已提交
1118
	ret = 0;
1119
	wret = insert_ptr(trans, root, path, &right->items[0].key,
C
Chris Mason 已提交
1120
			  right_buffer->b_blocknr, path->slots[1] + 1, 1);
C
Chris Mason 已提交
1121 1122
	if (wret)
		ret = wret;
1123 1124
	mark_buffer_dirty(right_buffer);
	mark_buffer_dirty(l_buf);
1125
	BUG_ON(path->slots[0] != slot);
1126
	if (mid <= slot) {
C
Chris Mason 已提交
1127
		btrfs_block_release(root, path->nodes[0]);
1128
		path->nodes[0] = right_buffer;
1129 1130
		path->slots[0] -= mid;
		path->slots[1] += 1;
1131
	} else
C
Chris Mason 已提交
1132
		btrfs_block_release(root, right_buffer);
1133
	BUG_ON(path->slots[0] < 0);
1134 1135 1136
	return ret;
}

C
Chris Mason 已提交
1137 1138 1139 1140
/*
 * 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.
 */
1141 1142 1143
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)
1144
{
C
Chris Mason 已提交
1145
	int ret = 0;
1146
	int slot;
1147
	int slot_orig;
C
Chris Mason 已提交
1148
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1149
	struct buffer_head *leaf_buf;
1150
	u32 nritems;
1151
	unsigned int data_end;
C
Chris Mason 已提交
1152 1153 1154
	struct btrfs_disk_key disk_key;

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
1155

C
Chris Mason 已提交
1156
	/* create a root if there isn't one */
C
Chris Mason 已提交
1157
	if (!root->node)
C
Chris Mason 已提交
1158
		BUG();
1159
	ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
1160
	if (ret == 0) {
1161
		btrfs_release_path(root, path);
1162
		return -EEXIST;
C
Chris Mason 已提交
1163
	}
1164 1165
	if (ret < 0)
		goto out;
1166

1167 1168
	slot_orig = path->slots[0];
	leaf_buf = path->nodes[0];
C
Chris Mason 已提交
1169
	leaf = btrfs_buffer_leaf(leaf_buf);
C
Chris Mason 已提交
1170

1171
	nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
1172
	data_end = leaf_data_end(root, leaf);
1173

C
Chris Mason 已提交
1174
	if (btrfs_leaf_free_space(root, leaf) <
C
Chris Mason 已提交
1175
	    sizeof(struct btrfs_item) + data_size)
1176 1177
		BUG();

1178
	slot = path->slots[0];
1179
	BUG_ON(slot < 0);
1180 1181
	if (slot != nritems) {
		int i;
C
Chris Mason 已提交
1182
		unsigned int old_data = btrfs_item_end(leaf->items + slot);
1183 1184 1185 1186 1187

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
1188
		for (i = slot; i < nritems; i++) {
C
Chris Mason 已提交
1189
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1190 1191 1192
			btrfs_set_item_offset(leaf->items + i,
					      ioff - data_size);
		}
1193 1194 1195

		/* shift the items */
		memmove(leaf->items + slot + 1, leaf->items + slot,
C
Chris Mason 已提交
1196
		        (nritems - slot) * sizeof(struct btrfs_item));
1197 1198

		/* shift the data */
C
Chris Mason 已提交
1199 1200
		memmove(btrfs_leaf_data(leaf) + data_end - data_size,
			btrfs_leaf_data(leaf) +
1201 1202 1203
		        data_end, old_data - data_end);
		data_end = old_data;
	}
1204
	/* setup the item for the new data */
C
Chris Mason 已提交
1205 1206
	memcpy(&leaf->items[slot].key, &disk_key,
		sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
1207 1208
	btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
	btrfs_set_item_size(leaf->items + slot, data_size);
1209
	btrfs_set_header_nritems(&leaf->header, nritems + 1);
1210
	mark_buffer_dirty(leaf_buf);
C
Chris Mason 已提交
1211 1212

	ret = 0;
1213
	if (slot == 0)
1214
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
1215

C
Chris Mason 已提交
1216
	if (btrfs_leaf_free_space(root, leaf) < 0)
1217
		BUG();
1218
	check_leaf(root, path, 0);
1219
out:
1220 1221 1222 1223 1224 1225 1226
	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.
 */
1227 1228 1229
int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *cpu_key, void *data, u32
		      data_size)
1230 1231 1232 1233 1234 1235
{
	int ret = 0;
	struct btrfs_path path;
	u8 *ptr;

	btrfs_init_path(&path);
1236
	ret = btrfs_insert_empty_item(trans, root, &path, cpu_key, data_size);
1237
	if (!ret) {
C
Chris Mason 已提交
1238 1239
		ptr = btrfs_item_ptr(btrfs_buffer_leaf(path.nodes[0]),
				     path.slots[0], u8);
1240
		memcpy(ptr, data, data_size);
1241
		mark_buffer_dirty(path.nodes[0]);
1242
	}
C
Chris Mason 已提交
1243
	btrfs_release_path(root, &path);
C
Chris Mason 已提交
1244
	return ret;
1245 1246
}

C
Chris Mason 已提交
1247
/*
C
Chris Mason 已提交
1248
 * delete the pointer from a given node.
C
Chris Mason 已提交
1249 1250 1251 1252 1253
 *
 * 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.
 */
1254 1255
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot)
1256
{
C
Chris Mason 已提交
1257
	struct btrfs_node *node;
C
Chris Mason 已提交
1258
	struct buffer_head *parent = path->nodes[level];
1259
	u32 nritems;
C
Chris Mason 已提交
1260
	int ret = 0;
1261
	int wret;
1262

C
Chris Mason 已提交
1263
	node = btrfs_buffer_node(parent);
1264
	nritems = btrfs_header_nritems(&node->header);
1265
	if (slot != nritems -1) {
C
Chris Mason 已提交
1266 1267
		memmove(node->ptrs + slot, node->ptrs + slot + 1,
			sizeof(struct btrfs_key_ptr) * (nritems - slot - 1));
1268
	}
1269 1270 1271
	nritems--;
	btrfs_set_header_nritems(&node->header, nritems);
	if (nritems == 0 && parent == root->node) {
C
Chris Mason 已提交
1272 1273
		struct btrfs_header *header = btrfs_buffer_header(root->node);
		BUG_ON(btrfs_header_level(header) != 1);
1274
		/* just turn the root into a leaf and break */
C
Chris Mason 已提交
1275
		btrfs_set_header_level(header, 0);
1276
	} else if (slot == 0) {
1277
		wret = fixup_low_keys(trans, root, path, &node->ptrs[0].key,
C
Chris Mason 已提交
1278
				      level + 1);
C
Chris Mason 已提交
1279 1280
		if (wret)
			ret = wret;
1281
	}
1282
	mark_buffer_dirty(parent);
C
Chris Mason 已提交
1283
	return ret;
1284 1285
}

C
Chris Mason 已提交
1286 1287 1288 1289
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
1290 1291
int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path)
1292 1293
{
	int slot;
C
Chris Mason 已提交
1294
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
1295
	struct buffer_head *leaf_buf;
1296 1297
	int doff;
	int dsize;
C
Chris Mason 已提交
1298 1299
	int ret = 0;
	int wret;
1300
	u32 nritems;
1301

1302
	leaf_buf = path->nodes[0];
C
Chris Mason 已提交
1303
	leaf = btrfs_buffer_leaf(leaf_buf);
1304
	slot = path->slots[0];
C
Chris Mason 已提交
1305 1306
	doff = btrfs_item_offset(leaf->items + slot);
	dsize = btrfs_item_size(leaf->items + slot);
1307
	nritems = btrfs_header_nritems(&leaf->header);
1308

1309
	if (slot != nritems - 1) {
1310
		int i;
C
Chris Mason 已提交
1311 1312 1313
		int data_end = leaf_data_end(root, leaf);
		memmove(btrfs_leaf_data(leaf) + data_end + dsize,
			btrfs_leaf_data(leaf) + data_end,
1314
			doff - data_end);
C
Chris Mason 已提交
1315
		for (i = slot + 1; i < nritems; i++) {
C
Chris Mason 已提交
1316
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1317 1318
			btrfs_set_item_offset(leaf->items + i, ioff + dsize);
		}
1319
		memmove(leaf->items + slot, leaf->items + slot + 1,
C
Chris Mason 已提交
1320
			sizeof(struct btrfs_item) *
1321
			(nritems - slot - 1));
1322
	}
1323 1324
	btrfs_set_header_nritems(&leaf->header, nritems - 1);
	nritems--;
C
Chris Mason 已提交
1325
	/* delete the leaf if we've emptied it */
1326
	if (nritems == 0) {
1327
		if (leaf_buf == root->node) {
1328
			btrfs_set_header_level(&leaf->header, 0);
1329
		} else {
1330 1331
			clean_tree_block(trans, root, leaf_buf);
			wret = del_ptr(trans, root, path, 1, path->slots[1]);
C
Chris Mason 已提交
1332 1333
			if (wret)
				ret = wret;
1334
			wret = btrfs_free_extent(trans, root,
C
Chris Mason 已提交
1335
						 leaf_buf->b_blocknr, 1, 1);
C
Chris Mason 已提交
1336 1337
			if (wret)
				ret = wret;
1338
		}
1339
	} else {
1340
		int used = leaf_space_used(leaf, 0, nritems);
C
Chris Mason 已提交
1341
		if (slot == 0) {
1342 1343
			wret = fixup_low_keys(trans, root, path,
					      &leaf->items[0].key, 1);
C
Chris Mason 已提交
1344 1345 1346 1347
			if (wret)
				ret = wret;
		}

C
Chris Mason 已提交
1348
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
1349
		if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
1350 1351 1352 1353
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
1354
			slot = path->slots[1];
C
Chris Mason 已提交
1355
			get_bh(leaf_buf);
1356
			wret = push_leaf_left(trans, root, path, 1);
C
Chris Mason 已提交
1357 1358
			if (wret < 0)
				ret = wret;
1359
			if (path->nodes[0] == leaf_buf &&
1360
			    btrfs_header_nritems(&leaf->header)) {
1361
				wret = push_leaf_right(trans, root, path, 1);
C
Chris Mason 已提交
1362 1363 1364
				if (wret < 0)
					ret = wret;
			}
1365
			if (btrfs_header_nritems(&leaf->header) == 0) {
C
Chris Mason 已提交
1366
				u64 blocknr = leaf_buf->b_blocknr;
1367 1368
				clean_tree_block(trans, root, leaf_buf);
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
1369 1370
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1371
				btrfs_block_release(root, leaf_buf);
1372 1373
				wret = btrfs_free_extent(trans, root, blocknr,
							 1, 1);
C
Chris Mason 已提交
1374 1375
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1376
			} else {
1377
				mark_buffer_dirty(leaf_buf);
C
Chris Mason 已提交
1378
				btrfs_block_release(root, leaf_buf);
1379
			}
1380 1381
		} else {
			mark_buffer_dirty(leaf_buf);
1382 1383
		}
	}
C
Chris Mason 已提交
1384
	return ret;
1385 1386
}

C
Chris Mason 已提交
1387 1388
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
1389 1390
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
1391
 */
C
Chris Mason 已提交
1392
int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
1393 1394 1395 1396
{
	int slot;
	int level = 1;
	u64 blocknr;
C
Chris Mason 已提交
1397 1398 1399
	struct buffer_head *c;
	struct btrfs_node *c_node;
	struct buffer_head *next = NULL;
1400

C
Chris Mason 已提交
1401
	while(level < BTRFS_MAX_LEVEL) {
1402
		if (!path->nodes[level])
C
Chris Mason 已提交
1403
			return 1;
1404 1405
		slot = path->slots[level] + 1;
		c = path->nodes[level];
C
Chris Mason 已提交
1406 1407
		c_node = btrfs_buffer_node(c);
		if (slot >= btrfs_header_nritems(&c_node->header)) {
1408 1409 1410
			level++;
			continue;
		}
C
Chris Mason 已提交
1411
		blocknr = btrfs_node_blockptr(c_node, slot);
C
Chris Mason 已提交
1412
		if (next)
C
Chris Mason 已提交
1413
			btrfs_block_release(root, next);
1414 1415 1416 1417 1418 1419 1420
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
C
Chris Mason 已提交
1421
		btrfs_block_release(root, c);
1422 1423 1424 1425
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
1426
		next = read_tree_block(root,
C
Chris Mason 已提交
1427
		       btrfs_node_blockptr(btrfs_buffer_node(next), 0));
1428 1429 1430
	}
	return 0;
}