ctree.c 40.0 KB
Newer Older
1 2 3
#include <stdio.h>
#include <stdlib.h>
#include "kerncompat.h"
4 5 6
#include "radix-tree.h"
#include "ctree.h"
#include "disk-io.h"
C
Chris Mason 已提交
7
#include "print-tree.h"
8

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

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

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

38 39 40 41
static int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_buffer *buf, struct btrfs_buffer
			   *parent, int parent_slot, struct btrfs_buffer
			   **cow_ret)
C
Chris Mason 已提交
42
{
C
Chris Mason 已提交
43
	struct btrfs_buffer *cow;
C
Chris Mason 已提交
44 45 46 47 48

	if (!list_empty(&buf->dirty)) {
		*cow_ret = buf;
		return 0;
	}
49
	cow = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
50
	memcpy(&cow->node, &buf->node, root->blocksize);
51
	btrfs_set_header_blocknr(&cow->node.header, cow->blocknr);
C
Chris Mason 已提交
52
	*cow_ret = cow;
53
	btrfs_inc_ref(trans, root, buf);
C
Chris Mason 已提交
54 55 56
	if (buf == root->node) {
		root->node = cow;
		cow->count++;
57
		if (buf != root->commit_root)
58
			btrfs_free_extent(trans, root, buf->blocknr, 1, 1);
C
Chris Mason 已提交
59
		btrfs_block_release(root, buf);
C
Chris Mason 已提交
60
	} else {
61 62
		btrfs_set_node_blockptr(&parent->node, parent_slot,
					cow->blocknr);
C
Chris Mason 已提交
63
		BUG_ON(list_empty(&parent->dirty));
64
		btrfs_free_extent(trans, root, buf->blocknr, 1, 1);
C
Chris Mason 已提交
65
	}
C
Chris Mason 已提交
66
	btrfs_block_release(root, buf);
C
Chris Mason 已提交
67 68 69
	return 0;
}

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

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

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

	btrfs_disk_key_to_cpu(&k1, disk);

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

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

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

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

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

	if (nritems == 0)
		return 0;

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

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

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

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

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

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

	if (level == 0)
		return 0;

	mid_buf = path->nodes[level];
	mid = &mid_buf->node;
291
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);
292

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

	if (!parent_buf) {
C
Chris Mason 已提交
298
		struct btrfs_buffer *child;
299 300
		u64 blocknr = mid_buf->blocknr;

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

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

	left_buf = read_node_slot(root, parent_buf, pslot - 1);
	right_buf = read_node_slot(root, parent_buf, pslot + 1);
324 325

	/* first, try to make some room in the middle buffer */
326
	if (left_buf) {
327 328
		btrfs_cow_block(trans, root, left_buf, parent_buf, pslot - 1,
				&left_buf);
329
		left = &left_buf->node;
330
		orig_slot += btrfs_header_nritems(&left->header);
331
		wret = push_node_left(trans, root, left_buf, mid_buf);
332 333
		if (wret < 0)
			ret = wret;
334
	}
335 336 337 338

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

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

	if (right_buf)
C
Chris Mason 已提交
423
		btrfs_block_release(root, right_buf);
424
	if (left_buf)
C
Chris Mason 已提交
425
		btrfs_block_release(root, left_buf);
426 427 428
	return ret;
}

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

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

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

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

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

571
	if (src_nritems < push_items)
572 573
		push_items = src_nritems;

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

609 610
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
C
Chris Mason 已提交
611
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
612 613 614 615 616 617 618 619 620 621 622
	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 已提交
623 624 625 626
	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));
627

628 629
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
630

C
Chris Mason 已提交
631 632
	BUG_ON(list_empty(&src_buf->dirty));
	BUG_ON(list_empty(&dst_buf->dirty));
C
Chris Mason 已提交
633
	return ret;
634 635
}

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

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

654
	t = btrfs_alloc_free_block(trans, root);
C
Chris Mason 已提交
655
	c = &t->node;
C
Chris Mason 已提交
656
	memset(c, 0, root->blocksize);
657 658 659 660 661
	btrfs_set_header_nritems(&c->header, 1);
	btrfs_set_header_level(&c->header, level);
	btrfs_set_header_blocknr(&c->header, t->blocknr);
	btrfs_set_header_parentid(&c->header,
	                       btrfs_header_parentid(&root->node->node.header));
C
Chris Mason 已提交
662
	lower = &path->nodes[level-1]->node;
