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
	cow->alloc_addr = (unsigned long)__builtin_return_address(0);
91
	if (buf->len != root->sectorsize || cow->len != root->sectorsize)
C
Chris Mason 已提交
92
		WARN_ON(1);
93

94 95 96 97
	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);
98

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

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

130 131 132 133
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)
134 135
{
	u64 search_start;
136
	int ret;
137 138 139 140 141 142 143 144 145 146
	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);
	}
147
	if (btrfs_header_generation(buf) == trans->transid) {
148 149 150 151
		*cow_ret = buf;
		return 0;
	}

152
	search_start = extent_buffer_blocknr(buf) & ~((u64)65535);
153
	ret = __btrfs_cow_block(trans, root, buf, parent,
154
				 parent_slot, cow_ret, search_start, 0);
155 156
	(*cow_ret)->alloc_addr = (unsigned long)__builtin_return_address(0);
	return ret;
157 158 159 160 161 162 163 164 165 166 167
}

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

168 169
#if 0
static int should_defrag_leaf(struct extent_buffer *eb)
170
{
171 172
	return 0;
	struct btrfs_leaf *leaf = btrfs_buffer_leaf(eb);
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
	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;
}
197
#endif
198

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

	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);
	}
229 230 231
	if (buffer_defrag_done(parent))
		return 0;

232 233
	parent_node = btrfs_buffer_node(parent);
	parent_nritems = btrfs_header_nritems(&parent_node->header);
234
	parent_level = btrfs_header_level(&parent_node->header);
235 236 237 238 239 240 241 242 243 244

	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);
245 246
		if (last_block == 0)
			last_block = blocknr;
247 248 249 250 251 252 253 254
		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);
		}
255 256
		if (close) {
			last_block = blocknr;
257
			continue;
258
		}
259 260 261

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

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

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

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

	btrfs_disk_key_to_cpu(&k1, disk);

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

C
Chris Mason 已提交
334 335
static int check_node(struct btrfs_root *root, struct btrfs_path *path,
		      int level)
C
Chris Mason 已提交
336
{
337 338 339 340
	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 已提交
341
	int parent_slot;
342 343
	int slot;
	struct btrfs_key cpukey;
344
	u32 nritems = btrfs_header_nritems(node);
C
Chris Mason 已提交
345 346

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

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

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

385
	u32 nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
386 387

	if (path->nodes[level + 1])
388
		parent = path->nodes[level + 1];
389 390 391 392 393

	if (nritems == 0)
		return 0;

	if (parent) {
A
Aneesh 已提交
394
		parent_slot = path->slots[level + 1];
395 396
		btrfs_node_key(parent, &parent_key, parent_slot);
		btrfs_item_key(leaf, &leaf_key, 0);
397

398
		BUG_ON(memcmp(&parent_key, &leaf_key,
C
Chris Mason 已提交
399
		       sizeof(struct btrfs_disk_key)));
400
		BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
		       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 已提交
427
	}
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
	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);
		}
450 451
	}
	if (slot < nritems - 1) {
452 453 454 455 456 457 458 459 460
		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 已提交
461
	}
462 463
	BUG_ON(btrfs_item_offset_nr(leaf, 0) +
	       btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
C
Chris Mason 已提交
464 465 466
	return 0;
}

C
Chris Mason 已提交
467 468
static int check_block(struct btrfs_root *root, struct btrfs_path *path,
			int level)
C
Chris Mason 已提交
469
{
470 471
	struct extent_buffer *buf = path->nodes[level];

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

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

	while(low < high) {
		mid = (low + high) / 2;
512 513 514 515 516
		offset = p + mid * item_size;

		if (!map_token || offset < map_start ||
		    (offset + sizeof(struct btrfs_disk_key)) >
		    map_start + map_len) {
517
			if (map_token) {
518
				unmap_extent_buffer(eb, map_token, KM_USER0);
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
				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;
			}
534 535 536 537 538

		} 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 548
			if (map_token)
				unmap_extent_buffer(eb, map_token, KM_USER0);
549 550 551 552
			return 0;
		}
	}
	*slot = low;
553 554
	if (map_token)
		unmap_extent_buffer(eb, map_token, KM_USER0);
555 556 557
	return 1;
}

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

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

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

	if (level == 0)
		return 0;

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

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

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

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

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

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

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

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

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

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

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

	if (level == 0)
		return 1;

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

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

793
	if (!parent)
794 795
		return 1;

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

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

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

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

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

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

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

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

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

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

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

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

