ctree.c 60.1 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
	struct extent_buffer *buf = path->nodes[level];

468 469 470
	if (memcmp_extent_buffer(buf, root->fs_info->fsid,
				 (unsigned long)btrfs_header_fsid(buf),
				 BTRFS_FSID_SIZE)) {
471
		printk("warning bad block %Lu\n", buf->start);
472
		BUG();
473
	}
C
Chris Mason 已提交
474
	if (level == 0)
C
Chris Mason 已提交
475 476
		return check_leaf(root, path, level);
	return check_node(root, path, level);
C
Chris Mason 已提交
477 478
}

C
Chris Mason 已提交
479
/*
480 481 482
 * 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 已提交
483 484 485 486 487 488
 * 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
 */
489 490 491
static int generic_bin_search(struct extent_buffer *eb, unsigned long p,
			      int item_size, struct btrfs_key *key,
			      int max, int *slot)
492 493 494 495 496
{
	int low = 0;
	int high = max;
	int mid;
	int ret;
497
	struct btrfs_disk_key *tmp = NULL;
498 499 500 501 502 503
	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;
504
	int err;
505 506 507

	while(low < high) {
		mid = (low + high) / 2;
508 509 510 511 512
		offset = p + mid * item_size;

		if (!map_token || offset < map_start ||
		    (offset + sizeof(struct btrfs_disk_key)) >
		    map_start + map_len) {
513
			if (map_token) {
514
				unmap_extent_buffer(eb, map_token, KM_USER0);
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
				map_token = NULL;
			}
			err = map_extent_buffer(eb, offset,
						sizeof(struct btrfs_disk_key),
						&map_token, &kaddr,
						&map_start, &map_len, KM_USER0);

			if (!err) {
				tmp = (struct btrfs_disk_key *)(kaddr + offset -
							map_start);
			} else {
				read_extent_buffer(eb, &unaligned,
						   offset, sizeof(unaligned));
				tmp = &unaligned;
			}
530 531 532 533 534

		} else {
			tmp = (struct btrfs_disk_key *)(kaddr + offset -
							map_start);
		}
535 536 537 538 539 540 541 542
		ret = comp_keys(tmp, key);

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

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

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

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

	if (level == 0)
		return 0;

604
	mid = path->nodes[level];
605
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);
606

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

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

619
		if (btrfs_header_nritems(mid) != 1)
620 621 622
			return 0;

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

639
	if (btrfs_header_nritems(mid) < 2)
640 641
		err_on_enospc = 1;

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

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

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

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

764 765 766 767 768
/* 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)
{
769 770 771 772
	struct extent_buffer *right = NULL;
	struct extent_buffer *mid;
	struct extent_buffer *left = NULL;
	struct extent_buffer *parent = NULL;
773 774 775 776 777 778 779 780 781
	int ret = 0;
	int wret;
	int pslot;
	int orig_slot = path->slots[level];
	u64 orig_ptr;

	if (level == 0)
		return 1;

782
	mid = path->nodes[level];
783 784 785
	orig_ptr = btrfs_node_blockptr(mid, orig_slot);

	if (level < BTRFS_MAX_LEVEL - 1)
786
		parent = path->nodes[level + 1];
787 788
	pslot = path->slots[level + 1];

789
	if (!parent)
790 791
		return 1;

792
	left = read_node_slot(root, parent, pslot - 1);
793 794

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

	/*
	 * then try to empty the right most buffer into the middle
	 */
839
	if (right) {
C
Chris Mason 已提交
840
		u32 right_nr;
841
		right_nr = btrfs_header_nritems(right);
C
Chris Mason 已提交
842 843 844
		if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
			wret = 1;
		} else {
845 846 847
			ret = btrfs_cow_block(trans, root, right,
					      parent, pslot + 1,
					      &right);
848 849 850 851
			if (ret)
				wret = 1;
			else {
				wret = balance_node_right(trans, root,
852
							  right, mid);
853
			}
C
Chris Mason 已提交
854
		}
855 856 857
		if (wret < 0)
			ret = wret;
		if (wret == 0) {
858 859 860 861 862 863 864 865
			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;
866 867
				path->slots[level + 1] += 1;
				path->slots[level] = orig_slot -
868 869
					btrfs_header_nritems(mid);
				free_extent_buffer(mid);
870
			} else {
871
				free_extent_buffer(right);
872 873 874 875
			}
			check_node(root, path, level);
			return 0;
		}
