ctree.c 37.3 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

C
Chris Mason 已提交
9 10 11 12
static int split_node(struct ctree_root *root, struct ctree_path *path,
		      int level);
static int split_leaf(struct ctree_root *root, struct ctree_path *path,
		      int data_size);
13 14
static int push_node_left(struct ctree_root *root, struct tree_buffer *dst,
			  struct tree_buffer *src);
15 16 17
static int balance_node_right(struct ctree_root *root,
			      struct tree_buffer *dst_buf,
			      struct tree_buffer *src_buf);
18 19
static int del_ptr(struct ctree_root *root, struct ctree_path *path, int level,
		   int slot);
20

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

C
Chris Mason 已提交
26
void release_path(struct ctree_root *root, struct ctree_path *p)
27 28 29 30 31 32 33
{
	int i;
	for (i = 0; i < MAX_LEVEL; i++) {
		if (!p->nodes[i])
			break;
		tree_block_release(root, p->nodes[i]);
	}
C
Chris Mason 已提交
34
	memset(p, 0, sizeof(*p));
35 36
}

C
Chris Mason 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50
int btrfs_cow_block(struct ctree_root *root,
		    struct tree_buffer *buf,
		    struct tree_buffer *parent,
		    int parent_slot,
		    struct tree_buffer **cow_ret)
{
	struct tree_buffer *cow;

	if (!list_empty(&buf->dirty)) {
		*cow_ret = buf;
		return 0;
	}
	cow = alloc_free_block(root);
	memcpy(&cow->node, &buf->node, sizeof(buf->node));
51
	btrfs_set_header_blocknr(&cow->node.header, cow->blocknr);
C
Chris Mason 已提交
52
	*cow_ret = cow;
53
	btrfs_inc_ref(root, buf);
C
Chris Mason 已提交
54 55 56
	if (buf == root->node) {
		root->node = cow;
		cow->count++;
57 58
		if (buf != root->commit_root)
			free_extent(root, buf->blocknr, 1);
C
Chris Mason 已提交
59 60 61 62
		tree_block_release(root, buf);
	} else {
		parent->node.blockptrs[parent_slot] = cow->blocknr;
		BUG_ON(list_empty(&parent->dirty));
63
		free_extent(root, buf->blocknr, 1);
C
Chris Mason 已提交
64 65 66 67 68
	}
	tree_block_release(root, buf);
	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
 */
74 75
static inline unsigned int leaf_data_end(struct leaf *leaf)
{
76
	u32 nr = btrfs_header_nritems(&leaf->header);
77
	if (nr == 0)
78
		return sizeof(leaf->data);
C
Chris Mason 已提交
79
	return btrfs_item_offset(leaf->items + nr - 1);
80 81
}

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

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

