ctree.c 31.1 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 15 16
static int push_node_left(struct ctree_root *root, struct tree_buffer *dst,
			  struct tree_buffer *src);
static int del_ptr(struct ctree_root *root, struct ctree_path *path, int level,
		   int slot);
17

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

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

C
Chris Mason 已提交
34 35 36 37 38
/*
 * 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
 */
39 40 41 42
static inline unsigned int leaf_data_end(struct leaf *leaf)
{
	unsigned int nr = leaf->header.nritems;
	if (nr == 0)
43
		return sizeof(leaf->data);
44 45 46
	return leaf->items[nr-1].offset;
}

C
Chris Mason 已提交
47 48 49 50 51
/*
 * 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 已提交
52
int leaf_free_space(struct leaf *leaf)
53 54 55 56 57 58 59
{
	int data_end = leaf_data_end(leaf);
	int nritems = leaf->header.nritems;
	char *items_end = (char *)(leaf->items + nritems + 1);
	return (char *)(leaf->data + data_end) - (char *)items_end;
}

C
Chris Mason 已提交
60 61 62
/*
 * compare two keys in a memcmp fashion
 */
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
int comp_keys(struct key *k1, struct key *k2)
{
	if (k1->objectid > k2->objectid)
		return 1;
	if (k1->objectid < k2->objectid)
		return -1;
	if (k1->flags > k2->flags)
		return 1;
	if (k1->flags < k2->flags)
		return -1;
	if (k1->offset > k2->offset)
		return 1;
	if (k1->offset < k2->offset)
		return -1;
	return 0;
}
C
Chris Mason 已提交
79

C
Chris Mason 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
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;

	if (path->nodes[level + 1])
		parent = &path->nodes[level + 1]->node;
	parent_slot = path->slots[level + 1];
	if (parent && node->header.nritems > 0) {
		struct key *parent_key;
		parent_key = &parent->keys[parent_slot];
		BUG_ON(memcmp(parent_key, node->keys, sizeof(struct key)));
		BUG_ON(parent->blockptrs[parent_slot] != node->header.blocknr);
	}
	BUG_ON(node->header.nritems > NODEPTRS_PER_BLOCK);
	for (i = 0; i < node->header.nritems - 2; i++) {
		BUG_ON(comp_keys(&node->keys[i], &node->keys[i+1]) >= 0);
	}
	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;

	if (path->nodes[level + 1])
		parent = &path->nodes[level + 1]->node;
	parent_slot = path->slots[level + 1];
	if (parent && leaf->header.nritems > 0) {
		struct key *parent_key;
		parent_key = &parent->keys[parent_slot];
		BUG_ON(memcmp(parent_key, &leaf->items[0].key,
		       sizeof(struct key)));
		BUG_ON(parent->blockptrs[parent_slot] != leaf->header.blocknr);
	}
	for (i = 0; i < leaf->header.nritems - 2; i++) {
		BUG_ON(comp_keys(&leaf->items[i].key,
		                 &leaf->items[i+1].key) >= 0);
		BUG_ON(leaf->items[i].offset != leaf->items[i + 1].offset +
		    leaf->items[i + 1].size);
		if (i == 0) {
			BUG_ON(leaf->items[i].offset + leaf->items[i].size !=
				LEAF_DATA_SIZE);
		}
	}
	BUG_ON(leaf_free_space(leaf) < 0);
	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 已提交