876
		free_extent_buffer(right);
877 878 879 880 881
	}
	check_node(root, path, level);
	return 1;
}

882 883 884 885
/*
 * readahead one full node of leaves
 */
static void reada_for_search(struct btrfs_root *root, struct btrfs_path *path,
886
			     int level, int slot)
887
{
888
	struct extent_buffer *node;
889 890 891 892 893 894 895 896 897 898
	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];
899
	struct extent_buffer *eb;
900

901 902 903 904
	if (level == 0)
		return;

	if (!path->nodes[level])
905 906
		return;

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

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

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

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

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

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

1091 1092
	src_nritems = btrfs_header_nritems(src);
	dst_nritems = btrfs_header_nritems(dst);
C
Chris Mason 已提交
1093
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
1094

1095
	if (push_items <= 0) {
1096
		return 1;
1097
	}
1098

1099
	if (src_nritems < push_items)
1100 1101
		push_items = src_nritems;

1102 1103 1104 1105 1106
	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));

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

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

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

1151 1152 1153
	if (max_push < push_items)
		push_items = max_push;

1154 1155 1156 1157
	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 已提交
1158

1159 1160 1161 1162
	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));
1163

1164 1165
	btrfs_set_header_nritems(src, src_nritems - push_items);
	btrfs_set_header_nritems(dst, dst_nritems + push_items);
1166

1167 1168
	btrfs_mark_buffer_dirty(src);
	btrfs_mark_buffer_dirty(dst);
C
Chris Mason 已提交
1169
	return ret;
1170 1171
}

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

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

1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
	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 已提交
1207
	else
1208 1209 1210
		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));
1211

1212
	btrfs_mark_buffer_dirty(c);
1213

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

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

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

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

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

1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
	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);
1310

1311
	mid = (c_nritems + 1) / 2;
1312 1313 1314 1315 1316 1317 1318

	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 已提交
1319 1320
	ret = 0;

1321 1322 1323 1324 1325 1326 1327
	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 已提交
1328
			  level + 1);
C
Chris Mason 已提交
1329 1330 1331
	if (wret)
		ret = wret;

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

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

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

1363 1364 1365 1366 1367
/*
 * 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
 */
1368
int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf)
1369
{
1370 1371 1372 1373 1374 1375 1376 1377 1378
	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;
1379 1380
}

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

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

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

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

1434
	left_nritems = btrfs_header_nritems(left);
1435
	if (left_nritems == 0) {
1436
		free_extent_buffer(right);
1437 1438
		return 1;
	}
1439

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

C
Chris Mason 已提交
1451
	if (push_items == 0) {
1452
		free_extent_buffer(right);
C
Chris Mason 已提交
1453 1454
		return 1;
	}
1455

1456 1457
	if (push_items == left_nritems)
		WARN_ON(1);
1458

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

C
Chris Mason 已提交
1464
	/* make room in the right data area */
1465 1466 1467 1468 1469 1470
	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 已提交
1471
	/* copy from the left data area */
1472
	copy_extent_buffer(right, left, btrfs_leaf_data(right) +
C
Chris Mason 已提交
1473 1474 1475
		     BTRFS_LEAF_DATA_SIZE(root) - push_space,
		     btrfs_leaf_data(left) + leaf_data_end(root, left),
		     push_space);
1476 1477 1478 1479 1480

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

C
Chris Mason 已提交
1481
	/* copy the items from left to right */
1482 1483 1484
	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 已提交
1485 1486

	/* update the item pointers */
1487
	right_nritems += push_items;