	btrfs_disk_key_to_cpu(&k1, disk);

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

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

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

int check_leaf(struct ctree_path *path, int level)
{
	int i;
	struct leaf *leaf = &path->nodes[level]->leaf;
	struct node *parent = NULL;
	int parent_slot;
154
	u32 nritems = btrfs_header_nritems(&leaf->header);
C
Chris Mason 已提交
155 156 157 158

	if (path->nodes[level + 1])
		parent = &path->nodes[level + 1]->node;
	parent_slot = path->slots[level + 1];
159 160 161 162 163 164
	BUG_ON(leaf_free_space(leaf) < 0);

	if (nritems == 0)
		return 0;

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

int check_block(struct ctree_path *path, int level)
{
	if (level == 0)
		return check_leaf(path, level);
	return check_node(path, level);
}

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

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

252 253 254 255 256 257 258
struct tree_buffer *read_node_slot(struct ctree_root *root,
				   struct tree_buffer *parent_buf,
				   int slot)
{
	struct node *node = &parent_buf->node;
	if (slot < 0)
		return NULL;
259
	if (slot >= btrfs_header_nritems(&node->header))
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
		return NULL;
	return read_tree_block(root, node->blockptrs[slot]);
}

static int balance_level(struct ctree_root *root, struct ctree_path *path,
			int level)
{
	struct tree_buffer *right_buf;
	struct tree_buffer *mid_buf;
	struct tree_buffer *left_buf;
	struct tree_buffer *parent_buf = NULL;
	struct node *right = NULL;
	struct node *mid;
	struct node *left = NULL;
	struct node *parent = NULL;
	int ret = 0;
	int wret;
	int pslot;
	int orig_slot = path->slots[level];
279
	u64 orig_ptr;
280 281 282 283 284 285

	if (level == 0)
		return 0;

	mid_buf = path->nodes[level];
	mid = &mid_buf->node;
286 287
	orig_ptr = mid->blockptrs[orig_slot];

288 289 290 291 292 293 294 295
	if (level < MAX_LEVEL - 1)
		parent_buf = path->nodes[level + 1];
	pslot = path->slots[level + 1];

	if (!parent_buf) {
		struct tree_buffer *child;
		u64 blocknr = mid_buf->blocknr;

296
		if (btrfs_header_nritems(&mid->header) != 1)
297 298 299 300 301 302 303 304 305 306 307
			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 */
		tree_block_release(root, mid_buf);
		/* once for the root ptr */
		tree_block_release(root, mid_buf);
308
		clean_tree_block(root, mid_buf);
309 310 311 312
		return free_extent(root, blocknr, 1);
	}
	parent = &parent_buf->node;

313
	if (btrfs_header_nritems(&mid->header) > NODEPTRS_PER_BLOCK / 4)
314 315 316 317
		return 0;

	left_buf = read_node_slot(root, parent_buf, pslot - 1);
	right_buf = read_node_slot(root, parent_buf, pslot + 1);
318 319

	/* first, try to make some room in the middle buffer */
320
	if (left_buf) {
C
Chris Mason 已提交
321 322
		btrfs_cow_block(root, left_buf, parent_buf,
				pslot - 1, &left_buf);
323
		left = &left_buf->node;
324
		orig_slot += btrfs_header_nritems(&left->header);
325 326 327
		wret = push_node_left(root, left_buf, mid_buf);
		if (wret < 0)
			ret = wret;
328
	}
329 330 331 332

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

394
	/* update the path */
395
	if (left_buf) {
396
		if (btrfs_header_nritems(&left->header) > orig_slot) {
397 398 399 400 401 402 403
			left_buf->count++; // released below
			path->nodes[level] = left_buf;
			path->slots[level + 1] -= 1;
			path->slots[level] = orig_slot;
			if (mid_buf)
				tree_block_release(root, mid_buf);
		} else {
404
			orig_slot -= btrfs_header_nritems(&left->header);
405 406 407
			path->slots[level] = orig_slot;
		}
	}
408 409 410 411
	/* double check we haven't messed things up */
	check_block(path, level);
	if (orig_ptr != path->nodes[level]->node.blockptrs[path->slots[level]])
		BUG();
412 413 414 415 416 417 418 419

	if (right_buf)
		tree_block_release(root, right_buf);
	if (left_buf)
		tree_block_release(root, left_buf);
	return ret;
}

C
Chris Mason 已提交
420 421 422 423 424 425
/*
 * 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 已提交
426 427
 * be inserted, and 1 is returned.  If there are other errors during the
 * search a negative error number is returned.
C
Chris Mason 已提交
428 429 430 431
 *
 * 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 已提交
432
 */
C
Chris Mason 已提交
433
int search_slot(struct ctree_root *root, struct btrfs_key *key,
C
Chris Mason 已提交
434
		struct ctree_path *p, int ins_len, int cow)
435
{
436
	struct tree_buffer *b;
C
Chris Mason 已提交
437
	struct tree_buffer *cow_buf;
438
	struct node *c;
439 440 441
	int slot;
	int ret;
	int level;
C
Chris Mason 已提交
442

443 444
again:
	b = root->node;
445 446
	b->count++;
	while (b) {
447
		level = btrfs_header_level(&b->node.header);
C
Chris Mason 已提交
448 449 450 451 452 453 454
		if (cow) {
			int wret;
			wret = btrfs_cow_block(root, b, p->nodes[level + 1],
					       p->slots[level + 1], &cow_buf);
			b = cow_buf;
		}
		BUG_ON(!cow && ins_len);
455 456
		c = &b->node;
		p->nodes[level] = b;
C
Chris Mason 已提交
457 458 459
		ret = check_block(p, level);
		if (ret)
			return -1;
460
		ret = bin_search(c, key, &slot);
461
		if (!btrfs_is_leaf(c)) {
462 463 464
			if (ret && slot > 0)
				slot -= 1;
			p->slots[level] = slot;
465 466
			if (ins_len > 0 && btrfs_header_nritems(&c->header) ==
			    NODEPTRS_PER_BLOCK) {
C
Chris Mason 已提交
467 468 469 470 471 472 473
				int sret = split_node(root, p, level);
				BUG_ON(sret > 0);
				if (sret)
					return sret;
				b = p->nodes[level];
				c = &b->node;
				slot = p->slots[level];
474 475 476 477 478 479 480 481 482
			} else if (ins_len < 0) {
				int sret = balance_level(root, p, level);
				if (sret)
					return sret;
				b = p->nodes[level];
				if (!b)
					goto again;
				c = &b->node;
				slot = p->slots[level];
483
				BUG_ON(btrfs_header_nritems(&c->header) == 1);
C
Chris Mason 已提交
484
			}
485
			b = read_tree_block(root, c->blockptrs[slot]);
486
		} else {
C
Chris Mason 已提交
487
			struct leaf *l = (struct leaf *)c;
488
			p->slots[level] = slot;
C
Chris Mason 已提交
489
			if (ins_len > 0 && leaf_free_space(l) <
C
Chris Mason 已提交
490
			    sizeof(struct btrfs_item) + ins_len) {
C
Chris Mason 已提交
491 492 493 494 495
				int sret = split_leaf(root, p, ins_len);
				BUG_ON(sret > 0);
				if (sret)
					return sret;
			}
496
			BUG_ON(root->node->count == 1);
497 498 499
			return ret;
		}
	}
500
	BUG_ON(root->node->count == 1);
C
Chris Mason 已提交
501
	return 1;
502 503
}

C
Chris Mason 已提交
504 505 506 507 508 509
/*
 * 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 已提交
510 511 512
 *
 * 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 已提交
513
 */
C
Chris Mason 已提交
514
static int fixup_low_keys(struct ctree_root *root,
C
Chris Mason 已提交
515
			   struct ctree_path *path, struct btrfs_disk_key *key,
516
			   int level)
517 518
{
	int i;
C
Chris Mason 已提交
519
	int ret = 0;
520
	for (i = level; i < MAX_LEVEL; i++) {
521
		struct node *t;
522
		int tslot = path->slots[i];
523
		if (!path->nodes[i])
524
			break;
525
		t = &path->nodes[i]->node;
526
		memcpy(t->keys + tslot, key, sizeof(*key));
C
Chris Mason 已提交
527
		BUG_ON(list_empty(&path->nodes[i]->dirty));
528 529 530
		if (tslot != 0)
			break;
	}
C
Chris Mason 已提交
531
	return ret;
532 533
}

C
Chris Mason 已提交
534 535
/*
 * try to push data from one node into the next node left in the
536
 * tree.
C
Chris Mason 已提交
537 538 539
 *
 * 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 已提交
540
 */
541 542
static int push_node_left(struct ctree_root *root, struct tree_buffer *dst_buf,
			  struct tree_buffer *src_buf)
543
{
544 545
	struct node *src = &src_buf->node;
	struct node *dst = &dst_buf->node;
546
	int push_items = 0;
547 548
	int src_nritems;
	int dst_nritems;
C
Chris Mason 已提交
549
	int ret = 0;
550

551 552
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
553
	push_items = NODEPTRS_PER_BLOCK - dst_nritems;
554
	if (push_items <= 0) {
555
		return 1;
556
	}
557

558
	if (src_nritems < push_items)
559 560
		push_items = src_nritems;

561
	memcpy(dst->keys + dst_nritems, src->keys,
C
Chris Mason 已提交
562
		push_items * sizeof(struct btrfs_disk_key));
563
	memcpy(dst->blockptrs + dst_nritems, src->blockptrs,
564
		push_items * sizeof(u64));
565 566
	if (push_items < src_nritems) {
		memmove(src->keys, src->keys + push_items,
C
Chris Mason 已提交
567 568
			(src_nritems - push_items) *
			sizeof(struct btrfs_disk_key));
569 570 571
		memmove(src->blockptrs, src->blockptrs + push_items,
			(src_nritems - push_items) * sizeof(u64));
	}
572 573
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
C
Chris Mason 已提交
574 575
	BUG_ON(list_empty(&src_buf->dirty));
	BUG_ON(list_empty(&dst_buf->dirty));
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
	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
 */
static int balance_node_right(struct ctree_root *root,
			      struct tree_buffer *dst_buf,
			      struct tree_buffer *src_buf)
{
	struct node *src = &src_buf->node;
	struct node *dst = &dst_buf->node;
	int push_items = 0;
	int max_push;
	int src_nritems;
	int dst_nritems;
	int ret = 0;

600 601
	src_nritems = btrfs_header_nritems(&src->header);
	dst_nritems = btrfs_header_nritems(&dst->header);
602 603 604 605 606 607 608 609 610 611 612 613 614
	push_items = NODEPTRS_PER_BLOCK - dst_nritems;
	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;

	memmove(dst->keys + push_items, dst->keys,
C
Chris Mason 已提交
615
		dst_nritems * sizeof(struct btrfs_disk_key));
616 617 618
	memmove(dst->blockptrs + push_items, dst->blockptrs,
		dst_nritems * sizeof(u64));
	memcpy(dst->keys, src->keys + src_nritems - push_items,
C
Chris Mason 已提交
619
		push_items * sizeof(struct btrfs_disk_key));
620 621 622
	memcpy(dst->blockptrs, src->blockptrs + src_nritems - push_items,
		push_items * sizeof(u64));

623 624
	btrfs_set_header_nritems(&src->header, src_nritems - push_items);
	btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
625

C
Chris Mason 已提交
626 627
	BUG_ON(list_empty(&src_buf->dirty));
	BUG_ON(list_empty(&dst_buf->dirty));
C
Chris Mason 已提交
628
	return ret;
629 630
}

C
Chris Mason 已提交
631 632 633 634
/*
 * 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 已提交
635 636
 *
 * returns zero on success or < 0 on failure.
C
Chris Mason 已提交
637
 */
C
Chris Mason 已提交
638 639
static int insert_new_root(struct ctree_root *root,
			   struct ctree_path *path, int level)
C
Chris Mason 已提交
640 641 642 643
{
	struct tree_buffer *t;
	struct node *lower;
	struct node *c;
C
Chris Mason 已提交
644
	struct btrfs_disk_key *lower_key;
C
Chris Mason 已提交
645 646 647 648 649 650 651

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

	t = alloc_free_block(root);
	c = &t->node;
	memset(c, 0, sizeof(c));
652 653 654 655 656
	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 已提交
657
	lower = &path->nodes[level-1]->node;
658
	if (btrfs_is_leaf(lower))
C
Chris Mason 已提交
659 660 661
		lower_key = &((struct leaf *)lower)->items[0].key;
	else
		lower_key = lower->keys;
C
Chris Mason 已提交
662
	memcpy(c->keys, lower_key, sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
663 664 665 666 667 668 669 670 671 672
	c->blockptrs[0] = path->nodes[level-1]->blocknr;
	/* the super has an extra ref to root->node */
	tree_block_release(root, root->node);
	root->node = t;
	t->count++;
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
673 674 675
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
C
Chris Mason 已提交
676
 *
C
Chris Mason 已提交
677 678
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
C
Chris Mason 已提交
679 680
 *
 * returns zero on success and < 0 on any error
C
Chris Mason 已提交
681
 */
C
Chris Mason 已提交
682
static int insert_ptr(struct ctree_root *root,
C
Chris Mason 已提交
683
		struct ctree_path *path, struct btrfs_disk_key *key,
C
Chris Mason 已提交
684 685 686 687
		u64 blocknr, int slot, int level)
{
	struct node *lower;
	int nritems;
C
Chris Mason 已提交
688 689

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
690
	lower = &path->nodes[level]->node;
691
	nritems = btrfs_header_nritems(&lower->header);
C
Chris Mason 已提交
692 693 694 695 696 697
	if (slot > nritems)
		BUG();
	if (nritems == NODEPTRS_PER_BLOCK)
		BUG();
	if (slot != nritems) {
		memmove(lower->keys + slot + 1, lower->keys + slot,
C
Chris Mason 已提交
698
			(nritems - slot) * sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
699 700 701
		memmove(lower->blockptrs + slot + 1, lower->blockptrs + slot,
			(nritems - slot) * sizeof(u64));
	}
C
Chris Mason 已提交
702
	memcpy(lower->keys + slot, key, sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
703
	lower->blockptrs[slot] = blocknr;
704
	btrfs_set_header_nritems(&lower->header, nritems + 1);
C
Chris Mason 已提交
705 706
	if (lower->keys[1].objectid == 0)
			BUG();
C
Chris Mason 已提交
707
	BUG_ON(list_empty(&path->nodes[level]->dirty));
C
Chris Mason 已提交
708 709 710
	return 0;
}

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

C
Chris Mason 已提交
732 733 734 735 736 737 738
	t = path->nodes[level];
	c = &t->node;
	if (t == root->node) {
		/* trying to split the root, lets make a new one */
		ret = insert_new_root(root, path, level + 1);
		if (ret)
			return ret;
739
	}
740
	c_nritems = btrfs_header_nritems(&c->header);
C
Chris Mason 已提交
741 742
	split_buffer = alloc_free_block(root);
	split = &split_buffer->node;
743 744 745 746 747
	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 已提交
748
	memcpy(split->keys, c->keys + mid,
C
Chris Mason 已提交
749
		(c_nritems - mid) * sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
750
	memcpy(split->blockptrs, c->blockptrs + mid,
751 752 753
		(c_nritems - mid) * sizeof(u64));
	btrfs_set_header_nritems(&split->header, c_nritems - mid);
	btrfs_set_header_nritems(&c->header, mid);
C
Chris Mason 已提交
754 755
	ret = 0;

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

C
Chris Mason 已提交
762
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
763 764 765 766 767 768
		path->slots[level] -= mid;
		tree_block_release(root, t);
		path->nodes[level] = split_buffer;
		path->slots[level + 1] += 1;
	} else {
		tree_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 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
 */
C
Chris Mason 已提交
798 799
static int push_leaf_right(struct ctree_root *root, struct ctree_path *path,
			   int data_size)
C
Chris Mason 已提交
800 801 802 803 804 805 806 807 808 809 810
{
	struct tree_buffer *left_buf = path->nodes[0];
	struct leaf *left = &left_buf->leaf;
	struct leaf *right;
	struct tree_buffer *right_buf;
	struct tree_buffer *upper;
	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 823 824 825
		return 1;
	}
	right_buf = read_tree_block(root, upper->node.blockptrs[slot + 1]);
	right = &right_buf->leaf;
	free_space = leaf_free_space(right);
C
Chris Mason 已提交
826
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
827 828 829
		tree_block_release(root, right_buf);
		return 1;
	}
C
Chris Mason 已提交
830 831 832 833
	/* cow and double check */
	btrfs_cow_block(root, right_buf, upper, slot + 1, &right_buf);
	right = &right_buf->leaf;
	free_space = leaf_free_space(right);
C
Chris Mason 已提交
834
	if (free_space < data_size + sizeof(struct btrfs_item)) {
C
Chris Mason 已提交
835 836 837 838
		tree_block_release(root, right_buf);
		return 1;
	}

839 840
	left_nritems = btrfs_header_nritems(&left->header);
	for (i = left_nritems - 1; i >= 0; i--) {
C
Chris Mason 已提交
841 842 843
		item = left->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
C
Chris Mason 已提交
844 845
		if (btrfs_item_size(item) + sizeof(*item) + push_space >
		    free_space)
C
Chris Mason 已提交
846 847
			break;
		push_items++;
C
Chris Mason 已提交
848
		push_space += btrfs_item_size(item) + sizeof(*item);
C
Chris Mason 已提交
849 850 851 852 853
	}
	if (push_items == 0) {
		tree_block_release(root, right_buf);
		return 1;
	}
854
	right_nritems = btrfs_header_nritems(&right->header);
C
Chris Mason 已提交
855
	/* push left to right */
C
Chris Mason 已提交
856
	push_space = btrfs_item_end(left->items + left_nritems - push_items);
C
Chris Mason 已提交
857 858 859 860 861 862 863 864 865 866
	push_space -= leaf_data_end(left);
	/* make room in the right data area */
	memmove(right->data + leaf_data_end(right) - push_space,
		right->data + leaf_data_end(right),
		LEAF_DATA_SIZE - leaf_data_end(right));
	/* copy from the left data area */
	memcpy(right->data + LEAF_DATA_SIZE - push_space,
		left->data + leaf_data_end(left),
		push_space);
	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 = LEAF_DATA_SIZE;
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.keys + slot + 1,
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 894 895 896 897 898 899 900
		tree_block_release(root, path->nodes[0]);
		path->nodes[0] = right_buf;
		path->slots[1] += 1;
	} else {
		tree_block_release(root, right_buf);
	}
	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
 */
C
Chris Mason 已提交
905 906
static int push_leaf_left(struct ctree_root *root, struct ctree_path *path,
			  int data_size)
907
{
908 909 910
	struct tree_buffer *right_buf = path->nodes[0];
	struct leaf *right = &right_buf->leaf;
	struct tree_buffer *t;
911 912 913 914 915 916
	struct leaf *left;
	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, path->nodes[1]->node.blockptrs[slot - 1]);
	left = &t->leaf;
931
	free_space = leaf_free_space(left);
C
Chris Mason 已提交
932
	if (free_space < data_size + sizeof(struct btrfs_item)) {
933
		tree_block_release(root, t);
934 935
		return 1;
	}
C
Chris Mason 已提交
936 937 938 939 940

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

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

C
Chris Mason 已提交
971 972 973 974 975
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
		u16 ioff = btrfs_item_offset(left->items + i);
		btrfs_set_item_offset(left->items + i, ioff - (LEAF_DATA_SIZE -
				      btrfs_item_offset(left->items +
						        old_left_nritems - 1)));
976
	}
977
	btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
978 979

	/* fixup right node */
C
Chris Mason 已提交
980 981
	push_space = btrfs_item_offset(right->items + push_items - 1) -
		     leaf_data_end(right);
982 983 984
	memmove(right->data + LEAF_DATA_SIZE - push_space, right->data +
		leaf_data_end(right), push_space);
	memmove(right->items, right->items + push_items,
985
		(btrfs_header_nritems(&right->header) - push_items) *
C
Chris Mason 已提交
986
		sizeof(struct btrfs_item));
987 988 989
	btrfs_set_header_nritems(&right->header,
				 btrfs_header_nritems(&right->header) -
				 push_items);
990
	push_space = LEAF_DATA_SIZE;
991

992
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
C
Chris Mason 已提交
993 994 995
		btrfs_set_item_offset(right->items + i, push_space -
				      btrfs_item_size(right->items + i));
		push_space = btrfs_item_offset(right->items + i);
996
	}
997

C
Chris Mason 已提交
998 999
	BUG_ON(list_empty(&t->dirty));
	BUG_ON(list_empty(&right_buf->dirty));
1000

C
Chris Mason 已提交
1001 1002 1003
	wret = fixup_low_keys(root, path, &right->items[0].key, 1);
	if (wret)
		ret = wret;
1004 1005 1006 1007

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

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

	l_buf = path->nodes[0];
	l = &l_buf->leaf;

	/* did the pushes work? */
C
Chris Mason 已提交
1046
	if (leaf_free_space(l) >= sizeof(struct btrfs_item) + data_size)
C
Chris Mason 已提交
1047 1048
		return 0;

C
Chris Mason 已提交
1049 1050 1051 1052 1053
	if (!path->nodes[1]) {
		ret = insert_new_root(root, path, 1);
		if (ret)
			return ret;
	}
1054
	slot = path->slots[0];
1055
	nritems = btrfs_header_nritems(&l->header);
1056 1057 1058 1059 1060
	mid = (nritems + 1)/ 2;
	right_buffer = alloc_free_block(root);
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
	right = &right_buffer->leaf;
1061 1062
	memset(right, 0, sizeof(*right));
	if (mid <= slot) {
C
Chris Mason 已提交
1063
		/* FIXME, just alloc a new leaf here */
1064 1065 1066 1067
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
			LEAF_DATA_SIZE)
			BUG();
	} else {
C
Chris Mason 已提交
1068
		/* FIXME, just alloc a new leaf here */
1069 1070 1071 1072
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
			LEAF_DATA_SIZE)
			BUG();
	}
1073 1074 1075 1076 1077
	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 已提交
1078
	data_copy_size = btrfs_item_end(l->items + mid) - leaf_data_end(l);
1079
	memcpy(right->items, l->items + mid,
C
Chris Mason 已提交
1080
	       (nritems - mid) * sizeof(struct btrfs_item));
1081 1082
	memcpy(right->data + LEAF_DATA_SIZE - data_copy_size,
	       l->data + leaf_data_end(l), data_copy_size);
C
Chris Mason 已提交
1083
	rt_data_off = LEAF_DATA_SIZE - btrfs_item_end(l->items + mid);
C
Chris Mason 已提交
1084

C
Chris Mason 已提交
1085 1086 1087 1088
	for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
		u16 ioff = btrfs_item_offset(right->items + i);
		btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
	}
C
Chris Mason 已提交
1089

1090
	btrfs_set_header_nritems(&l->header, mid);
C
Chris Mason 已提交
1091 1092
	ret = 0;
	wret = insert_ptr(root, path, &right->items[0].key,
C
Chris Mason 已提交
1093
			  right_buffer->blocknr, path->slots[1] + 1, 1);
C
Chris Mason 已提交
1094 1095
	if (wret)
		ret = wret;
C
Chris Mason 已提交
1096 1097
	BUG_ON(list_empty(&right_buffer->dirty));
	BUG_ON(list_empty(&l_buf->dirty));
1098
	BUG_ON(path->slots[0] != slot);
1099
	if (mid <= slot) {
1100 1101
		tree_block_release(root, path->nodes[0]);
		path->nodes[0] = right_buffer;
1102 1103
		path->slots[0] -= mid;
		path->slots[1] += 1;
1104 1105 1106
	} else
		tree_block_release(root, right_buffer);
	BUG_ON(path->slots[0] < 0);
1107 1108 1109
	return ret;
}

