ctree.c 60.3 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

19
#include <linux/highmem.h>
20 21
#include "ctree.h"
#include "disk-io.h"
22
#include "transaction.h"
23
#include "print-tree.h"
24

25 26 27
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
28 29
		      *root, struct btrfs_key *ins_key,
		      struct btrfs_path *path, int data_size);
30 31 32 33 34 35 36
static int push_node_left(struct btrfs_trans_handle *trans,
			  struct btrfs_root *root, struct extent_buffer *dst,
			  struct extent_buffer *src);
static int balance_node_right(struct btrfs_trans_handle *trans,
			      struct btrfs_root *root,
			      struct extent_buffer *dst_buf,
			      struct extent_buffer *src_buf);
37 38
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot);
39

C
Chris Mason 已提交
40
inline void btrfs_init_path(struct btrfs_path *p)
C
Chris Mason 已提交
41
{
C
Chris Mason 已提交
42
	memset(p, 0, sizeof(*p));
C
Chris Mason 已提交
43 44
}

C
Chris Mason 已提交
45
struct btrfs_path *btrfs_alloc_path(void)
C
Chris Mason 已提交
46
{
C
Chris Mason 已提交
47 48
	struct btrfs_path *path;
	path = kmem_cache_alloc(btrfs_path_cachep, GFP_NOFS);
49
	if (path) {
C
Chris Mason 已提交
50
		btrfs_init_path(path);
51 52
		path->reada = 1;
	}
C
Chris Mason 已提交
53
	return path;
C
Chris Mason 已提交
54 55
}

C
Chris Mason 已提交
56
void btrfs_free_path(struct btrfs_path *p)
57
{
C
Chris Mason 已提交
58 59
	btrfs_release_path(NULL, p);
	kmem_cache_free(btrfs_path_cachep, p);
60 61
}

C
Chris Mason 已提交
62
void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
63 64
{
	int i;
C
Chris Mason 已提交
65
	for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
66 67
		if (!p->nodes[i])
			break;
68
		free_extent_buffer(p->nodes[i]);
69
	}
C
Chris Mason 已提交
70
	memset(p, 0, sizeof(*p));
71 72
}

73 74 75 76 77 78
static int __btrfs_cow_block(struct btrfs_trans_handle *trans,
			     struct btrfs_root *root,
			     struct extent_buffer *buf,
			     struct extent_buffer *parent, int parent_slot,
			     struct extent_buffer **cow_ret,
			     u64 search_start, u64 empty_size)
C
Chris Mason 已提交
79
{
80
	struct extent_buffer *cow;
81 82
	int ret = 0;
	int different_trans = 0;
C
Chris Mason 已提交
83

84
	WARN_ON(root->ref_cows && trans->transid != root->last_trans);
85

86
	cow = btrfs_alloc_free_block(trans, root, search_start, empty_size);
87 88
	if (IS_ERR(cow))
		return PTR_ERR(cow);
89

90
	if (buf->len != root->sectorsize || cow->len != root->sectorsize)
C
Chris Mason 已提交
91
		WARN_ON(1);
92

93 94 95 96
	copy_extent_buffer(cow, buf, 0, 0, cow->len);
	btrfs_set_header_blocknr(cow, extent_buffer_blocknr(cow));
	btrfs_set_header_generation(cow, trans->transid);
	btrfs_set_header_owner(cow, root->root_key.objectid);
97

98 99
	WARN_ON(btrfs_header_generation(buf) > trans->transid);
	if (btrfs_header_generation(buf) != trans->transid) {
100 101 102 103 104 105 106 107
		different_trans = 1;
		ret = btrfs_inc_ref(trans, root, buf);
		if (ret)
			return ret;
	} else {
		clean_tree_block(trans, root, buf);
	}

C
Chris Mason 已提交
108 109
	if (buf == root->node) {
		root->node = cow;
110
		extent_buffer_get(cow);
C
Chris Mason 已提交
111
		if (buf != root->commit_root) {
112 113
			btrfs_free_extent(trans, root,
					  extent_buffer_blocknr(buf), 1, 1);
C
Chris Mason 已提交
114
		}
115
		free_extent_buffer(buf);
C
Chris Mason 已提交
116
	} else {
117 118
		btrfs_set_node_blockptr(parent, parent_slot,
					extent_buffer_blocknr(cow));
C
Chris Mason 已提交
119
		btrfs_mark_buffer_dirty(parent);
120 121
		WARN_ON(btrfs_header_generation(parent) != trans->transid);
		btrfs_free_extent(trans, root, extent_buffer_blocknr(buf),1,1);
C
Chris Mason 已提交
122
	}
123
	free_extent_buffer(buf);
C
Chris Mason 已提交
124
	btrfs_mark_buffer_dirty(cow);
C
Chris Mason 已提交
125
	*cow_ret = cow;
C
Chris Mason 已提交
126 127 128
	return 0;
}

129 130 131 132
int btrfs_cow_block(struct btrfs_trans_handle *trans,
		    struct btrfs_root *root, struct extent_buffer *buf,
		    struct extent_buffer *parent, int parent_slot,
		    struct extent_buffer **cow_ret)
133 134 135 136 137 138 139 140 141 142 143 144
{
	u64 search_start;
	if (trans->transaction != root->fs_info->running_transaction) {
		printk(KERN_CRIT "trans %Lu running %Lu\n", trans->transid,
		       root->fs_info->running_transaction->transid);
		WARN_ON(1);
	}
	if (trans->transid != root->fs_info->generation) {
		printk(KERN_CRIT "trans %Lu running %Lu\n", trans->transid,
		       root->fs_info->generation);
		WARN_ON(1);
	}
145
	if (btrfs_header_generation(buf) == trans->transid) {
146 147 148 149
		*cow_ret = buf;
		return 0;
	}

150
	search_start = extent_buffer_blocknr(buf) & ~((u64)65535);
151 152 153 154 155 156 157 158 159 160 161 162 163
	return __btrfs_cow_block(trans, root, buf, parent,
				 parent_slot, cow_ret, search_start, 0);
}

static int close_blocks(u64 blocknr, u64 other)
{
	if (blocknr < other && other - blocknr < 8)
		return 1;
	if (blocknr > other && blocknr - other < 8)
		return 1;
	return 0;
}

164 165
#if 0
static int should_defrag_leaf(struct extent_buffer *eb)
166
{
167 168
	return 0;
	struct btrfs_leaf *leaf = btrfs_buffer_leaf(eb);
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
	struct btrfs_disk_key *key;
	u32 nritems;

	if (buffer_defrag(bh))
		return 1;

	nritems = btrfs_header_nritems(&leaf->header);
	if (nritems == 0)
		return 0;

	key = &leaf->items[0].key;
	if (btrfs_disk_key_type(key) == BTRFS_DIR_ITEM_KEY)
		return 1;

	key = &leaf->items[nritems-1].key;
	if (btrfs_disk_key_type(key) == BTRFS_DIR_ITEM_KEY)
		return 1;
	if (nritems > 4) {
		key = &leaf->items[nritems/2].key;
		if (btrfs_disk_key_type(key) == BTRFS_DIR_ITEM_KEY)
			return 1;
	}
	return 0;
}
193
#endif
194

195
int btrfs_realloc_node(struct btrfs_trans_handle *trans,
196
		       struct btrfs_root *root, struct extent_buffer *parent,
197
		       int cache_only, u64 *last_ret)
198
{
199 200
	return 0;
#if 0
201
	struct btrfs_node *parent_node;
202 203
	struct extent_buffer *cur_eb;
	struct extent_buffer *tmp_eb;
204
	u64 blocknr;
205 206
	u64 search_start = *last_ret;
	u64 last_block = 0;
207 208 209 210 211 212
	u64 other;
	u32 parent_nritems;
	int start_slot;
	int end_slot;
	int i;
	int err = 0;
213
	int parent_level;
214 215 216 217 218 219 220 221 222 223 224

	if (trans->transaction != root->fs_info->running_transaction) {
		printk(KERN_CRIT "trans %Lu running %Lu\n", trans->transid,
		       root->fs_info->running_transaction->transid);
		WARN_ON(1);
	}
	if (trans->transid != root->fs_info->generation) {
		printk(KERN_CRIT "trans %Lu running %Lu\n", trans->transid,
		       root->fs_info->generation);
		WARN_ON(1);
	}
225 226 227
	if (buffer_defrag_done(parent))
		return 0;

228 229
	parent_node = btrfs_buffer_node(parent);
	parent_nritems = btrfs_header_nritems(&parent_node->header);
230
	parent_level = btrfs_header_level(&parent_node->header);
231 232 233 234 235 236 237 238 239 240

	start_slot = 0;
	end_slot = parent_nritems;

	if (parent_nritems == 1)
		return 0;

	for (i = start_slot; i < end_slot; i++) {
		int close = 1;
		blocknr = btrfs_node_blockptr(parent_node, i);
241 242
		if (last_block == 0)
			last_block = blocknr;
243 244 245 246 247 248 249 250
		if (i > 0) {
			other = btrfs_node_blockptr(parent_node, i - 1);
			close = close_blocks(blocknr, other);
		}
		if (close && i < end_slot - 1) {
			other = btrfs_node_blockptr(parent_node, i + 1);
			close = close_blocks(blocknr, other);
		}
251 252
		if (close) {
			last_block = blocknr;
253
			continue;
254
		}
255 256 257

		cur_bh = btrfs_find_tree_block(root, blocknr);
		if (!cur_bh || !buffer_uptodate(cur_bh) ||
258 259 260
		    buffer_locked(cur_bh) ||
		    (parent_level != 1 && !buffer_defrag(cur_bh)) ||
		    (parent_level == 1 && !should_defrag_leaf(cur_bh))) {
261 262 263 264
			if (cache_only) {
				brelse(cur_bh);
				continue;
			}
265 266 267 268 269
			if (!cur_bh || !buffer_uptodate(cur_bh) ||
			    buffer_locked(cur_bh)) {
				brelse(cur_bh);
				cur_bh = read_tree_block(root, blocknr);
			}
270
		}
271 272 273
		if (search_start == 0)
			search_start = last_block & ~((u64)65535);

274 275 276
		err = __btrfs_cow_block(trans, root, cur_bh, parent, i,
					&tmp_bh, search_start,
					min(8, end_slot - i));
Y
Yan 已提交
277 278
		if (err) {
			brelse(cur_bh);
279
			break;
Y
Yan 已提交
280
		}
281
		search_start = bh_blocknr(tmp_bh);
282 283 284
		*last_ret = search_start;
		if (parent_level == 1)
			clear_buffer_defrag(tmp_bh);
285
		set_buffer_defrag_done(tmp_bh);
286 287 288
		brelse(tmp_bh);
	}
	return err;
289
#endif
290 291
}