1488
	btrfs_set_header_nritems(right, right_nritems);
C
Chris Mason 已提交
1489
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1490
	for (i = 0; i < right_nritems; i++) {
1491 1492 1493 1494
		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 已提交
1495
	}
1496
	left_nritems -= push_items;
1497
	btrfs_set_header_nritems(left, left_nritems);
C
Chris Mason 已提交
1498

1499 1500
	btrfs_mark_buffer_dirty(left);
	btrfs_mark_buffer_dirty(right);
1501

1502 1503
	btrfs_item_key(right, &disk_key, 0);
	btrfs_set_node_key(upper, &disk_key, slot + 1);
C
Chris Mason 已提交
1504
	btrfs_mark_buffer_dirty(upper);
C
Chris Mason 已提交
1505

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

	slot = path->slots[1];
1541
	if (slot == 0)
1542
		return 1;
1543
	if (!path->nodes[1])
1544
		return 1;
1545 1546 1547

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

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

1568 1569 1570
	right_nritems = btrfs_header_nritems(right);
	if (right_nritems == 0) {
		free_extent_buffer(left);
1571 1572 1573
		return 1;
	}

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

1591
	/* push data from right to left */
1592 1593 1594 1595 1596
	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 已提交
1597
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
1598 1599 1600
		     btrfs_item_offset_nr(right, push_items -1);

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

C
Chris Mason 已提交
1608
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
1609 1610 1611 1612 1613 1614
		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)));
1615
	}
1616
	btrfs_set_header_nritems(left, old_left_nritems + push_items);
1617 1618

	/* fixup right node */
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
	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 已提交
1633
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1634

1635 1636 1637 1638 1639
	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);
1640
	}
1641

1642 1643
	btrfs_mark_buffer_dirty(left);
	btrfs_mark_buffer_dirty(right);
1644

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

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

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

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

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

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

1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
	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);

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

C
Chris Mason 已提交
1791
	rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
1792
		      btrfs_item_end_nr(l, mid);
C
Chris Mason 已提交
1793

1794 1795 1796 1797
	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 已提交
1798
	}
C
Chris Mason 已提交
1799

1800
	btrfs_set_header_nritems(l, mid);
C
Chris Mason 已提交
1801
	ret = 0;
1802 1803 1804
	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 已提交
1805 1806
	if (wret)
		ret = wret;
1807 1808 1809

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

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

1820
	BUG_ON(path->slots[0] < 0);
1821
	check_node(root, path, 1);
1822
	check_leaf(root, path, 0);
1823 1824 1825

	if (!double_split)
		return ret;
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840

	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);

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

C
Chris Mason 已提交
1862 1863 1864 1865 1866 1867 1868 1869
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;
1870 1871
	struct extent_buffer *leaf;
	struct btrfs_item *item;
C
Chris Mason 已提交
1872 1873 1874 1875 1876 1877 1878 1879
	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];
1880
	leaf = path->nodes[0];
C
Chris Mason 已提交
1881

1882
	nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
1883 1884 1885
	data_end = leaf_data_end(root, leaf);

	slot = path->slots[0];
1886 1887
	old_data_start = btrfs_item_offset_nr(leaf, slot);
	old_size = btrfs_item_size_nr(leaf, slot);
C
Chris Mason 已提交
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
	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++) {
1899 1900 1901 1902
		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 已提交
1903 1904
	}
	/* shift the data */
1905
	memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
C
Chris Mason 已提交
1906 1907
		      data_end + size_diff, btrfs_leaf_data(leaf) +
		      data_end, old_data_start + new_size - data_end);
1908 1909 1910 1911

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

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

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

	slot_orig = path->slots[0];
1938
	leaf = path->nodes[0];
1939

1940
	nritems = btrfs_header_nritems(leaf);
1941 1942
	data_end = leaf_data_end(root, leaf);

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

	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++) {
1958 1959 1960 1961
		u32 ioff;
		item = btrfs_item_nr(leaf, i);
		ioff = btrfs_item_offset(leaf, item);
		btrfs_set_item_offset(leaf, item, ioff - data_size);
1962
	}