663
	if (btrfs_is_leaf(lower))
C
Chris Mason 已提交
664
		lower_key = &((struct btrfs_leaf *)lower)->items[0].key;
C
Chris Mason 已提交
665
	else
C
Chris Mason 已提交
666 667
		lower_key = &lower->ptrs[0].key;
	memcpy(&c->ptrs[0].key, lower_key, sizeof(struct btrfs_disk_key));
668
	btrfs_set_node_blockptr(c, 0, path->nodes[level - 1]->blocknr);
C
Chris Mason 已提交
669
	/* the super has an extra ref to root->node */
C
Chris Mason 已提交
670
	btrfs_block_release(root, root->node);
C
Chris Mason 已提交
671 672 673 674 675 676 677
	root->node = t;
	t->count++;
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

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

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
695
	lower = &path->nodes[level]->node;
696
	nritems = btrfs_header_nritems(&lower->header);
C
Chris Mason 已提交
697 698
	if (slot > nritems)
		BUG();
C
Chris Mason 已提交
699
	if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
C
Chris Mason 已提交
700 701
		BUG();
	if (slot != nritems) {
C
Chris Mason 已提交
702 703
		memmove(lower->ptrs + slot + 1, lower->ptrs + slot,
			(nritems - slot) * sizeof(struct btrfs_key_ptr));
C
Chris Mason 已提交
704
	}
C
Chris Mason 已提交
705
	memcpy(&lower->ptrs[slot].key, key, sizeof(struct btrfs_disk_key));
706
	btrfs_set_node_blockptr(lower, slot, blocknr);
707
	btrfs_set_header_nritems(&lower->header, nritems + 1);
C
Chris Mason 已提交
708
	BUG_ON(list_empty(&path->nodes[level]->dirty));
C
Chris Mason 已提交
709 710 711
	return 0;
}

C
Chris Mason 已提交
712 713 714 715 716 717
/*
 * 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 已提交
718 719
 *
 * returns 0 on success and < 0 on failure
C
Chris Mason 已提交
720
 */
721 722
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level)
723
{
C
Chris Mason 已提交
724 725 726 727
	struct btrfs_buffer *t;
	struct btrfs_node *c;
	struct btrfs_buffer *split_buffer;
	struct btrfs_node *split;
728
	int mid;
C
Chris Mason 已提交
729
	int ret;
C
Chris Mason 已提交
730
	int wret;
731
	u32 c_nritems;
732

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

C
Chris Mason 已提交
755
	BUG_ON(list_empty(&t->dirty));
756
	wret = insert_ptr(trans, root, path, &split->ptrs[0].key,
C
Chris Mason 已提交
757 758
			  split_buffer->blocknr, path->slots[level + 1] + 1,
			  level + 1);
C
Chris Mason 已提交
759 760 761
	if (wret)
		ret = wret;

C
Chris Mason 已提交
762
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
763
		path->slots[level] -= mid;
C
Chris Mason 已提交
764
		btrfs_block_release(root, t);
C
Chris Mason 已提交
765 766 767
		path->nodes[level] = split_buffer;
		path->slots[level + 1] += 1;
	} else {
C
Chris Mason 已提交
768
		btrfs_block_release(root, split_buffer);
769
	}
C
Chris Mason 已提交
770
	return ret;
771 772
}

C
Chris Mason 已提交
773 774 775 776 777
/*
 * 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 已提交
778
static int leaf_space_used(struct btrfs_leaf *l, int start, int nr)
779 780 781 782 783 784
{
	int data_len;
	int end = start + nr - 1;

	if (!nr)
		return 0;
C
Chris Mason 已提交
785 786 787
	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;
788 789 790
	return data_len;
}

C
Chris Mason 已提交
791 792 793
/*
 * 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 已提交
794 795 796
 *
 * 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 已提交
797
 */