C
Chris Mason 已提交
292 293 294 295 296
/*
 * 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 已提交
297
static inline unsigned int leaf_data_end(struct btrfs_root *root,
298
					 struct extent_buffer *leaf)
299
{
300
	u32 nr = btrfs_header_nritems(leaf);
301
	if (nr == 0)
C
Chris Mason 已提交
302
		return BTRFS_LEAF_DATA_SIZE(root);
303
	return btrfs_item_offset_nr(leaf, nr - 1);
304 305
}

C
Chris Mason 已提交
306 307 308
/*
 * compare two keys in a memcmp fashion
 */
C
Chris Mason 已提交
309
static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
310
{
C
Chris Mason 已提交
311 312 313 314 315
	struct btrfs_key k1;

	btrfs_disk_key_to_cpu(&k1, disk);

	if (k1.objectid > k2->objectid)
316
		return 1;
C
Chris Mason 已提交
317
	if (k1.objectid < k2->objectid)
318
		return -1;
319
	if (k1.type > k2->type)
C
Chris Mason 已提交
320
		return 1;
321
	if (k1.type < k2->type)
C
Chris Mason 已提交
322
		return -1;
323 324 325 326
	if (k1.offset > k2->offset)
		return 1;
	if (k1.offset < k2->offset)
		return -1;
327 328
	return 0;
}
C
Chris Mason 已提交
329

C
Chris Mason 已提交
330 331
static int check_node(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
332
{
333 334 335 336
	struct extent_buffer *parent = NULL;
	struct extent_buffer *node = path->nodes[level];
	struct btrfs_disk_key parent_key;
	struct btrfs_disk_key node_key;
C
Chris Mason 已提交
337
	int parent_slot;
338 339
	int slot;
	struct btrfs_key cpukey;
340
	u32 nritems = btrfs_header_nritems(node);
C
Chris Mason 已提交
341 342

	if (path->nodes[level + 1])
343
		parent = path->nodes[level + 1];
A
Aneesh 已提交
344

345
	slot = path->slots[level];
346 347
	BUG_ON(nritems == 0);
	if (parent) {
A
Aneesh 已提交
348
		parent_slot = path->slots[level + 1];
349 350 351
		btrfs_node_key(parent, &parent_key, parent_slot);
		btrfs_node_key(node, &node_key, 0);
		BUG_ON(memcmp(&parent_key, &node_key,
C
Chris Mason 已提交
352
			      sizeof(struct btrfs_disk_key)));
353
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
354
		       btrfs_header_blocknr(node));
C
Chris Mason 已提交
355
	}
C
Chris Mason 已提交
356
	BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
357
	if (slot != 0) {
358 359 360
		btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
		btrfs_node_key(node, &node_key, slot);
		BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
361 362
	}
	if (slot < nritems - 1) {
363 364 365
		btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
		btrfs_node_key(node, &node_key, slot);
		BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
C
Chris Mason 已提交
366 367 368 369
	}
	return 0;
}

C
Chris Mason 已提交
370 371
static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
372
{
373 374
	struct extent_buffer *leaf = path->nodes[level];
	struct extent_buffer *parent = NULL;
C
Chris Mason 已提交
375
	int parent_slot;
376
	struct btrfs_key cpukey;
377 378 379
	struct btrfs_disk_key parent_key;
	struct btrfs_disk_key leaf_key;
	int slot = path->slots[0];
380

381
	u32 nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
382 383

	if (path->nodes[level + 1])
384
		parent = path->nodes[level + 1];
385 386 387 388 389

	if (nritems == 0)
		return 0;

	if (parent) {
A
Aneesh 已提交
390
		parent_slot = path->slots[level + 1];
391 392
		btrfs_node_key(parent, &parent_key, parent_slot);
		btrfs_item_key(leaf, &leaf_key, 0);
393

394
		BUG_ON(memcmp(&parent_key, &leaf_key,
C
Chris Mason 已提交
395
		       sizeof(struct btrfs_disk_key)));
396
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
		       btrfs_header_blocknr(leaf));
	}
#if 0
	for (i = 0; nritems > 1 && i < nritems - 2; i++) {
		btrfs_item_key_to_cpu(leaf, &cpukey, i + 1);
		btrfs_item_key(leaf, &leaf_key, i);
		if (comp_keys(&leaf_key, &cpukey) >= 0) {
			btrfs_print_leaf(root, leaf);
			printk("slot %d offset bad key\n", i);
			BUG_ON(1);
		}
		if (btrfs_item_offset_nr(leaf, i) !=
			btrfs_item_end_nr(leaf, i + 1)) {
			btrfs_print_leaf(root, leaf);
			printk("slot %d offset bad\n", i);
			BUG_ON(1);
		}
		if (i == 0) {
			if (btrfs_item_offset_nr(leaf, i) +
			       btrfs_item_size_nr(leaf, i) !=
			       BTRFS_LEAF_DATA_SIZE(root)) {
				btrfs_print_leaf(root, leaf);
				printk("slot %d first offset bad\n", i);
				BUG_ON(1);
			}
		}
C
Chris Mason 已提交
423
	}
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
	if (nritems > 0) {
		if (btrfs_item_size_nr(leaf, nritems - 1) > 4096) {
				btrfs_print_leaf(root, leaf);
				printk("slot %d bad size \n", nritems - 1);
				BUG_ON(1);
		}
	}
#endif
	if (slot != 0 && slot < nritems - 1) {
		btrfs_item_key(leaf, &leaf_key, slot);
		btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
		if (comp_keys(&leaf_key, &cpukey) <= 0) {
			btrfs_print_leaf(root, leaf);
			printk("slot %d offset bad key\n", slot);
			BUG_ON(1);
		}
		if (btrfs_item_offset_nr(leaf, slot - 1) !=
		       btrfs_item_end_nr(leaf, slot)) {
			btrfs_print_leaf(root, leaf);
			printk("slot %d offset bad\n", slot);
			BUG_ON(1);
		}
446 447
	}
	if (slot < nritems - 1) {
448 449 450 451 452 453 454 455 456
		btrfs_item_key(leaf, &leaf_key, slot);
		btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
		BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
		if (btrfs_item_offset_nr(leaf, slot) !=
			btrfs_item_end_nr(leaf, slot + 1)) {
			btrfs_print_leaf(root, leaf);
			printk("slot %d offset bad\n", slot);
			BUG_ON(1);
		}
C
Chris Mason 已提交
457
	}
458 459
	BUG_ON(btrfs_item_offset_nr(leaf, 0) +
	       btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
C
Chris Mason 已提交
460 461 462
	return 0;
}

C
Chris Mason 已提交
463 464
static int check_block(struct btrfs_root *root, struct btrfs_path *path,
			int level)
C
Chris Mason 已提交
465
{
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
	struct extent_buffer *buf = path->nodes[level];
	char fsid[BTRFS_FSID_SIZE];

	read_extent_buffer(buf, fsid, (unsigned long)btrfs_header_fsid(buf),
			   BTRFS_FSID_SIZE);

	if (memcmp(fsid, root->fs_info->fsid, BTRFS_FSID_SIZE)) {
		int i = 0;
		printk("warning bad block %Lu\n", buf->start);
		if (!btrfs_buffer_uptodate(buf)) {
			WARN_ON(1);
		}
		for (i = 0; i < BTRFS_FSID_SIZE; i++) {
			printk("%x:%x ", root->fs_info->fsid[i], fsid[i]);
		}
		printk("\n");
		// BUG();
	}
C
Chris Mason 已提交
484
	if (level == 0)
C
Chris Mason 已提交
485 486
		return check_leaf(root, path, level);
	return check_node(root, path, level);
C
Chris Mason 已提交
487 488
}

C
Chris Mason 已提交
489
/*
490 491 492
 * search for key in the extent_buffer.  The items start at offset p,
 * and they are item_size apart.  There are 'max' items in p.
 *
C
Chris Mason 已提交
493 494 495 496 497 498
 * 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
 */
499 500 501
static int generic_bin_search(struct extent_buffer *eb, unsigned long p,
			      int item_size, struct btrfs_key *key,
			      int max, int *slot)
502 503 504 505 506
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
C
Chris Mason 已提交
507
	struct btrfs_disk_key *tmp;
508 509 510 511 512 513
	struct btrfs_disk_key unaligned;
	unsigned long offset;
	char *map_token = NULL;
	char *kaddr = NULL;
	unsigned long map_start = 0;
	unsigned long map_len = 0;
514 515 516

	while(low < high) {
		mid = (low + high) / 2;
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
		offset = p + mid * item_size;

		if (!map_token || offset < map_start ||
		    (offset + sizeof(struct btrfs_disk_key)) >
		    map_start + map_len) {
			if (map_token)
				unmap_extent_buffer(eb, map_token, KM_USER0);
			map_extent_buffer(eb, offset, &map_token, &kaddr,
					  &map_start, &map_len, KM_USER0);

		}
		if (offset + sizeof(struct btrfs_disk_key) >
		    map_start + map_len) {
			unmap_extent_buffer(eb, map_token, KM_USER0);
			read_extent_buffer(eb, &unaligned,
					   offset, sizeof(unaligned));
			map_token = NULL;
			tmp = &unaligned;
		} else {
			tmp = (struct btrfs_disk_key *)(kaddr + offset -
							map_start);
		}
539 540 541 542 543 544 545 546
		ret = comp_keys(tmp, key);

		if (ret < 0)
			low = mid + 1;
		else if (ret > 0)
			high = mid;
		else {
			*slot = mid;
547
			unmap_extent_buffer(eb, map_token, KM_USER0);
548 549 550 551
			return 0;
		}
	}
	*slot = low;
552 553
	if (map_token)
		unmap_extent_buffer(eb, map_token, KM_USER0);
554 555 556
	return 1;
}

C
Chris Mason 已提交
557 558 559 560
/*
 * simple bin_search frontend that does the right thing for
 * leaves vs nodes
 */
561 562
static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
		      int level, int *slot)
563
{
564 565 566
	if (level == 0) {
		return generic_bin_search(eb,
					  offsetof(struct btrfs_leaf, items),
C
Chris Mason 已提交
567
					  sizeof(struct btrfs_item),
568
					  key, btrfs_header_nritems(eb),
569
					  slot);
570
	} else {
571 572
		return generic_bin_search(eb,
					  offsetof(struct btrfs_node, ptrs),
C
Chris Mason 已提交
573
					  sizeof(struct btrfs_key_ptr),
574
					  key, btrfs_header_nritems(eb),
575
					  slot);
576 577 578 579
	}
	return -1;
}

580 581
static struct extent_buffer *read_node_slot(struct btrfs_root *root,
				   struct extent_buffer *parent, int slot)
582 583 584
{
	if (slot < 0)
		return NULL;
585
	if (slot >= btrfs_header_nritems(parent))
586
		return NULL;
587
	return read_tree_block(root, btrfs_node_blockptr(parent, slot));
588 589
}

590 591
static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root
			 *root, struct btrfs_path *path, int level)