141 142 143 144 145 146 147 148 149
/*
 * 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
 */
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
int generic_bin_search(char *p, int item_size, struct key *key,
		       int max, int *slot)
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
	struct key *tmp;

	while(low < high) {
		mid = (low + high) / 2;
		tmp = (struct key *)(p + mid * item_size);
		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 已提交
177 178 179 180
/*
 * simple bin_search frontend that does the right thing for
 * leaves vs nodes
 */
181 182 183 184 185 186 187 188 189 190 191 192 193
int bin_search(struct node *c, struct key *key, int *slot)
{
	if (is_leaf(c->header.flags)) {
		struct leaf *l = (struct leaf *)c;
		return generic_bin_search((void *)l->items, sizeof(struct item),
					  key, c->header.nritems, slot);
	} else {
		return generic_bin_search((void *)c->keys, sizeof(struct key),
					  key, c->header.nritems, slot);
	}
	return -1;
}

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
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;
	if (slot >= node->header.nritems)
		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 used = 0;
	int count;
	int orig_slot = path->slots[level];

	if (level == 0)
		return 0;

	mid_buf = path->nodes[level];
	mid = &mid_buf->node;
	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;

		if (mid->header.nritems != 1)
			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);
		return free_extent(root, blocknr, 1);
	}
	parent = &parent_buf->node;

	if (mid->header.nritems > NODEPTRS_PER_BLOCK / 4)
		return 0;

	// print_tree(root, root->node);
	left_buf = read_node_slot(root, parent_buf, pslot - 1);
	right_buf = read_node_slot(root, parent_buf, pslot + 1);
	if (right_buf) {
		right = &right_buf->node;
		used = right->header.nritems;
		count = 1;
	}
	if (left_buf) {
		left = &left_buf->node;
		used += left->header.nritems;
		orig_slot += left->header.nritems;
		count++;
	}
	if (left_buf)
		push_node_left(root, left_buf, mid_buf);
	if (right_buf) {
		push_node_left(root, mid_buf, right_buf);
		if (right->header.nritems == 0) {
			u64 blocknr = right_buf->blocknr;
			tree_block_release(root, right_buf);
			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,
				sizeof(struct key));
		}
	}
	if (mid->header.nritems == 0) {
		u64 blocknr = mid_buf->blocknr;
		tree_block_release(root, mid_buf);
		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;
	} else
		memcpy(parent->keys + pslot, mid->keys, sizeof(struct key));

	if (left_buf) {
		if (left->header.nritems >= orig_slot) {
			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 {
			orig_slot -= left->header.nritems;
			path->slots[level] = orig_slot;
		}
	}

	if (right_buf)
		tree_block_release(root, right_buf);
	if (left_buf)
		tree_block_release(root, left_buf);

	return ret;
}

C
Chris Mason 已提交
326 327 328 329 330 331
/*
 * 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 已提交
332 333
 * be inserted, and 1 is returned.  If there are other errors during the
 * search a negative error number is returned.
C
Chris Mason 已提交
334 335 336 337
 *
 * 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 已提交
338
 */
C
Chris Mason 已提交
339 340
int search_slot(struct ctree_root *root, struct key *key,
		struct ctree_path *p, int ins_len)
341
{
342
	struct tree_buffer *b;
343
	struct node *c;
344 345 346
	int slot;
	int ret;
	int level;
C
Chris Mason 已提交
347

348 349
again:
	b = root->node;
350 351 352
	b->count++;
	while (b) {
		c = &b->node;
353
		level = node_level(c->header.flags);
354
		p->nodes[level] = b;
C
Chris Mason 已提交
355 356 357
		ret = check_block(p, level);
		if (ret)
			return -1;
358 359 360 361 362
		ret = bin_search(c, key, &slot);
		if (!is_leaf(c->header.flags)) {
			if (ret && slot > 0)
				slot -= 1;
			p->slots[level] = slot;
C
Chris Mason 已提交
363 364
			if (ins_len > 0 &&
			    c->header.nritems == NODEPTRS_PER_BLOCK) {
C
Chris Mason 已提交
365 366 367 368 369 370 371
				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];
372 373 374 375 376 377 378 379 380
			} 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];
C
Chris Mason 已提交
381
			}
382
			b = read_tree_block(root, c->blockptrs[slot]);
383
		} else {
C
Chris Mason 已提交
384
			struct leaf *l = (struct leaf *)c;
385
			p->slots[level] = slot;
C
Chris Mason 已提交
386 387
			if (ins_len > 0 && leaf_free_space(l) <
			    sizeof(struct item) + ins_len) {
C
Chris Mason 已提交
388 389 390 391 392
				int sret = split_leaf(root, p, ins_len);
				BUG_ON(sret > 0);
				if (sret)
					return sret;
			}
393
			BUG_ON(root->node->count == 1);
394 395 396
			return ret;
		}
	}
397
	BUG_ON(root->node->count == 1);
C
Chris Mason 已提交
398
	return 1;
399 400
}

C
Chris Mason 已提交
401 402 403 404 405 406
/*
 * 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 已提交
407 408 409
 *
 * 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 已提交
410
 */
C
Chris Mason 已提交
411
static int fixup_low_keys(struct ctree_root *root,
412 413
			   struct ctree_path *path, struct key *key,
			   int level)