798 799
static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int data_size)
C
Chris Mason 已提交
800
{
C
Chris Mason 已提交
801 802 803 804 805
	struct btrfs_buffer *left_buf = path->nodes[0];
	struct btrfs_leaf *left = &left_buf->leaf;
	struct btrfs_leaf *right;
	struct btrfs_buffer *right_buf;
	struct btrfs_buffer *upper;
C
Chris Mason 已提交
806 807 808 809 810
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
811
	struct btrfs_item *item;
812 813
	u32 left_nritems;
	u32 right_nritems;
C
Chris Mason 已提交
814 815 816 817 818 819

	slot = path->slots[1];
	if (!path->nodes[1]) {
		return 1;
	}
	upper = path->nodes[1];
820
	if (slot >= btrfs_header_nritems(&upper->node.header) - 1) {
C
Chris Mason 已提交
821 822
		return 1;
	}
823 824
	right_buf = read_tree_block(root, btrfs_node_blockptr(&upper->node,
							      slot + 1));
C
Chris Mason 已提交
825
	right = &right_buf->leaf;
C
Chris Mason 已提交
826
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
827
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
828
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
829 830
		return 1;
	}
C
Chris Mason 已提交
831
	/* cow and double check */
832
	btrfs_cow_block(trans, root, right_buf, upper, slot + 1, &right_buf);
C
Chris Mason 已提交
833
	right = &right_buf->leaf;
C
Chris Mason 已提交
834
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
835
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
836
		btrfs_block_release(root, right_buf);
C
Chris Mason 已提交
837 838 839
		return 1;
	}

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

	/* update the item pointers */
873 874
	right_nritems += push_items;
	btrfs_set_header_nritems(&right->header, right_nritems);
C
Chris Mason 已提交
875
	push_space = BTRFS_LEAF_DATA_SIZE(root);
876
	for (i = 0; i < right_nritems; i++) {
C
Chris Mason 已提交
877 878 879
		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 已提交
880
	}
881 882
	left_nritems -= push_items;
	btrfs_set_header_nritems(&left->header, left_nritems);
C
Chris Mason 已提交
883

C
Chris Mason 已提交
884 885
	BUG_ON(list_empty(&left_buf->dirty));
	BUG_ON(list_empty(&right_buf->dirty));
C
Chris Mason 已提交
886
	memcpy(&upper->node.ptrs[slot + 1].key,
C
Chris Mason 已提交
887
		&right->items[0].key, sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
888 889
	BUG_ON(list_empty(&upper->dirty));

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

	slot = path->slots[1];
	if (slot == 0) {
		return 1;
	}
	if (!path->nodes[1]) {
		return 1;
	}
929 930
	t = read_tree_block(root, btrfs_node_blockptr(&path->nodes[1]->node,
						      slot - 1));
931
	left = &t->leaf;
C
Chris Mason 已提交
932
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
933
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
934
		btrfs_block_release(root, t);
935 936
		return 1;
	}
C
Chris Mason 已提交
937 938

	/* cow and double check */
939
	btrfs_cow_block(trans, root, t, path->nodes[1], slot - 1, &t);
C
Chris Mason 已提交
940
	left = &t->leaf;
C
Chris Mason 已提交
941
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
942
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
943
		btrfs_block_release(root, t);
C
Chris Mason 已提交
944 945 946
		return 1;
	}

947
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
948 949 950
		item = right->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
951 952
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
953 954
			break;
		push_items++;
C
Chris Mason 已提交
955
		push_space += btrfs_item_size(item) + sizeof(*item);
956 957
	}
	if (push_items == 0) {
C
Chris Mason 已提交
958
		btrfs_block_release(root, t);
959 960 961
		return 1;
	}
	/* push data from right to left */
962
	memcpy(left->items + btrfs_header_nritems(&left->header),
C
Chris Mason 已提交
963
		right->items, push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
964
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
965
		     btrfs_item_offset(right->items + push_items -1);
C
Chris Mason 已提交
966 967 968
	memcpy(btrfs_leaf_data(left) + leaf_data_end(root, left) - push_space,
		btrfs_leaf_data(right) +
		btrfs_item_offset(right->items + push_items - 1),
969
		push_space);
970
	old_left_nritems = btrfs_header_nritems(&left->header);
971 972
	BUG_ON(old_left_nritems < 0);

C
Chris Mason 已提交
973
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
C
Chris Mason 已提交
974 975 976
		u32 ioff = btrfs_item_offset(left->items + i);
		btrfs_set_item_offset(left->items + i, ioff -
				     (BTRFS_LEAF_DATA_SIZE(root) -
C
Chris Mason 已提交
977 978
				      btrfs_item_offset(left->items +
						        old_left_nritems - 1)));
979
	}
980
	btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
981 982

	/* fixup right node */
C
Chris Mason 已提交
983
	push_space = btrfs_item_offset(right->items + push_items - 1) -
C
Chris Mason 已提交
984 985 986 987
		     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);