592
{
593 594 595 596
	struct extent_buffer *right = NULL;
	struct extent_buffer *mid;
	struct extent_buffer *left = NULL;
	struct extent_buffer *parent = NULL;
597 598 599 600
	int ret = 0;
	int wret;
	int pslot;
	int orig_slot = path->slots[level];
601
	int err_on_enospc = 0;
602
	u64 orig_ptr;
603 604 605 606

	if (level == 0)
		return 0;

607
	mid = path->nodes[level];
608
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);
609

C
Chris Mason 已提交
610
	if (level < BTRFS_MAX_LEVEL - 1)
611
		parent = path->nodes[level + 1];
612 613
	pslot = path->slots[level + 1];

C
Chris Mason 已提交
614 615 616 617
	/*
	 * deal with the case where there is only one pointer in the root
	 * by promoting the node below to a root
	 */
618 619 620
	if (!parent) {
		struct extent_buffer *child;
		u64 blocknr = extent_buffer_blocknr(mid);
621

622
		if (btrfs_header_nritems(mid) != 1)
623 624 625
			return 0;

		/* promote the child to a root */
626
		child = read_node_slot(root, mid, 0);
627 628 629
		BUG_ON(!child);
		root->node = child;
		path->nodes[level] = NULL;
630 631
		clean_tree_block(trans, root, mid);
		wait_on_tree_block_writeback(root, mid);
632
		/* once for the path */
633
		free_extent_buffer(mid);
634
		/* once for the root ptr */
635
		free_extent_buffer(mid);
636
		return btrfs_free_extent(trans, root, blocknr, 1, 1);
637
	}
638
	if (btrfs_header_nritems(mid) >
C
Chris Mason 已提交
639
	    BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
640 641
		return 0;

642
	if (btrfs_header_nritems(mid) < 2)
643 644
		err_on_enospc = 1;

645 646 647 648
	left = read_node_slot(root, parent, pslot - 1);
	if (left) {
		wret = btrfs_cow_block(trans, root, left,
				       parent, pslot - 1, &left);
649 650 651 652
		if (wret) {
			ret = wret;
			goto enospc;
		}
653
	}
654 655 656 657
	right = read_node_slot(root, parent, pslot + 1);
	if (right) {
		wret = btrfs_cow_block(trans, root, right,
				       parent, pslot + 1, &right);
658 659 660 661 662 663 664
		if (wret) {
			ret = wret;
			goto enospc;
		}
	}

	/* first, try to make some room in the middle buffer */
665 666 667
	if (left) {
		orig_slot += btrfs_header_nritems(left);
		wret = push_node_left(trans, root, left, mid);
668 669
		if (wret < 0)
			ret = wret;
670
		if (btrfs_header_nritems(mid) < 2)
671
			err_on_enospc = 1;
672
	}
673 674 675 676

	/*
	 * then try to empty the right most buffer into the middle
	 */
677 678
	if (right) {
		wret = push_node_left(trans, root, mid, right);
679
		if (wret < 0 && wret != -ENOSPC)
680
			ret = wret;
681 682 683 684 685
		if (btrfs_header_nritems(right) == 0) {
			u64 blocknr = extent_buffer_blocknr(right);
			clean_tree_block(trans, root, right);
			wait_on_tree_block_writeback(root, right);
			free_extent_buffer(right);
686
			right = NULL;
687 688
			wret = del_ptr(trans, root, path, level + 1, pslot +
				       1);
689 690
			if (wret)
				ret = wret;
691
			wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
692 693 694
			if (wret)
				ret = wret;
		} else {
695 696 697 698
			struct btrfs_disk_key right_key;
			btrfs_node_key(right, &right_key, 0);
			btrfs_set_node_key(parent, &right_key, pslot + 1);
			btrfs_mark_buffer_dirty(parent);
699 700
		}
	}
701
	if (btrfs_header_nritems(mid) == 1) {
702 703 704 705 706 707 708 709 710
		/*
		 * 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
		 */
711 712
		BUG_ON(!left);
		wret = balance_node_right(trans, root, mid, left);
713
		if (wret < 0) {
714
			ret = wret;
715 716
			goto enospc;
		}
717 718
		BUG_ON(wret == 1);
	}
719
	if (btrfs_header_nritems(mid) == 0) {
720
		/* we've managed to empty the middle node, drop it */
721 722 723 724
		u64 blocknr = extent_buffer_blocknr(mid);
		clean_tree_block(trans, root, mid);
		wait_on_tree_block_writeback(root, mid);
		free_extent_buffer(mid);
725
		mid = NULL;
726
		wret = del_ptr(trans, root, path, level + 1, pslot);
727 728
		if (wret)
			ret = wret;
729
		wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
730 731
		if (wret)
			ret = wret;
732 733
	} else {
		/* update the parent key to reflect our changes */
734 735 736 737
		struct btrfs_disk_key mid_key;
		btrfs_node_key(mid, &mid_key, 0);
		btrfs_set_node_key(parent, &mid_key, pslot);
		btrfs_mark_buffer_dirty(parent);
738
	}
739

740
	/* update the path */
741 742 743 744
	if (left) {
		if (btrfs_header_nritems(left) > orig_slot) {
			extent_buffer_get(left);
			path->nodes[level] = left;
745 746
			path->slots[level + 1] -= 1;
			path->slots[level] = orig_slot;
747 748
			if (mid)
				free_extent_buffer(mid);
749
		} else {
750
			orig_slot -= btrfs_header_nritems(left);
751 752 753
			path->slots[level] = orig_slot;
		}
	}
754
	/* double check we haven't messed things up */
C
Chris Mason 已提交
755
	check_block(root, path, level);
C
Chris Mason 已提交
756
	if (orig_ptr !=
757
	    btrfs_node_blockptr(path->nodes[level], path->slots[level]))
758
		BUG();
759
enospc:
760 761 762 763
	if (right)
		free_extent_buffer(right);
	if (left)
		free_extent_buffer(left);
764 765 766
	return ret;
}

767 768 769 770 771
/* returns zero if the push worked, non-zero otherwise */
static int push_nodes_for_insert(struct btrfs_trans_handle *trans,
				struct btrfs_root *root,
				struct btrfs_path *path, int level)
{
772 773 774 775
	struct extent_buffer *right = NULL;
	struct extent_buffer *mid;
	struct extent_buffer *left = NULL;
	struct extent_buffer *parent = NULL;
776 777 778 779 780 781 782 783 784
	int ret = 0;
	int wret;
	int pslot;
	int orig_slot = path->slots[level];
	u64 orig_ptr;

	if (level == 0)
		return 1;

785
	mid = path->nodes[level];
786 787 788
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);

	if (level < BTRFS_MAX_LEVEL - 1)
789
		parent = path->nodes[level + 1];
790 791
	pslot = path->slots[level + 1];

792
	if (!parent)
793 794
		return 1;

795
	left = read_node_slot(root, parent, pslot - 1);
796 797

	/* first, try to make some room in the middle buffer */
798
	if (left) {
799
		u32 left_nr;
800
		left_nr = btrfs_header_nritems(left);
C
Chris Mason 已提交
801 802 803
		if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
			wret = 1;
		} else {
804 805
			ret = btrfs_cow_block(trans, root, left, parent,
					      pslot - 1, &left);
806 807 808 809
			if (ret)
				wret = 1;
			else {
				wret = push_node_left(trans, root,
810
						      left, mid);
811
			}
C
Chris Mason 已提交
812
		}
813 814 815
		if (wret < 0)
			ret = wret;
		if (wret == 0) {
816
			struct btrfs_disk_key disk_key;
817
			orig_slot += left_nr;
818 819 820 821 822
			btrfs_node_key(mid, &disk_key, 0);
			btrfs_set_node_key(parent, &disk_key, pslot);
			btrfs_mark_buffer_dirty(parent);
			if (btrfs_header_nritems(left) > orig_slot) {
				path->nodes[level] = left;
823 824
				path->slots[level + 1] -= 1;
				path->slots[level] = orig_slot;
825
				free_extent_buffer(mid);
826 827
			} else {
				orig_slot -=
828
					btrfs_header_nritems(left);
829
				path->slots[level] = orig_slot;
830
				free_extent_buffer(left);
831 832 833 834
			}
			check_node(root, path, level);
			return 0;
		}
835
		free_extent_buffer(left);
836
	}
837
	right= read_node_slot(root, parent, pslot + 1);
838 839 840 841

	/*
	 * then try to empty the right most buffer into the middle
	 */
842
	if (right) {
C
Chris Mason 已提交
843
		u32 right_nr;
844
		right_nr = btrfs_header_nritems(right);
C
Chris Mason 已提交
845 846 847
		if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
			wret = 1;
		} else {
848 849 850
			ret = btrfs_cow_block(trans, root, right,
					      parent, pslot + 1,
					      &right);
851 852 853 854
			if (ret)
				wret = 1;
			else {
				wret = balance_node_right(trans, root,
855
							  right, mid);
856
			}
C
Chris Mason 已提交
857
		}
858 859 860
		if (wret < 0)
			ret = wret;
		if (wret == 0) {
861 862 863 864 865 866 867 868
			struct btrfs_disk_key disk_key;

			btrfs_node_key(right, &disk_key, 0);
			btrfs_set_node_key(parent, &disk_key, pslot + 1);
			btrfs_mark_buffer_dirty(parent);

			if (btrfs_header_nritems(mid) <= orig_slot) {
				path->nodes[level] = right;
869 870
				path->slots[level + 1] += 1;
				path->slots[level] = orig_slot -
871 872
					btrfs_header_nritems(mid);
				free_extent_buffer(mid);
873
			} else {
874
				free_extent_buffer(right);
875 876 877 878
			}
			check_node(root, path, level);
			return 0;
		}
879
		free_extent_buffer(right);
880 881 882 883 884
	}
	check_node(root, path, level);
	return 1;
}

885 886 887 888
/*
 * readahead one full node of leaves
 */
static void reada_for_search(struct btrfs_root *root, struct btrfs_path *path,
889
			     int level, int slot)