414 415
{
	int i;
C
Chris Mason 已提交
416 417
	int ret = 0;
	int wret;
418
	for (i = level; i < MAX_LEVEL; i++) {
419
		struct node *t;
420
		int tslot = path->slots[i];
421
		if (!path->nodes[i])
422
			break;
423
		t = &path->nodes[i]->node;
424
		memcpy(t->keys + tslot, key, sizeof(*key));
C
Chris Mason 已提交
425 426 427
		wret = write_tree_block(root, path->nodes[i]);
		if (wret)
			ret = wret;
428 429 430
		if (tslot != 0)
			break;
	}
C
Chris Mason 已提交
431
	return ret;
432 433
}

C
Chris Mason 已提交
434 435 436 437 438 439 440 441 442
/*
 * try to push data from one node into the next node left in the
 * tree.  The src node is found at specified level in the path.
 * If some bytes were pushed, return 0, otherwise return 1.
 *
 * Lower nodes/leaves in the path are not touched, higher nodes may
 * be modified to reflect the push.
 *
 * The path is altered to reflect the push.
C
Chris Mason 已提交
443 444 445
 *
 * 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 已提交
446
 */
447 448
static int push_node_left(struct ctree_root *root, struct tree_buffer *dst_buf,
			  struct tree_buffer *src_buf)
449
{
450 451
	struct node *src = &src_buf->node;
	struct node *dst = &dst_buf->node;
452
	int push_items = 0;
453 454
	int src_nritems;
	int dst_nritems;
C
Chris Mason 已提交
455 456
	int ret = 0;
	int wret;
457

458 459 460
	src_nritems = src->header.nritems;
	dst_nritems = dst->header.nritems;
	push_items = NODEPTRS_PER_BLOCK - dst_nritems;
461
	if (push_items <= 0) {
462
		return 1;
463
	}
464

465 466 467
	if (src_nritems < push_items)
		push_items =src_nritems;
	memcpy(dst->keys + dst_nritems, src->keys,
468
		push_items * sizeof(struct key));
469
	memcpy(dst->blockptrs + dst_nritems, src->blockptrs,
470
		push_items * sizeof(u64));
471 472 473 474 475 476 477 478
	if (push_items < src_nritems) {
		memmove(src->keys, src->keys + push_items,
			(src_nritems - push_items) * sizeof(struct key));
		memmove(src->blockptrs, src->blockptrs + push_items,
			(src_nritems - push_items) * sizeof(u64));
	}
	src->header.nritems -= push_items;
	dst->header.nritems += push_items;
479

480
	wret = write_tree_block(root, src_buf);
C
Chris Mason 已提交
481 482 483
	if (wret < 0)
		ret = wret;

484
	wret = write_tree_block(root, dst_buf);
C
Chris Mason 已提交
485 486 487
	if (wret < 0)
		ret = wret;
	return ret;
488 489
}

C
Chris Mason 已提交
490 491 492 493
/*
 * 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 已提交
494 495
 *
 * returns zero on success or < 0 on failure.
C
Chris Mason 已提交
496
 */
C
Chris Mason 已提交
497 498
static int insert_new_root(struct ctree_root *root,
			   struct ctree_path *path, int level)
C
Chris Mason 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
{
	struct tree_buffer *t;
	struct node *lower;
	struct node *c;
	struct key *lower_key;

	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));
	c->header.nritems = 1;
	c->header.flags = node_level(level);
	c->header.blocknr = t->blocknr;
	c->header.parentid = root->node->node.header.parentid;
	lower = &path->nodes[level-1]->node;
	if (is_leaf(lower->header.flags))
		lower_key = &((struct leaf *)lower)->items[0].key;
	else
		lower_key = lower->keys;
	memcpy(c->keys, lower_key, sizeof(struct key));
	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++;
	write_tree_block(root, t);
	path->nodes[level] = t;
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
532 533 534
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
C
Chris Mason 已提交
535
 *
C
Chris Mason 已提交
536 537
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
C
Chris Mason 已提交
538 539
 *
 * returns zero on success and < 0 on any error
C
Chris Mason 已提交
540
 */