988
	memmove(right->items, right->items + push_items,
989
		(btrfs_header_nritems(&right->header) - push_items) *
C
Chris Mason 已提交
990
		sizeof(struct btrfs_item));
991 992 993
	btrfs_set_header_nritems(&right->header,
				 btrfs_header_nritems(&right->header) -
				 push_items);
C
Chris Mason 已提交
994
	push_space = BTRFS_LEAF_DATA_SIZE(root);
995

996
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
997 998 999
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
1000
	}
1001

C
Chris Mason 已提交
1002 1003
	BUG_ON(list_empty(&t->dirty));
	BUG_ON(list_empty(&right_buf->dirty));
1004

1005
	wret = fixup_low_keys(trans, root, path, &right->items[0].key, 1);
C
Chris Mason 已提交
1006 1007
	if (wret)
		ret = wret;
1008 1009 1010 1011

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
C
Chris Mason 已提交
1012
		btrfs_block_release(root, path->nodes[0]);
1013
		path->nodes[0] = t;
1014 1015
		path->slots[1] -= 1;
	} else {
C
Chris Mason 已提交
1016
		btrfs_block_release(root, t);
1017 1018
		path->slots[0] -= push_items;
	}
1019
	BUG_ON(path->slots[0] < 0);
C
Chris Mason 已提交
1020
	return ret;
1021 1022
}

C
Chris Mason 已提交
1023 1024 1025
/*
 * 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 已提交
1026 1027
 *
 * returns 0 if all went well and < 0 on failure.
C
Chris Mason 已提交
1028
 */
1029 1030
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int data_size)
1031
{
C
Chris Mason 已提交
1032 1033
	struct btrfs_buffer *l_buf;
	struct btrfs_leaf *l;
1034
	u32 nritems;
1035 1036
	int mid;
	int slot;
C
Chris Mason 已提交
1037 1038
	struct btrfs_leaf *right;
	struct btrfs_buffer *right_buffer;
C
Chris Mason 已提交
1039
	int space_needed = data_size + sizeof(struct btrfs_item);
1040 1041 1042 1043
	int data_copy_size;
	int rt_data_off;
	int i;
	int ret;
C
Chris Mason 已提交
1044 1045
	int wret;

1046
	wret = push_leaf_left(trans, root, path, data_size);
C
Chris Mason 已提交
1047 1048 1049
	if (wret < 0)
		return wret;
	if (wret) {
1050
		wret = push_leaf_right(trans, root, path, data_size);
C
Chris Mason 已提交
1051 1052 1053
		if (wret < 0)
			return wret;
	}
C
Chris Mason 已提交
1054 1055 1056 1057
	l_buf = path->nodes[0];
	l = &l_buf->leaf;

	/* did the pushes work? */
C
Chris Mason 已提交
1058 1059
	if (btrfs_leaf_free_space(root, l) >=
	    sizeof(struct btrfs_item) + data_size)
C
Chris Mason 已提交
1060 1061
		return 0;

C
Chris Mason 已提交
1062
	if (!path->nodes[1]) {
1063
		ret = insert_new_root(trans, root, path, 1);
C
Chris Mason 已提交
1064 1065 1066
		if (ret)
			return ret;
	}
1067
	slot = path->slots[0];
1068
	nritems = btrfs_header_nritems(&l->header);
1069
	mid = (nritems + 1)/ 2;
1070
	right_buffer = btrfs_alloc_free_block(trans, root);
1071 1072 1073
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
	right = &right_buffer->leaf;
C
Chris Mason 已提交
1074
	memset(&right->header, 0, sizeof(right->header));
1075
	if (mid <= slot) {
C
Chris Mason 已提交
1076
		/* FIXME, just alloc a new leaf here */
1077
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
C
Chris Mason 已提交
1078
			BTRFS_LEAF_DATA_SIZE(root))
1079 1080
			BUG();
	} else {
C
Chris Mason 已提交
1081
		/* FIXME, just alloc a new leaf here */
1082
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
C
Chris Mason 已提交
1083
			BTRFS_LEAF_DATA_SIZE(root))
1084 1085
			BUG();
	}
1086 1087 1088 1089 1090
	btrfs_set_header_nritems(&right->header, nritems - mid);
	btrfs_set_header_blocknr(&right->header, right_buffer->blocknr);
	btrfs_set_header_level(&right->header, 0);
	btrfs_set_header_parentid(&right->header,
	                       btrfs_header_parentid(&root->node->node.header));