890
{
891
	struct extent_buffer *node;
892 893 894 895 896 897 898 899 900 901
	int i;
	u32 nritems;
	u64 blocknr;
	u64 search;
	u64 cluster_start;
	int ret;
	int nread = 0;
	int direction = path->reada;
	struct radix_tree_root found;
	unsigned long gang[8];
902
	struct extent_buffer *eb;
903

904 905 906 907
	if (level == 0)
		return;

	if (!path->nodes[level])
908 909
		return;

910
	node = path->nodes[level];
911
	search = btrfs_node_blockptr(node, slot);
912 913 914
	eb = btrfs_find_tree_block(root, search);
	if (eb) {
		free_extent_buffer(eb);
915 916 917 918
		return;
	}

	init_bit_radix(&found);
919
	nritems = btrfs_header_nritems(node);
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
	for (i = slot; i < nritems; i++) {
		blocknr = btrfs_node_blockptr(node, i);
		set_radix_bit(&found, blocknr);
	}
	if (direction > 0) {
		cluster_start = search - 4;
		if (cluster_start > search)
			cluster_start = 0;
	} else
		cluster_start = search + 4;
	while(1) {
		ret = find_first_radix_bit(&found, gang, 0, ARRAY_SIZE(gang));
		if (!ret)
			break;
		for (i = 0; i < ret; i++) {
			blocknr = gang[i];
			clear_radix_bit(&found, blocknr);
937
			if (path->reada == 1 && nread > 16)
938
				continue;
939
			if (close_blocks(cluster_start, blocknr)) {
940 941 942 943 944 945 946
				readahead_tree_block(root, blocknr);
				nread++;
				cluster_start = blocknr;
			}
		}
	}
}
C
Chris Mason 已提交
947 948 949 950 951 952
/*
 * 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 已提交
953 954
 * be inserted, and 1 is returned.  If there are other errors during the
 * search a negative error number is returned.
C
Chris Mason 已提交
955 956 957 958
 *
 * 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 已提交
959
 */
960 961 962
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)
963
{
964
	struct extent_buffer *b;
965
	u64 blocknr;
966 967 968
	int slot;
	int ret;
	int level;
969
	int should_reada = p->reada;
970 971
	u8 lowest_level = 0;

972 973
	lowest_level = p->lowest_level;
	WARN_ON(lowest_level && ins_len);
C
Chris Mason 已提交
974 975
	WARN_ON(p->nodes[0] != NULL);
	WARN_ON(!mutex_is_locked(&root->fs_info->fs_mutex));
976 977
again:
	b = root->node;
978
	extent_buffer_get(b);
979
	while (b) {
980
		level = btrfs_header_level(b);
C
Chris Mason 已提交
981 982
		if (cow) {
			int wret;
C
Chris Mason 已提交
983 984 985
			wret = btrfs_cow_block(trans, root, b,
					       p->nodes[level + 1],
					       p->slots[level + 1],
Y
Yan 已提交
986
					       &b);
987
			if (wret) {
988
				free_extent_buffer(b);
989 990
				return wret;
			}
C
Chris Mason 已提交
991 992
		}
		BUG_ON(!cow && ins_len);
993
		if (level != btrfs_header_level(b))
C
Chris Mason 已提交
994
			WARN_ON(1);
995
		level = btrfs_header_level(b);
996
		p->nodes[level] = b;
C
Chris Mason 已提交
997
		ret = check_block(root, p, level);
C
Chris Mason 已提交
998 999
		if (ret)
			return -1;
1000 1001
		ret = bin_search(b, key, level, &slot);
		if (level != 0) {
1002 1003 1004
			if (ret && slot > 0)
				slot -= 1;
			p->slots[level] = slot;
1005
			if (ins_len > 0 && btrfs_header_nritems(b) >=
1006
			    BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1007
				int sret = split_node(trans, root, p, level);
C
Chris Mason 已提交
1008 1009 1010 1011 1012
				BUG_ON(sret > 0);
				if (sret)
					return sret;
				b = p->nodes[level];
				slot = p->slots[level];
1013
			} else if (ins_len < 0) {
1014 1015
				int sret = balance_level(trans, root, p,
							 level);
1016 1017 1018 1019 1020 1021
				if (sret)
					return sret;
				b = p->nodes[level];
				if (!b)
					goto again;
				slot = p->slots[level];
1022
				BUG_ON(btrfs_header_nritems(b) == 1);
C
Chris Mason 已提交
1023
			}
1024 1025 1026
			/* this is only true while dropping a snapshot */
			if (level == lowest_level)
				break;
1027
			blocknr = btrfs_node_blockptr(b, slot);
1028 1029
			if (should_reada)
				reada_for_search(root, p, level, slot);
1030
			b = read_tree_block(root, btrfs_node_blockptr(b, slot));
1031 1032
		} else {
			p->slots[level] = slot;
1033
			if (ins_len > 0 && btrfs_leaf_free_space(root, b) <
C
Chris Mason 已提交
1034
			    sizeof(struct btrfs_item) + ins_len) {
1035 1036
				int sret = split_leaf(trans, root, key,
						      p, ins_len);
C
Chris Mason 已提交
1037 1038 1039 1040
				BUG_ON(sret > 0);
				if (sret)
					return sret;
			}
1041 1042 1043
			return ret;
		}
	}
C
Chris Mason 已提交
1044
	return 1;
1045 1046
}

C
Chris Mason 已提交
1047 1048 1049 1050 1051 1052
/*
 * 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 已提交
1053 1054 1055
 *
 * 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 已提交
1056
 */
1057 1058 1059
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)
1060 1061
{
	int i;
C
Chris Mason 已提交
1062
	int ret = 0;
1063 1064
	struct extent_buffer *t;

C
Chris Mason 已提交
1065
	for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1066
		int tslot = path->slots[i];
1067
		if (!path->nodes[i])
1068
			break;
1069 1070
		t = path->nodes[i];
		btrfs_set_node_key(t, key, tslot);
C
Chris Mason 已提交
1071
		btrfs_mark_buffer_dirty(path->nodes[i]);
1072 1073 1074
		if (tslot != 0)
			break;
	}
C
Chris Mason 已提交
1075
	return ret;
1076 1077
}

C
Chris Mason 已提交
1078 1079
/*
 * try to push data from one node into the next node left in the
1080
 * tree.
C
Chris Mason 已提交
1081 1082 1083
 *
 * 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 已提交
1084
 */
1085
static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
1086 1087
			  *root, struct extent_buffer *dst,
			  struct extent_buffer *src)
1088 1089
{
	int push_items = 0;
1090 1091
	int src_nritems;
	int dst_nritems;
C
Chris Mason 已提交
1092
	int ret = 0;
1093

1094 1095
	src_nritems = btrfs_header_nritems(src);
	dst_nritems = btrfs_header_nritems(dst);
C
Chris Mason 已提交
1096
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
1097

1098
	if (push_items <= 0) {
1099
		return 1;
1100
	}
1101

1102
	if (src_nritems < push_items)
1103 1104
		push_items = src_nritems;

1105 1106 1107 1108 1109
	copy_extent_buffer(dst, src,
			   btrfs_node_key_ptr_offset(dst_nritems),
			   btrfs_node_key_ptr_offset(0),
		           push_items * sizeof(struct btrfs_key_ptr));

1110
	if (push_items < src_nritems) {
1111 1112 1113 1114 1115 1116 1117 1118 1119
		memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
				      btrfs_node_key_ptr_offset(push_items),
				      (src_nritems - push_items) *
				      sizeof(struct btrfs_key_ptr));
	}
	btrfs_set_header_nritems(src, src_nritems - push_items);
	btrfs_set_header_nritems(dst, dst_nritems + push_items);
	btrfs_mark_buffer_dirty(src);
	btrfs_mark_buffer_dirty(dst);
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
	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
 */
1132 1133 1134 1135
static int balance_node_right(struct btrfs_trans_handle *trans,
			      struct btrfs_root *root,
			      struct extent_buffer *dst,
			      struct extent_buffer *src)
1136 1137 1138 1139 1140 1141 1142
{
	int push_items = 0;
	int max_push;
	int src_nritems;
	int dst_nritems;
	int ret = 0;

1143 1144
	src_nritems = btrfs_header_nritems(src);
	dst_nritems = btrfs_header_nritems(dst);
C
Chris Mason 已提交
1145
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
1146
	if (push_items <= 0)
1147 1148 1149 1150
		return 1;

	max_push = src_nritems / 2 + 1;
	/* don't try to empty the node */
Y
Yan 已提交
1151
	if (max_push >= src_nritems)
1152
		return 1;
Y
Yan 已提交
1153

1154 1155 1156
	if (max_push < push_items)
		push_items = max_push;

1157 1158 1159 1160
	memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
				      btrfs_node_key_ptr_offset(0),
				      (dst_nritems) *
				      sizeof(struct btrfs_key_ptr));
C
Chris Mason 已提交
1161

1162 1163 1164 1165
	copy_extent_buffer(dst, src,
			   btrfs_node_key_ptr_offset(0),
			   btrfs_node_key_ptr_offset(src_nritems - push_items),
		           push_items * sizeof(struct btrfs_key_ptr));
1166

1167 1168
	btrfs_set_header_nritems(src, src_nritems - push_items);
	btrfs_set_header_nritems(dst, dst_nritems + push_items);
1169

1170 1171
	btrfs_mark_buffer_dirty(src);
	btrfs_mark_buffer_dirty(dst);
C
Chris Mason 已提交
1172
	return ret;
1173 1174
}

C
Chris Mason 已提交
1175 1176 1177 1178
/*
 * 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 已提交
1179 1180
 *
 * returns zero on success or < 0 on failure.
C
Chris Mason 已提交
1181
 */
1182 1183 1184
static int insert_new_root(struct btrfs_trans_handle *trans,
			   struct btrfs_root *root,
			   struct btrfs_path *path, int level)
C
Chris Mason 已提交
1185
{
1186 1187 1188
	struct extent_buffer *lower;
	struct extent_buffer *c;
	struct btrfs_disk_key lower_key;
C
Chris Mason 已提交
1189 1190 1191 1192

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

1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
	c = btrfs_alloc_free_block(trans, root,
				   extent_buffer_blocknr(root->node), 0);
	if (IS_ERR(c))
		return PTR_ERR(c);
	memset_extent_buffer(c, 0, 0, root->nodesize);
	btrfs_set_header_nritems(c, 1);
	btrfs_set_header_level(c, level);
	btrfs_set_header_blocknr(c, extent_buffer_blocknr(c));
	btrfs_set_header_generation(c, trans->transid);
	btrfs_set_header_owner(c, root->root_key.objectid);
	lower = path->nodes[level-1];

	write_extent_buffer(c, root->fs_info->fsid,
			    (unsigned long)btrfs_header_fsid(c),
			    BTRFS_FSID_SIZE);
	if (level == 1)
		btrfs_item_key(lower, &lower_key, 0);
C
Chris Mason 已提交
1210
	else
1211 1212 1213
		btrfs_node_key(lower, &lower_key, 0);
	btrfs_set_node_key(c, &lower_key, 0);
	btrfs_set_node_blockptr(c, 0, extent_buffer_blocknr(lower));
1214

1215
	btrfs_mark_buffer_dirty(c);
1216

C
Chris Mason 已提交
1217
	/* the super has an extra ref to root->node */
1218 1219 1220 1221
	free_extent_buffer(root->node);
	root->node = c;
	extent_buffer_get(c);
	path->nodes[level] = c;
C
Chris Mason 已提交
1222 1223 1224 1225
	path->slots[level] = 0;
	return 0;
}

C
Chris Mason 已提交
1226 1227 1228
/*
 * worker function to insert a single pointer in a node.
 * the node should have enough room for the pointer already
C
Chris Mason 已提交
1229
 *
C
Chris Mason 已提交
1230 1231
 * slot and level indicate where you want the key to go, and
 * blocknr is the block the key points to.
C
Chris Mason 已提交
1232 1233
 *
 * returns zero on success and < 0 on any error
C
Chris Mason 已提交
1234
 */