C
Chris Mason 已提交
1110 1111 1112 1113
/*
 * 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.
 */
C
Chris Mason 已提交
1114
int insert_item(struct ctree_root *root, struct btrfs_key *cpu_key,
1115 1116
			  void *data, int data_size)
{
C
Chris Mason 已提交
1117
	int ret = 0;
1118
	int slot;
1119
	int slot_orig;
1120
	struct leaf *leaf;
1121
	struct tree_buffer *leaf_buf;
1122
	u32 nritems;
1123 1124
	unsigned int data_end;
	struct ctree_path path;
C
Chris Mason 已提交
1125 1126 1127
	struct btrfs_disk_key disk_key;

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
1128

C
Chris Mason 已提交
1129
	/* create a root if there isn't one */
C
Chris Mason 已提交
1130
	if (!root->node)
C
Chris Mason 已提交
1131
		BUG();
1132
	init_path(&path);
C
Chris Mason 已提交
1133
	ret = search_slot(root, cpu_key, &path, data_size, 1);
1134 1135
	if (ret == 0) {
		release_path(root, &path);
1136
		return -EEXIST;
C
Chris Mason 已提交
1137
	}
1138 1139
	if (ret < 0)
		goto out;
1140

1141 1142 1143
	slot_orig = path.slots[0];
	leaf_buf = path.nodes[0];
	leaf = &leaf_buf->leaf;
C
Chris Mason 已提交
1144

1145
	nritems = btrfs_header_nritems(&leaf->header);
1146
	data_end = leaf_data_end(leaf);
1147

C
Chris Mason 已提交
1148
	if (leaf_free_space(leaf) <  sizeof(struct btrfs_item) + data_size)
1149 1150 1151
		BUG();

	slot = path.slots[0];
1152
	BUG_ON(slot < 0);
1153 1154
	if (slot != nritems) {
		int i;
C
Chris Mason 已提交
1155
		unsigned int old_data = btrfs_item_end(leaf->items + slot);
1156 1157 1158 1159 1160

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
1161 1162 1163 1164 1165
		for (i = slot; i < nritems; i++) {
			u16 ioff = btrfs_item_offset(leaf->items + i);
			btrfs_set_item_offset(leaf->items + i,
					      ioff - data_size);
		}
1166 1167 1168

		/* shift the items */
		memmove(leaf->items + slot + 1, leaf->items + slot,
C
Chris Mason 已提交
1169
		        (nritems - slot) * sizeof(struct btrfs_item));
1170 1171 1172 1173 1174 1175

		/* shift the data */
		memmove(leaf->data + data_end - data_size, leaf->data +
		        data_end, old_data - data_end);
		data_end = old_data;
	}
C
Chris Mason 已提交
1176
	/* copy the new data in */
C
Chris Mason 已提交
1177 1178
	memcpy(&leaf->items[slot].key, &disk_key,
		sizeof(struct btrfs_disk_key));
C
Chris Mason 已提交
1179 1180
	btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
	btrfs_set_item_size(leaf->items + slot, data_size);
1181
	memcpy(leaf->data + data_end - data_size, data, data_size);
1182
	btrfs_set_header_nritems(&leaf->header, nritems + 1);
C
Chris Mason 已提交
1183 1184

	ret = 0;
1185
	if (slot == 0)
C
Chris Mason 已提交
1186
		ret = fixup_low_keys(root, &path, &disk_key, 1);
C
Chris Mason 已提交
1187

C
Chris Mason 已提交
1188
	BUG_ON(list_empty(&leaf_buf->dirty));
1189 1190
	if (leaf_free_space(leaf) < 0)
		BUG();
1191
	check_leaf(&path, 0);
1192
out:
1193
	release_path(root, &path);
C
Chris Mason 已提交
1194
	return ret;
1195 1196
}