C
Chris Mason 已提交
1091 1092
	data_copy_size = btrfs_item_end(l->items + mid) -
			 leaf_data_end(root, l);
1093
	memcpy(right->items, l->items + mid,
C
Chris Mason 已提交
1094
	       (nritems - mid) * sizeof(struct btrfs_item));
C
Chris Mason 已提交
1095 1096 1097 1098 1099
	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 已提交
1100

C
Chris Mason 已提交
1101
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
1102
		u32 ioff = btrfs_item_offset(right->items + i);
C
Chris Mason 已提交
1103 1104
		btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
	}
C
Chris Mason 已提交
1105

1106
	btrfs_set_header_nritems(&l->header, mid);
C
Chris Mason 已提交
1107
	ret = 0;
1108
	wret = insert_ptr(trans, root, path, &right->items[0].key,
C
Chris Mason 已提交
1109
			  right_buffer->blocknr, path->slots[1] + 1, 1);
C
Chris Mason 已提交
1110 1111
	if (wret)
		ret = wret;
C
Chris Mason 已提交
1112 1113
	BUG_ON(list_empty(&right_buffer->dirty));
	BUG_ON(list_empty(&l_buf->dirty));
1114
	BUG_ON(path->slots[0] != slot);
1115
	if (mid <= slot) {
C
Chris Mason 已提交
1116
		btrfs_block_release(root, path->nodes[0]);
1117
		path->nodes[0] = right_buffer;
1118 1119
		path->slots[0] -= mid;
		path->slots[1] += 1;
1120
	} else
C
Chris Mason 已提交
1121
		btrfs_block_release(root, right_buffer);
1122
	BUG_ON(path->slots[0] < 0);
1123 1124 1125
	return ret;
}

C
Chris Mason 已提交
1126 1127 1128 1129
/*
 * 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.
 */