1235 1236 1237
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 已提交
1238
{
1239
	struct extent_buffer *lower;
C
Chris Mason 已提交
1240
	int nritems;
C
Chris Mason 已提交
1241 1242

	BUG_ON(!path->nodes[level]);
1243 1244
	lower = path->nodes[level];
	nritems = btrfs_header_nritems(lower);
C
Chris Mason 已提交
1245 1246
	if (slot > nritems)
		BUG();
C
Chris Mason 已提交
1247
	if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
C
Chris Mason 已提交
1248 1249
		BUG();
	if (slot != nritems) {
1250 1251 1252
		memmove_extent_buffer(lower,
			      btrfs_node_key_ptr_offset(slot + 1),
			      btrfs_node_key_ptr_offset(slot),
C
Chris Mason 已提交
1253
			      (nritems - slot) * sizeof(struct btrfs_key_ptr));
C
Chris Mason 已提交
1254
	}
1255
	btrfs_set_node_key(lower, key, slot);
1256
	btrfs_set_node_blockptr(lower, slot, blocknr);
1257 1258
	btrfs_set_header_nritems(lower, nritems + 1);
	btrfs_mark_buffer_dirty(lower);
1259
	check_node(root, path, level);
C
Chris Mason 已提交
1260 1261 1262
	return 0;
}

C
Chris Mason 已提交
1263 1264 1265 1266 1267 1268
/*
 * 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 已提交
1269 1270
 *
 * returns 0 on success and < 0 on failure
C
Chris Mason 已提交
1271
 */
1272 1273
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_path *path, int level)
1274
{
1275 1276 1277
	struct extent_buffer *c;
	struct extent_buffer *split;
	struct btrfs_disk_key disk_key;
1278
	int mid;
C
Chris Mason 已提交
1279
	int ret;
C
Chris Mason 已提交
1280
	int wret;
1281
	u32 c_nritems;
1282

1283 1284
	c = path->nodes[level];
	if (c == root->node) {
C
Chris Mason 已提交
1285
		/* trying to split the root, lets make a new one */
1286
		ret = insert_new_root(trans, root, path, level + 1);
C
Chris Mason 已提交
1287 1288
		if (ret)
			return ret;
1289 1290
	} else {
		ret = push_nodes_for_insert(trans, root, path, level);
1291 1292
		c = path->nodes[level];
		if (!ret && btrfs_header_nritems(c) <
1293 1294
		    BTRFS_NODEPTRS_PER_BLOCK(root) - 1)
			return 0;
1295 1296
		if (ret < 0)
			return ret;
1297
	}
1298

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312
	c_nritems = btrfs_header_nritems(c);
	split = btrfs_alloc_free_block(trans, root,
				       extent_buffer_blocknr(c), 0);
	if (IS_ERR(split))
		return PTR_ERR(split);

	btrfs_set_header_flags(split, btrfs_header_flags(c));
	btrfs_set_header_level(split, btrfs_header_level(c));
	btrfs_set_header_blocknr(split, extent_buffer_blocknr(split));
	btrfs_set_header_generation(split, trans->transid);
	btrfs_set_header_owner(split, root->root_key.objectid);
	write_extent_buffer(split, root->fs_info->fsid,
			    (unsigned long)btrfs_header_fsid(split),
			    BTRFS_FSID_SIZE);
1313

1314
	mid = (c_nritems + 1) / 2;
1315 1316 1317 1318 1319 1320 1321

	copy_extent_buffer(split, c,
			   btrfs_node_key_ptr_offset(0),
			   btrfs_node_key_ptr_offset(mid),
			   (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
	btrfs_set_header_nritems(split, c_nritems - mid);
	btrfs_set_header_nritems(c, mid);
C
Chris Mason 已提交
1322 1323
	ret = 0;

1324 1325 1326 1327 1328 1329 1330
	btrfs_mark_buffer_dirty(c);
	btrfs_mark_buffer_dirty(split);

	btrfs_node_key(split, &disk_key, 0);
	wret = insert_ptr(trans, root, path, &disk_key,
			  extent_buffer_blocknr(split),
			  path->slots[level + 1] + 1,
C
Chris Mason 已提交
1331
			  level + 1);
C
Chris Mason 已提交
1332 1333 1334
	if (wret)
		ret = wret;

C
Chris Mason 已提交
1335
	if (path->slots[level] >= mid) {
C
Chris Mason 已提交
1336
		path->slots[level] -= mid;
1337 1338
		free_extent_buffer(c);
		path->nodes[level] = split;
C
Chris Mason 已提交
1339 1340
		path->slots[level + 1] += 1;
	} else {
1341
		free_extent_buffer(split);
1342
	}
C
Chris Mason 已提交
1343
	return ret;
1344 1345
}

C
Chris Mason 已提交
1346 1347 1348 1349 1350
/*
 * 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
 */
1351
static int leaf_space_used(struct extent_buffer *l, int start, int nr)
1352 1353
{
	int data_len;
1354
	int nritems = btrfs_header_nritems(l);
1355
	int end = min(nritems, start + nr) - 1;
1356 1357 1358

	if (!nr)
		return 0;
1359 1360
	data_len = btrfs_item_end_nr(l, start);
	data_len = data_len - btrfs_item_offset_nr(l, end);
C
Chris Mason 已提交
1361
	data_len += sizeof(struct btrfs_item) * nr;
1362
	WARN_ON(data_len < 0);
1363 1364 1365
	return data_len;
}

1366 1367 1368 1369 1370
/*
 * 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
 */
1371
int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf)
1372
{
1373 1374 1375 1376 1377 1378 1379 1380 1381
	int nritems = btrfs_header_nritems(leaf);
	int ret;
	ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
	if (ret < 0) {
		printk("leaf free space ret %d, leaf data size %lu, used %d nritems %d\n",
		       ret, BTRFS_LEAF_DATA_SIZE(root),
		       leaf_space_used(leaf, 0, nritems), nritems);
	}
	return ret;
1382 1383
}

C
Chris Mason 已提交
1384 1385 1386
/*
 * 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 已提交
1387 1388 1389
 *
 * 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 已提交
1390
 */
1391 1392
static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
			   *root, struct btrfs_path *path, int data_size)
C
Chris Mason 已提交
1393
{
1394 1395 1396 1397
	struct extent_buffer *left = path->nodes[0];
	struct extent_buffer *right;
	struct extent_buffer *upper;
	struct btrfs_disk_key disk_key;
C
Chris Mason 已提交
1398 1399 1400 1401 1402
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
1403
	struct btrfs_item *item;
1404 1405
	u32 left_nritems;
	u32 right_nritems;
1406
	u32 data_end;
1407
	int ret;
C
Chris Mason 已提交
1408 1409 1410 1411 1412 1413

	slot = path->slots[1];
	if (!path->nodes[1]) {
		return 1;
	}
	upper = path->nodes[1];
1414
	if (slot >= btrfs_header_nritems(upper) - 1)
C
Chris Mason 已提交
1415
		return 1;
1416 1417

	right = read_tree_block(root, btrfs_node_blockptr(upper, slot + 1));
C
Chris Mason 已提交
1418
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
1419
	if (free_space < data_size + sizeof(struct btrfs_item)) {
1420
		free_extent_buffer(right);
C
Chris Mason 已提交
1421 1422
		return 1;
	}
1423

C
Chris Mason 已提交
1424
	/* cow and double check */
1425 1426
	ret = btrfs_cow_block(trans, root, right, upper,
			      slot + 1, &right);
1427
	if (ret) {
1428
		free_extent_buffer(right);
1429 1430
		return 1;
	}
C
Chris Mason 已提交
1431
	free_space = btrfs_leaf_free_space(root, right);
C
Chris Mason 已提交
1432
	if (free_space < data_size + sizeof(struct btrfs_item)) {
1433
		free_extent_buffer(right);
C
Chris Mason 已提交
1434 1435 1436
		return 1;
	}

1437
	left_nritems = btrfs_header_nritems(left);
1438
	if (left_nritems == 0) {
1439
		free_extent_buffer(right);
1440 1441
		return 1;
	}
1442

1443
	for (i = left_nritems - 1; i >= 1; i--) {
1444
		item = btrfs_item_nr(left, i);
C
Chris Mason 已提交
1445 1446
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
1447
		if (btrfs_item_size(left, item) + sizeof(*item) + push_space >
C
Chris Mason 已提交
1448
		    free_space)
C
Chris Mason 已提交
1449 1450
			break;
		push_items++;
1451
		push_space += btrfs_item_size(left, item) + sizeof(*item);
C
Chris Mason 已提交
1452
	}
1453

C
Chris Mason 已提交
1454
	if (push_items == 0) {
1455
		free_extent_buffer(right);
C
Chris Mason 已提交
1456 1457
		return 1;
	}
1458

1459 1460
	if (push_items == left_nritems)
		WARN_ON(1);
1461

C
Chris Mason 已提交
1462
	/* push left to right */
1463 1464
	right_nritems = btrfs_header_nritems(right);
	push_space = btrfs_item_end_nr(left, left_nritems - push_items);
C
Chris Mason 已提交
1465
	push_space -= leaf_data_end(root, left);
1466

C
Chris Mason 已提交
1467
	/* make room in the right data area */
1468 1469 1470 1471 1472 1473
	data_end = leaf_data_end(root, right);
	memmove_extent_buffer(right,
			      btrfs_leaf_data(right) + data_end - push_space,
			      btrfs_leaf_data(right) + data_end,
			      BTRFS_LEAF_DATA_SIZE(root) - data_end);

C
Chris Mason 已提交
1474
	/* copy from the left data area */
1475
	copy_extent_buffer(right, left, btrfs_leaf_data(right) +
C
Chris Mason 已提交
1476 1477 1478
		     BTRFS_LEAF_DATA_SIZE(root) - push_space,
		     btrfs_leaf_data(left) + leaf_data_end(root, left),
		     push_space);
1479 1480 1481 1482 1483

	memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
			      btrfs_item_nr_offset(0),
			      right_nritems * sizeof(struct btrfs_item));

C
Chris Mason 已提交
1484
	/* copy the items from left to right */
1485 1486 1487
	copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
		   btrfs_item_nr_offset(left_nritems - push_items),
		   push_items * sizeof(struct btrfs_item));
C
Chris Mason 已提交
1488 1489

	/* update the item pointers */
1490
	right_nritems += push_items;
1491
	btrfs_set_header_nritems(right, right_nritems);
C
Chris Mason 已提交
1492
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1493
	for (i = 0; i < right_nritems; i++) {
1494 1495 1496 1497
		item = btrfs_item_nr(right, i);
		btrfs_set_item_offset(right, item, push_space -
				      btrfs_item_size(right, item));
		push_space = btrfs_item_offset(right, item);
C
Chris Mason 已提交
1498
	}