1963

1964
	/* shift the data */
1965
	memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
1966 1967
		      data_end - data_size, btrfs_leaf_data(leaf) +
		      data_end, old_data - data_end);
1968

1969
	data_end = old_data;
1970 1971 1972 1973
	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);
1974 1975

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

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

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
2003

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

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

2015
	slot_orig = path->slots[0];
2016
	leaf = path->nodes[0];
C
Chris Mason 已提交
2017

2018
	nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
2019
	data_end = leaf_data_end(root, leaf);
2020

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

2026
	slot = path->slots[0];
2027
	BUG_ON(slot < 0);
2028

2029 2030
	if (slot != nritems) {
		int i;
2031
		unsigned int old_data = btrfs_item_end_nr(leaf, slot);
2032

2033 2034 2035 2036 2037 2038
		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);
		}
2039 2040 2041 2042
		/*
		 * item0..itemN ... dataN.offset..dataN.size .. data0.size
		 */
		/* first correct the data pointers */
C
Chris Mason 已提交
2043
		for (i = slot; i < nritems; i++) {
2044 2045 2046 2047
			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 已提交
2048
		}
2049 2050

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

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

2062
	/* setup the item for the new data */
2063 2064 2065 2066 2067 2068
	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 已提交
2069 2070

	ret = 0;
2071
	if (slot == 0)
2072
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
2073

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

C
Chris Mason 已提交
2096 2097 2098
	path = btrfs_alloc_path();
	BUG_ON(!path);
	ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
2099
	if (!ret) {
2100 2101 2102 2103
		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);
2104
	}
C
Chris Mason 已提交
2105
	btrfs_free_path(path);
C
Chris Mason 已提交
2106
	return ret;
2107 2108
}

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

2124
	nritems = btrfs_header_nritems(parent);
2125
	if (slot != nritems -1) {
2126 2127 2128
		memmove_extent_buffer(parent,
			      btrfs_node_key_ptr_offset(slot),
			      btrfs_node_key_ptr_offset(slot + 1),
C
Chris Mason 已提交
2129 2130
			      sizeof(struct btrfs_key_ptr) *
			      (nritems - slot - 1));
2131
	}
2132
	nritems--;
2133
	btrfs_set_header_nritems(parent, nritems);
2134
	if (nritems == 0 && parent == root->node) {
2135
		BUG_ON(btrfs_header_level(root->node) != 1);
2136
		/* just turn the root into a leaf and break */
2137
		btrfs_set_header_level(root->node, 0);
2138
	} else if (slot == 0) {
2139 2140 2141 2142
		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 已提交
2143 2144
		if (wret)
			ret = wret;
2145
	}
C
Chris Mason 已提交
2146
	btrfs_mark_buffer_dirty(parent);
C
Chris Mason 已提交
2147
	return ret;
2148 2149
}

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

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

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

		memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
C
Chris Mason 已提交
2177 2178 2179
			      data_end + dsize,
			      btrfs_leaf_data(leaf) + data_end,
			      doff - data_end);
2180

C
Chris Mason 已提交
2181
		for (i = slot + 1; i < nritems; i++) {
2182 2183 2184 2185
			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 已提交
2186
		}
2187 2188
		memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
			      btrfs_item_nr_offset(slot + 1),
C
Chris Mason 已提交
2189 2190
			      sizeof(struct btrfs_item) *
			      (nritems - slot - 1));
2191
	}
2192
	btrfs_set_header_nritems(leaf, nritems - 1);
2193
	nritems--;
2194

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

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

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

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

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

			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);

2249
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
2250 2251
				if (wret)
					ret = wret;
2252 2253

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

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

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

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

		blocknr = btrfs_node_blockptr(c, slot);
C
Chris Mason 已提交
2294
		if (next)
2295 2296
			free_extent_buffer(next);

2297 2298
		if (path->reada)
			reada_for_search(root, path, level, slot);
2299

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