1130 1131 1132
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)
1133
{
C
Chris Mason 已提交
1134
	int ret = 0;
1135
	int slot;
1136
	int slot_orig;
C
Chris Mason 已提交
1137 1138
	struct btrfs_leaf *leaf;
	struct btrfs_buffer *leaf_buf;
1139
	u32 nritems;
1140
	unsigned int data_end;
C
Chris Mason 已提交
1141 1142 1143
	struct btrfs_disk_key disk_key;

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
1144

C
Chris Mason 已提交
1145
	/* create a root if there isn't one */
C
Chris Mason 已提交
1146
	if (!root->node)
C
Chris Mason 已提交
1147
		BUG();
1148
	ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
1149
	if (ret == 0) {
1150
		btrfs_release_path(root, path);
1151
		return -EEXIST;
C
Chris Mason 已提交
1152
	}
1153 1154
	if (ret < 0)
		goto out;
1155

1156 1157
	slot_orig = path->slots[0];
	leaf_buf = path->nodes[0];
1158
	leaf = &leaf_buf->leaf;
C
Chris Mason 已提交
1159

1160
	nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
1161
	data_end = leaf_data_end(root, leaf);
1162

C
Chris Mason 已提交
1163
	if (btrfs_leaf_free_space(root, leaf) <
C
Chris Mason 已提交
1164
	    sizeof(struct btrfs_item) + data_size)
1165 1166
		BUG();

1167
	slot = path->slots[0];
1168
	BUG_ON(slot < 0);
1169 1170
	if (slot != nritems) {
		int i;
C
Chris Mason 已提交
1171
		unsigned int old_data = btrfs_item_end(leaf->items + slot);
1172 1173 1174 1175 1176

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
1177
		for (i = slot; i < nritems; i++) {
C
Chris Mason 已提交
1178
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1179 1180 1181
			btrfs_set_item_offset(leaf->items + i,
					      ioff - data_size);
		}
1182 1183 1184

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

		/* shift the data */
C
Chris Mason 已提交
1188 1189
		memmove(btrfs_leaf_data(leaf) + data_end - data_size,
			btrfs_leaf_data(leaf) +
1190 1191 1192
		        data_end, old_data - data_end);
		data_end = old_data;
	}
1193
	/* setup the item for the new data */
C
Chris Mason 已提交
1194 1195
	memcpy(&leaf->items[slot].key, &disk_key,
		sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
1196 1197
	btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
	btrfs_set_item_size(leaf->items + slot, data_size);
1198
	btrfs_set_header_nritems(&leaf->header, nritems + 1);
C
Chris Mason 已提交
1199 1200

	ret = 0;
1201
	if (slot == 0)
1202
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
1203

C
Chris Mason 已提交
1204
	BUG_ON(list_empty(&leaf_buf->dirty));
C
Chris Mason 已提交
1205
	if (btrfs_leaf_free_space(root, leaf) < 0)
1206
		BUG();
1207
	check_leaf(root, path, 0);
1208
out:
1209 1210 1211 1212 1213 1214 1215
	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.
 */
1216 1217 1218
int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *cpu_key, void *data, u32
		      data_size)
1219 1220 1221 1222 1223 1224
{
	int ret = 0;
	struct btrfs_path path;
	u8 *ptr;

	btrfs_init_path(&path);
1225
	ret = btrfs_insert_empty_item(trans, root, &path, cpu_key, data_size);
1226 1227 1228 1229
	if (!ret) {
		ptr = btrfs_item_ptr(&path.nodes[0]->leaf, path.slots[0], u8);
		memcpy(ptr, data, data_size);
	}
C
Chris Mason 已提交
1230
	btrfs_release_path(root, &path);
C
Chris Mason 已提交
1231
	return ret;
1232 1233
}

C
Chris Mason 已提交
1234
/*
C
Chris Mason 已提交
1235
 * delete the pointer from a given node.
C
Chris Mason 已提交
1236 1237 1238 1239 1240
 *
 * 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.
 */
1241 1242
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot)
1243
{
C
Chris Mason 已提交
1244 1245
	struct btrfs_node *node;
	struct btrfs_buffer *parent = path->nodes[level];
1246
	u32 nritems;
C
Chris Mason 已提交
1247
	int ret = 0;
1248
	int wret;
1249

1250
	node = &parent->node;
1251
	nritems = btrfs_header_nritems(&node->header);
1252
	if (slot != nritems -1) {
C
Chris Mason 已提交
1253 1254
		memmove(node->ptrs + slot, node->ptrs + slot + 1,
			sizeof(struct btrfs_key_ptr) * (nritems - slot - 1));
1255
	}
1256 1257 1258 1259
	nritems--;
	btrfs_set_header_nritems(&node->header, nritems);
	if (nritems == 0 && parent == root->node) {
		BUG_ON(btrfs_header_level(&root->node->node.header) != 1);
1260
		/* just turn the root into a leaf and break */
1261
		btrfs_set_header_level(&root->node->node.header, 0);
1262
	} else if (slot == 0) {
1263
		wret = fixup_low_keys(trans, root, path, &node->ptrs[0].key,
C
Chris Mason 已提交
1264
				      level + 1);
C
Chris Mason 已提交
1265 1266
		if (wret)
			ret = wret;
1267
	}
C
Chris Mason 已提交
1268
	BUG_ON(list_empty(&parent->dirty));
C
Chris Mason 已提交
1269
	return ret;
1270 1271
}