C
Chris Mason 已提交
1197
/*
C
Chris Mason 已提交
1198
 * delete the pointer from a given node.
C
Chris Mason 已提交
1199 1200 1201 1202 1203
 *
 * 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.
 */
1204 1205
static int del_ptr(struct ctree_root *root, struct ctree_path *path, int level,
		   int slot)
1206 1207
{
	struct node *node;
1208
	struct tree_buffer *parent = path->nodes[level];
1209
	u32 nritems;
C
Chris Mason 已提交
1210
	int ret = 0;
1211
	int wret;
1212

1213
	node = &parent->node;
1214
	nritems = btrfs_header_nritems(&node->header);
1215 1216
	if (slot != nritems -1) {
		memmove(node->keys + slot, node->keys + slot + 1,
C
Chris Mason 已提交
1217
			sizeof(struct btrfs_disk_key) * (nritems - slot - 1));
1218 1219 1220 1221
		memmove(node->blockptrs + slot,
			node->blockptrs + slot + 1,
			sizeof(u64) * (nritems - slot - 1));
	}
1222 1223 1224 1225
	nritems--;
	btrfs_set_header_nritems(&node->header, nritems);
	if (nritems == 0 && parent == root->node) {
		BUG_ON(btrfs_header_level(&root->node->node.header) != 1);
1226
		/* just turn the root into a leaf and break */
1227
		btrfs_set_header_level(&root->node->node.header, 0);
1228 1229
	} else if (slot == 0) {
		wret = fixup_low_keys(root, path, node->keys, level + 1);
C
Chris Mason 已提交
1230 1231
		if (wret)
			ret = wret;
1232
	}
C
Chris Mason 已提交
1233
	BUG_ON(list_empty(&parent->dirty));
C
Chris Mason 已提交
1234
	return ret;
1235 1236
}