1499
	left_nritems -= push_items;
1500
	btrfs_set_header_nritems(left, left_nritems);
C
Chris Mason 已提交
1501

1502 1503
	btrfs_mark_buffer_dirty(left);
	btrfs_mark_buffer_dirty(right);
1504

1505 1506
	btrfs_item_key(right, &disk_key, 0);
	btrfs_set_node_key(upper, &disk_key, slot + 1);
C
Chris Mason 已提交
1507
	btrfs_mark_buffer_dirty(upper);
C
Chris Mason 已提交
1508

C
Chris Mason 已提交
1509
	/* then fixup the leaf pointer in the path */
1510 1511
	if (path->slots[0] >= left_nritems) {
		path->slots[0] -= left_nritems;
1512 1513
		free_extent_buffer(path->nodes[0]);
		path->nodes[0] = right;
C
Chris Mason 已提交
1514 1515
		path->slots[1] += 1;
	} else {
1516
		free_extent_buffer(right);
C
Chris Mason 已提交
1517
	}
1518 1519
	if (path->nodes[1])
		check_node(root, path, 1);
C
Chris Mason 已提交
1520 1521
	return 0;
}
C
Chris Mason 已提交
1522 1523 1524 1525
/*
 * 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
 */
1526 1527
static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
			  *root, struct btrfs_path *path, int data_size)
1528
{
1529 1530 1531
	struct btrfs_disk_key disk_key;
	struct extent_buffer *right = path->nodes[0];
	struct extent_buffer *left;
1532 1533 1534 1535 1536
	int slot;
	int i;
	int free_space;
	int push_space = 0;
	int push_items = 0;
C
Chris Mason 已提交
1537
	struct btrfs_item *item;
1538
	u32 old_left_nritems;
1539
	u32 right_nritems;
C
Chris Mason 已提交
1540 1541
	int ret = 0;
	int wret;
1542 1543

	slot = path->slots[1];
1544
	if (slot == 0)
1545
		return 1;
1546
	if (!path->nodes[1])
1547
		return 1;
1548 1549 1550

	left = read_tree_block(root, btrfs_node_blockptr(path->nodes[1],
							 slot - 1));
C
Chris Mason 已提交
1551
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
1552
	if (free_space < data_size + sizeof(struct btrfs_item)) {
1553
		free_extent_buffer(left);
1554 1555
		return 1;
	}
C
Chris Mason 已提交
1556 1557

	/* cow and double check */
1558 1559
	ret = btrfs_cow_block(trans, root, left,
			      path->nodes[1], slot - 1, &left);
1560 1561
	if (ret) {
		/* we hit -ENOSPC, but it isn't fatal here */
1562
		free_extent_buffer(left);
1563 1564
		return 1;
	}
C
Chris Mason 已提交
1565
	free_space = btrfs_leaf_free_space(root, left);
C
Chris Mason 已提交
1566
	if (free_space < data_size + sizeof(struct btrfs_item)) {
1567
		free_extent_buffer(left);
C
Chris Mason 已提交
1568 1569 1570
		return 1;
	}

1571 1572 1573
	right_nritems = btrfs_header_nritems(right);
	if (right_nritems == 0) {
		free_extent_buffer(left);
1574 1575 1576
		return 1;
	}

1577 1578
	for (i = 0; i < right_nritems - 1; i++) {
		item = btrfs_item_nr(right, i);
1579 1580
		if (path->slots[0] == i)
			push_space += data_size + sizeof(*item);
1581
		if (btrfs_item_size(right, item) + sizeof(*item) + push_space >
C
Chris Mason 已提交
1582
		    free_space)
1583 1584
			break;
		push_items++;
1585
		push_space += btrfs_item_size(right, item) + sizeof(*item);
1586 1587
	}
	if (push_items == 0) {
1588
		free_extent_buffer(left);
1589 1590
		return 1;
	}
1591
	if (push_items == btrfs_header_nritems(right))
1592
		WARN_ON(1);
1593

1594
	/* push data from right to left */
1595 1596 1597 1598 1599
	copy_extent_buffer(left, right,
			   btrfs_item_nr_offset(btrfs_header_nritems(left)),
			   btrfs_item_nr_offset(0),
			   push_items * sizeof(struct btrfs_item));

C
Chris Mason 已提交
1600
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
1601 1602 1603
		     btrfs_item_offset_nr(right, push_items -1);

	copy_extent_buffer(left, right, btrfs_leaf_data(left) +
C
Chris Mason 已提交
1604 1605
		     leaf_data_end(root, left) - push_space,
		     btrfs_leaf_data(right) +
1606
		     btrfs_item_offset_nr(right, push_items - 1),
C
Chris Mason 已提交
1607
		     push_space);
1608
	old_left_nritems = btrfs_header_nritems(left);
1609 1610
	BUG_ON(old_left_nritems < 0);

C
Chris Mason 已提交
1611
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
1612 1613 1614 1615 1616 1617
		u32 ioff;
		item = btrfs_item_nr(left, i);
		ioff = btrfs_item_offset(left, item);
		btrfs_set_item_offset(left, item,
		      ioff - (BTRFS_LEAF_DATA_SIZE(root) -
		      btrfs_item_offset_nr(left, old_left_nritems - 1)));
1618
	}
1619
	btrfs_set_header_nritems(left, old_left_nritems + push_items);
1620 1621

	/* fixup right node */
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
	push_space = btrfs_item_offset_nr(right, push_items - 1) -
					  leaf_data_end(root, right);
	memmove_extent_buffer(right, btrfs_leaf_data(right) +
			      BTRFS_LEAF_DATA_SIZE(root) - push_space,
			      btrfs_leaf_data(right) +
			      leaf_data_end(root, right), push_space);

	memmove_extent_buffer(right, btrfs_item_nr_offset(0),
			      btrfs_item_nr_offset(push_items),
			     (btrfs_header_nritems(right) - push_items) *
			     sizeof(struct btrfs_item));

	right_nritems = btrfs_header_nritems(right) - push_items;
	btrfs_set_header_nritems(right, right_nritems);
C
Chris Mason 已提交
1636
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1637

1638 1639 1640 1641 1642
	for (i = 0; i < right_nritems; i++) {
		item = btrfs_item_nr(right, i);
		btrfs_set_item_offset(right, item, push_space -
				      btrfs_item_size(right, item));
		push_space = btrfs_item_offset(right, item);
1643
	}
1644

1645 1646
	btrfs_mark_buffer_dirty(left);
	btrfs_mark_buffer_dirty(right);
1647

1648 1649
	btrfs_item_key(right, &disk_key, 0);
	wret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
1650 1651
	if (wret)
		ret = wret;
1652 1653 1654 1655

	/* then fixup the leaf pointer in the path */
	if (path->slots[0] < push_items) {
		path->slots[0] += old_left_nritems;
1656 1657
		free_extent_buffer(path->nodes[0]);
		path->nodes[0] = left;
1658 1659
		path->slots[1] -= 1;
	} else {
1660
		free_extent_buffer(left);
1661 1662
		path->slots[0] -= push_items;
	}
1663
	BUG_ON(path->slots[0] < 0);
1664 1665
	if (path->nodes[1])
		check_node(root, path, 1);
C
Chris Mason 已提交
1666
	return ret;
1667 1668
}

C
Chris Mason 已提交
1669 1670 1671
/*
 * 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 已提交
1672 1673
 *
 * returns 0 if all went well and < 0 on failure.
C
Chris Mason 已提交
1674
 */
1675
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
1676 1677
		      *root, struct btrfs_key *ins_key,
		      struct btrfs_path *path, int data_size)
1678
{
1679
	struct extent_buffer *l;
1680
	u32 nritems;
1681 1682
	int mid;
	int slot;
1683
	struct extent_buffer *right;
C
Chris Mason 已提交
1684
	int space_needed = data_size + sizeof(struct btrfs_item);
1685 1686 1687
	int data_copy_size;
	int rt_data_off;
	int i;
1688
	int ret = 0;
C
Chris Mason 已提交
1689
	int wret;
1690 1691
	int double_split = 0;
	struct btrfs_disk_key disk_key;
C
Chris Mason 已提交
1692

C
Chris Mason 已提交
1693
	/* first try to make some room by pushing left and right */
1694
	wret = push_leaf_left(trans, root, path, data_size);
C
Chris Mason 已提交
1695 1696 1697
	if (wret < 0)
		return wret;
	if (wret) {
1698
		wret = push_leaf_right(trans, root, path, data_size);
C
Chris Mason 已提交
1699 1700 1701
		if (wret < 0)
			return wret;
	}
1702
	l = path->nodes[0];
C
Chris Mason 已提交
1703 1704

	/* did the pushes work? */
C
Chris Mason 已提交
1705 1706
	if (btrfs_leaf_free_space(root, l) >=
	    sizeof(struct btrfs_item) + data_size)
C
Chris Mason 已提交
1707 1708
		return 0;

C
Chris Mason 已提交
1709
	if (!path->nodes[1]) {
1710
		ret = insert_new_root(trans, root, path, 1);
C
Chris Mason 已提交
1711 1712 1713
		if (ret)
			return ret;
	}
1714
	slot = path->slots[0];
1715
	nritems = btrfs_header_nritems(l);
1716
	mid = (nritems + 1)/ 2;
1717

1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
	right = btrfs_alloc_free_block(trans, root,
					      extent_buffer_blocknr(l), 0);
	if (IS_ERR(right))
		return PTR_ERR(right);

	memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
	btrfs_set_header_blocknr(right, extent_buffer_blocknr(right));
	btrfs_set_header_generation(right, trans->transid);
	btrfs_set_header_owner(right, root->root_key.objectid);
	btrfs_set_header_level(right, 0);
	write_extent_buffer(right, root->fs_info->fsid,
			    (unsigned long)btrfs_header_fsid(right),
			    BTRFS_FSID_SIZE);

1732 1733 1734 1735 1736 1737
	if (mid <= slot) {
		if (nritems == 1 ||
		    leaf_space_used(l, mid, nritems - mid) + space_needed >
			BTRFS_LEAF_DATA_SIZE(root)) {
			if (slot >= nritems) {
				btrfs_cpu_key_to_disk(&disk_key, ins_key);
1738
				btrfs_set_header_nritems(right, 0);
1739 1740
				wret = insert_ptr(trans, root, path,
						  &disk_key,
1741
						  extent_buffer_blocknr(right),
1742 1743 1744
						  path->slots[1] + 1, 1);
				if (wret)
					ret = wret;
1745 1746
				free_extent_buffer(path->nodes[0]);
				path->nodes[0] = right;
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
				path->slots[0] = 0;
				path->slots[1] += 1;
				return ret;
			}
			mid = slot;
			double_split = 1;
		}
	} else {
		if (leaf_space_used(l, 0, mid + 1) + space_needed >
			BTRFS_LEAF_DATA_SIZE(root)) {
			if (slot == 0) {
				btrfs_cpu_key_to_disk(&disk_key, ins_key);
1759
				btrfs_set_header_nritems(right, 0);
1760 1761
				wret = insert_ptr(trans, root, path,
						  &disk_key,
1762
						  extent_buffer_blocknr(right),
1763
						  path->slots[1], 1);
1764 1765
				if (wret)
					ret = wret;
1766 1767
				free_extent_buffer(path->nodes[0]);
				path->nodes[0] = right;
1768
				path->slots[0] = 0;
1769 1770 1771 1772 1773 1774
				if (path->slots[1] == 0) {
					wret = fixup_low_keys(trans, root,
					           path, &disk_key, 1);
					if (wret)
						ret = wret;
				}
1775 1776 1777 1778 1779 1780
				return ret;
			}
			mid = slot;
			double_split = 1;
		}
	}
1781 1782 1783 1784 1785 1786 1787 1788 1789
	nritems = nritems - mid;
	btrfs_set_header_nritems(right, nritems);
	data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);

	copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
			   btrfs_item_nr_offset(mid),
			   nritems * sizeof(struct btrfs_item));

	copy_extent_buffer(right, l,
C
Chris Mason 已提交
1790 1791 1792
		     btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
		     data_copy_size, btrfs_leaf_data(l) +
		     leaf_data_end(root, l), data_copy_size);