C
Chris Mason 已提交
541
static int insert_ptr(struct ctree_root *root,
C
Chris Mason 已提交
542 543 544 545 546
		struct ctree_path *path, struct key *key,
		u64 blocknr, int slot, int level)
{
	struct node *lower;
	int nritems;
C
Chris Mason 已提交
547 548

	BUG_ON(!path->nodes[level]);
C
Chris Mason 已提交
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
	lower = &path->nodes[level]->node;
	nritems = lower->header.nritems;
	if (slot > nritems)
		BUG();
	if (nritems == NODEPTRS_PER_BLOCK)
		BUG();
	if (slot != nritems) {
		memmove(lower->keys + slot + 1, lower->keys + slot,
			(nritems - slot) * sizeof(struct key));
		memmove(lower->blockptrs + slot + 1, lower->blockptrs + slot,
			(nritems - slot) * sizeof(u64));
	}
	memcpy(lower->keys + slot, key, sizeof(struct key));
	lower->blockptrs[slot] = blocknr;
	lower->header.nritems++;
	if (lower->keys[1].objectid == 0)
			BUG();
	write_tree_block(root, path->nodes[level]);
	return 0;
}

C
Chris Mason 已提交
570 571 572 573 574 575
/*
 * 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 已提交
576 577
 *
 * returns 0 on success and < 0 on failure
C
Chris Mason 已提交
578
 */
C
Chris Mason 已提交
579 580
static int split_node(struct ctree_root *root, struct ctree_path *path,
		      int level)
581
{
C
Chris Mason 已提交
582 583 584 585
	struct tree_buffer *t;
	struct node *c;
	struct tree_buffer *split_buffer;
	struct node *split;
586
	int mid;
C
Chris Mason 已提交
587
	int ret;
C
Chris Mason 已提交
588
	int wret;
589

C
Chris Mason 已提交
590 591 592 593 594 595 596
	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;
597
	}
C
Chris Mason 已提交
598 599 600 601 602 603 604 605 606 607 608 609
	split_buffer = alloc_free_block(root);
	split = &split_buffer->node;
	split->header.flags = c->header.flags;
	split->header.blocknr = split_buffer->blocknr;
	split->header.parentid = root->node->node.header.parentid;
	mid = (c->header.nritems + 1) / 2;
	memcpy(split->keys, c->keys + mid,
		(c->header.nritems - mid) * sizeof(struct key));
	memcpy(split->blockptrs, c->blockptrs + mid,
		(c->header.nritems - mid) * sizeof(u64));
	split->header.nritems = c->header.nritems - mid;
	c->header.nritems = mid;
C
Chris Mason 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622
	ret = 0;

	wret = write_tree_block(root, t);
	if (wret)
		ret = wret;
	wret = write_tree_block(root, split_buffer);
	if (wret)
		ret = wret;
	wret = insert_ptr(root, path, split->keys, split_buffer->blocknr,
			  path->slots[level + 1] + 1, level + 1);
	if (wret)
		ret = wret;

C
Chris Mason 已提交
623
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
624 625 626 627 628 629
		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);
630
	}
C
Chris Mason 已提交
631
	return ret;
632 633
}

C
Chris Mason 已提交
634 635 636 637 638
/*
 * 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 已提交
639
static int leaf_space_used(struct leaf *l, int start, int nr)
640 641 642 643 644 645 646 647 648 649 650 651
{
	int data_len;
	int end = start + nr - 1;

	if (!nr)
		return 0;
	data_len = l->items[start].offset + l->items[start].size;
	data_len = data_len - l->items[end].offset;
	data_len += sizeof(struct item) * nr;
	return data_len;
}

C
Chris Mason 已提交
652 653 654
/*
 * 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 已提交
655 656 657
 *
 * 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 已提交
658
 */
C
Chris Mason 已提交
659 660
static int push_leaf_right(struct ctree_root *root, struct ctree_path *path,
			   int data_size)