C
Chris Mason 已提交
1237 1238 1239 1240
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
1241
int del_item(struct ctree_root *root, struct ctree_path *path)
1242 1243 1244
{
	int slot;
	struct leaf *leaf;
1245
	struct tree_buffer *leaf_buf;
1246 1247
	int doff;
	int dsize;
C
Chris Mason 已提交
1248 1249
	int ret = 0;
	int wret;
1250
	u32 nritems;
1251

1252 1253
	leaf_buf = path->nodes[0];
	leaf = &leaf_buf->leaf;
1254
	slot = path->slots[0];
C
Chris Mason 已提交
1255 1256
	doff = btrfs_item_offset(leaf->items + slot);
	dsize = btrfs_item_size(leaf->items + slot);
1257
	nritems = btrfs_header_nritems(&leaf->header);
1258

1259
	if (slot != nritems - 1) {
1260 1261 1262 1263 1264
		int i;
		int data_end = leaf_data_end(leaf);
		memmove(leaf->data + data_end + dsize,
			leaf->data + data_end,
			doff - data_end);
C
Chris Mason 已提交
1265 1266 1267 1268
		for (i = slot + 1; i < nritems; i++) {
			u16 ioff = btrfs_item_offset(leaf->items + i);
			btrfs_set_item_offset(leaf->items + i, ioff + dsize);
		}
1269
		memmove(leaf->items + slot, leaf->items + slot + 1,
C
Chris Mason 已提交
1270
			sizeof(struct btrfs_item) *
1271
			(nritems - slot - 1));
1272
	}
1273 1274
	btrfs_set_header_nritems(&leaf->header, nritems - 1);
	nritems--;
C
Chris Mason 已提交
1275
	/* delete the leaf if we've emptied it */
1276
	if (nritems == 0) {
1277
		if (leaf_buf == root->node) {
1278
			btrfs_set_header_level(&leaf->header, 0);
C
Chris Mason 已提交
1279
			BUG_ON(list_empty(&leaf_buf->dirty));
1280
		} else {
1281
			clean_tree_block(root, leaf_buf);
1282
			wret = del_ptr(root, path, 1, path->slots[1]);
C
Chris Mason 已提交
1283 1284
			if (wret)
				ret = wret;
C
Chris Mason 已提交
1285 1286 1287
			wret = free_extent(root, leaf_buf->blocknr, 1);
			if (wret)
				ret = wret;
1288
		}
1289
	} else {
1290
		int used = leaf_space_used(leaf, 0, nritems);
C
Chris Mason 已提交
1291 1292 1293 1294 1295 1296
		if (slot == 0) {
			wret = fixup_low_keys(root, path,
						   &leaf->items[0].key, 1);
			if (wret)
				ret = wret;
		}
C
Chris Mason 已提交
1297
		BUG_ON(list_empty(&leaf_buf->dirty));
C
Chris Mason 已提交
1298

C
Chris Mason 已提交
1299
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
1300
		if (used < LEAF_DATA_SIZE / 3) {
1301 1302 1303 1304
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
1305
			slot = path->slots[1];
1306
			leaf_buf->count++;
C
Chris Mason 已提交
1307 1308 1309
			wret = push_leaf_left(root, path, 1);
			if (wret < 0)
				ret = wret;
1310
			if (path->nodes[0] == leaf_buf &&
1311
			    btrfs_header_nritems(&leaf->header)) {
C
Chris Mason 已提交
1312 1313 1314 1315
				wret = push_leaf_right(root, path, 1);
				if (wret < 0)
					ret = wret;
			}
1316
			if (btrfs_header_nritems(&leaf->header) == 0) {
C
Chris Mason 已提交
1317
				u64 blocknr = leaf_buf->blocknr;
1318
				clean_tree_block(root, leaf_buf);
1319
				wret = del_ptr(root, path, 1, slot);
C
Chris Mason 已提交
1320 1321
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1322
				tree_block_release(root, leaf_buf);
C
Chris Mason 已提交
1323 1324 1325
				wret = free_extent(root, blocknr, 1);
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1326 1327
			} else {
				tree_block_release(root, leaf_buf);
1328 1329 1330
			}
		}
	}
C
Chris Mason 已提交
1331
	return ret;
1332 1333
}

C
Chris Mason 已提交
1334 1335
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
1336 1337
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
1338
 */
1339 1340 1341 1342 1343 1344
int next_leaf(struct ctree_root *root, struct ctree_path *path)
{
	int slot;
	int level = 1;
	u64 blocknr;
	struct tree_buffer *c;
C
Chris Mason 已提交
1345
	struct tree_buffer *next = NULL;
1346 1347 1348

	while(level < MAX_LEVEL) {
		if (!path->nodes[level])
C
Chris Mason 已提交
1349
			return 1;
1350 1351
		slot = path->slots[level] + 1;
		c = path->nodes[level];
1352
		if (slot >= btrfs_header_nritems(&c->node.header)) {
1353 1354 1355 1356
			level++;
			continue;
		}
		blocknr = c->node.blockptrs[slot];
C
Chris Mason 已提交
1357 1358
		if (next)
			tree_block_release(root, next);
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
		tree_block_release(root, c);
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
		next = read_tree_block(root, next->node.blockptrs[0]);
	}
	return 0;
}

C
Chris Mason 已提交
1376