1793

C
Chris Mason 已提交
1794
	rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
1795
		      btrfs_item_end_nr(l, mid);
C
Chris Mason 已提交
1796

1797 1798 1799 1800
	for (i = 0; i < nritems; i++) {
		struct btrfs_item *item = btrfs_item_nr(right, i);
		u32 ioff = btrfs_item_offset(right, item);
		btrfs_set_item_offset(right, item, ioff + rt_data_off);
C
Chris Mason 已提交
1801
	}
C
Chris Mason 已提交
1802

1803
	btrfs_set_header_nritems(l, mid);
C
Chris Mason 已提交
1804
	ret = 0;
1805 1806 1807
	btrfs_item_key(right, &disk_key, 0);
	wret = insert_ptr(trans, root, path, &disk_key,
			  extent_buffer_blocknr(right), path->slots[1] + 1, 1);
C
Chris Mason 已提交
1808 1809
	if (wret)
		ret = wret;
1810 1811 1812

	btrfs_mark_buffer_dirty(right);
	btrfs_mark_buffer_dirty(l);
1813
	BUG_ON(path->slots[0] != slot);
1814

1815
	if (mid <= slot) {
1816 1817
		free_extent_buffer(path->nodes[0]);
		path->nodes[0] = right;
1818 1819
		path->slots[0] -= mid;
		path->slots[1] += 1;
1820
	} else
1821 1822
		free_extent_buffer(right);

1823
	BUG_ON(path->slots[0] < 0);
1824
	check_node(root, path, 1);
1825
	check_leaf(root, path, 0);
1826 1827 1828

	if (!double_split)
		return ret;
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843

	right = btrfs_alloc_free_block(trans, root,
				       extent_buffer_blocknr(l), 0);
	if (IS_ERR(right))
		return PTR_ERR(right);

	memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
	btrfs_set_header_blocknr(right, extent_buffer_blocknr(right));
	btrfs_set_header_generation(right, trans->transid);
	btrfs_set_header_owner(right, root->root_key.objectid);
	btrfs_set_header_level(right, 0);
	write_extent_buffer(right, root->fs_info->fsid,
			    (unsigned long)btrfs_header_fsid(right),
			    BTRFS_FSID_SIZE);

1844
	btrfs_cpu_key_to_disk(&disk_key, ins_key);
1845
	btrfs_set_header_nritems(right, 0);
1846 1847
	wret = insert_ptr(trans, root, path,
			  &disk_key,
1848
			  extent_buffer_blocknr(right),
1849 1850 1851
			  path->slots[1], 1);
	if (wret)
		ret = wret;
1852 1853 1854 1855 1856
	if (path->slots[1] == 0) {
		wret = fixup_low_keys(trans, root, path, &disk_key, 1);
		if (wret)
			ret = wret;
	}
1857 1858
	free_extent_buffer(path->nodes[0]);
	path->nodes[0] = right;
1859 1860 1861
	path->slots[0] = 0;
	check_node(root, path, 1);
	check_leaf(root, path, 0);
1862 1863 1864
	return ret;
}

C
Chris Mason 已提交
1865 1866 1867 1868 1869 1870 1871 1872
int btrfs_truncate_item(struct btrfs_trans_handle *trans,
			struct btrfs_root *root,
			struct btrfs_path *path,
			u32 new_size)
{
	int ret = 0;
	int slot;
	int slot_orig;
1873 1874
	struct extent_buffer *leaf;
	struct btrfs_item *item;
C
Chris Mason 已提交
1875 1876 1877 1878 1879 1880 1881 1882
	u32 nritems;
	unsigned int data_end;
	unsigned int old_data_start;
	unsigned int old_size;
	unsigned int size_diff;
	int i;

	slot_orig = path->slots[0];
1883
	leaf = path->nodes[0];
C
Chris Mason 已提交
1884

1885
	nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
1886 1887 1888
	data_end = leaf_data_end(root, leaf);

	slot = path->slots[0];
1889 1890
	old_data_start = btrfs_item_offset_nr(leaf, slot);
	old_size = btrfs_item_size_nr(leaf, slot);
C
Chris Mason 已提交
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901
	BUG_ON(old_size <= new_size);
	size_diff = old_size - new_size;

	BUG_ON(slot < 0);
	BUG_ON(slot >= nritems);

	/*
	 * item0..itemN ... dataN.offset..dataN.size .. data0.size
	 */
	/* first correct the data pointers */
	for (i = slot; i < nritems; i++) {
1902 1903 1904 1905
		u32 ioff;
		item = btrfs_item_nr(leaf, i);
		ioff = btrfs_item_offset(leaf, item);
		btrfs_set_item_offset(leaf, item, ioff + size_diff);
C
Chris Mason 已提交
1906 1907
	}
	/* shift the data */
1908
	memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
C
Chris Mason 已提交
1909 1910
		      data_end + size_diff, btrfs_leaf_data(leaf) +
		      data_end, old_data_start + new_size - data_end);
1911 1912 1913 1914

	item = btrfs_item_nr(leaf, slot);
	btrfs_set_item_size(leaf, item, new_size);
	btrfs_mark_buffer_dirty(leaf);
C
Chris Mason 已提交
1915 1916

	ret = 0;
1917 1918
	if (btrfs_leaf_free_space(root, leaf) < 0) {
		btrfs_print_leaf(root, leaf);
C
Chris Mason 已提交
1919
		BUG();
1920
	}
C
Chris Mason 已提交
1921 1922 1923 1924
	check_leaf(root, path, 0);
	return ret;
}

1925 1926 1927
int btrfs_extend_item(struct btrfs_trans_handle *trans,
		      struct btrfs_root *root, struct btrfs_path *path,
		      u32 data_size)
1928 1929 1930 1931
{
	int ret = 0;
	int slot;
	int slot_orig;
1932 1933
	struct extent_buffer *leaf;
	struct btrfs_item *item;
1934 1935 1936 1937 1938 1939 1940
	u32 nritems;
	unsigned int data_end;
	unsigned int old_data;
	unsigned int old_size;
	int i;

	slot_orig = path->slots[0];
1941
	leaf = path->nodes[0];
1942

1943
	nritems = btrfs_header_nritems(leaf);
1944 1945
	data_end = leaf_data_end(root, leaf);

1946 1947
	if (btrfs_leaf_free_space(root, leaf) < data_size) {
		btrfs_print_leaf(root, leaf);
1948
		BUG();
1949
	}
1950
	slot = path->slots[0];
1951
	old_data = btrfs_item_end_nr(leaf, slot);
1952 1953 1954 1955 1956 1957 1958 1959 1960

	BUG_ON(slot < 0);
	BUG_ON(slot >= nritems);

	/*
	 * item0..itemN ... dataN.offset..dataN.size .. data0.size
	 */
	/* first correct the data pointers */
	for (i = slot; i < nritems; i++) {
1961 1962 1963 1964
		u32 ioff;
		item = btrfs_item_nr(leaf, i);
		ioff = btrfs_item_offset(leaf, item);
		btrfs_set_item_offset(leaf, item, ioff - data_size);
1965
	}
1966

1967
	/* shift the data */
1968
	memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
1969 1970
		      data_end - data_size, btrfs_leaf_data(leaf) +
		      data_end, old_data - data_end);
1971

1972
	data_end = old_data;
1973 1974 1975 1976
	old_size = btrfs_item_size_nr(leaf, slot);
	item = btrfs_item_nr(leaf, slot);
	btrfs_set_item_size(leaf, item, old_size + data_size);
	btrfs_mark_buffer_dirty(leaf);
1977 1978

	ret = 0;
1979 1980
	if (btrfs_leaf_free_space(root, leaf) < 0) {
		btrfs_print_leaf(root, leaf);
1981
		BUG();
1982
	}
1983 1984 1985 1986
	check_leaf(root, path, 0);
	return ret;
}

C
Chris Mason 已提交
1987 1988 1989 1990
/*
 * 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.
 */
1991 1992 1993 1994
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)
1995
{
1996 1997
	struct extent_buffer *leaf;
	struct btrfs_item *item;
C
Chris Mason 已提交
1998
	int ret = 0;
1999
	int slot;
2000
	int slot_orig;
2001
	u32 nritems;
2002
	unsigned int data_end;
C
Chris Mason 已提交
2003 2004 2005
	struct btrfs_disk_key disk_key;

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
2006

C
Chris Mason 已提交
2007
	/* create a root if there isn't one */
C
Chris Mason 已提交
2008
	if (!root->node)
C
Chris Mason 已提交
2009
		BUG();
2010

2011
	ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
2012
	if (ret == 0) {
2013
		return -EEXIST;
C
Chris Mason 已提交
2014
	}
2015 2016
	if (ret < 0)
		goto out;
2017

2018
	slot_orig = path->slots[0];
2019
	leaf = path->nodes[0];
C
Chris Mason 已提交
2020

2021
	nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
2022
	data_end = leaf_data_end(root, leaf);
2023

C
Chris Mason 已提交
2024
	if (btrfs_leaf_free_space(root, leaf) <
2025
	    sizeof(struct btrfs_item) + data_size) {
2026
		BUG();
2027
	}
2028

2029
	slot = path->slots[0];
2030
	BUG_ON(slot < 0);
2031

2032 2033
	if (slot != nritems) {
		int i;
2034
		unsigned int old_data = btrfs_item_end_nr(leaf, slot);
2035

2036 2037 2038 2039 2040 2041
		if (old_data < data_end) {
			btrfs_print_leaf(root, leaf);
			printk("slot %d old_data %d data_end %d\n",
			       slot, old_data, data_end);
			BUG_ON(1);
		}
2042 2043 2044 2045
		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
2046
		for (i = slot; i < nritems; i++) {
2047 2048 2049 2050
			u32 ioff;
			item = btrfs_item_nr(leaf, i);
			ioff = btrfs_item_offset(leaf, item);
			btrfs_set_item_offset(leaf, item, ioff - data_size);
C
Chris Mason 已提交
2051
		}
2052 2053

		/* shift the items */
2054 2055
		memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
			      btrfs_item_nr_offset(slot),
C
Chris Mason 已提交
2056
			      (nritems - slot) * sizeof(struct btrfs_item));
2057 2058

		/* shift the data */
2059
		memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
C
Chris Mason 已提交
2060 2061
			      data_end - data_size, btrfs_leaf_data(leaf) +
			      data_end, old_data - data_end);