C
Chris Mason 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
{
	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;
	struct item *item;

	slot = path->slots[1];
	if (!path->nodes[1]) {
		return 1;
	}
	upper = path->nodes[1];
	if (slot >= upper->node.header.nritems - 1) {
		return 1;
	}
	right_buf = read_tree_block(root, upper->node.blockptrs[slot + 1]);
	right = &right_buf->leaf;
	free_space = leaf_free_space(right);
	if (free_space < data_size + sizeof(struct item)) {
		tree_block_release(root, right_buf);
		return 1;
	}
	for (i = left->header.nritems - 1; i >= 0; i--) {
		item = left->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
		if (item->size + sizeof(*item) + push_space > free_space)
			break;
		push_items++;
		push_space += item->size + sizeof(*item);
	}
	if (push_items == 0) {
		tree_block_release(root, right_buf);
		return 1;
	}
	/* push left to right */
	push_space = left->items[left->header.nritems - push_items].offset +
		     left->items[left->header.nritems - push_items].size;
	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,
		right->header.nritems * sizeof(struct item));
	/* copy the items from left to right */
	memcpy(right->items, left->items + left->header.nritems - push_items,
		push_items * sizeof(struct item));

	/* update the item pointers */
	right->header.nritems += push_items;
	push_space = LEAF_DATA_SIZE;
	for (i = 0; i < right->header.nritems; i++) {
		right->items[i].offset = push_space - right->items[i].size;
		push_space = right->items[i].offset;
	}
	left->header.nritems -= push_items;

	write_tree_block(root, left_buf);
	write_tree_block(root, right_buf);
	memcpy(upper->node.keys + slot + 1,
		&right->items[0].key, sizeof(struct key));
	write_tree_block(root, upper);
	/* then fixup the leaf pointer in the path */
	if (path->slots[0] >= left->header.nritems) {
		path->slots[0] -= left->header.nritems;
		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 已提交
745 746 747 748
/*
 * 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 已提交
749 750
static int push_leaf_left(struct ctree_root *root, struct ctree_path *path,
			  int data_size)
751
{
752 753 754
	struct tree_buffer *right_buf = path->nodes[0];
	struct leaf *right = &right_buf->leaf;
	struct tree_buffer *t;
755 756 757 758 759 760 761 762
	struct leaf *left;
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
	struct item *item;
	int old_left_nritems;
C
Chris Mason 已提交
763 764
	int ret = 0;
	int wret;
765 766 767 768 769 770 771 772

	slot = path->slots[1];
	if (slot == 0) {
		return 1;
	}
	if (!path->nodes[1]) {
		return 1;
	}
773 774
	t = read_tree_block(root, path->nodes[1]->node.blockptrs[slot - 1]);
	left = &t->leaf;
775 776
	free_space = leaf_free_space(left);
	if (free_space < data_size + sizeof(struct item)) {
777
		tree_block_release(root, t);
778 779 780 781 782 783 784 785 786 787 788 789
		return 1;
	}
	for (i = 0; i < right->header.nritems; i++) {
		item = right->items + i;
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
		if (item->size + sizeof(*item) + push_space > free_space)
			break;
		push_items++;
		push_space += item->size + sizeof(*item);
	}
	if (push_items == 0) {
790
		tree_block_release(root, t);
791 792 793 794 795 796 797 798 799 800
		return 1;
	}
	/* push data from right to left */
	memcpy(left->items + left->header.nritems,
		right->items, push_items * sizeof(struct item));
	push_space = LEAF_DATA_SIZE - right->items[push_items -1].offset;
	memcpy(left->data + leaf_data_end(left) - push_space,
		right->data + right->items[push_items - 1].offset,
		push_space);
	old_left_nritems = left->header.nritems;
801 802
	BUG_ON(old_left_nritems < 0);

803 804 805 806 807 808 809 810 811 812 813 814 815 816
	for(i = old_left_nritems; i < old_left_nritems + push_items; i++) {
		left->items[i].offset -= LEAF_DATA_SIZE -
			left->items[old_left_nritems -1].offset;
	}
	left->header.nritems += push_items;

	/* fixup right node */
	push_space = right->items[push_items-1].offset - leaf_data_end(right);
	memmove(right->data + LEAF_DATA_SIZE - push_space, right->data +
		leaf_data_end(right), push_space);
	memmove(right->items, right->items + push_items,
		(right->header.nritems - push_items) * sizeof(struct item));
	right->header.nritems -= push_items;
	push_space = LEAF_DATA_SIZE;
817

818 819 820 821
	for (i = 0; i < right->header.nritems; i++) {
		right->items[i].offset = push_space - right->items[i].size;
		push_space = right->items[i].offset;
	}
822

C
Chris Mason 已提交
823 824 825 826 827 828
	wret = write_tree_block(root, t);
	if (wret)
		ret = wret;
	wret = write_tree_block(root, right_buf);
	if (wret)
		ret = wret;
829

C
Chris Mason 已提交
830 831 832
	wret = fixup_low_keys(root, path, &right->items[0].key, 1);
	if (wret)
		ret = wret;
833 834 835 836

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
837 838
		tree_block_release(root, path->nodes[0]);
		path->nodes[0] = t;
839 840
		path->slots[1] -= 1;
	} else {
841
		tree_block_release(root, t);
842 843
		path->slots[0] -= push_items;
	}