1097 1098
	src_nritems = btrfs_header_nritems(src);
	dst_nritems = btrfs_header_nritems(dst);
C
Chris Mason 已提交
1099
	push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
1100

1101
	if (push_items <= 0) {
1102
		return 1;
1103
	}
1104

1105
	if (src_nritems < push_items)
1106 1107
		push_items = src_nritems;

1108 1109 1110 1111 1112
	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));

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

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

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

1157 1158 1159
	if (max_push < push_items)
		push_items = max_push;

1160 1161 1162 1163
	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 已提交
1164

1165 1166 1167 1168
	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));
1169

1170 1171
	btrfs_set_header_nritems(src, src_nritems - push_items);
	btrfs_set_header_nritems(dst, dst_nritems + push_items);
1172

1173 1174
	btrfs_mark_buffer_dirty(src);
	btrfs_mark_buffer_dirty(dst);
C
Chris Mason 已提交
1175
	return ret;
1176 1177
}

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

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

1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
	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 已提交
1213
	else
1214 1215 1216
		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));
1217

1218
	btrfs_mark_buffer_dirty(c);
1219

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

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

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

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

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

1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	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);
1316

1317
	mid = (c_nritems + 1) / 2;
1318 1319 1320 1321 1322 1323 1324

	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 已提交
1325 1326
	ret = 0;

1327 1328 1329 1330 1331 1332 1333
	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 已提交
1334
			  level + 1);
C
Chris Mason 已提交
1335 1336 1337
	if (wret)
		ret = wret;

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

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

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

1369 1370 1371 1372 1373
/*
 * 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
 */
1374
int btrfs_leaf_free_space(struct btrfs_root *root, struct extent_buffer *leaf)
1375
{
1376 1377 1378 1379 1380 1381 1382 1383 1384
	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;
1385 1386
}

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

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

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

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

1440
	left_nritems = btrfs_header_nritems(left);
1441
	if (left_nritems == 0) {
1442
		free_extent_buffer(right);
1443 1444
		return 1;
	}
1445

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

C
Chris Mason 已提交
1457
	if (push_items == 0) {
1458
		free_extent_buffer(right);
C
Chris Mason 已提交
1459 1460
		return 1;
	}
1461

1462 1463
	if (push_items == left_nritems)
		WARN_ON(1);
1464

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

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

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

C
Chris Mason 已提交
1487
	/* copy the items from left to right */
1488 1489 1490
	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 已提交
1491 1492

	/* update the item pointers */
1493
	right_nritems += push_items;
1494
	btrfs_set_header_nritems(right, right_nritems);
C
Chris Mason 已提交
1495
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1496
	for (i = 0; i < right_nritems; i++) {
1497 1498 1499 1500
		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 已提交
1501
	}
1502
	left_nritems -= push_items;
1503
	btrfs_set_header_nritems(left, left_nritems);
C
Chris Mason 已提交
1504

1505 1506
	btrfs_mark_buffer_dirty(left);
	btrfs_mark_buffer_dirty(right);
1507

1508 1509
	btrfs_item_key(right, &disk_key, 0);
	btrfs_set_node_key(upper, &disk_key, slot + 1);
C
Chris Mason 已提交
1510
	btrfs_mark_buffer_dirty(upper);
C
Chris Mason 已提交
1511

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

	slot = path->slots[1];
1547
	if (slot == 0)
1548
		return 1;
1549
	if (!path->nodes[1])
1550
		return 1;
1551 1552 1553

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

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

1574 1575 1576
	right_nritems = btrfs_header_nritems(right);
	if (right_nritems == 0) {
		free_extent_buffer(left);
1577 1578 1579
		return 1;
	}

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

1597
	/* push data from right to left */
1598 1599 1600 1601 1602
	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 已提交
1603
	push_space = BTRFS_LEAF_DATA_SIZE(root) -
1604 1605 1606
		     btrfs_item_offset_nr(right, push_items -1);

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

C
Chris Mason 已提交
1614
	for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
1615 1616 1617 1618 1619 1620
		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)));
1621
	}
1622
	btrfs_set_header_nritems(left, old_left_nritems + push_items);
1623 1624

	/* fixup right node */
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
	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 已提交
1639
	push_space = BTRFS_LEAF_DATA_SIZE(root);
1640

1641 1642 1643 1644 1645
	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);
1646
	}
1647

1648 1649
	btrfs_mark_buffer_dirty(left);
	btrfs_mark_buffer_dirty(right);
1650

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

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

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

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

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

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