2062 2063
		data_end = old_data;
	}
2064

2065
	/* setup the item for the new data */
2066 2067 2068 2069 2070 2071
	btrfs_set_item_key(leaf, &disk_key, slot);
	item = btrfs_item_nr(leaf, slot);
	btrfs_set_item_offset(leaf, item, data_end - data_size);
	btrfs_set_item_size(leaf, item, data_size);
	btrfs_set_header_nritems(leaf, nritems + 1);
	btrfs_mark_buffer_dirty(leaf);
C
Chris Mason 已提交
2072 2073

	ret = 0;
2074
	if (slot == 0)
2075
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
2076

2077 2078
	if (btrfs_leaf_free_space(root, leaf) < 0) {
		btrfs_print_leaf(root, leaf);
2079
		BUG();
2080
	}
2081
	check_leaf(root, path, 0);
2082
out:
2083 2084 2085 2086 2087 2088 2089
	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.
 */
2090 2091 2092
int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
		      *root, struct btrfs_key *cpu_key, void *data, u32
		      data_size)
2093 2094
{
	int ret = 0;
C
Chris Mason 已提交
2095
	struct btrfs_path *path;
2096 2097
	struct extent_buffer *leaf;
	unsigned long ptr;
2098

C
Chris Mason 已提交
2099 2100 2101
	path = btrfs_alloc_path();
	BUG_ON(!path);
	ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
2102
	if (!ret) {
2103 2104 2105 2106
		leaf = path->nodes[0];
		ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
		write_extent_buffer(leaf, data, ptr, data_size);
		btrfs_mark_buffer_dirty(leaf);
2107
	}
C
Chris Mason 已提交
2108
	btrfs_free_path(path);
C
Chris Mason 已提交
2109
	return ret;
2110 2111
}

C
Chris Mason 已提交
2112
/*
C
Chris Mason 已提交
2113
 * delete the pointer from a given node.
C
Chris Mason 已提交
2114 2115 2116 2117 2118
 *
 * 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.
 */
2119 2120
static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path, int level, int slot)
2121
{
2122
	struct extent_buffer *parent = path->nodes[level];
2123
	u32 nritems;
C
Chris Mason 已提交
2124
	int ret = 0;
2125
	int wret;
2126

2127
	nritems = btrfs_header_nritems(parent);
2128
	if (slot != nritems -1) {
2129 2130 2131
		memmove_extent_buffer(parent,
			      btrfs_node_key_ptr_offset(slot),
			      btrfs_node_key_ptr_offset(slot + 1),
C
Chris Mason 已提交
2132 2133
			      sizeof(struct btrfs_key_ptr) *
			      (nritems - slot - 1));
2134
	}
2135
	nritems--;
2136
	btrfs_set_header_nritems(parent, nritems);
2137
	if (nritems == 0 && parent == root->node) {
2138
		BUG_ON(btrfs_header_level(root->node) != 1);
2139
		/* just turn the root into a leaf and break */
2140
		btrfs_set_header_level(root->node, 0);
2141
	} else if (slot == 0) {
2142 2143 2144 2145
		struct btrfs_disk_key disk_key;

		btrfs_node_key(parent, &disk_key, 0);
		wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
C
Chris Mason 已提交
2146 2147
		if (wret)
			ret = wret;
2148
	}
C
Chris Mason 已提交
2149
	btrfs_mark_buffer_dirty(parent);
C
Chris Mason 已提交
2150
	return ret;
2151 2152
}

C
Chris Mason 已提交
2153 2154 2155 2156
/*
 * delete the item at the leaf level in path.  If that empties
 * the leaf, remove it from the tree
 */
2157 2158
int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
		   struct btrfs_path *path)
2159 2160
{
	int slot;
2161 2162
	struct extent_buffer *leaf;
	struct btrfs_item *item;
2163 2164
	int doff;
	int dsize;
C
Chris Mason 已提交
2165 2166
	int ret = 0;
	int wret;
2167
	u32 nritems;
2168

2169
	leaf = path->nodes[0];
2170
	slot = path->slots[0];
2171 2172 2173
	doff = btrfs_item_offset_nr(leaf, slot);
	dsize = btrfs_item_size_nr(leaf, slot);
	nritems = btrfs_header_nritems(leaf);
2174

2175
	if (slot != nritems - 1) {
2176
		int i;
C
Chris Mason 已提交
2177
		int data_end = leaf_data_end(root, leaf);
2178 2179

		memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
C
Chris Mason 已提交
2180 2181 2182
			      data_end + dsize,
			      btrfs_leaf_data(leaf) + data_end,
			      doff - data_end);
2183

C
Chris Mason 已提交
2184
		for (i = slot + 1; i < nritems; i++) {
2185 2186 2187 2188
			u32 ioff;
			item = btrfs_item_nr(leaf, i);
			ioff = btrfs_item_offset(leaf, item);
			btrfs_set_item_offset(leaf, item, ioff + dsize);
C
Chris Mason 已提交
2189
		}
2190 2191
		memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
			      btrfs_item_nr_offset(slot + 1),
C
Chris Mason 已提交
2192 2193
			      sizeof(struct btrfs_item) *
			      (nritems - slot - 1));
2194
	}
2195
	btrfs_set_header_nritems(leaf, nritems - 1);
2196
	nritems--;
2197

C
Chris Mason 已提交
2198
	/* delete the leaf if we've emptied it */
2199
	if (nritems == 0) {
2200 2201
		if (leaf == root->node) {
			btrfs_set_header_level(leaf, 0);
2202
		} else {
2203 2204
			clean_tree_block(trans, root, leaf);
			wait_on_tree_block_writeback(root, leaf);
2205
			wret = del_ptr(trans, root, path, 1, path->slots[1]);
C
Chris Mason 已提交
2206 2207
			if (wret)
				ret = wret;
2208
			wret = btrfs_free_extent(trans, root,
2209 2210
						 extent_buffer_blocknr(leaf),
						 1, 1);
C
Chris Mason 已提交
2211 2212
			if (wret)
				ret = wret;
2213
		}
2214
	} else {
2215
		int used = leaf_space_used(leaf, 0, nritems);
C
Chris Mason 已提交
2216
		if (slot == 0) {
2217 2218 2219
			struct btrfs_disk_key disk_key;

			btrfs_item_key(leaf, &disk_key, 0);
2220
			wret = fixup_low_keys(trans, root, path,
2221
					      &disk_key, 1);
C
Chris Mason 已提交
2222 2223 2224 2225
			if (wret)
				ret = wret;
		}

C
Chris Mason 已提交
2226
		/* delete the leaf if it is mostly empty */
C
Chris Mason 已提交
2227
		if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
2228 2229 2230 2231
			/* push_leaf_left fixes the path.
			 * make sure the path still points to our leaf
			 * for possible call to del_ptr below
			 */
2232
			slot = path->slots[1];
2233 2234
			extent_buffer_get(leaf);

2235
			wret = push_leaf_left(trans, root, path, 1);
2236
			if (wret < 0 && wret != -ENOSPC)
C
Chris Mason 已提交
2237
				ret = wret;
2238 2239 2240

			if (path->nodes[0] == leaf &&
			    btrfs_header_nritems(leaf)) {
2241
				wret = push_leaf_right(trans, root, path, 1);
2242
				if (wret < 0 && wret != -ENOSPC)
C
Chris Mason 已提交
2243 2244
					ret = wret;
			}
2245 2246 2247 2248 2249 2250 2251

			if (btrfs_header_nritems(leaf) == 0) {
				u64 blocknr = extent_buffer_blocknr(leaf);

				clean_tree_block(trans, root, leaf);
				wait_on_tree_block_writeback(root, leaf);

2252
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
2253 2254
				if (wret)
					ret = wret;
2255 2256

				free_extent_buffer(leaf);
2257 2258
				wret = btrfs_free_extent(trans, root, blocknr,
							 1, 1);
C
Chris Mason 已提交
2259 2260
				if (wret)
					ret = wret;
C
Chris Mason 已提交
2261
			} else {
2262 2263
				btrfs_mark_buffer_dirty(leaf);
				free_extent_buffer(leaf);
2264
			}
2265
		} else {
2266
			btrfs_mark_buffer_dirty(leaf);
2267 2268
		}
	}
C
Chris Mason 已提交
2269
	return ret;
2270 2271
}

C
Chris Mason 已提交
2272 2273
/*
 * walk up the tree as far as required to find the next leaf.
C
Chris Mason 已提交
2274 2275
 * returns 0 if it found something or 1 if there are no greater leaves.
 * returns < 0 on io errors.
C
Chris Mason 已提交
2276
 */
C
Chris Mason 已提交
2277
int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
2278 2279 2280 2281
{
	int slot;
	int level = 1;
	u64 blocknr;
2282 2283
	struct extent_buffer *c;
	struct extent_buffer *next = NULL;
2284

C
Chris Mason 已提交
2285
	while(level < BTRFS_MAX_LEVEL) {
2286
		if (!path->nodes[level])
C
Chris Mason 已提交
2287
			return 1;
2288

2289 2290
		slot = path->slots[level] + 1;
		c = path->nodes[level];
2291
		if (slot >= btrfs_header_nritems(c)) {
2292 2293 2294
			level++;
			continue;
		}
2295 2296

		blocknr = btrfs_node_blockptr(c, slot);
C
Chris Mason 已提交
2297
		if (next)
2298 2299
			free_extent_buffer(next);

2300 2301
		if (path->reada)
			reada_for_search(root, path, level, slot);
2302

2303 2304 2305 2306 2307 2308 2309
		next = read_tree_block(root, blocknr);
		break;
	}
	path->slots[level] = slot;
	while(1) {
		level--;
		c = path->nodes[level];
2310
		free_extent_buffer(c);
2311 2312 2313 2314
		path->nodes[level] = next;
		path->slots[level] = 0;
		if (!level)
			break;
2315
		if (path->reada)
Y
Yan 已提交
2316
			reada_for_search(root, path, level, 0);
2317
		next = read_tree_block(root, btrfs_node_blockptr(next, 0));
2318 2319 2320
	}
	return 0;
}