844
	BUG_ON(path->slots[0] < 0);
C
Chris Mason 已提交
845
	return ret;
846 847
}

C
Chris Mason 已提交
848 849 850
/*
 * 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 已提交
851 852
 *
 * returns 0 if all went well and < 0 on failure.
C
Chris Mason 已提交
853
 */
C
Chris Mason 已提交
854 855
static int split_leaf(struct ctree_root *root, struct ctree_path *path,
		      int data_size)
856
{
C
Chris Mason 已提交
857 858
	struct tree_buffer *l_buf;
	struct leaf *l;
859 860 861
	int nritems;
	int mid;
	int slot;
862
	struct leaf *right;
863
	struct tree_buffer *right_buffer;
864 865 866 867 868
	int space_needed = data_size + sizeof(struct item);
	int data_copy_size;
	int rt_data_off;
	int i;
	int ret;
C
Chris Mason 已提交
869 870 871 872 873 874 875 876 877
	int wret;

	wret = push_leaf_left(root, path, data_size);
	if (wret < 0)
		return wret;
	if (wret) {
		wret = push_leaf_right(root, path, data_size);
		if (wret < 0)
			return wret;
878
	}
C
Chris Mason 已提交
879 880 881 882 883 884 885
	l_buf = path->nodes[0];
	l = &l_buf->leaf;

	/* did the pushes work? */
	if (leaf_free_space(l) >= sizeof(struct item) + data_size)
		return 0;

C
Chris Mason 已提交
886 887 888 889 890
	if (!path->nodes[1]) {
		ret = insert_new_root(root, path, 1);
		if (ret)
			return ret;
	}
891 892 893 894 895 896 897 898
	slot = path->slots[0];
	nritems = l->header.nritems;
	mid = (nritems + 1)/ 2;

	right_buffer = alloc_free_block(root);
	BUG_ON(!right_buffer);
	BUG_ON(mid == nritems);
	right = &right_buffer->leaf;
899 900
	memset(right, 0, sizeof(*right));
	if (mid <= slot) {
C
Chris Mason 已提交
901
		/* FIXME, just alloc a new leaf here */
902 903 904 905
		if (leaf_space_used(l, mid, nritems - mid) + space_needed >
			LEAF_DATA_SIZE)
			BUG();
	} else {
C
Chris Mason 已提交
906
		/* FIXME, just alloc a new leaf here */
907 908 909 910 911
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
			LEAF_DATA_SIZE)
			BUG();
	}
	right->header.nritems = nritems - mid;
912 913
	right->header.blocknr = right_buffer->blocknr;
	right->header.flags = node_level(0);
C
Chris Mason 已提交
914
	right->header.parentid = root->node->node.header.parentid;
915 916 917 918 919 920 921 922
	data_copy_size = l->items[mid].offset + l->items[mid].size -
			 leaf_data_end(l);
	memcpy(right->items, l->items + mid,
	       (nritems - mid) * sizeof(struct item));
	memcpy(right->data + LEAF_DATA_SIZE - data_copy_size,
	       l->data + leaf_data_end(l), data_copy_size);
	rt_data_off = LEAF_DATA_SIZE -
		     (l->items[mid].offset + l->items[mid].size);
C
Chris Mason 已提交
923 924

	for (i = 0; i < right->header.nritems; i++)
925
		right->items[i].offset += rt_data_off;
C
Chris Mason 已提交
926

927
	l->header.nritems = mid;
C
Chris Mason 已提交
928 929
	ret = 0;
	wret = insert_ptr(root, path, &right->items[0].key,
C
Chris Mason 已提交
930
			  right_buffer->blocknr, path->slots[1] + 1, 1);
C
Chris Mason 已提交
931 932 933 934 935 936 937 938
	if (wret)
		ret = wret;
	wret = write_tree_block(root, right_buffer);
	if (wret)
		ret = wret;
	wret = write_tree_block(root, l_buf);
	if (wret)
		ret = wret;
939 940

	BUG_ON(path->slots[0] != slot);
941
	if (mid <= slot) {
942 943
		tree_block_release(root, path->nodes[0]);
		path->nodes[0] = right_buffer;
944 945
		path->slots[0] -= mid;
		path->slots[1] += 1;
946 947 948
	} else
		tree_block_release(root, right_buffer);
	BUG_ON(path->slots[0] < 0);