C
Chris Mason 已提交
1272 1273 1274 1275
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
1276 1277
int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path)
1278 1279
{
	int slot;
C
Chris Mason 已提交
1280 1281
	struct btrfs_leaf *leaf;
	struct btrfs_buffer *leaf_buf;
1282 1283
	int doff;
	int dsize;
C
Chris Mason 已提交
1284 1285
	int ret = 0;
	int wret;
1286
	u32 nritems;
1287

1288 1289
	leaf_buf = path->nodes[0];
	leaf = &leaf_buf->leaf;
1290
	slot = path->slots[0];
C
Chris Mason 已提交
1291 1292
	doff = btrfs_item_offset(leaf->items + slot);
	dsize = btrfs_item_size(leaf->items + slot);
1293
	nritems = btrfs_header_nritems(&leaf->header);
1294

1295
	if (slot != nritems - 1) {
1296
		int i;
C
Chris Mason 已提交
1297 1298 1299
		int data_end = leaf_data_end(root, leaf);
		memmove(btrfs_leaf_data(leaf) + data_end + dsize,
			btrfs_leaf_data(leaf) + data_end,
1300
			doff - data_end);
C
Chris Mason 已提交
1301
		for (i = slot + 1; i < nritems; i++) {
C
Chris Mason 已提交
1302
			u32 ioff = btrfs_item_offset(leaf->items + i);
C
Chris Mason 已提交
1303 1304
			btrfs_set_item_offset(leaf->items + i, ioff + dsize);
		}
1305
		memmove(leaf->items + slot, leaf->items + slot + 1,
C
Chris Mason 已提交
1306
			sizeof(struct btrfs_item) *
1307
			(nritems - slot - 1));
1308
	}
1309 1310
	btrfs_set_header_nritems(&leaf->header, nritems - 1);
	nritems--;
C
Chris Mason 已提交
1311
	/* delete the leaf if we've emptied it */
1312
	if (nritems == 0) {
1313
		if (leaf_buf == root->node) {
1314
			btrfs_set_header_level(&leaf->header, 0);
C
Chris Mason 已提交
1315
			BUG_ON(list_empty(&leaf_buf->dirty));
1316
		} else {
1317 1318
			clean_tree_block(trans, root, leaf_buf);
			wret = del_ptr(trans, root, path, 1, path->slots[1]);
C
Chris Mason 已提交
1319 1320
			if (wret)
				ret = wret;
1321 1322
			wret = btrfs_free_extent(trans, root,
						 leaf_buf->blocknr, 1, 1);
C
Chris Mason 已提交
1323 1324
			if (wret)
				ret = wret;
1325
		}
1326
	} else {
1327
		int used = leaf_space_used(leaf, 0, nritems);
C
Chris Mason 已提交
1328
		if (slot == 0) {
1329 1330
			wret = fixup_low_keys(trans, root, path,
					      &leaf->items[0].key, 1);
C
Chris Mason 已提交
1331 1332 1333
			if (wret)
				ret = wret;
		}
C
Chris Mason 已提交
1334
		BUG_ON(list_empty(&leaf_buf->dirty));
C
Chris Mason 已提交
1335

C
Chris Mason 已提交
1336
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
1337
		if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
1338 1339 1340 1341
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
1342
			slot = path->slots[1];
1343
			leaf_buf->count++;
1344
			wret = push_leaf_left(trans, root, path, 1);
C
Chris Mason 已提交
1345 1346
			if (wret < 0)
				ret = wret;
1347
			if (path->nodes[0] == leaf_buf &&
1348
			    btrfs_header_nritems(&leaf->header)) {
1349
				wret = push_leaf_right(trans, root, path, 1);
C
Chris Mason 已提交
1350 1351 1352
				if (wret < 0)
					ret = wret;
			}
1353
			if (btrfs_header_nritems(&leaf->header) == 0) {
C
Chris Mason 已提交
1354
				u64 blocknr = leaf_buf->blocknr;
1355 1356
				clean_tree_block(trans, root, leaf_buf);
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
1357 1358
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1359
				btrfs_block_release(root, leaf_buf);
1360 1361
				wret = btrfs_free_extent(trans, root, blocknr,
							 1, 1);
C
Chris Mason 已提交
1362 1363
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1364
			} else {
C
Chris Mason 已提交
1365
				btrfs_block_release(root, leaf_buf);
1366 1367 1368
			}
		}
	}
C
Chris Mason 已提交
1369
	return ret;
1370 1371
}

C
Chris Mason 已提交
1372 1373
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
1374 1375
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
1376
 */
C
Chris Mason 已提交
1377
int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
1378 1379 1380 1381
{
	int slot;
	int level = 1;
	u64 blocknr;
C
Chris Mason 已提交
1382 1383
	struct btrfs_buffer *c;
	struct btrfs_buffer *next = NULL;
1384

C
Chris Mason 已提交
1385
	while(level < BTRFS_MAX_LEVEL) {
1386
		if (!path->nodes[level])
C
Chris Mason 已提交
1387
			return 1;
1388 1389
		slot = path->slots[level] + 1;
		c = path->nodes[level];
1390
		if (slot >= btrfs_header_nritems(&c->node.header)) {
1391 1392 1393
			level++;
			continue;
		}
1394
		blocknr = btrfs_node_blockptr(&c->node, slot);
C
Chris Mason 已提交
1395
		if (next)
C
Chris Mason 已提交
1396
			btrfs_block_release(root, next);
1397 1398 1399 1400 1401 1402 1403
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
C
Chris Mason 已提交
1404
		btrfs_block_release(root, c);
1405 1406 1407 1408
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
1409 1410
		next = read_tree_block(root,
				       btrfs_node_blockptr(&next->node, 0));
1411 1412 1413
	}
	return 0;
}