1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
	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);

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

C
Chris Mason 已提交
1797
	rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
1798
		      btrfs_item_end_nr(l, mid);
C
Chris Mason 已提交
1799

1800 1801 1802 1803
	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 已提交
1804
	}
C
Chris Mason 已提交
1805

1806
	btrfs_set_header_nritems(l, mid);
C
Chris Mason 已提交
1807
	ret = 0;
1808 1809 1810
	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 已提交
1811 1812
	if (wret)
		ret = wret;
1813 1814 1815

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

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

1826
	BUG_ON(path->slots[0] < 0);
1827
	check_node(root, path, 1);
1828
	check_leaf(root, path, 0);
1829 1830 1831

	if (!double_split)
		return ret;
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846

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

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

C
Chris Mason 已提交
1868 1869 1870 1871 1872 1873 1874 1875
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;
1876 1877
	struct extent_buffer *leaf;
	struct btrfs_item *item;
C
Chris Mason 已提交
1878 1879 1880 1881 1882 1883 1884 1885
	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];
1886
	leaf = path->nodes[0];
C
Chris Mason 已提交
1887

1888
	nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
1889 1890 1891
	data_end = leaf_data_end(root, leaf);

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

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

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

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

	slot_orig = path->slots[0];
1944
	leaf = path->nodes[0];
1945

1946
	nritems = btrfs_header_nritems(leaf);
1947 1948
	data_end = leaf_data_end(root, leaf);

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

	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++) {
1964 1965 1966 1967
		u32 ioff;
		item = btrfs_item_nr(leaf, i);
		ioff = btrfs_item_offset(leaf, item);
		btrfs_set_item_offset(leaf, item, ioff - data_size);
1968
	}
1969

1970
	/* shift the data */
1971
	memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
1972 1973
		      data_end - data_size, btrfs_leaf_data(leaf) +
		      data_end, old_data - data_end);
1974

1975
	data_end = old_data;
1976 1977 1978 1979
	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);
1980 1981

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

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

	btrfs_cpu_key_to_disk(&disk_key, cpu_key);
2009

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

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

2021
	slot_orig = path->slots[0];
2022
	leaf = path->nodes[0];
C
Chris Mason 已提交
2023

2024
	nritems = btrfs_header_nritems(leaf);
C
Chris Mason 已提交
2025
	data_end = leaf_data_end(root, leaf);
2026

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

2032
	slot = path->slots[0];
2033
	BUG_ON(slot < 0);
2034

2035 2036
	if (slot != nritems) {
		int i;
2037
		unsigned int old_data = btrfs_item_end_nr(leaf, slot);
2038

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

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

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

2068
	/* setup the item for the new data */
2069 2070 2071 2072 2073 2074
	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 已提交
2075 2076

	ret = 0;
2077
	if (slot == 0)
2078
		ret = fixup_low_keys(trans, root, path, &disk_key, 1);
C
Chris Mason 已提交
2079

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

C
Chris Mason 已提交
2102 2103 2104
	path = btrfs_alloc_path();
	BUG_ON(!path);
	ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
2105
	if (!ret) {
2106 2107 2108 2109
		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);
2110
	}
C
Chris Mason 已提交
2111
	btrfs_free_path(path);
C
Chris Mason 已提交
2112
	return ret;
2113 2114
}

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

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

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

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

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

		memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
C
Chris Mason 已提交
2183 2184 2185
			      data_end + dsize,
			      btrfs_leaf_data(leaf) + data_end,
			      doff - data_end);
2186

C
Chris Mason 已提交
2187
		for (i = slot + 1; i < nritems; i++) {
2188 2189 2190 2191
			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 已提交
2192
		}
2193 2194
		memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
			      btrfs_item_nr_offset(slot + 1),
C
Chris Mason 已提交
2195 2196
			      sizeof(struct btrfs_item) *
			      (nritems - slot - 1));
2197
	}
2198
	btrfs_set_header_nritems(leaf, nritems - 1);
2199
	nritems--;
2200

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

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

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

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

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

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

2255
				wret = del_ptr(trans, root, path, 1, slot);
C
Chris Mason 已提交
2256 2257
				if (wret)
					ret = wret;
2258 2259

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

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

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

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

		blocknr = btrfs_node_blockptr(c, slot);
C
Chris Mason 已提交
2300
		if (next)
2301 2302
			free_extent_buffer(next);

2303 2304
		if (path->reada)
			reada_for_search(root, path, level, slot);
2305

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