949 950 951
	return ret;
}

C
Chris Mason 已提交
952 953 954 955
/*
 * 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.
 */
956 957 958
int insert_item(struct ctree_root *root, struct key *key,
			  void *data, int data_size)
{
C
Chris Mason 已提交
959 960
	int ret = 0;
	int wret;
961
	int slot;
962
	int slot_orig;
963
	struct leaf *leaf;
964
	struct tree_buffer *leaf_buf;
965 966 967 968
	unsigned int nritems;
	unsigned int data_end;
	struct ctree_path path;

C
Chris Mason 已提交
969
	/* create a root if there isn't one */
C
Chris Mason 已提交
970
	if (!root->node)
C
Chris Mason 已提交
971
		BUG();
972
	init_path(&path);
C
Chris Mason 已提交
973
	ret = search_slot(root, key, &path, data_size);
974 975
	if (ret == 0) {
		release_path(root, &path);
976
		return -EEXIST;
977
	}
C
Chris Mason 已提交
978 979 980 981
	if (ret < 0) {
		release_path(root, &path);
		return ret;
	}
982

983 984 985
	slot_orig = path.slots[0];
	leaf_buf = path.nodes[0];
	leaf = &leaf_buf->leaf;
C
Chris Mason 已提交
986

987 988
	nritems = leaf->header.nritems;
	data_end = leaf_data_end(leaf);
989

990 991 992 993
	if (leaf_free_space(leaf) <  sizeof(struct item) + data_size)
		BUG();

	slot = path.slots[0];
994
	BUG_ON(slot < 0);
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
	if (slot != nritems) {
		int i;
		unsigned int old_data = leaf->items[slot].offset +
					leaf->items[slot].size;

		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
		for (i = slot; i < nritems; i++)
			leaf->items[i].offset -= data_size;

		/* shift the items */
		memmove(leaf->items + slot + 1, leaf->items + slot,
		        (nritems - slot) * sizeof(struct item));

		/* 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 已提交
1016
	/* copy the new data in */
1017 1018 1019 1020 1021
	memcpy(&leaf->items[slot].key, key, sizeof(struct key));
	leaf->items[slot].offset = data_end - data_size;
	leaf->items[slot].size = data_size;
	memcpy(leaf->data + data_end - data_size, data, data_size);
	leaf->header.nritems += 1;
C
Chris Mason 已提交
1022 1023

	ret = 0;
1024
	if (slot == 0)
C
Chris Mason 已提交
1025 1026 1027 1028 1029 1030
		ret = fixup_low_keys(root, &path, key, 1);

	wret = write_tree_block(root, leaf_buf);
	if (wret)
		ret = wret;

1031 1032
	if (leaf_free_space(leaf) < 0)
		BUG();
1033
	check_leaf(&path, 0);
1034
	release_path(root, &path);
C
Chris Mason 已提交
1035
	return ret;
1036 1037
}

C
Chris Mason 已提交
1038
/*
C
Chris Mason 已提交
1039
 * delete the pointer from a given node.
C
Chris Mason 已提交
1040 1041 1042 1043 1044
 *
 * 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.
 */
1045 1046
static int del_ptr(struct ctree_root *root, struct ctree_path *path, int level,
		   int slot)
1047 1048
{
	struct node *node;
1049
	struct tree_buffer *parent = path->nodes[level];
1050
	int nritems;
C
Chris Mason 已提交
1051
	int ret = 0;
1052
	int wret;
1053

1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
	node = &parent->node;
	nritems = node->header.nritems;

	if (slot != nritems -1) {
		memmove(node->keys + slot, node->keys + slot + 1,
			sizeof(struct key) * (nritems - slot - 1));
		memmove(node->blockptrs + slot,
			node->blockptrs + slot + 1,
			sizeof(u64) * (nritems - slot - 1));
	}
	node->header.nritems--;
	if (node->header.nritems == 0 && parent == root->node) {
		BUG_ON(node_level(root->node->node.header.flags) != 1);
		/* just turn the root into a leaf and break */
		root->node->node.header.flags = node_level(0);
	} else if (slot == 0) {
		wret = fixup_low_keys(root, path, node->keys, level + 1);
C
Chris Mason 已提交
1071 1072
		if (wret)
			ret = wret;
1073
	}
1074 1075 1076
	wret = write_tree_block(root, parent);
	if (wret)
		ret = wret;
C
Chris Mason 已提交
1077
	return ret;
1078 1079
}

C
Chris Mason 已提交
1080 1081 1082 1083
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
1084
int del_item(struct ctree_root *root, struct ctree_path *path)
1085 1086 1087
{
	int slot;
	struct leaf *leaf;
1088
	struct tree_buffer *leaf_buf;
1089 1090
	int doff;
	int dsize;
C
Chris Mason 已提交
1091 1092
	int ret = 0;
	int wret;
1093

1094 1095
	leaf_buf = path->nodes[0];
	leaf = &leaf_buf->leaf;
1096
	slot = path->slots[0];
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
	doff = leaf->items[slot].offset;
	dsize = leaf->items[slot].size;

	if (slot != leaf->header.nritems - 1) {
		int i;
		int data_end = leaf_data_end(leaf);
		memmove(leaf->data + data_end + dsize,
			leaf->data + data_end,
			doff - data_end);
		for (i = slot + 1; i < leaf->header.nritems; i++)
			leaf->items[i].offset += dsize;
		memmove(leaf->items + slot, leaf->items + slot + 1,
			sizeof(struct item) *
			(leaf->header.nritems - slot - 1));
	}
	leaf->header.nritems -= 1;
C
Chris Mason 已提交
1113
	/* delete the leaf if we've emptied it */
1114
	if (leaf->header.nritems == 0) {
1115 1116 1117
		if (leaf_buf == root->node) {
			leaf->header.flags = node_level(0);
			write_tree_block(root, leaf_buf);
1118
		} else {
1119
			wret = del_ptr(root, path, 1, path->slots[1]);
C
Chris Mason 已提交
1120 1121
			if (wret)
				ret = wret;
C
Chris Mason 已提交
1122 1123 1124
			wret = free_extent(root, leaf_buf->blocknr, 1);
			if (wret)
				ret = wret;
1125
		}
1126
	} else {
C
Chris Mason 已提交
1127
		int used = leaf_space_used(leaf, 0, leaf->header.nritems);
C
Chris Mason 已提交
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
		if (slot == 0) {
			wret = fixup_low_keys(root, path,
						   &leaf->items[0].key, 1);
			if (wret)
				ret = wret;
		}
		wret = write_tree_block(root, leaf_buf);
		if (wret)
			ret = wret;

C
Chris Mason 已提交
1138
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
1139
		if (used < LEAF_DATA_SIZE / 3) {
1140 1141 1142 1143
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
1144
			slot = path->slots[1];
1145
			leaf_buf->count++;
C
Chris Mason 已提交
1146 1147 1148 1149 1150 1151 1152 1153
			wret = push_leaf_left(root, path, 1);
			if (wret < 0)
				ret = wret;
			if (leaf->header.nritems) {
				wret = push_leaf_right(root, path, 1);
				if (wret < 0)
					ret = wret;
			}
1154
			if (leaf->header.nritems == 0) {
C
Chris Mason 已提交
1155
				u64 blocknr = leaf_buf->blocknr;
1156
				wret = del_ptr(root, path, 1, slot);
C
Chris Mason 已提交
1157 1158
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1159
				tree_block_release(root, leaf_buf);
C
Chris Mason 已提交
1160 1161 1162
				wret = free_extent(root, blocknr, 1);
				if (wret)
					ret = wret;
C
Chris Mason 已提交
1163 1164
			} else {
				tree_block_release(root, leaf_buf);
1165 1166 1167
			}
		}
	}
C
Chris Mason 已提交
1168
	return ret;
1169 1170
}

C
Chris Mason 已提交
1171 1172
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
1173 1174
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
1175
 */
1176 1177 1178 1179 1180 1181
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 已提交
1182
	struct tree_buffer *next = NULL;
1183 1184 1185

	while(level < MAX_LEVEL) {
		if (!path->nodes[level])
C
Chris Mason 已提交
1186
			return 1;
1187 1188 1189 1190 1191 1192 1193
		slot = path->slots[level] + 1;
		c = path->nodes[level];
		if (slot >= c->node.header.nritems) {
			level++;
			continue;
		}
		blocknr = c->node.blockptrs[slot];
C
Chris Mason 已提交
1194 1195
		if (next)
			tree_block_release(root, next);
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
		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;
}