blob: 0d1d966b0fe45d20e6ff75f44a6dea64f66eb54e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
Chris Masond352ac62008-09-29 15:18:18 -04002 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masona6b6e752007-10-15 16:22:39 -040019#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050021#include "ctree.h"
22#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040023#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040024#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040025#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050026
Chris Masone089f052007-03-16 16:20:31 -040027static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
28 *root, struct btrfs_path *path, int level);
29static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040030 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040031 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040032static int push_node_left(struct btrfs_trans_handle *trans,
33 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040034 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040035static int balance_node_right(struct btrfs_trans_handle *trans,
36 struct btrfs_root *root,
37 struct extent_buffer *dst_buf,
38 struct extent_buffer *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040039static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
40 struct btrfs_path *path, int level, int slot);
Yan, Zhengad48fd752009-11-12 09:33:58 +000041static int setup_items_for_insert(struct btrfs_trans_handle *trans,
42 struct btrfs_root *root, struct btrfs_path *path,
43 struct btrfs_key *cpu_key, u32 *data_size,
44 u32 total_data, u32 total_size, int nr);
45
Chris Masond97e63b2007-02-20 16:40:44 -050046
Chris Mason2c90e5d2007-04-02 10:50:19 -040047struct btrfs_path *btrfs_alloc_path(void)
48{
Chris Masondf24a2b2007-04-04 09:36:31 -040049 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050050 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
51 if (path)
Chris Mason2cc58cf2007-08-27 16:49:44 -040052 path->reada = 1;
Chris Masondf24a2b2007-04-04 09:36:31 -040053 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040054}
55
Chris Masonb4ce94d2009-02-04 09:25:08 -050056/*
57 * set all locked nodes in the path to blocking locks. This should
58 * be done before scheduling
59 */
60noinline void btrfs_set_path_blocking(struct btrfs_path *p)
61{
62 int i;
63 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
64 if (p->nodes[i] && p->locks[i])
65 btrfs_set_lock_blocking(p->nodes[i]);
66 }
67}
68
69/*
70 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050071 *
72 * held is used to keep lockdep happy, when lockdep is enabled
73 * we set held to a blocking lock before we go around and
74 * retake all the spinlocks in the path. You can safely use NULL
75 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050076 */
Chris Mason4008c042009-02-12 14:09:45 -050077noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
78 struct extent_buffer *held)
Chris Masonb4ce94d2009-02-04 09:25:08 -050079{
80 int i;
Chris Mason4008c042009-02-12 14:09:45 -050081
82#ifdef CONFIG_DEBUG_LOCK_ALLOC
83 /* lockdep really cares that we take all of these spinlocks
84 * in the right order. If any of the locks in the path are not
85 * currently blocking, it is going to complain. So, make really
86 * really sure by forcing the path to blocking before we clear
87 * the path blocking.
88 */
89 if (held)
90 btrfs_set_lock_blocking(held);
91 btrfs_set_path_blocking(p);
92#endif
93
94 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonb4ce94d2009-02-04 09:25:08 -050095 if (p->nodes[i] && p->locks[i])
96 btrfs_clear_lock_blocking(p->nodes[i]);
97 }
Chris Mason4008c042009-02-12 14:09:45 -050098
99#ifdef CONFIG_DEBUG_LOCK_ALLOC
100 if (held)
101 btrfs_clear_lock_blocking(held);
102#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -0500103}
104
Chris Masond352ac62008-09-29 15:18:18 -0400105/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400106void btrfs_free_path(struct btrfs_path *p)
107{
Chris Masondf24a2b2007-04-04 09:36:31 -0400108 btrfs_release_path(NULL, p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400109 kmem_cache_free(btrfs_path_cachep, p);
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
113 * path release drops references on the extent buffers in the path
114 * and it drops any locks held by this path
115 *
116 * It is safe to call this on paths that no locks or extent buffers held.
117 */
Chris Masond3977122009-01-05 21:25:51 -0500118noinline void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500119{
120 int i;
Chris Masona2135012008-06-25 16:01:30 -0400121
Chris Mason234b63a2007-03-13 10:46:10 -0400122 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400123 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500124 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400125 continue;
126 if (p->locks[i]) {
127 btrfs_tree_unlock(p->nodes[i]);
128 p->locks[i] = 0;
129 }
Chris Mason5f39d392007-10-15 16:14:19 -0400130 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400131 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500132 }
133}
134
Chris Masond352ac62008-09-29 15:18:18 -0400135/*
136 * safely gets a reference on the root node of a tree. A lock
137 * is not taken, so a concurrent writer may put a different node
138 * at the root of the tree. See btrfs_lock_root_node for the
139 * looping required.
140 *
141 * The extent buffer returned by this has a reference taken, so
142 * it won't disappear. It may stop being the root of the tree
143 * at any time because there are no locks held.
144 */
Chris Mason925baed2008-06-25 16:01:30 -0400145struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
146{
147 struct extent_buffer *eb;
148 spin_lock(&root->node_lock);
149 eb = root->node;
150 extent_buffer_get(eb);
151 spin_unlock(&root->node_lock);
152 return eb;
153}
154
Chris Masond352ac62008-09-29 15:18:18 -0400155/* loop around taking references on and locking the root node of the
156 * tree until you end up with a lock on the root. A locked buffer
157 * is returned, with a reference held.
158 */
Chris Mason925baed2008-06-25 16:01:30 -0400159struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
160{
161 struct extent_buffer *eb;
162
Chris Masond3977122009-01-05 21:25:51 -0500163 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400164 eb = btrfs_root_node(root);
165 btrfs_tree_lock(eb);
166
167 spin_lock(&root->node_lock);
168 if (eb == root->node) {
169 spin_unlock(&root->node_lock);
170 break;
171 }
172 spin_unlock(&root->node_lock);
173
174 btrfs_tree_unlock(eb);
175 free_extent_buffer(eb);
176 }
177 return eb;
178}
179
Chris Masond352ac62008-09-29 15:18:18 -0400180/* cowonly root (everything not a reference counted cow subvolume), just get
181 * put onto a simple dirty list. transaction.c walks this to make sure they
182 * get properly updated on disk.
183 */
Chris Mason0b86a832008-03-24 15:01:56 -0400184static void add_root_to_dirty_list(struct btrfs_root *root)
185{
186 if (root->track_dirty && list_empty(&root->dirty_list)) {
187 list_add(&root->dirty_list,
188 &root->fs_info->dirty_cowonly_roots);
189 }
190}
191
Chris Masond352ac62008-09-29 15:18:18 -0400192/*
193 * used by snapshot creation to make a copy of a root for a tree with
194 * a given objectid. The buffer with the new root node is returned in
195 * cow_ret, and this func returns zero on success or a negative error code.
196 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500197int btrfs_copy_root(struct btrfs_trans_handle *trans,
198 struct btrfs_root *root,
199 struct extent_buffer *buf,
200 struct extent_buffer **cow_ret, u64 new_root_objectid)
201{
202 struct extent_buffer *cow;
203 u32 nritems;
204 int ret = 0;
205 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400206 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500207
208 WARN_ON(root->ref_cows && trans->transid !=
209 root->fs_info->running_transaction->transid);
210 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
211
212 level = btrfs_header_level(buf);
213 nritems = btrfs_header_nritems(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400214 if (level == 0)
215 btrfs_item_key(buf, &disk_key, 0);
216 else
217 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400218
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400219 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
220 new_root_objectid, &disk_key, level,
221 buf->start, 0);
222 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500223 return PTR_ERR(cow);
224
225 copy_extent_buffer(cow, buf, 0, 0, cow->len);
226 btrfs_set_header_bytenr(cow, cow->start);
227 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400228 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
229 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
230 BTRFS_HEADER_FLAG_RELOC);
231 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
232 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
233 else
234 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500235
Yan Zheng2b820322008-11-17 21:11:30 -0500236 write_extent_buffer(cow, root->fs_info->fsid,
237 (unsigned long)btrfs_header_fsid(cow),
238 BTRFS_FSID_SIZE);
239
Chris Masonbe20aa92007-12-17 20:14:01 -0500240 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400241 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
242 ret = btrfs_inc_ref(trans, root, cow, 1);
243 else
244 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500245
Chris Masonbe20aa92007-12-17 20:14:01 -0500246 if (ret)
247 return ret;
248
249 btrfs_mark_buffer_dirty(cow);
250 *cow_ret = cow;
251 return 0;
252}
253
Chris Masond352ac62008-09-29 15:18:18 -0400254/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400255 * check if the tree block can be shared by multiple trees
256 */
257int btrfs_block_can_be_shared(struct btrfs_root *root,
258 struct extent_buffer *buf)
259{
260 /*
261 * Tree blocks not in refernece counted trees and tree roots
262 * are never shared. If a block was allocated after the last
263 * snapshot and the block was not allocated by tree relocation,
264 * we know the block is not shared.
265 */
266 if (root->ref_cows &&
267 buf != root->node && buf != root->commit_root &&
268 (btrfs_header_generation(buf) <=
269 btrfs_root_last_snapshot(&root->root_item) ||
270 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
271 return 1;
272#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
273 if (root->ref_cows &&
274 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
275 return 1;
276#endif
277 return 0;
278}
279
280static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
281 struct btrfs_root *root,
282 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400283 struct extent_buffer *cow,
284 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400285{
286 u64 refs;
287 u64 owner;
288 u64 flags;
289 u64 new_flags = 0;
290 int ret;
291
292 /*
293 * Backrefs update rules:
294 *
295 * Always use full backrefs for extent pointers in tree block
296 * allocated by tree relocation.
297 *
298 * If a shared tree block is no longer referenced by its owner
299 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
300 * use full backrefs for extent pointers in tree block.
301 *
302 * If a tree block is been relocating
303 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
304 * use full backrefs for extent pointers in tree block.
305 * The reason for this is some operations (such as drop tree)
306 * are only allowed for blocks use full backrefs.
307 */
308
309 if (btrfs_block_can_be_shared(root, buf)) {
310 ret = btrfs_lookup_extent_info(trans, root, buf->start,
311 buf->len, &refs, &flags);
312 BUG_ON(ret);
313 BUG_ON(refs == 0);
314 } else {
315 refs = 1;
316 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
317 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
318 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
319 else
320 flags = 0;
321 }
322
323 owner = btrfs_header_owner(buf);
324 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
325 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
326
327 if (refs > 1) {
328 if ((owner == root->root_key.objectid ||
329 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
330 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
331 ret = btrfs_inc_ref(trans, root, buf, 1);
332 BUG_ON(ret);
333
334 if (root->root_key.objectid ==
335 BTRFS_TREE_RELOC_OBJECTID) {
336 ret = btrfs_dec_ref(trans, root, buf, 0);
337 BUG_ON(ret);
338 ret = btrfs_inc_ref(trans, root, cow, 1);
339 BUG_ON(ret);
340 }
341 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
342 } else {
343
344 if (root->root_key.objectid ==
345 BTRFS_TREE_RELOC_OBJECTID)
346 ret = btrfs_inc_ref(trans, root, cow, 1);
347 else
348 ret = btrfs_inc_ref(trans, root, cow, 0);
349 BUG_ON(ret);
350 }
351 if (new_flags != 0) {
352 ret = btrfs_set_disk_extent_flags(trans, root,
353 buf->start,
354 buf->len,
355 new_flags, 0);
356 BUG_ON(ret);
357 }
358 } else {
359 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
360 if (root->root_key.objectid ==
361 BTRFS_TREE_RELOC_OBJECTID)
362 ret = btrfs_inc_ref(trans, root, cow, 1);
363 else
364 ret = btrfs_inc_ref(trans, root, cow, 0);
365 BUG_ON(ret);
366 ret = btrfs_dec_ref(trans, root, buf, 1);
367 BUG_ON(ret);
368 }
369 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400370 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400371 }
372 return 0;
373}
374
375/*
Chris Masond3977122009-01-05 21:25:51 -0500376 * does the dirty work in cow of a single block. The parent block (if
377 * supplied) is updated to point to the new cow copy. The new buffer is marked
378 * dirty and returned locked. If you modify the block it needs to be marked
379 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400380 *
381 * search_start -- an allocation hint for the new block
382 *
Chris Masond3977122009-01-05 21:25:51 -0500383 * empty_size -- a hint that you plan on doing more cow. This is the size in
384 * bytes the allocator should try to find free next to the block it returns.
385 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400386 */
Chris Masond3977122009-01-05 21:25:51 -0500387static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400388 struct btrfs_root *root,
389 struct extent_buffer *buf,
390 struct extent_buffer *parent, int parent_slot,
391 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400392 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400393{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400394 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400395 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500396 int level;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400397 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400398 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400399 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400400
Chris Mason925baed2008-06-25 16:01:30 -0400401 if (*cow_ret == buf)
402 unlock_orig = 1;
403
Chris Masonb9447ef2009-03-09 11:45:38 -0400404 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400405
Chris Mason7bb86312007-12-11 09:25:06 -0500406 WARN_ON(root->ref_cows && trans->transid !=
407 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400408 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400409
Chris Mason7bb86312007-12-11 09:25:06 -0500410 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400411
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400412 if (level == 0)
413 btrfs_item_key(buf, &disk_key, 0);
414 else
415 btrfs_node_key(buf, &disk_key, 0);
416
417 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
418 if (parent)
419 parent_start = parent->start;
420 else
421 parent_start = 0;
422 } else
423 parent_start = 0;
424
425 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
426 root->root_key.objectid, &disk_key,
427 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -0400428 if (IS_ERR(cow))
429 return PTR_ERR(cow);
430
Chris Masonb4ce94d2009-02-04 09:25:08 -0500431 /* cow is set to blocking by btrfs_init_new_buffer */
432
Chris Mason5f39d392007-10-15 16:14:19 -0400433 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400434 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400435 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400436 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
437 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
438 BTRFS_HEADER_FLAG_RELOC);
439 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
440 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
441 else
442 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -0400443
Yan Zheng2b820322008-11-17 21:11:30 -0500444 write_extent_buffer(cow, root->fs_info->fsid,
445 (unsigned long)btrfs_header_fsid(cow),
446 BTRFS_FSID_SIZE);
447
Yan, Zhengf0486c62010-05-16 10:46:25 -0400448 update_ref_for_cow(trans, root, buf, cow, &last_ref);
Zheng Yan1a40e232008-09-26 10:09:34 -0400449
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400450 if (root->ref_cows)
451 btrfs_reloc_cow_block(trans, root, buf, cow);
452
Chris Mason6702ed42007-08-07 16:15:09 -0400453 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400454 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400455 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
456 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
457 parent_start = buf->start;
458 else
459 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400460
461 spin_lock(&root->node_lock);
Chris Mason6702ed42007-08-07 16:15:09 -0400462 root->node = cow;
Chris Mason5f39d392007-10-15 16:14:19 -0400463 extent_buffer_get(cow);
Chris Mason925baed2008-06-25 16:01:30 -0400464 spin_unlock(&root->node_lock);
465
Yan, Zhengf0486c62010-05-16 10:46:25 -0400466 btrfs_free_tree_block(trans, root, buf, parent_start,
467 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -0400468 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400469 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400470 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400471 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
472 parent_start = parent->start;
473 else
474 parent_start = 0;
475
476 WARN_ON(trans->transid != btrfs_header_generation(parent));
Chris Mason5f39d392007-10-15 16:14:19 -0400477 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400478 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500479 btrfs_set_node_ptr_generation(parent, parent_slot,
480 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400481 btrfs_mark_buffer_dirty(parent);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400482 btrfs_free_tree_block(trans, root, buf, parent_start,
483 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -0400484 }
Chris Mason925baed2008-06-25 16:01:30 -0400485 if (unlock_orig)
486 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400487 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400488 btrfs_mark_buffer_dirty(cow);
489 *cow_ret = cow;
490 return 0;
491}
492
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400493static inline int should_cow_block(struct btrfs_trans_handle *trans,
494 struct btrfs_root *root,
495 struct extent_buffer *buf)
496{
497 if (btrfs_header_generation(buf) == trans->transid &&
498 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
499 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
500 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
501 return 0;
502 return 1;
503}
504
Chris Masond352ac62008-09-29 15:18:18 -0400505/*
506 * cows a single block, see __btrfs_cow_block for the real work.
507 * This version of it has extra checks so that a block isn't cow'd more than
508 * once per transaction, as long as it hasn't been written yet
509 */
Chris Masond3977122009-01-05 21:25:51 -0500510noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400511 struct btrfs_root *root, struct extent_buffer *buf,
512 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400513 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -0500514{
Chris Mason6702ed42007-08-07 16:15:09 -0400515 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400516 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500517
Chris Masonccd467d2007-06-28 15:57:36 -0400518 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500519 printk(KERN_CRIT "trans %llu running %llu\n",
520 (unsigned long long)trans->transid,
521 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400522 root->fs_info->running_transaction->transid);
523 WARN_ON(1);
524 }
525 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500526 printk(KERN_CRIT "trans %llu running %llu\n",
527 (unsigned long long)trans->transid,
528 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400529 WARN_ON(1);
530 }
Chris Masondc17ff82008-01-08 15:46:30 -0500531
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400532 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500533 *cow_ret = buf;
534 return 0;
535 }
Chris Masonc4876852009-02-04 09:24:25 -0500536
Chris Mason0b86a832008-03-24 15:01:56 -0400537 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500538
539 if (parent)
540 btrfs_set_lock_blocking(parent);
541 btrfs_set_lock_blocking(buf);
542
Chris Masonf510cfe2007-10-15 16:14:48 -0400543 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400544 parent_slot, cow_ret, search_start, 0);
Chris Masonf510cfe2007-10-15 16:14:48 -0400545 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400546}
547
Chris Masond352ac62008-09-29 15:18:18 -0400548/*
549 * helper function for defrag to decide if two blocks pointed to by a
550 * node are actually close by
551 */
Chris Mason6b800532007-10-15 16:17:34 -0400552static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400553{
Chris Mason6b800532007-10-15 16:17:34 -0400554 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400555 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400556 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400557 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500558 return 0;
559}
560
Chris Mason081e9572007-11-06 10:26:24 -0500561/*
562 * compare two keys in a memcmp fashion
563 */
564static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
565{
566 struct btrfs_key k1;
567
568 btrfs_disk_key_to_cpu(&k1, disk);
569
Diego Calleja20736ab2009-07-24 11:06:52 -0400570 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -0500571}
572
Josef Bacikf3465ca2008-11-12 14:19:50 -0500573/*
574 * same as comp_keys only with two btrfs_key's
575 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400576int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -0500577{
578 if (k1->objectid > k2->objectid)
579 return 1;
580 if (k1->objectid < k2->objectid)
581 return -1;
582 if (k1->type > k2->type)
583 return 1;
584 if (k1->type < k2->type)
585 return -1;
586 if (k1->offset > k2->offset)
587 return 1;
588 if (k1->offset < k2->offset)
589 return -1;
590 return 0;
591}
Chris Mason081e9572007-11-06 10:26:24 -0500592
Chris Masond352ac62008-09-29 15:18:18 -0400593/*
594 * this is used by the defrag code to go through all the
595 * leaves pointed to by a node and reallocate them so that
596 * disk order is close to key order
597 */
Chris Mason6702ed42007-08-07 16:15:09 -0400598int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400599 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400600 int start_slot, int cache_only, u64 *last_ret,
601 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400602{
Chris Mason6b800532007-10-15 16:17:34 -0400603 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400604 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400605 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400606 u64 search_start = *last_ret;
607 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400608 u64 other;
609 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400610 int end_slot;
611 int i;
612 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400613 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400614 int uptodate;
615 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500616 int progress_passed = 0;
617 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400618
Chris Mason5708b952007-10-25 15:43:18 -0400619 parent_level = btrfs_header_level(parent);
620 if (cache_only && parent_level != 1)
621 return 0;
622
Chris Masond3977122009-01-05 21:25:51 -0500623 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400624 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500625 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400626 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400627
Chris Mason6b800532007-10-15 16:17:34 -0400628 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400629 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400630 end_slot = parent_nritems;
631
632 if (parent_nritems == 1)
633 return 0;
634
Chris Masonb4ce94d2009-02-04 09:25:08 -0500635 btrfs_set_lock_blocking(parent);
636
Chris Mason6702ed42007-08-07 16:15:09 -0400637 for (i = start_slot; i < end_slot; i++) {
638 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400639
Chris Mason5708b952007-10-25 15:43:18 -0400640 if (!parent->map_token) {
641 map_extent_buffer(parent,
642 btrfs_node_key_ptr_offset(i),
643 sizeof(struct btrfs_key_ptr),
644 &parent->map_token, &parent->kaddr,
645 &parent->map_start, &parent->map_len,
646 KM_USER1);
647 }
Chris Mason081e9572007-11-06 10:26:24 -0500648 btrfs_node_key(parent, &disk_key, i);
649 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
650 continue;
651
652 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400653 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400654 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400655 if (last_block == 0)
656 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400657
Chris Mason6702ed42007-08-07 16:15:09 -0400658 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400659 other = btrfs_node_blockptr(parent, i - 1);
660 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400661 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400662 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400663 other = btrfs_node_blockptr(parent, i + 1);
664 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400665 }
Chris Masone9d0b132007-08-10 14:06:19 -0400666 if (close) {
667 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400668 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400669 }
Chris Mason5708b952007-10-25 15:43:18 -0400670 if (parent->map_token) {
671 unmap_extent_buffer(parent, parent->map_token,
672 KM_USER1);
673 parent->map_token = NULL;
674 }
Chris Mason6702ed42007-08-07 16:15:09 -0400675
Chris Mason6b800532007-10-15 16:17:34 -0400676 cur = btrfs_find_tree_block(root, blocknr, blocksize);
677 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400678 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400679 else
680 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400681 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400682 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400683 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400684 continue;
685 }
Chris Mason6b800532007-10-15 16:17:34 -0400686 if (!cur) {
687 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400688 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400689 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400690 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400691 }
Chris Mason6702ed42007-08-07 16:15:09 -0400692 }
Chris Masone9d0b132007-08-10 14:06:19 -0400693 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400694 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400695
Chris Masone7a84562008-06-25 16:01:31 -0400696 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500697 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400698 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400699 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400700 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400701 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400702 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400703 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400704 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400705 break;
Yan252c38f2007-08-29 09:11:44 -0400706 }
Chris Masone7a84562008-06-25 16:01:31 -0400707 search_start = cur->start;
708 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400709 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400710 btrfs_tree_unlock(cur);
711 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400712 }
Chris Mason5708b952007-10-25 15:43:18 -0400713 if (parent->map_token) {
714 unmap_extent_buffer(parent, parent->map_token,
715 KM_USER1);
716 parent->map_token = NULL;
717 }
Chris Mason6702ed42007-08-07 16:15:09 -0400718 return err;
719}
720
Chris Mason74123bd2007-02-02 11:05:29 -0500721/*
722 * The leaf data grows from end-to-front in the node.
723 * this returns the address of the start of the last item,
724 * which is the stop of the leaf data stack
725 */
Chris Mason123abc82007-03-14 14:14:43 -0400726static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400727 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500728{
Chris Mason5f39d392007-10-15 16:14:19 -0400729 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500730 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400731 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400732 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500733}
734
Chris Masond352ac62008-09-29 15:18:18 -0400735/*
736 * extra debugging checks to make sure all the items in a key are
737 * well formed and in the proper order
738 */
Chris Mason123abc82007-03-14 14:14:43 -0400739static int check_node(struct btrfs_root *root, struct btrfs_path *path,
740 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500741{
Chris Mason5f39d392007-10-15 16:14:19 -0400742 struct extent_buffer *parent = NULL;
743 struct extent_buffer *node = path->nodes[level];
744 struct btrfs_disk_key parent_key;
745 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500746 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400747 int slot;
748 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400749 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500750
751 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400752 parent = path->nodes[level + 1];
Aneesha1f39632007-07-11 10:03:27 -0400753
Chris Mason8d7be552007-05-10 11:24:42 -0400754 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400755 BUG_ON(nritems == 0);
756 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400757 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400758 btrfs_node_key(parent, &parent_key, parent_slot);
759 btrfs_node_key(node, &node_key, 0);
760 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400761 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400762 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400763 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500764 }
Chris Mason123abc82007-03-14 14:14:43 -0400765 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400766 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400767 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
768 btrfs_node_key(node, &node_key, slot);
769 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400770 }
771 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400772 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
773 btrfs_node_key(node, &node_key, slot);
774 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500775 }
776 return 0;
777}
778
Chris Masond352ac62008-09-29 15:18:18 -0400779/*
780 * extra checking to make sure all the items in a leaf are
781 * well formed and in the proper order
782 */
Chris Mason123abc82007-03-14 14:14:43 -0400783static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
784 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500785{
Chris Mason5f39d392007-10-15 16:14:19 -0400786 struct extent_buffer *leaf = path->nodes[level];
787 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500788 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400789 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400790 struct btrfs_disk_key parent_key;
791 struct btrfs_disk_key leaf_key;
792 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400793
Chris Mason5f39d392007-10-15 16:14:19 -0400794 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500795
796 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400797 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400798
799 if (nritems == 0)
800 return 0;
801
802 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400803 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400804 btrfs_node_key(parent, &parent_key, parent_slot);
805 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400806
Chris Mason5f39d392007-10-15 16:14:19 -0400807 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400808 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400809 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400810 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500811 }
Chris Mason5f39d392007-10-15 16:14:19 -0400812 if (slot != 0 && slot < nritems - 1) {
813 btrfs_item_key(leaf, &leaf_key, slot);
814 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
815 if (comp_keys(&leaf_key, &cpukey) <= 0) {
816 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500817 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400818 BUG_ON(1);
819 }
820 if (btrfs_item_offset_nr(leaf, slot - 1) !=
821 btrfs_item_end_nr(leaf, slot)) {
822 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500823 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400824 BUG_ON(1);
825 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500826 }
Chris Mason8d7be552007-05-10 11:24:42 -0400827 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400828 btrfs_item_key(leaf, &leaf_key, slot);
829 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
830 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
831 if (btrfs_item_offset_nr(leaf, slot) !=
832 btrfs_item_end_nr(leaf, slot + 1)) {
833 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500834 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400835 BUG_ON(1);
836 }
Chris Mason8d7be552007-05-10 11:24:42 -0400837 }
Chris Mason5f39d392007-10-15 16:14:19 -0400838 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
839 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500840 return 0;
841}
842
Chris Masond3977122009-01-05 21:25:51 -0500843static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500844 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500845{
Chris Mason85d824c2008-04-10 10:23:19 -0400846 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500847 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400848 return check_leaf(root, path, level);
849 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500850}
851
Chris Mason74123bd2007-02-02 11:05:29 -0500852/*
Chris Mason5f39d392007-10-15 16:14:19 -0400853 * search for key in the extent_buffer. The items start at offset p,
854 * and they are item_size apart. There are 'max' items in p.
855 *
Chris Mason74123bd2007-02-02 11:05:29 -0500856 * the slot in the array is returned via slot, and it points to
857 * the place where you would insert key if it is not found in
858 * the array.
859 *
860 * slot may point to max if the key is bigger than all of the keys
861 */
Chris Masone02119d2008-09-05 16:13:11 -0400862static noinline int generic_bin_search(struct extent_buffer *eb,
863 unsigned long p,
864 int item_size, struct btrfs_key *key,
865 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500866{
867 int low = 0;
868 int high = max;
869 int mid;
870 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400871 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400872 struct btrfs_disk_key unaligned;
873 unsigned long offset;
874 char *map_token = NULL;
875 char *kaddr = NULL;
876 unsigned long map_start = 0;
877 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400878 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500879
Chris Masond3977122009-01-05 21:25:51 -0500880 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500881 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400882 offset = p + mid * item_size;
883
884 if (!map_token || offset < map_start ||
885 (offset + sizeof(struct btrfs_disk_key)) >
886 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400887 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400888 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400889 map_token = NULL;
890 }
Chris Mason934d3752008-12-08 16:43:10 -0500891
892 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400893 sizeof(struct btrfs_disk_key),
894 &map_token, &kaddr,
895 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400896
Chris Mason479965d2007-10-15 16:14:27 -0400897 if (!err) {
898 tmp = (struct btrfs_disk_key *)(kaddr + offset -
899 map_start);
900 } else {
901 read_extent_buffer(eb, &unaligned,
902 offset, sizeof(unaligned));
903 tmp = &unaligned;
904 }
905
Chris Mason5f39d392007-10-15 16:14:19 -0400906 } else {
907 tmp = (struct btrfs_disk_key *)(kaddr + offset -
908 map_start);
909 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500910 ret = comp_keys(tmp, key);
911
912 if (ret < 0)
913 low = mid + 1;
914 else if (ret > 0)
915 high = mid;
916 else {
917 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400918 if (map_token)
919 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500920 return 0;
921 }
922 }
923 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400924 if (map_token)
925 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500926 return 1;
927}
928
Chris Mason97571fd2007-02-24 13:39:08 -0500929/*
930 * simple bin_search frontend that does the right thing for
931 * leaves vs nodes
932 */
Chris Mason5f39d392007-10-15 16:14:19 -0400933static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
934 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500935{
Chris Mason5f39d392007-10-15 16:14:19 -0400936 if (level == 0) {
937 return generic_bin_search(eb,
938 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400939 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400940 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400941 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500942 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400943 return generic_bin_search(eb,
944 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400945 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400946 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400947 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500948 }
949 return -1;
950}
951
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400952int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
953 int level, int *slot)
954{
955 return bin_search(eb, key, level, slot);
956}
957
Yan, Zhengf0486c62010-05-16 10:46:25 -0400958static void root_add_used(struct btrfs_root *root, u32 size)
959{
960 spin_lock(&root->accounting_lock);
961 btrfs_set_root_used(&root->root_item,
962 btrfs_root_used(&root->root_item) + size);
963 spin_unlock(&root->accounting_lock);
964}
965
966static void root_sub_used(struct btrfs_root *root, u32 size)
967{
968 spin_lock(&root->accounting_lock);
969 btrfs_set_root_used(&root->root_item,
970 btrfs_root_used(&root->root_item) - size);
971 spin_unlock(&root->accounting_lock);
972}
973
Chris Masond352ac62008-09-29 15:18:18 -0400974/* given a node and slot number, this reads the blocks it points to. The
975 * extent buffer is returned with a reference taken (but unlocked).
976 * NULL is returned on error.
977 */
Chris Masone02119d2008-09-05 16:13:11 -0400978static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400979 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500980{
Chris Masonca7a79a2008-05-12 12:59:19 -0400981 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500982 if (slot < 0)
983 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400984 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500985 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400986
987 BUG_ON(level == 0);
988
Chris Masondb945352007-10-15 16:15:53 -0400989 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400990 btrfs_level_size(root, level - 1),
991 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500992}
993
Chris Masond352ac62008-09-29 15:18:18 -0400994/*
995 * node level balancing, used to make sure nodes are in proper order for
996 * item deletion. We balance from the top down, so we have to make sure
997 * that a deletion won't leave an node completely empty later on.
998 */
Chris Masone02119d2008-09-05 16:13:11 -0400999static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001000 struct btrfs_root *root,
1001 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001002{
Chris Mason5f39d392007-10-15 16:14:19 -04001003 struct extent_buffer *right = NULL;
1004 struct extent_buffer *mid;
1005 struct extent_buffer *left = NULL;
1006 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001007 int ret = 0;
1008 int wret;
1009 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001010 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -04001011 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05001012 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001013
1014 if (level == 0)
1015 return 0;
1016
Chris Mason5f39d392007-10-15 16:14:19 -04001017 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001018
Chris Mason925baed2008-06-25 16:01:30 -04001019 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -05001020 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1021
Chris Mason1d4f8a02007-03-13 09:28:32 -04001022 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001023
Chris Mason234b63a2007-03-13 10:46:10 -04001024 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001025 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -05001026 pslot = path->slots[level + 1];
1027
Chris Mason40689472007-03-17 14:29:23 -04001028 /*
1029 * deal with the case where there is only one pointer in the root
1030 * by promoting the node below to a root
1031 */
Chris Mason5f39d392007-10-15 16:14:19 -04001032 if (!parent) {
1033 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001034
Chris Mason5f39d392007-10-15 16:14:19 -04001035 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001036 return 0;
1037
1038 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001039 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -05001040 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -04001041 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001042 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001043 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001044 if (ret) {
1045 btrfs_tree_unlock(child);
1046 free_extent_buffer(child);
1047 goto enospc;
1048 }
Yan2f375ab2008-02-01 14:58:07 -05001049
Chris Mason925baed2008-06-25 16:01:30 -04001050 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -05001051 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -04001052 spin_unlock(&root->node_lock);
1053
Chris Mason0b86a832008-03-24 15:01:56 -04001054 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001055 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001056
Chris Mason925baed2008-06-25 16:01:30 -04001057 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001058 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001059 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001060 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001061 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001062 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001063
1064 root_sub_used(root, mid->len);
1065 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001066 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -04001067 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001068 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001069 }
Chris Mason5f39d392007-10-15 16:14:19 -04001070 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001071 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001072 return 0;
1073
Chris Mason5f39d392007-10-15 16:14:19 -04001074 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001075 err_on_enospc = 1;
1076
Chris Mason5f39d392007-10-15 16:14:19 -04001077 left = read_node_slot(root, parent, pslot - 1);
1078 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001079 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001080 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001081 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001082 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001083 if (wret) {
1084 ret = wret;
1085 goto enospc;
1086 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001087 }
Chris Mason5f39d392007-10-15 16:14:19 -04001088 right = read_node_slot(root, parent, pslot + 1);
1089 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001090 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001091 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001092 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001093 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001094 if (wret) {
1095 ret = wret;
1096 goto enospc;
1097 }
1098 }
1099
1100 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001101 if (left) {
1102 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001103 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001104 if (wret < 0)
1105 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001106 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001107 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -05001108 }
Chris Mason79f95c82007-03-01 15:16:26 -05001109
1110 /*
1111 * then try to empty the right most buffer into the middle
1112 */
Chris Mason5f39d392007-10-15 16:14:19 -04001113 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001114 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001115 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001116 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001117 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001118 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001119 btrfs_tree_unlock(right);
Chris Masone089f052007-03-16 16:20:31 -04001120 wret = del_ptr(trans, root, path, level + 1, pslot +
1121 1);
Chris Masonbb803952007-03-01 12:04:21 -05001122 if (wret)
1123 ret = wret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001124 root_sub_used(root, right->len);
1125 btrfs_free_tree_block(trans, root, right, 0, 1);
1126 free_extent_buffer(right);
1127 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001128 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001129 struct btrfs_disk_key right_key;
1130 btrfs_node_key(right, &right_key, 0);
1131 btrfs_set_node_key(parent, &right_key, pslot + 1);
1132 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001133 }
1134 }
Chris Mason5f39d392007-10-15 16:14:19 -04001135 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001136 /*
1137 * we're not allowed to leave a node with one item in the
1138 * tree during a delete. A deletion from lower in the tree
1139 * could try to delete the only pointer in this node.
1140 * So, pull some keys from the left.
1141 * There has to be a left pointer at this point because
1142 * otherwise we would have pulled some pointers from the
1143 * right
1144 */
Chris Mason5f39d392007-10-15 16:14:19 -04001145 BUG_ON(!left);
1146 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001147 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001148 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001149 goto enospc;
1150 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001151 if (wret == 1) {
1152 wret = push_node_left(trans, root, left, mid, 1);
1153 if (wret < 0)
1154 ret = wret;
1155 }
Chris Mason79f95c82007-03-01 15:16:26 -05001156 BUG_ON(wret == 1);
1157 }
Chris Mason5f39d392007-10-15 16:14:19 -04001158 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001159 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001160 btrfs_tree_unlock(mid);
Chris Masone089f052007-03-16 16:20:31 -04001161 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001162 if (wret)
1163 ret = wret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001164 root_sub_used(root, mid->len);
1165 btrfs_free_tree_block(trans, root, mid, 0, 1);
1166 free_extent_buffer(mid);
1167 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001168 } else {
1169 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001170 struct btrfs_disk_key mid_key;
1171 btrfs_node_key(mid, &mid_key, 0);
1172 btrfs_set_node_key(parent, &mid_key, pslot);
1173 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001174 }
Chris Masonbb803952007-03-01 12:04:21 -05001175
Chris Mason79f95c82007-03-01 15:16:26 -05001176 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001177 if (left) {
1178 if (btrfs_header_nritems(left) > orig_slot) {
1179 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001180 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001181 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001182 path->slots[level + 1] -= 1;
1183 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001184 if (mid) {
1185 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001186 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001187 }
Chris Masonbb803952007-03-01 12:04:21 -05001188 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001189 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001190 path->slots[level] = orig_slot;
1191 }
1192 }
Chris Mason79f95c82007-03-01 15:16:26 -05001193 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001194 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001195 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001196 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001197 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001198enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001199 if (right) {
1200 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001201 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001202 }
1203 if (left) {
1204 if (path->nodes[level] != left)
1205 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001206 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001207 }
Chris Masonbb803952007-03-01 12:04:21 -05001208 return ret;
1209}
1210
Chris Masond352ac62008-09-29 15:18:18 -04001211/* Node balancing for insertion. Here we only split or push nodes around
1212 * when they are completely full. This is also done top down, so we
1213 * have to be pessimistic.
1214 */
Chris Masond3977122009-01-05 21:25:51 -05001215static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001216 struct btrfs_root *root,
1217 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001218{
Chris Mason5f39d392007-10-15 16:14:19 -04001219 struct extent_buffer *right = NULL;
1220 struct extent_buffer *mid;
1221 struct extent_buffer *left = NULL;
1222 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001223 int ret = 0;
1224 int wret;
1225 int pslot;
1226 int orig_slot = path->slots[level];
1227 u64 orig_ptr;
1228
1229 if (level == 0)
1230 return 1;
1231
Chris Mason5f39d392007-10-15 16:14:19 -04001232 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001233 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001234 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1235
1236 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001237 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001238 pslot = path->slots[level + 1];
1239
Chris Mason5f39d392007-10-15 16:14:19 -04001240 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001241 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001242
Chris Mason5f39d392007-10-15 16:14:19 -04001243 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001244
1245 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001246 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001247 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001248
1249 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001250 btrfs_set_lock_blocking(left);
1251
Chris Mason5f39d392007-10-15 16:14:19 -04001252 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001253 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1254 wret = 1;
1255 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001256 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001257 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001258 if (ret)
1259 wret = 1;
1260 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001261 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001262 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001263 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001264 }
Chris Masone66f7092007-04-20 13:16:02 -04001265 if (wret < 0)
1266 ret = wret;
1267 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001268 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001269 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001270 btrfs_node_key(mid, &disk_key, 0);
1271 btrfs_set_node_key(parent, &disk_key, pslot);
1272 btrfs_mark_buffer_dirty(parent);
1273 if (btrfs_header_nritems(left) > orig_slot) {
1274 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001275 path->slots[level + 1] -= 1;
1276 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001277 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001278 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001279 } else {
1280 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001281 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001282 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001283 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001284 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001285 }
Chris Masone66f7092007-04-20 13:16:02 -04001286 return 0;
1287 }
Chris Mason925baed2008-06-25 16:01:30 -04001288 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001289 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001290 }
Chris Mason925baed2008-06-25 16:01:30 -04001291 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001292
1293 /*
1294 * then try to empty the right most buffer into the middle
1295 */
Chris Mason5f39d392007-10-15 16:14:19 -04001296 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001297 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001298
Chris Mason925baed2008-06-25 16:01:30 -04001299 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001300 btrfs_set_lock_blocking(right);
1301
Chris Mason5f39d392007-10-15 16:14:19 -04001302 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001303 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1304 wret = 1;
1305 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001306 ret = btrfs_cow_block(trans, root, right,
1307 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001308 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001309 if (ret)
1310 wret = 1;
1311 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001312 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001313 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001314 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001315 }
Chris Masone66f7092007-04-20 13:16:02 -04001316 if (wret < 0)
1317 ret = wret;
1318 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001319 struct btrfs_disk_key disk_key;
1320
1321 btrfs_node_key(right, &disk_key, 0);
1322 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1323 btrfs_mark_buffer_dirty(parent);
1324
1325 if (btrfs_header_nritems(mid) <= orig_slot) {
1326 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001327 path->slots[level + 1] += 1;
1328 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001329 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001330 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001331 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001332 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001333 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001334 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001335 }
Chris Masone66f7092007-04-20 13:16:02 -04001336 return 0;
1337 }
Chris Mason925baed2008-06-25 16:01:30 -04001338 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001339 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001340 }
Chris Masone66f7092007-04-20 13:16:02 -04001341 return 1;
1342}
1343
Chris Mason74123bd2007-02-02 11:05:29 -05001344/*
Chris Masond352ac62008-09-29 15:18:18 -04001345 * readahead one full node of leaves, finding things that are close
1346 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001347 */
Chris Masonc8c42862009-04-03 10:14:18 -04001348static void reada_for_search(struct btrfs_root *root,
1349 struct btrfs_path *path,
1350 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001351{
Chris Mason5f39d392007-10-15 16:14:19 -04001352 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001353 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001354 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001355 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001356 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001357 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001358 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001359 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001360 u32 nr;
1361 u32 blocksize;
1362 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001363
Chris Masona6b6e752007-10-15 16:22:39 -04001364 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001365 return;
1366
Chris Mason6702ed42007-08-07 16:15:09 -04001367 if (!path->nodes[level])
1368 return;
1369
Chris Mason5f39d392007-10-15 16:14:19 -04001370 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001371
Chris Mason3c69fae2007-08-07 15:52:22 -04001372 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001373 blocksize = btrfs_level_size(root, level - 1);
1374 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001375 if (eb) {
1376 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001377 return;
1378 }
1379
Chris Masona7175312009-01-22 09:23:10 -05001380 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001381
Chris Mason5f39d392007-10-15 16:14:19 -04001382 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001383 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001384 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001385 if (direction < 0) {
1386 if (nr == 0)
1387 break;
1388 nr--;
1389 } else if (direction > 0) {
1390 nr++;
1391 if (nr >= nritems)
1392 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001393 }
Chris Mason01f46652007-12-21 16:24:26 -05001394 if (path->reada < 0 && objectid) {
1395 btrfs_node_key(node, &disk_key, nr);
1396 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1397 break;
1398 }
Chris Mason6b800532007-10-15 16:17:34 -04001399 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001400 if ((search <= target && target - search <= 65536) ||
1401 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001402 readahead_tree_block(root, search, blocksize,
1403 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001404 nread += blocksize;
1405 }
1406 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001407 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001408 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001409 }
1410}
Chris Mason925baed2008-06-25 16:01:30 -04001411
Chris Masond352ac62008-09-29 15:18:18 -04001412/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001413 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1414 * cache
1415 */
1416static noinline int reada_for_balance(struct btrfs_root *root,
1417 struct btrfs_path *path, int level)
1418{
1419 int slot;
1420 int nritems;
1421 struct extent_buffer *parent;
1422 struct extent_buffer *eb;
1423 u64 gen;
1424 u64 block1 = 0;
1425 u64 block2 = 0;
1426 int ret = 0;
1427 int blocksize;
1428
Chris Mason8c594ea2009-04-20 15:50:10 -04001429 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001430 if (!parent)
1431 return 0;
1432
1433 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04001434 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001435 blocksize = btrfs_level_size(root, level);
1436
1437 if (slot > 0) {
1438 block1 = btrfs_node_blockptr(parent, slot - 1);
1439 gen = btrfs_node_ptr_generation(parent, slot - 1);
1440 eb = btrfs_find_tree_block(root, block1, blocksize);
1441 if (eb && btrfs_buffer_uptodate(eb, gen))
1442 block1 = 0;
1443 free_extent_buffer(eb);
1444 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001445 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001446 block2 = btrfs_node_blockptr(parent, slot + 1);
1447 gen = btrfs_node_ptr_generation(parent, slot + 1);
1448 eb = btrfs_find_tree_block(root, block2, blocksize);
1449 if (eb && btrfs_buffer_uptodate(eb, gen))
1450 block2 = 0;
1451 free_extent_buffer(eb);
1452 }
1453 if (block1 || block2) {
1454 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04001455
1456 /* release the whole path */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001457 btrfs_release_path(root, path);
Chris Mason8c594ea2009-04-20 15:50:10 -04001458
1459 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001460 if (block1)
1461 readahead_tree_block(root, block1, blocksize, 0);
1462 if (block2)
1463 readahead_tree_block(root, block2, blocksize, 0);
1464
1465 if (block1) {
1466 eb = read_tree_block(root, block1, blocksize, 0);
1467 free_extent_buffer(eb);
1468 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001469 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001470 eb = read_tree_block(root, block2, blocksize, 0);
1471 free_extent_buffer(eb);
1472 }
1473 }
1474 return ret;
1475}
1476
1477
1478/*
Chris Masond3977122009-01-05 21:25:51 -05001479 * when we walk down the tree, it is usually safe to unlock the higher layers
1480 * in the tree. The exceptions are when our path goes through slot 0, because
1481 * operations on the tree might require changing key pointers higher up in the
1482 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001483 *
Chris Masond3977122009-01-05 21:25:51 -05001484 * callers might also have set path->keep_locks, which tells this code to keep
1485 * the lock if the path points to the last slot in the block. This is part of
1486 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001487 *
Chris Masond3977122009-01-05 21:25:51 -05001488 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1489 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001490 */
Chris Masone02119d2008-09-05 16:13:11 -04001491static noinline void unlock_up(struct btrfs_path *path, int level,
1492 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001493{
1494 int i;
1495 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001496 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001497 struct extent_buffer *t;
1498
1499 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1500 if (!path->nodes[i])
1501 break;
1502 if (!path->locks[i])
1503 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001504 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001505 skip_level = i + 1;
1506 continue;
1507 }
Chris Mason051e1b92008-06-25 16:01:30 -04001508 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001509 u32 nritems;
1510 t = path->nodes[i];
1511 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001512 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001513 skip_level = i + 1;
1514 continue;
1515 }
1516 }
Chris Mason051e1b92008-06-25 16:01:30 -04001517 if (skip_level < i && i >= lowest_unlock)
1518 no_skips = 1;
1519
Chris Mason925baed2008-06-25 16:01:30 -04001520 t = path->nodes[i];
1521 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1522 btrfs_tree_unlock(t);
1523 path->locks[i] = 0;
1524 }
1525 }
1526}
1527
Chris Mason3c69fae2007-08-07 15:52:22 -04001528/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001529 * This releases any locks held in the path starting at level and
1530 * going all the way up to the root.
1531 *
1532 * btrfs_search_slot will keep the lock held on higher nodes in a few
1533 * corner cases, such as COW of the block at slot zero in the node. This
1534 * ignores those rules, and it should only be called when there are no
1535 * more updates to be done higher up in the tree.
1536 */
1537noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1538{
1539 int i;
1540
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001541 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001542 return;
1543
1544 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1545 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001546 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001547 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001548 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001549 btrfs_tree_unlock(path->nodes[i]);
1550 path->locks[i] = 0;
1551 }
1552}
1553
1554/*
Chris Masonc8c42862009-04-03 10:14:18 -04001555 * helper function for btrfs_search_slot. The goal is to find a block
1556 * in cache without setting the path to blocking. If we find the block
1557 * we return zero and the path is unchanged.
1558 *
1559 * If we can't find the block, we set the path blocking and do some
1560 * reada. -EAGAIN is returned and the search must be repeated.
1561 */
1562static int
1563read_block_for_search(struct btrfs_trans_handle *trans,
1564 struct btrfs_root *root, struct btrfs_path *p,
1565 struct extent_buffer **eb_ret, int level, int slot,
1566 struct btrfs_key *key)
1567{
1568 u64 blocknr;
1569 u64 gen;
1570 u32 blocksize;
1571 struct extent_buffer *b = *eb_ret;
1572 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04001573 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001574
1575 blocknr = btrfs_node_blockptr(b, slot);
1576 gen = btrfs_node_ptr_generation(b, slot);
1577 blocksize = btrfs_level_size(root, level - 1);
1578
1579 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1580 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason76a05b32009-05-14 13:24:30 -04001581 /*
1582 * we found an up to date block without sleeping, return
1583 * right away
1584 */
Chris Masonc8c42862009-04-03 10:14:18 -04001585 *eb_ret = tmp;
1586 return 0;
1587 }
1588
1589 /*
1590 * reduce lock contention at high levels
1591 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04001592 * we read. Don't release the lock on the current
1593 * level because we need to walk this node to figure
1594 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04001595 */
Chris Mason8c594ea2009-04-20 15:50:10 -04001596 btrfs_unlock_up_safe(p, level + 1);
1597 btrfs_set_path_blocking(p);
1598
Chris Masonc8c42862009-04-03 10:14:18 -04001599 if (tmp)
1600 free_extent_buffer(tmp);
1601 if (p->reada)
1602 reada_for_search(root, p, level, slot, key->objectid);
1603
Chris Mason8c594ea2009-04-20 15:50:10 -04001604 btrfs_release_path(NULL, p);
Chris Mason76a05b32009-05-14 13:24:30 -04001605
1606 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04001607 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04001608 if (tmp) {
1609 /*
1610 * If the read above didn't mark this buffer up to date,
1611 * it will never end up being up to date. Set ret to EIO now
1612 * and give up so that our caller doesn't loop forever
1613 * on our EAGAINs.
1614 */
1615 if (!btrfs_buffer_uptodate(tmp, 0))
1616 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04001617 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04001618 }
1619 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001620}
1621
1622/*
1623 * helper function for btrfs_search_slot. This does all of the checks
1624 * for node-level blocks and does any balancing required based on
1625 * the ins_len.
1626 *
1627 * If no extra work was required, zero is returned. If we had to
1628 * drop the path, -EAGAIN is returned and btrfs_search_slot must
1629 * start over
1630 */
1631static int
1632setup_nodes_for_search(struct btrfs_trans_handle *trans,
1633 struct btrfs_root *root, struct btrfs_path *p,
1634 struct extent_buffer *b, int level, int ins_len)
1635{
1636 int ret;
1637 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
1638 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
1639 int sret;
1640
1641 sret = reada_for_balance(root, p, level);
1642 if (sret)
1643 goto again;
1644
1645 btrfs_set_path_blocking(p);
1646 sret = split_node(trans, root, p, level);
1647 btrfs_clear_path_blocking(p, NULL);
1648
1649 BUG_ON(sret > 0);
1650 if (sret) {
1651 ret = sret;
1652 goto done;
1653 }
1654 b = p->nodes[level];
1655 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04001656 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04001657 int sret;
1658
1659 sret = reada_for_balance(root, p, level);
1660 if (sret)
1661 goto again;
1662
1663 btrfs_set_path_blocking(p);
1664 sret = balance_level(trans, root, p, level);
1665 btrfs_clear_path_blocking(p, NULL);
1666
1667 if (sret) {
1668 ret = sret;
1669 goto done;
1670 }
1671 b = p->nodes[level];
1672 if (!b) {
1673 btrfs_release_path(NULL, p);
1674 goto again;
1675 }
1676 BUG_ON(btrfs_header_nritems(b) == 1);
1677 }
1678 return 0;
1679
1680again:
1681 ret = -EAGAIN;
1682done:
1683 return ret;
1684}
1685
1686/*
Chris Mason74123bd2007-02-02 11:05:29 -05001687 * look for key in the tree. path is filled in with nodes along the way
1688 * if key is found, we return zero and you can find the item in the leaf
1689 * level of the path (level 0)
1690 *
1691 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001692 * be inserted, and 1 is returned. If there are other errors during the
1693 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001694 *
1695 * if ins_len > 0, nodes and leaves will be split as we walk down the
1696 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1697 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001698 */
Chris Masone089f052007-03-16 16:20:31 -04001699int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1700 *root, struct btrfs_key *key, struct btrfs_path *p, int
1701 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001702{
Chris Mason5f39d392007-10-15 16:14:19 -04001703 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001704 int slot;
1705 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04001706 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001707 int level;
Chris Mason925baed2008-06-25 16:01:30 -04001708 int lowest_unlock = 1;
Chris Mason9f3a7422007-08-07 15:52:19 -04001709 u8 lowest_level = 0;
1710
Chris Mason6702ed42007-08-07 16:15:09 -04001711 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001712 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001713 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001714
Chris Mason925baed2008-06-25 16:01:30 -04001715 if (ins_len < 0)
1716 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001717
Chris Masonbb803952007-03-01 12:04:21 -05001718again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001719 if (p->search_commit_root) {
1720 b = root->commit_root;
1721 extent_buffer_get(b);
1722 if (!p->skip_locking)
1723 btrfs_tree_lock(b);
1724 } else {
1725 if (p->skip_locking)
1726 b = btrfs_root_node(root);
1727 else
1728 b = btrfs_lock_root_node(root);
1729 }
Chris Mason925baed2008-06-25 16:01:30 -04001730
Chris Masoneb60cea2007-02-02 09:18:22 -05001731 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001732 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001733
1734 /*
1735 * setup the path here so we can release it under lock
1736 * contention with the cow code
1737 */
1738 p->nodes[level] = b;
1739 if (!p->skip_locking)
1740 p->locks[level] = 1;
1741
Chris Mason02217ed2007-03-02 16:08:05 -05001742 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04001743 /*
1744 * if we don't really need to cow this block
1745 * then we don't want to set the path blocking,
1746 * so we test it here
1747 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001748 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04001749 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001750
Chris Masonb4ce94d2009-02-04 09:25:08 -05001751 btrfs_set_path_blocking(p);
1752
Yan Zheng33c66f42009-07-22 09:59:00 -04001753 err = btrfs_cow_block(trans, root, b,
1754 p->nodes[level + 1],
1755 p->slots[level + 1], &b);
1756 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001757 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001758 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001759 }
Chris Mason02217ed2007-03-02 16:08:05 -05001760 }
Chris Mason65b51a02008-08-01 15:11:20 -04001761cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001762 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001763 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001764 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001765 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001766
Chris Masoneb60cea2007-02-02 09:18:22 -05001767 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001768 if (!p->skip_locking)
1769 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001770
Chris Mason4008c042009-02-12 14:09:45 -05001771 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001772
1773 /*
1774 * we have a lock on b and as long as we aren't changing
1775 * the tree, there is no way to for the items in b to change.
1776 * It is safe to drop the lock on our parent before we
1777 * go through the expensive btree search on b.
1778 *
1779 * If cow is true, then we might be changing slot zero,
1780 * which may require changing the parent. So, we can't
1781 * drop the lock until after we know which slot we're
1782 * operating on.
1783 */
1784 if (!cow)
1785 btrfs_unlock_up_safe(p, level + 1);
1786
Chris Mason123abc82007-03-14 14:14:43 -04001787 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001788 if (ret) {
1789 ret = -1;
1790 goto done;
1791 }
Chris Mason925baed2008-06-25 16:01:30 -04001792
Chris Mason5f39d392007-10-15 16:14:19 -04001793 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001794
Chris Mason5f39d392007-10-15 16:14:19 -04001795 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001796 int dec = 0;
1797 if (ret && slot > 0) {
1798 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001799 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04001800 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001801 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04001802 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonc8c42862009-04-03 10:14:18 -04001803 ins_len);
Yan Zheng33c66f42009-07-22 09:59:00 -04001804 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001805 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001806 if (err) {
1807 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04001808 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001809 }
Chris Masonc8c42862009-04-03 10:14:18 -04001810 b = p->nodes[level];
1811 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001812
Chris Masonf9efa9c2008-06-25 16:14:04 -04001813 unlock_up(p, level, lowest_unlock);
1814
Chris Mason925baed2008-06-25 16:01:30 -04001815 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001816 if (dec)
1817 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001818 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001819 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001820
Yan Zheng33c66f42009-07-22 09:59:00 -04001821 err = read_block_for_search(trans, root, p,
Chris Masonc8c42862009-04-03 10:14:18 -04001822 &b, level, slot, key);
Yan Zheng33c66f42009-07-22 09:59:00 -04001823 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001824 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001825 if (err) {
1826 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04001827 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001828 }
Chris Mason76a05b32009-05-14 13:24:30 -04001829
Chris Masonb4ce94d2009-02-04 09:25:08 -05001830 if (!p->skip_locking) {
Chris Mason4008c042009-02-12 14:09:45 -05001831 btrfs_clear_path_blocking(p, NULL);
Yan Zheng33c66f42009-07-22 09:59:00 -04001832 err = btrfs_try_spin_lock(b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001833
Yan Zheng33c66f42009-07-22 09:59:00 -04001834 if (!err) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001835 btrfs_set_path_blocking(p);
1836 btrfs_tree_lock(b);
Chris Mason4008c042009-02-12 14:09:45 -05001837 btrfs_clear_path_blocking(p, b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001838 }
1839 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001840 } else {
1841 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001842 if (ins_len > 0 &&
1843 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001844 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04001845 err = split_leaf(trans, root, key,
1846 p, ins_len, ret == 0);
Chris Mason4008c042009-02-12 14:09:45 -05001847 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001848
Yan Zheng33c66f42009-07-22 09:59:00 -04001849 BUG_ON(err > 0);
1850 if (err) {
1851 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001852 goto done;
1853 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001854 }
Chris Mason459931e2008-12-10 09:10:46 -05001855 if (!p->search_for_split)
1856 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001857 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001858 }
1859 }
Chris Mason65b51a02008-08-01 15:11:20 -04001860 ret = 1;
1861done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001862 /*
1863 * we don't really know what they plan on doing with the path
1864 * from here on, so for now just mark it as blocking
1865 */
Chris Masonb9473432009-03-13 11:00:37 -04001866 if (!p->leave_spinning)
1867 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001868 if (ret < 0)
1869 btrfs_release_path(root, p);
Chris Mason65b51a02008-08-01 15:11:20 -04001870 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001871}
1872
Chris Mason74123bd2007-02-02 11:05:29 -05001873/*
1874 * adjust the pointers going up the tree, starting at level
1875 * making sure the right key of each node is points to 'key'.
1876 * This is used after shifting pointers to the left, so it stops
1877 * fixing up pointers when a given leaf/node is not in slot 0 of the
1878 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001879 *
1880 * If this fails to write a tree block, it returns -1, but continues
1881 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001882 */
Chris Mason5f39d392007-10-15 16:14:19 -04001883static int fixup_low_keys(struct btrfs_trans_handle *trans,
1884 struct btrfs_root *root, struct btrfs_path *path,
1885 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001886{
1887 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001888 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001889 struct extent_buffer *t;
1890
Chris Mason234b63a2007-03-13 10:46:10 -04001891 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001892 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001893 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001894 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001895 t = path->nodes[i];
1896 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001897 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001898 if (tslot != 0)
1899 break;
1900 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001901 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001902}
1903
Chris Mason74123bd2007-02-02 11:05:29 -05001904/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001905 * update item key.
1906 *
1907 * This function isn't completely safe. It's the caller's responsibility
1908 * that the new key won't break the order
1909 */
1910int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1911 struct btrfs_root *root, struct btrfs_path *path,
1912 struct btrfs_key *new_key)
1913{
1914 struct btrfs_disk_key disk_key;
1915 struct extent_buffer *eb;
1916 int slot;
1917
1918 eb = path->nodes[0];
1919 slot = path->slots[0];
1920 if (slot > 0) {
1921 btrfs_item_key(eb, &disk_key, slot - 1);
1922 if (comp_keys(&disk_key, new_key) >= 0)
1923 return -1;
1924 }
1925 if (slot < btrfs_header_nritems(eb) - 1) {
1926 btrfs_item_key(eb, &disk_key, slot + 1);
1927 if (comp_keys(&disk_key, new_key) <= 0)
1928 return -1;
1929 }
1930
1931 btrfs_cpu_key_to_disk(&disk_key, new_key);
1932 btrfs_set_item_key(eb, &disk_key, slot);
1933 btrfs_mark_buffer_dirty(eb);
1934 if (slot == 0)
1935 fixup_low_keys(trans, root, path, &disk_key, 1);
1936 return 0;
1937}
1938
1939/*
Chris Mason74123bd2007-02-02 11:05:29 -05001940 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001941 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001942 *
1943 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1944 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001945 */
Chris Mason98ed5172008-01-03 10:01:48 -05001946static int push_node_left(struct btrfs_trans_handle *trans,
1947 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001948 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001949{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001950 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001951 int src_nritems;
1952 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001953 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001954
Chris Mason5f39d392007-10-15 16:14:19 -04001955 src_nritems = btrfs_header_nritems(src);
1956 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001957 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001958 WARN_ON(btrfs_header_generation(src) != trans->transid);
1959 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001960
Chris Masonbce4eae2008-04-24 14:42:46 -04001961 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001962 return 1;
1963
Chris Masond3977122009-01-05 21:25:51 -05001964 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001965 return 1;
1966
Chris Masonbce4eae2008-04-24 14:42:46 -04001967 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001968 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001969 if (push_items < src_nritems) {
1970 /* leave at least 8 pointers in the node if
1971 * we aren't going to empty it
1972 */
1973 if (src_nritems - push_items < 8) {
1974 if (push_items <= 8)
1975 return 1;
1976 push_items -= 8;
1977 }
1978 }
1979 } else
1980 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001981
Chris Mason5f39d392007-10-15 16:14:19 -04001982 copy_extent_buffer(dst, src,
1983 btrfs_node_key_ptr_offset(dst_nritems),
1984 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001985 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001986
Chris Masonbb803952007-03-01 12:04:21 -05001987 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001988 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1989 btrfs_node_key_ptr_offset(push_items),
1990 (src_nritems - push_items) *
1991 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001992 }
Chris Mason5f39d392007-10-15 16:14:19 -04001993 btrfs_set_header_nritems(src, src_nritems - push_items);
1994 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1995 btrfs_mark_buffer_dirty(src);
1996 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001997
Chris Masonbb803952007-03-01 12:04:21 -05001998 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001999}
2000
Chris Mason97571fd2007-02-24 13:39:08 -05002001/*
Chris Mason79f95c82007-03-01 15:16:26 -05002002 * try to push data from one node into the next node right in the
2003 * tree.
2004 *
2005 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2006 * error, and > 0 if there was no room in the right hand block.
2007 *
2008 * this will only push up to 1/2 the contents of the left node over
2009 */
Chris Mason5f39d392007-10-15 16:14:19 -04002010static int balance_node_right(struct btrfs_trans_handle *trans,
2011 struct btrfs_root *root,
2012 struct extent_buffer *dst,
2013 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002014{
Chris Mason79f95c82007-03-01 15:16:26 -05002015 int push_items = 0;
2016 int max_push;
2017 int src_nritems;
2018 int dst_nritems;
2019 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002020
Chris Mason7bb86312007-12-11 09:25:06 -05002021 WARN_ON(btrfs_header_generation(src) != trans->transid);
2022 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2023
Chris Mason5f39d392007-10-15 16:14:19 -04002024 src_nritems = btrfs_header_nritems(src);
2025 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002026 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002027 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002028 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002029
Chris Masond3977122009-01-05 21:25:51 -05002030 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002031 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002032
2033 max_push = src_nritems / 2 + 1;
2034 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002035 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002036 return 1;
Yan252c38f2007-08-29 09:11:44 -04002037
Chris Mason79f95c82007-03-01 15:16:26 -05002038 if (max_push < push_items)
2039 push_items = max_push;
2040
Chris Mason5f39d392007-10-15 16:14:19 -04002041 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2042 btrfs_node_key_ptr_offset(0),
2043 (dst_nritems) *
2044 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002045
Chris Mason5f39d392007-10-15 16:14:19 -04002046 copy_extent_buffer(dst, src,
2047 btrfs_node_key_ptr_offset(0),
2048 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002049 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002050
Chris Mason5f39d392007-10-15 16:14:19 -04002051 btrfs_set_header_nritems(src, src_nritems - push_items);
2052 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002053
Chris Mason5f39d392007-10-15 16:14:19 -04002054 btrfs_mark_buffer_dirty(src);
2055 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002056
Chris Mason79f95c82007-03-01 15:16:26 -05002057 return ret;
2058}
2059
2060/*
Chris Mason97571fd2007-02-24 13:39:08 -05002061 * helper function to insert a new root level in the tree.
2062 * A new node is allocated, and a single item is inserted to
2063 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002064 *
2065 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002066 */
Chris Masond3977122009-01-05 21:25:51 -05002067static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002068 struct btrfs_root *root,
2069 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002070{
Chris Mason7bb86312007-12-11 09:25:06 -05002071 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002072 struct extent_buffer *lower;
2073 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002074 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002075 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05002076
2077 BUG_ON(path->nodes[level]);
2078 BUG_ON(path->nodes[level-1] != root->node);
2079
Chris Mason7bb86312007-12-11 09:25:06 -05002080 lower = path->nodes[level-1];
2081 if (level == 1)
2082 btrfs_item_key(lower, &lower_key, 0);
2083 else
2084 btrfs_node_key(lower, &lower_key, 0);
2085
Zheng Yan31840ae2008-09-23 13:14:14 -04002086 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002087 root->root_key.objectid, &lower_key,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002088 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002089 if (IS_ERR(c))
2090 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002091
Yan, Zhengf0486c62010-05-16 10:46:25 -04002092 root_add_used(root, root->nodesize);
2093
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002094 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002095 btrfs_set_header_nritems(c, 1);
2096 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002097 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002098 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002099 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002100 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002101
Chris Mason5f39d392007-10-15 16:14:19 -04002102 write_extent_buffer(c, root->fs_info->fsid,
2103 (unsigned long)btrfs_header_fsid(c),
2104 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002105
2106 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2107 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2108 BTRFS_UUID_SIZE);
2109
Chris Mason5f39d392007-10-15 16:14:19 -04002110 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002111 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002112 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002113 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002114
2115 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002116
2117 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002118
Chris Mason925baed2008-06-25 16:01:30 -04002119 spin_lock(&root->node_lock);
2120 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002121 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002122 spin_unlock(&root->node_lock);
2123
2124 /* the super has an extra ref to root->node */
2125 free_extent_buffer(old);
2126
Chris Mason0b86a832008-03-24 15:01:56 -04002127 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002128 extent_buffer_get(c);
2129 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002130 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002131 path->slots[level] = 0;
2132 return 0;
2133}
2134
Chris Mason74123bd2007-02-02 11:05:29 -05002135/*
2136 * worker function to insert a single pointer in a node.
2137 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002138 *
Chris Mason74123bd2007-02-02 11:05:29 -05002139 * slot and level indicate where you want the key to go, and
2140 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002141 *
2142 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002143 */
Chris Masone089f052007-03-16 16:20:31 -04002144static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2145 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002146 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002147{
Chris Mason5f39d392007-10-15 16:14:19 -04002148 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002149 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002150
2151 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002152 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002153 lower = path->nodes[level];
2154 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04002155 BUG_ON(slot > nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002156 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002157 BUG();
2158 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002159 memmove_extent_buffer(lower,
2160 btrfs_node_key_ptr_offset(slot + 1),
2161 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002162 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002163 }
Chris Mason5f39d392007-10-15 16:14:19 -04002164 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002165 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002166 WARN_ON(trans->transid == 0);
2167 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002168 btrfs_set_header_nritems(lower, nritems + 1);
2169 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002170 return 0;
2171}
2172
Chris Mason97571fd2007-02-24 13:39:08 -05002173/*
2174 * split the node at the specified level in path in two.
2175 * The path is corrected to point to the appropriate node after the split
2176 *
2177 * Before splitting this tries to make some room in the node by pushing
2178 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002179 *
2180 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002181 */
Chris Masone02119d2008-09-05 16:13:11 -04002182static noinline int split_node(struct btrfs_trans_handle *trans,
2183 struct btrfs_root *root,
2184 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002185{
Chris Mason5f39d392007-10-15 16:14:19 -04002186 struct extent_buffer *c;
2187 struct extent_buffer *split;
2188 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002189 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002190 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002191 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002192 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002193
Chris Mason5f39d392007-10-15 16:14:19 -04002194 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002195 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002196 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002197 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002198 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002199 if (ret)
2200 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04002201 } else {
Chris Masone66f7092007-04-20 13:16:02 -04002202 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002203 c = path->nodes[level];
2204 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002205 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002206 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002207 if (ret < 0)
2208 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002209 }
Chris Masone66f7092007-04-20 13:16:02 -04002210
Chris Mason5f39d392007-10-15 16:14:19 -04002211 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002212 mid = (c_nritems + 1) / 2;
2213 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05002214
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002215 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04002216 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002217 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002218 if (IS_ERR(split))
2219 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002220
Yan, Zhengf0486c62010-05-16 10:46:25 -04002221 root_add_used(root, root->nodesize);
2222
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002223 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002224 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002225 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002226 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002227 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002228 btrfs_set_header_owner(split, root->root_key.objectid);
2229 write_extent_buffer(split, root->fs_info->fsid,
2230 (unsigned long)btrfs_header_fsid(split),
2231 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002232 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2233 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2234 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002235
Chris Mason5f39d392007-10-15 16:14:19 -04002236
2237 copy_extent_buffer(split, c,
2238 btrfs_node_key_ptr_offset(0),
2239 btrfs_node_key_ptr_offset(mid),
2240 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2241 btrfs_set_header_nritems(split, c_nritems - mid);
2242 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002243 ret = 0;
2244
Chris Mason5f39d392007-10-15 16:14:19 -04002245 btrfs_mark_buffer_dirty(c);
2246 btrfs_mark_buffer_dirty(split);
2247
Chris Masondb945352007-10-15 16:15:53 -04002248 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002249 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002250 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002251 if (wret)
2252 ret = wret;
2253
Chris Mason5de08d72007-02-24 06:24:44 -05002254 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002255 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002256 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002257 free_extent_buffer(c);
2258 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002259 path->slots[level + 1] += 1;
2260 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002261 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002262 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002263 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002264 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002265}
2266
Chris Mason74123bd2007-02-02 11:05:29 -05002267/*
2268 * how many bytes are required to store the items in a leaf. start
2269 * and nr indicate which items in the leaf to check. This totals up the
2270 * space used both by the item structs and the item data
2271 */
Chris Mason5f39d392007-10-15 16:14:19 -04002272static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002273{
2274 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002275 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002276 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002277
2278 if (!nr)
2279 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002280 data_len = btrfs_item_end_nr(l, start);
2281 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002282 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002283 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002284 return data_len;
2285}
2286
Chris Mason74123bd2007-02-02 11:05:29 -05002287/*
Chris Masond4dbff92007-04-04 14:08:15 -04002288 * The space between the end of the leaf items and
2289 * the start of the leaf data. IOW, how much room
2290 * the leaf has left for both items and data
2291 */
Chris Masond3977122009-01-05 21:25:51 -05002292noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002293 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002294{
Chris Mason5f39d392007-10-15 16:14:19 -04002295 int nritems = btrfs_header_nritems(leaf);
2296 int ret;
2297 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2298 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002299 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2300 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002301 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002302 leaf_space_used(leaf, 0, nritems), nritems);
2303 }
2304 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002305}
2306
Chris Mason44871b12009-03-13 10:04:31 -04002307static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2308 struct btrfs_root *root,
2309 struct btrfs_path *path,
2310 int data_size, int empty,
2311 struct extent_buffer *right,
2312 int free_space, u32 left_nritems)
Chris Mason00ec4c52007-02-24 12:47:20 -05002313{
Chris Mason5f39d392007-10-15 16:14:19 -04002314 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002315 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002316 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002317 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002318 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002319 int push_space = 0;
2320 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002321 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002322 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002323 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002324 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002325 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05002326
Chris Mason34a38212007-11-07 13:31:03 -05002327 if (empty)
2328 nr = 0;
2329 else
2330 nr = 1;
2331
Zheng Yan31840ae2008-09-23 13:14:14 -04002332 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002333 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002334
Chris Mason44871b12009-03-13 10:04:31 -04002335 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002336 i = left_nritems - 1;
2337 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002338 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002339
Zheng Yan31840ae2008-09-23 13:14:14 -04002340 if (!empty && push_items > 0) {
2341 if (path->slots[0] > i)
2342 break;
2343 if (path->slots[0] == i) {
2344 int space = btrfs_leaf_free_space(root, left);
2345 if (space + push_space * 2 > free_space)
2346 break;
2347 }
2348 }
2349
Chris Mason00ec4c52007-02-24 12:47:20 -05002350 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002351 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002352
2353 if (!left->map_token) {
2354 map_extent_buffer(left, (unsigned long)item,
2355 sizeof(struct btrfs_item),
2356 &left->map_token, &left->kaddr,
2357 &left->map_start, &left->map_len,
2358 KM_USER1);
2359 }
2360
2361 this_item_size = btrfs_item_size(left, item);
2362 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002363 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002364
Chris Mason00ec4c52007-02-24 12:47:20 -05002365 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002366 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002367 if (i == 0)
2368 break;
2369 i--;
Chris Masondb945352007-10-15 16:15:53 -04002370 }
2371 if (left->map_token) {
2372 unmap_extent_buffer(left, left->map_token, KM_USER1);
2373 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002374 }
Chris Mason5f39d392007-10-15 16:14:19 -04002375
Chris Mason925baed2008-06-25 16:01:30 -04002376 if (push_items == 0)
2377 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002378
Chris Mason34a38212007-11-07 13:31:03 -05002379 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002380 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002381
Chris Mason00ec4c52007-02-24 12:47:20 -05002382 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002383 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002384
Chris Mason5f39d392007-10-15 16:14:19 -04002385 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002386 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002387
Chris Mason00ec4c52007-02-24 12:47:20 -05002388 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002389 data_end = leaf_data_end(root, right);
2390 memmove_extent_buffer(right,
2391 btrfs_leaf_data(right) + data_end - push_space,
2392 btrfs_leaf_data(right) + data_end,
2393 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2394
Chris Mason00ec4c52007-02-24 12:47:20 -05002395 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002396 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002397 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2398 btrfs_leaf_data(left) + leaf_data_end(root, left),
2399 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002400
2401 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2402 btrfs_item_nr_offset(0),
2403 right_nritems * sizeof(struct btrfs_item));
2404
Chris Mason00ec4c52007-02-24 12:47:20 -05002405 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002406 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2407 btrfs_item_nr_offset(left_nritems - push_items),
2408 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002409
2410 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002411 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002412 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002413 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002414 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002415 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002416 if (!right->map_token) {
2417 map_extent_buffer(right, (unsigned long)item,
2418 sizeof(struct btrfs_item),
2419 &right->map_token, &right->kaddr,
2420 &right->map_start, &right->map_len,
2421 KM_USER1);
2422 }
2423 push_space -= btrfs_item_size(right, item);
2424 btrfs_set_item_offset(right, item, push_space);
2425 }
2426
2427 if (right->map_token) {
2428 unmap_extent_buffer(right, right->map_token, KM_USER1);
2429 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002430 }
Chris Mason7518a232007-03-12 12:01:18 -04002431 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002432 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002433
Chris Mason34a38212007-11-07 13:31:03 -05002434 if (left_nritems)
2435 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002436 else
2437 clean_tree_block(trans, root, left);
2438
Chris Mason5f39d392007-10-15 16:14:19 -04002439 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002440
Chris Mason5f39d392007-10-15 16:14:19 -04002441 btrfs_item_key(right, &disk_key, 0);
2442 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002443 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002444
Chris Mason00ec4c52007-02-24 12:47:20 -05002445 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002446 if (path->slots[0] >= left_nritems) {
2447 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002448 if (btrfs_header_nritems(path->nodes[0]) == 0)
2449 clean_tree_block(trans, root, path->nodes[0]);
2450 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002451 free_extent_buffer(path->nodes[0]);
2452 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002453 path->slots[1] += 1;
2454 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002455 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002456 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002457 }
2458 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002459
2460out_unlock:
2461 btrfs_tree_unlock(right);
2462 free_extent_buffer(right);
2463 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002464}
Chris Mason925baed2008-06-25 16:01:30 -04002465
Chris Mason00ec4c52007-02-24 12:47:20 -05002466/*
Chris Mason44871b12009-03-13 10:04:31 -04002467 * push some data in the path leaf to the right, trying to free up at
2468 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2469 *
2470 * returns 1 if the push failed because the other node didn't have enough
2471 * room, 0 if everything worked out and < 0 if there were major errors.
2472 */
2473static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
2474 *root, struct btrfs_path *path, int data_size,
2475 int empty)
2476{
2477 struct extent_buffer *left = path->nodes[0];
2478 struct extent_buffer *right;
2479 struct extent_buffer *upper;
2480 int slot;
2481 int free_space;
2482 u32 left_nritems;
2483 int ret;
2484
2485 if (!path->nodes[1])
2486 return 1;
2487
2488 slot = path->slots[1];
2489 upper = path->nodes[1];
2490 if (slot >= btrfs_header_nritems(upper) - 1)
2491 return 1;
2492
2493 btrfs_assert_tree_locked(path->nodes[1]);
2494
2495 right = read_node_slot(root, upper, slot + 1);
2496 btrfs_tree_lock(right);
2497 btrfs_set_lock_blocking(right);
2498
2499 free_space = btrfs_leaf_free_space(root, right);
2500 if (free_space < data_size)
2501 goto out_unlock;
2502
2503 /* cow and double check */
2504 ret = btrfs_cow_block(trans, root, right, upper,
2505 slot + 1, &right);
2506 if (ret)
2507 goto out_unlock;
2508
2509 free_space = btrfs_leaf_free_space(root, right);
2510 if (free_space < data_size)
2511 goto out_unlock;
2512
2513 left_nritems = btrfs_header_nritems(left);
2514 if (left_nritems == 0)
2515 goto out_unlock;
2516
2517 return __push_leaf_right(trans, root, path, data_size, empty,
2518 right, free_space, left_nritems);
2519out_unlock:
2520 btrfs_tree_unlock(right);
2521 free_extent_buffer(right);
2522 return 1;
2523}
2524
2525/*
Chris Mason74123bd2007-02-02 11:05:29 -05002526 * push some data in the path leaf to the left, trying to free up at
2527 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2528 */
Chris Mason44871b12009-03-13 10:04:31 -04002529static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2530 struct btrfs_root *root,
2531 struct btrfs_path *path, int data_size,
2532 int empty, struct extent_buffer *left,
2533 int free_space, int right_nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002534{
Chris Mason5f39d392007-10-15 16:14:19 -04002535 struct btrfs_disk_key disk_key;
2536 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002537 int slot;
2538 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002539 int push_space = 0;
2540 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002541 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002542 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002543 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002544 int ret = 0;
2545 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002546 u32 this_item_size;
2547 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002548
2549 slot = path->slots[1];
Chris Mason02217ed2007-03-02 16:08:05 -05002550
Chris Mason34a38212007-11-07 13:31:03 -05002551 if (empty)
2552 nr = right_nritems;
2553 else
2554 nr = right_nritems - 1;
2555
2556 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002557 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002558 if (!right->map_token) {
2559 map_extent_buffer(right, (unsigned long)item,
2560 sizeof(struct btrfs_item),
2561 &right->map_token, &right->kaddr,
2562 &right->map_start, &right->map_len,
2563 KM_USER1);
2564 }
2565
Zheng Yan31840ae2008-09-23 13:14:14 -04002566 if (!empty && push_items > 0) {
2567 if (path->slots[0] < i)
2568 break;
2569 if (path->slots[0] == i) {
2570 int space = btrfs_leaf_free_space(root, right);
2571 if (space + push_space * 2 > free_space)
2572 break;
2573 }
2574 }
2575
Chris Masonbe0e5c02007-01-26 15:51:26 -05002576 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002577 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002578
2579 this_item_size = btrfs_item_size(right, item);
2580 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002581 break;
Chris Masondb945352007-10-15 16:15:53 -04002582
Chris Masonbe0e5c02007-01-26 15:51:26 -05002583 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002584 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002585 }
Chris Masondb945352007-10-15 16:15:53 -04002586
2587 if (right->map_token) {
2588 unmap_extent_buffer(right, right->map_token, KM_USER1);
2589 right->map_token = NULL;
2590 }
2591
Chris Masonbe0e5c02007-01-26 15:51:26 -05002592 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002593 ret = 1;
2594 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002595 }
Chris Mason34a38212007-11-07 13:31:03 -05002596 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002597 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002598
Chris Masonbe0e5c02007-01-26 15:51:26 -05002599 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002600 copy_extent_buffer(left, right,
2601 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2602 btrfs_item_nr_offset(0),
2603 push_items * sizeof(struct btrfs_item));
2604
Chris Mason123abc82007-03-14 14:14:43 -04002605 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002606 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002607
2608 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002609 leaf_data_end(root, left) - push_space,
2610 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002611 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002612 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002613 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002614 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002615
Chris Masondb945352007-10-15 16:15:53 -04002616 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002617 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002618 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002619
Chris Mason5f39d392007-10-15 16:14:19 -04002620 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002621 if (!left->map_token) {
2622 map_extent_buffer(left, (unsigned long)item,
2623 sizeof(struct btrfs_item),
2624 &left->map_token, &left->kaddr,
2625 &left->map_start, &left->map_len,
2626 KM_USER1);
2627 }
2628
Chris Mason5f39d392007-10-15 16:14:19 -04002629 ioff = btrfs_item_offset(left, item);
2630 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002631 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002632 }
Chris Mason5f39d392007-10-15 16:14:19 -04002633 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002634 if (left->map_token) {
2635 unmap_extent_buffer(left, left->map_token, KM_USER1);
2636 left->map_token = NULL;
2637 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002638
2639 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002640 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002641 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2642 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002643 WARN_ON(1);
2644 }
Chris Mason5f39d392007-10-15 16:14:19 -04002645
Chris Mason34a38212007-11-07 13:31:03 -05002646 if (push_items < right_nritems) {
2647 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2648 leaf_data_end(root, right);
2649 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2650 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2651 btrfs_leaf_data(right) +
2652 leaf_data_end(root, right), push_space);
2653
2654 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002655 btrfs_item_nr_offset(push_items),
2656 (btrfs_header_nritems(right) - push_items) *
2657 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002658 }
Yaneef1c492007-11-26 10:58:13 -05002659 right_nritems -= push_items;
2660 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002661 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002662 for (i = 0; i < right_nritems; i++) {
2663 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002664
2665 if (!right->map_token) {
2666 map_extent_buffer(right, (unsigned long)item,
2667 sizeof(struct btrfs_item),
2668 &right->map_token, &right->kaddr,
2669 &right->map_start, &right->map_len,
2670 KM_USER1);
2671 }
2672
2673 push_space = push_space - btrfs_item_size(right, item);
2674 btrfs_set_item_offset(right, item, push_space);
2675 }
2676 if (right->map_token) {
2677 unmap_extent_buffer(right, right->map_token, KM_USER1);
2678 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002679 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002680
Chris Mason5f39d392007-10-15 16:14:19 -04002681 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002682 if (right_nritems)
2683 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002684 else
2685 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04002686
Chris Mason5f39d392007-10-15 16:14:19 -04002687 btrfs_item_key(right, &disk_key, 0);
2688 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002689 if (wret)
2690 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002691
2692 /* then fixup the leaf pointer in the path */
2693 if (path->slots[0] < push_items) {
2694 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002695 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002696 free_extent_buffer(path->nodes[0]);
2697 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002698 path->slots[1] -= 1;
2699 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002700 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002701 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002702 path->slots[0] -= push_items;
2703 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002704 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002705 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002706out:
2707 btrfs_tree_unlock(left);
2708 free_extent_buffer(left);
2709 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002710}
2711
Chris Mason74123bd2007-02-02 11:05:29 -05002712/*
Chris Mason44871b12009-03-13 10:04:31 -04002713 * push some data in the path leaf to the left, trying to free up at
2714 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2715 */
2716static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
2717 *root, struct btrfs_path *path, int data_size,
2718 int empty)
2719{
2720 struct extent_buffer *right = path->nodes[0];
2721 struct extent_buffer *left;
2722 int slot;
2723 int free_space;
2724 u32 right_nritems;
2725 int ret = 0;
2726
2727 slot = path->slots[1];
2728 if (slot == 0)
2729 return 1;
2730 if (!path->nodes[1])
2731 return 1;
2732
2733 right_nritems = btrfs_header_nritems(right);
2734 if (right_nritems == 0)
2735 return 1;
2736
2737 btrfs_assert_tree_locked(path->nodes[1]);
2738
2739 left = read_node_slot(root, path->nodes[1], slot - 1);
2740 btrfs_tree_lock(left);
2741 btrfs_set_lock_blocking(left);
2742
2743 free_space = btrfs_leaf_free_space(root, left);
2744 if (free_space < data_size) {
2745 ret = 1;
2746 goto out;
2747 }
2748
2749 /* cow and double check */
2750 ret = btrfs_cow_block(trans, root, left,
2751 path->nodes[1], slot - 1, &left);
2752 if (ret) {
2753 /* we hit -ENOSPC, but it isn't fatal here */
2754 ret = 1;
2755 goto out;
2756 }
2757
2758 free_space = btrfs_leaf_free_space(root, left);
2759 if (free_space < data_size) {
2760 ret = 1;
2761 goto out;
2762 }
2763
2764 return __push_leaf_left(trans, root, path, data_size,
2765 empty, left, free_space, right_nritems);
2766out:
2767 btrfs_tree_unlock(left);
2768 free_extent_buffer(left);
2769 return ret;
2770}
2771
2772/*
Chris Mason74123bd2007-02-02 11:05:29 -05002773 * split the path's leaf in two, making sure there is at least data_size
2774 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002775 *
2776 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002777 */
Chris Mason44871b12009-03-13 10:04:31 -04002778static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002779 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002780 struct btrfs_path *path,
2781 struct extent_buffer *l,
2782 struct extent_buffer *right,
2783 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002784{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002785 int data_copy_size;
2786 int rt_data_off;
2787 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002788 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002789 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002790 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002791
Chris Mason5f39d392007-10-15 16:14:19 -04002792 nritems = nritems - mid;
2793 btrfs_set_header_nritems(right, nritems);
2794 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2795
2796 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2797 btrfs_item_nr_offset(mid),
2798 nritems * sizeof(struct btrfs_item));
2799
2800 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002801 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2802 data_copy_size, btrfs_leaf_data(l) +
2803 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002804
Chris Mason5f39d392007-10-15 16:14:19 -04002805 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2806 btrfs_item_end_nr(l, mid);
2807
2808 for (i = 0; i < nritems; i++) {
2809 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002810 u32 ioff;
2811
2812 if (!right->map_token) {
2813 map_extent_buffer(right, (unsigned long)item,
2814 sizeof(struct btrfs_item),
2815 &right->map_token, &right->kaddr,
2816 &right->map_start, &right->map_len,
2817 KM_USER1);
2818 }
2819
2820 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002821 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002822 }
Chris Mason74123bd2007-02-02 11:05:29 -05002823
Chris Masondb945352007-10-15 16:15:53 -04002824 if (right->map_token) {
2825 unmap_extent_buffer(right, right->map_token, KM_USER1);
2826 right->map_token = NULL;
2827 }
2828
Chris Mason5f39d392007-10-15 16:14:19 -04002829 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002830 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002831 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002832 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2833 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002834 if (wret)
2835 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002836
2837 btrfs_mark_buffer_dirty(right);
2838 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002839 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002840
Chris Masonbe0e5c02007-01-26 15:51:26 -05002841 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002842 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002843 free_extent_buffer(path->nodes[0]);
2844 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002845 path->slots[0] -= mid;
2846 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002847 } else {
2848 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002849 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002850 }
Chris Mason5f39d392007-10-15 16:14:19 -04002851
Chris Masoneb60cea2007-02-02 09:18:22 -05002852 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002853
Chris Mason44871b12009-03-13 10:04:31 -04002854 return ret;
2855}
2856
2857/*
2858 * split the path's leaf in two, making sure there is at least data_size
2859 * available for the resulting leaf level of the path.
2860 *
2861 * returns 0 if all went well and < 0 on failure.
2862 */
2863static noinline int split_leaf(struct btrfs_trans_handle *trans,
2864 struct btrfs_root *root,
2865 struct btrfs_key *ins_key,
2866 struct btrfs_path *path, int data_size,
2867 int extend)
2868{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002869 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04002870 struct extent_buffer *l;
2871 u32 nritems;
2872 int mid;
2873 int slot;
2874 struct extent_buffer *right;
2875 int ret = 0;
2876 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002877 int split;
Chris Mason44871b12009-03-13 10:04:31 -04002878 int num_doubles = 0;
2879
Yan, Zhenga5719522009-09-24 09:17:31 -04002880 l = path->nodes[0];
2881 slot = path->slots[0];
2882 if (extend && data_size + btrfs_item_size_nr(l, slot) +
2883 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
2884 return -EOVERFLOW;
2885
Chris Mason44871b12009-03-13 10:04:31 -04002886 /* first try to make some room by pushing left and right */
Chris Masonb3612422009-05-13 19:12:15 -04002887 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
Chris Mason44871b12009-03-13 10:04:31 -04002888 wret = push_leaf_right(trans, root, path, data_size, 0);
2889 if (wret < 0)
2890 return wret;
2891 if (wret) {
2892 wret = push_leaf_left(trans, root, path, data_size, 0);
2893 if (wret < 0)
2894 return wret;
2895 }
2896 l = path->nodes[0];
2897
2898 /* did the pushes work? */
2899 if (btrfs_leaf_free_space(root, l) >= data_size)
2900 return 0;
2901 }
2902
2903 if (!path->nodes[1]) {
2904 ret = insert_new_root(trans, root, path, 1);
2905 if (ret)
2906 return ret;
2907 }
2908again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002909 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04002910 l = path->nodes[0];
2911 slot = path->slots[0];
2912 nritems = btrfs_header_nritems(l);
2913 mid = (nritems + 1) / 2;
2914
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002915 if (mid <= slot) {
2916 if (nritems == 1 ||
2917 leaf_space_used(l, mid, nritems - mid) + data_size >
2918 BTRFS_LEAF_DATA_SIZE(root)) {
2919 if (slot >= nritems) {
2920 split = 0;
2921 } else {
2922 mid = slot;
2923 if (mid != nritems &&
2924 leaf_space_used(l, mid, nritems - mid) +
2925 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2926 split = 2;
2927 }
2928 }
2929 }
2930 } else {
2931 if (leaf_space_used(l, 0, mid) + data_size >
2932 BTRFS_LEAF_DATA_SIZE(root)) {
2933 if (!extend && data_size && slot == 0) {
2934 split = 0;
2935 } else if ((extend || !data_size) && slot == 0) {
2936 mid = 1;
2937 } else {
2938 mid = slot;
2939 if (mid != nritems &&
2940 leaf_space_used(l, mid, nritems - mid) +
2941 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2942 split = 2 ;
2943 }
2944 }
2945 }
2946 }
2947
2948 if (split == 0)
2949 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2950 else
2951 btrfs_item_key(l, &disk_key, mid);
2952
2953 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04002954 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002955 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002956 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04002957 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002958
2959 root_add_used(root, root->leafsize);
Chris Mason44871b12009-03-13 10:04:31 -04002960
2961 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2962 btrfs_set_header_bytenr(right, right->start);
2963 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002964 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04002965 btrfs_set_header_owner(right, root->root_key.objectid);
2966 btrfs_set_header_level(right, 0);
2967 write_extent_buffer(right, root->fs_info->fsid,
2968 (unsigned long)btrfs_header_fsid(right),
2969 BTRFS_FSID_SIZE);
2970
2971 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2972 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2973 BTRFS_UUID_SIZE);
2974
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002975 if (split == 0) {
2976 if (mid <= slot) {
2977 btrfs_set_header_nritems(right, 0);
2978 wret = insert_ptr(trans, root, path,
2979 &disk_key, right->start,
2980 path->slots[1] + 1, 1);
2981 if (wret)
2982 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002983
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002984 btrfs_tree_unlock(path->nodes[0]);
2985 free_extent_buffer(path->nodes[0]);
2986 path->nodes[0] = right;
2987 path->slots[0] = 0;
2988 path->slots[1] += 1;
2989 } else {
2990 btrfs_set_header_nritems(right, 0);
2991 wret = insert_ptr(trans, root, path,
2992 &disk_key,
2993 right->start,
2994 path->slots[1], 1);
2995 if (wret)
2996 ret = wret;
2997 btrfs_tree_unlock(path->nodes[0]);
2998 free_extent_buffer(path->nodes[0]);
2999 path->nodes[0] = right;
3000 path->slots[0] = 0;
3001 if (path->slots[1] == 0) {
3002 wret = fixup_low_keys(trans, root,
3003 path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04003004 if (wret)
3005 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04003006 }
3007 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003008 btrfs_mark_buffer_dirty(right);
3009 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04003010 }
3011
3012 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
3013 BUG_ON(ret);
3014
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003015 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04003016 BUG_ON(num_doubles != 0);
3017 num_doubles++;
3018 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04003019 }
Chris Mason44871b12009-03-13 10:04:31 -04003020
Chris Masonbe0e5c02007-01-26 15:51:26 -05003021 return ret;
3022}
3023
Yan, Zhengad48fd752009-11-12 09:33:58 +00003024static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
3025 struct btrfs_root *root,
3026 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05003027{
Yan, Zhengad48fd752009-11-12 09:33:58 +00003028 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05003029 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003030 struct btrfs_file_extent_item *fi;
3031 u64 extent_len = 0;
3032 u32 item_size;
3033 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05003034
3035 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00003036 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3037
3038 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
3039 key.type != BTRFS_EXTENT_CSUM_KEY);
3040
3041 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
3042 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05003043
3044 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003045 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3046 fi = btrfs_item_ptr(leaf, path->slots[0],
3047 struct btrfs_file_extent_item);
3048 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
3049 }
Chris Mason459931e2008-12-10 09:10:46 -05003050 btrfs_release_path(root, path);
3051
Chris Mason459931e2008-12-10 09:10:46 -05003052 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003053 path->search_for_split = 1;
3054 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05003055 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003056 if (ret < 0)
3057 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003058
Yan, Zhengad48fd752009-11-12 09:33:58 +00003059 ret = -EAGAIN;
3060 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05003061 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00003062 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
3063 goto err;
3064
Chris Mason109f6ae2010-04-02 09:20:18 -04003065 /* the leaf has changed, it now has room. return now */
3066 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
3067 goto err;
3068
Yan, Zhengad48fd752009-11-12 09:33:58 +00003069 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3070 fi = btrfs_item_ptr(leaf, path->slots[0],
3071 struct btrfs_file_extent_item);
3072 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
3073 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003074 }
3075
Chris Masonb9473432009-03-13 11:00:37 -04003076 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003077 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003078 if (ret)
3079 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003080
Yan, Zhengad48fd752009-11-12 09:33:58 +00003081 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04003082 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003083 return 0;
3084err:
3085 path->keep_locks = 0;
3086 return ret;
3087}
3088
3089static noinline int split_item(struct btrfs_trans_handle *trans,
3090 struct btrfs_root *root,
3091 struct btrfs_path *path,
3092 struct btrfs_key *new_key,
3093 unsigned long split_offset)
3094{
3095 struct extent_buffer *leaf;
3096 struct btrfs_item *item;
3097 struct btrfs_item *new_item;
3098 int slot;
3099 char *buf;
3100 u32 nritems;
3101 u32 item_size;
3102 u32 orig_offset;
3103 struct btrfs_disk_key disk_key;
3104
Chris Masonb9473432009-03-13 11:00:37 -04003105 leaf = path->nodes[0];
3106 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
3107
Chris Masonb4ce94d2009-02-04 09:25:08 -05003108 btrfs_set_path_blocking(path);
3109
Chris Mason459931e2008-12-10 09:10:46 -05003110 item = btrfs_item_nr(leaf, path->slots[0]);
3111 orig_offset = btrfs_item_offset(leaf, item);
3112 item_size = btrfs_item_size(leaf, item);
3113
Chris Mason459931e2008-12-10 09:10:46 -05003114 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003115 if (!buf)
3116 return -ENOMEM;
3117
Chris Mason459931e2008-12-10 09:10:46 -05003118 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3119 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003120
Chris Mason459931e2008-12-10 09:10:46 -05003121 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05003122 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05003123 if (slot != nritems) {
3124 /* shift the items */
3125 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00003126 btrfs_item_nr_offset(slot),
3127 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05003128 }
3129
3130 btrfs_cpu_key_to_disk(&disk_key, new_key);
3131 btrfs_set_item_key(leaf, &disk_key, slot);
3132
3133 new_item = btrfs_item_nr(leaf, slot);
3134
3135 btrfs_set_item_offset(leaf, new_item, orig_offset);
3136 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3137
3138 btrfs_set_item_offset(leaf, item,
3139 orig_offset + item_size - split_offset);
3140 btrfs_set_item_size(leaf, item, split_offset);
3141
3142 btrfs_set_header_nritems(leaf, nritems + 1);
3143
3144 /* write the data for the start of the original item */
3145 write_extent_buffer(leaf, buf,
3146 btrfs_item_ptr_offset(leaf, path->slots[0]),
3147 split_offset);
3148
3149 /* write the data for the new item */
3150 write_extent_buffer(leaf, buf + split_offset,
3151 btrfs_item_ptr_offset(leaf, slot),
3152 item_size - split_offset);
3153 btrfs_mark_buffer_dirty(leaf);
3154
Yan, Zhengad48fd752009-11-12 09:33:58 +00003155 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05003156 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003157 return 0;
3158}
3159
3160/*
3161 * This function splits a single item into two items,
3162 * giving 'new_key' to the new item and splitting the
3163 * old one at split_offset (from the start of the item).
3164 *
3165 * The path may be released by this operation. After
3166 * the split, the path is pointing to the old item. The
3167 * new item is going to be in the same node as the old one.
3168 *
3169 * Note, the item being split must be smaller enough to live alone on
3170 * a tree block with room for one extra struct btrfs_item
3171 *
3172 * This allows us to split the item in place, keeping a lock on the
3173 * leaf the entire time.
3174 */
3175int btrfs_split_item(struct btrfs_trans_handle *trans,
3176 struct btrfs_root *root,
3177 struct btrfs_path *path,
3178 struct btrfs_key *new_key,
3179 unsigned long split_offset)
3180{
3181 int ret;
3182 ret = setup_leaf_for_split(trans, root, path,
3183 sizeof(struct btrfs_item));
3184 if (ret)
3185 return ret;
3186
3187 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05003188 return ret;
3189}
3190
3191/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00003192 * This function duplicate a item, giving 'new_key' to the new item.
3193 * It guarantees both items live in the same tree leaf and the new item
3194 * is contiguous with the original item.
3195 *
3196 * This allows us to split file extent in place, keeping a lock on the
3197 * leaf the entire time.
3198 */
3199int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
3200 struct btrfs_root *root,
3201 struct btrfs_path *path,
3202 struct btrfs_key *new_key)
3203{
3204 struct extent_buffer *leaf;
3205 int ret;
3206 u32 item_size;
3207
3208 leaf = path->nodes[0];
3209 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3210 ret = setup_leaf_for_split(trans, root, path,
3211 item_size + sizeof(struct btrfs_item));
3212 if (ret)
3213 return ret;
3214
3215 path->slots[0]++;
3216 ret = setup_items_for_insert(trans, root, path, new_key, &item_size,
3217 item_size, item_size +
3218 sizeof(struct btrfs_item), 1);
3219 BUG_ON(ret);
3220
3221 leaf = path->nodes[0];
3222 memcpy_extent_buffer(leaf,
3223 btrfs_item_ptr_offset(leaf, path->slots[0]),
3224 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
3225 item_size);
3226 return 0;
3227}
3228
3229/*
Chris Masond352ac62008-09-29 15:18:18 -04003230 * make the item pointed to by the path smaller. new_size indicates
3231 * how small to make it, and from_end tells us if we just chop bytes
3232 * off the end of the item or if we shift the item to chop bytes off
3233 * the front.
3234 */
Chris Masonb18c6682007-04-17 13:26:50 -04003235int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3236 struct btrfs_root *root,
3237 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003238 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003239{
3240 int ret = 0;
3241 int slot;
3242 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003243 struct extent_buffer *leaf;
3244 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003245 u32 nritems;
3246 unsigned int data_end;
3247 unsigned int old_data_start;
3248 unsigned int old_size;
3249 unsigned int size_diff;
3250 int i;
3251
3252 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003253 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003254 slot = path->slots[0];
3255
3256 old_size = btrfs_item_size_nr(leaf, slot);
3257 if (old_size == new_size)
3258 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003259
Chris Mason5f39d392007-10-15 16:14:19 -04003260 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003261 data_end = leaf_data_end(root, leaf);
3262
Chris Mason5f39d392007-10-15 16:14:19 -04003263 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003264
Chris Masonb18c6682007-04-17 13:26:50 -04003265 size_diff = old_size - new_size;
3266
3267 BUG_ON(slot < 0);
3268 BUG_ON(slot >= nritems);
3269
3270 /*
3271 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3272 */
3273 /* first correct the data pointers */
3274 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003275 u32 ioff;
3276 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003277
3278 if (!leaf->map_token) {
3279 map_extent_buffer(leaf, (unsigned long)item,
3280 sizeof(struct btrfs_item),
3281 &leaf->map_token, &leaf->kaddr,
3282 &leaf->map_start, &leaf->map_len,
3283 KM_USER1);
3284 }
3285
Chris Mason5f39d392007-10-15 16:14:19 -04003286 ioff = btrfs_item_offset(leaf, item);
3287 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003288 }
Chris Masondb945352007-10-15 16:15:53 -04003289
3290 if (leaf->map_token) {
3291 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3292 leaf->map_token = NULL;
3293 }
3294
Chris Masonb18c6682007-04-17 13:26:50 -04003295 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003296 if (from_end) {
3297 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3298 data_end + size_diff, btrfs_leaf_data(leaf) +
3299 data_end, old_data_start + new_size - data_end);
3300 } else {
3301 struct btrfs_disk_key disk_key;
3302 u64 offset;
3303
3304 btrfs_item_key(leaf, &disk_key, slot);
3305
3306 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3307 unsigned long ptr;
3308 struct btrfs_file_extent_item *fi;
3309
3310 fi = btrfs_item_ptr(leaf, slot,
3311 struct btrfs_file_extent_item);
3312 fi = (struct btrfs_file_extent_item *)(
3313 (unsigned long)fi - size_diff);
3314
3315 if (btrfs_file_extent_type(leaf, fi) ==
3316 BTRFS_FILE_EXTENT_INLINE) {
3317 ptr = btrfs_item_ptr_offset(leaf, slot);
3318 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003319 (unsigned long)fi,
3320 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003321 disk_bytenr));
3322 }
3323 }
3324
3325 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3326 data_end + size_diff, btrfs_leaf_data(leaf) +
3327 data_end, old_data_start - data_end);
3328
3329 offset = btrfs_disk_key_offset(&disk_key);
3330 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3331 btrfs_set_item_key(leaf, &disk_key, slot);
3332 if (slot == 0)
3333 fixup_low_keys(trans, root, path, &disk_key, 1);
3334 }
Chris Mason5f39d392007-10-15 16:14:19 -04003335
3336 item = btrfs_item_nr(leaf, slot);
3337 btrfs_set_item_size(leaf, item, new_size);
3338 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003339
3340 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003341 if (btrfs_leaf_free_space(root, leaf) < 0) {
3342 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003343 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003344 }
Chris Masonb18c6682007-04-17 13:26:50 -04003345 return ret;
3346}
3347
Chris Masond352ac62008-09-29 15:18:18 -04003348/*
3349 * make the item pointed to by the path bigger, data_size is the new size.
3350 */
Chris Mason5f39d392007-10-15 16:14:19 -04003351int btrfs_extend_item(struct btrfs_trans_handle *trans,
3352 struct btrfs_root *root, struct btrfs_path *path,
3353 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003354{
3355 int ret = 0;
3356 int slot;
3357 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003358 struct extent_buffer *leaf;
3359 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003360 u32 nritems;
3361 unsigned int data_end;
3362 unsigned int old_data;
3363 unsigned int old_size;
3364 int i;
3365
3366 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003367 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003368
Chris Mason5f39d392007-10-15 16:14:19 -04003369 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003370 data_end = leaf_data_end(root, leaf);
3371
Chris Mason5f39d392007-10-15 16:14:19 -04003372 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3373 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003374 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003375 }
Chris Mason6567e832007-04-16 09:22:45 -04003376 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003377 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003378
3379 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003380 if (slot >= nritems) {
3381 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003382 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3383 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003384 BUG_ON(1);
3385 }
Chris Mason6567e832007-04-16 09:22:45 -04003386
3387 /*
3388 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3389 */
3390 /* first correct the data pointers */
3391 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003392 u32 ioff;
3393 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003394
3395 if (!leaf->map_token) {
3396 map_extent_buffer(leaf, (unsigned long)item,
3397 sizeof(struct btrfs_item),
3398 &leaf->map_token, &leaf->kaddr,
3399 &leaf->map_start, &leaf->map_len,
3400 KM_USER1);
3401 }
Chris Mason5f39d392007-10-15 16:14:19 -04003402 ioff = btrfs_item_offset(leaf, item);
3403 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003404 }
Chris Mason5f39d392007-10-15 16:14:19 -04003405
Chris Masondb945352007-10-15 16:15:53 -04003406 if (leaf->map_token) {
3407 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3408 leaf->map_token = NULL;
3409 }
3410
Chris Mason6567e832007-04-16 09:22:45 -04003411 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003412 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003413 data_end - data_size, btrfs_leaf_data(leaf) +
3414 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003415
Chris Mason6567e832007-04-16 09:22:45 -04003416 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003417 old_size = btrfs_item_size_nr(leaf, slot);
3418 item = btrfs_item_nr(leaf, slot);
3419 btrfs_set_item_size(leaf, item, old_size + data_size);
3420 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003421
3422 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003423 if (btrfs_leaf_free_space(root, leaf) < 0) {
3424 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003425 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003426 }
Chris Mason6567e832007-04-16 09:22:45 -04003427 return ret;
3428}
3429
Chris Mason74123bd2007-02-02 11:05:29 -05003430/*
Chris Masond352ac62008-09-29 15:18:18 -04003431 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003432 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003433 * Returns the number of keys that were inserted.
3434 */
3435int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3436 struct btrfs_root *root,
3437 struct btrfs_path *path,
3438 struct btrfs_key *cpu_key, u32 *data_size,
3439 int nr)
3440{
3441 struct extent_buffer *leaf;
3442 struct btrfs_item *item;
3443 int ret = 0;
3444 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003445 int i;
3446 u32 nritems;
3447 u32 total_data = 0;
3448 u32 total_size = 0;
3449 unsigned int data_end;
3450 struct btrfs_disk_key disk_key;
3451 struct btrfs_key found_key;
3452
Yan Zheng87b29b22008-12-17 10:21:48 -05003453 for (i = 0; i < nr; i++) {
3454 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3455 BTRFS_LEAF_DATA_SIZE(root)) {
3456 break;
3457 nr = i;
3458 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003459 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003460 total_size += data_size[i] + sizeof(struct btrfs_item);
3461 }
3462 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003463
Josef Bacikf3465ca2008-11-12 14:19:50 -05003464 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3465 if (ret == 0)
3466 return -EEXIST;
3467 if (ret < 0)
3468 goto out;
3469
Josef Bacikf3465ca2008-11-12 14:19:50 -05003470 leaf = path->nodes[0];
3471
3472 nritems = btrfs_header_nritems(leaf);
3473 data_end = leaf_data_end(root, leaf);
3474
3475 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3476 for (i = nr; i >= 0; i--) {
3477 total_data -= data_size[i];
3478 total_size -= data_size[i] + sizeof(struct btrfs_item);
3479 if (total_size < btrfs_leaf_free_space(root, leaf))
3480 break;
3481 }
3482 nr = i;
3483 }
3484
3485 slot = path->slots[0];
3486 BUG_ON(slot < 0);
3487
3488 if (slot != nritems) {
3489 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3490
3491 item = btrfs_item_nr(leaf, slot);
3492 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3493
3494 /* figure out how many keys we can insert in here */
3495 total_data = data_size[0];
3496 for (i = 1; i < nr; i++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003497 if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0)
Josef Bacikf3465ca2008-11-12 14:19:50 -05003498 break;
3499 total_data += data_size[i];
3500 }
3501 nr = i;
3502
3503 if (old_data < data_end) {
3504 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003505 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003506 slot, old_data, data_end);
3507 BUG_ON(1);
3508 }
3509 /*
3510 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3511 */
3512 /* first correct the data pointers */
3513 WARN_ON(leaf->map_token);
3514 for (i = slot; i < nritems; i++) {
3515 u32 ioff;
3516
3517 item = btrfs_item_nr(leaf, i);
3518 if (!leaf->map_token) {
3519 map_extent_buffer(leaf, (unsigned long)item,
3520 sizeof(struct btrfs_item),
3521 &leaf->map_token, &leaf->kaddr,
3522 &leaf->map_start, &leaf->map_len,
3523 KM_USER1);
3524 }
3525
3526 ioff = btrfs_item_offset(leaf, item);
3527 btrfs_set_item_offset(leaf, item, ioff - total_data);
3528 }
3529 if (leaf->map_token) {
3530 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3531 leaf->map_token = NULL;
3532 }
3533
3534 /* shift the items */
3535 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3536 btrfs_item_nr_offset(slot),
3537 (nritems - slot) * sizeof(struct btrfs_item));
3538
3539 /* shift the data */
3540 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3541 data_end - total_data, btrfs_leaf_data(leaf) +
3542 data_end, old_data - data_end);
3543 data_end = old_data;
3544 } else {
3545 /*
3546 * this sucks but it has to be done, if we are inserting at
3547 * the end of the leaf only insert 1 of the items, since we
3548 * have no way of knowing whats on the next leaf and we'd have
3549 * to drop our current locks to figure it out
3550 */
3551 nr = 1;
3552 }
3553
3554 /* setup the item for the new data */
3555 for (i = 0; i < nr; i++) {
3556 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3557 btrfs_set_item_key(leaf, &disk_key, slot + i);
3558 item = btrfs_item_nr(leaf, slot + i);
3559 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3560 data_end -= data_size[i];
3561 btrfs_set_item_size(leaf, item, data_size[i]);
3562 }
3563 btrfs_set_header_nritems(leaf, nritems + nr);
3564 btrfs_mark_buffer_dirty(leaf);
3565
3566 ret = 0;
3567 if (slot == 0) {
3568 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3569 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3570 }
3571
3572 if (btrfs_leaf_free_space(root, leaf) < 0) {
3573 btrfs_print_leaf(root, leaf);
3574 BUG();
3575 }
3576out:
3577 if (!ret)
3578 ret = nr;
3579 return ret;
3580}
3581
3582/*
Chris Mason44871b12009-03-13 10:04:31 -04003583 * this is a helper for btrfs_insert_empty_items, the main goal here is
3584 * to save stack depth by doing the bulk of the work in a function
3585 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003586 */
Chris Mason44871b12009-03-13 10:04:31 -04003587static noinline_for_stack int
3588setup_items_for_insert(struct btrfs_trans_handle *trans,
3589 struct btrfs_root *root, struct btrfs_path *path,
3590 struct btrfs_key *cpu_key, u32 *data_size,
3591 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003592{
Chris Mason5f39d392007-10-15 16:14:19 -04003593 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003594 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003595 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003596 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003597 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003598 int ret;
3599 struct extent_buffer *leaf;
3600 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003601
Chris Mason5f39d392007-10-15 16:14:19 -04003602 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003603 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003604
Chris Mason5f39d392007-10-15 16:14:19 -04003605 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003606 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003607
Chris Masonf25956c2008-09-12 15:32:53 -04003608 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003609 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003610 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003611 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003612 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003613 }
Chris Mason5f39d392007-10-15 16:14:19 -04003614
Chris Masonbe0e5c02007-01-26 15:51:26 -05003615 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003616 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003617
Chris Mason5f39d392007-10-15 16:14:19 -04003618 if (old_data < data_end) {
3619 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003620 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003621 slot, old_data, data_end);
3622 BUG_ON(1);
3623 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003624 /*
3625 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3626 */
3627 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003628 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003629 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003630 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003631
Chris Mason5f39d392007-10-15 16:14:19 -04003632 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003633 if (!leaf->map_token) {
3634 map_extent_buffer(leaf, (unsigned long)item,
3635 sizeof(struct btrfs_item),
3636 &leaf->map_token, &leaf->kaddr,
3637 &leaf->map_start, &leaf->map_len,
3638 KM_USER1);
3639 }
3640
Chris Mason5f39d392007-10-15 16:14:19 -04003641 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003642 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003643 }
Chris Masondb945352007-10-15 16:15:53 -04003644 if (leaf->map_token) {
3645 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3646 leaf->map_token = NULL;
3647 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003648
3649 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003650 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003651 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003652 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003653
3654 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003655 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003656 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003657 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003658 data_end = old_data;
3659 }
Chris Mason5f39d392007-10-15 16:14:19 -04003660
Chris Mason62e27492007-03-15 12:56:47 -04003661 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003662 for (i = 0; i < nr; i++) {
3663 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3664 btrfs_set_item_key(leaf, &disk_key, slot + i);
3665 item = btrfs_item_nr(leaf, slot + i);
3666 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3667 data_end -= data_size[i];
3668 btrfs_set_item_size(leaf, item, data_size[i]);
3669 }
Chris Mason44871b12009-03-13 10:04:31 -04003670
Chris Mason9c583092008-01-29 15:15:18 -05003671 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003672
3673 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003674 if (slot == 0) {
Chris Mason44871b12009-03-13 10:04:31 -04003675 struct btrfs_disk_key disk_key;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003676 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003677 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003678 }
Chris Masonb9473432009-03-13 11:00:37 -04003679 btrfs_unlock_up_safe(path, 1);
3680 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003681
Chris Mason5f39d392007-10-15 16:14:19 -04003682 if (btrfs_leaf_free_space(root, leaf) < 0) {
3683 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003684 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003685 }
Chris Mason44871b12009-03-13 10:04:31 -04003686 return ret;
3687}
3688
3689/*
3690 * Given a key and some data, insert items into the tree.
3691 * This does all the path init required, making room in the tree if needed.
3692 */
3693int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3694 struct btrfs_root *root,
3695 struct btrfs_path *path,
3696 struct btrfs_key *cpu_key, u32 *data_size,
3697 int nr)
3698{
3699 struct extent_buffer *leaf;
3700 int ret = 0;
3701 int slot;
3702 int i;
3703 u32 total_size = 0;
3704 u32 total_data = 0;
3705
3706 for (i = 0; i < nr; i++)
3707 total_data += data_size[i];
3708
3709 total_size = total_data + (nr * sizeof(struct btrfs_item));
3710 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3711 if (ret == 0)
3712 return -EEXIST;
3713 if (ret < 0)
3714 goto out;
3715
3716 leaf = path->nodes[0];
3717 slot = path->slots[0];
3718 BUG_ON(slot < 0);
3719
3720 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3721 total_data, total_size, nr);
3722
Chris Masoned2ff2c2007-03-01 18:59:40 -05003723out:
Chris Mason62e27492007-03-15 12:56:47 -04003724 return ret;
3725}
3726
3727/*
3728 * Given a key and some data, insert an item into the tree.
3729 * This does all the path init required, making room in the tree if needed.
3730 */
Chris Masone089f052007-03-16 16:20:31 -04003731int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3732 *root, struct btrfs_key *cpu_key, void *data, u32
3733 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003734{
3735 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003736 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003737 struct extent_buffer *leaf;
3738 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003739
Chris Mason2c90e5d2007-04-02 10:50:19 -04003740 path = btrfs_alloc_path();
3741 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003742 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003743 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003744 leaf = path->nodes[0];
3745 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3746 write_extent_buffer(leaf, data, ptr, data_size);
3747 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003748 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003749 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003750 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003751}
3752
Chris Mason74123bd2007-02-02 11:05:29 -05003753/*
Chris Mason5de08d72007-02-24 06:24:44 -05003754 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003755 *
Chris Masond352ac62008-09-29 15:18:18 -04003756 * the tree should have been previously balanced so the deletion does not
3757 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003758 */
Chris Masone089f052007-03-16 16:20:31 -04003759static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3760 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003761{
Chris Mason5f39d392007-10-15 16:14:19 -04003762 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003763 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003764 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003765 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003766
Chris Mason5f39d392007-10-15 16:14:19 -04003767 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003768 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003769 memmove_extent_buffer(parent,
3770 btrfs_node_key_ptr_offset(slot),
3771 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003772 sizeof(struct btrfs_key_ptr) *
3773 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003774 }
Chris Mason7518a232007-03-12 12:01:18 -04003775 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003776 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003777 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003778 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003779 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003780 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003781 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003782 struct btrfs_disk_key disk_key;
3783
3784 btrfs_node_key(parent, &disk_key, 0);
3785 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003786 if (wret)
3787 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003788 }
Chris Masond6025572007-03-30 14:27:56 -04003789 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003790 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003791}
3792
Chris Mason74123bd2007-02-02 11:05:29 -05003793/*
Chris Mason323ac952008-10-01 19:05:46 -04003794 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003795 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04003796 *
3797 * This deletes the pointer in path->nodes[1] and frees the leaf
3798 * block extent. zero is returned if it all worked out, < 0 otherwise.
3799 *
3800 * The path must have already been setup for deleting the leaf, including
3801 * all the proper balancing. path->nodes[1] must be locked.
3802 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003803static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3804 struct btrfs_root *root,
3805 struct btrfs_path *path,
3806 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04003807{
3808 int ret;
Chris Mason323ac952008-10-01 19:05:46 -04003809
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003810 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Chris Mason323ac952008-10-01 19:05:46 -04003811 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3812 if (ret)
3813 return ret;
3814
Chris Mason4d081c42009-02-04 09:31:28 -05003815 /*
3816 * btrfs_free_extent is expensive, we want to make sure we
3817 * aren't holding any locks when we call it
3818 */
3819 btrfs_unlock_up_safe(path, 0);
3820
Yan, Zhengf0486c62010-05-16 10:46:25 -04003821 root_sub_used(root, leaf->len);
3822
3823 btrfs_free_tree_block(trans, root, leaf, 0, 1);
3824 return 0;
Chris Mason323ac952008-10-01 19:05:46 -04003825}
3826/*
Chris Mason74123bd2007-02-02 11:05:29 -05003827 * delete the item at the leaf level in path. If that empties
3828 * the leaf, remove it from the tree
3829 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003830int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3831 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003832{
Chris Mason5f39d392007-10-15 16:14:19 -04003833 struct extent_buffer *leaf;
3834 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003835 int last_off;
3836 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003837 int ret = 0;
3838 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003839 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003840 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003841
Chris Mason5f39d392007-10-15 16:14:19 -04003842 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003843 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3844
3845 for (i = 0; i < nr; i++)
3846 dsize += btrfs_item_size_nr(leaf, slot + i);
3847
Chris Mason5f39d392007-10-15 16:14:19 -04003848 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003849
Chris Mason85e21ba2008-01-29 15:11:36 -05003850 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003851 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003852
3853 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003854 data_end + dsize,
3855 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003856 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003857
Chris Mason85e21ba2008-01-29 15:11:36 -05003858 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003859 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003860
Chris Mason5f39d392007-10-15 16:14:19 -04003861 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003862 if (!leaf->map_token) {
3863 map_extent_buffer(leaf, (unsigned long)item,
3864 sizeof(struct btrfs_item),
3865 &leaf->map_token, &leaf->kaddr,
3866 &leaf->map_start, &leaf->map_len,
3867 KM_USER1);
3868 }
Chris Mason5f39d392007-10-15 16:14:19 -04003869 ioff = btrfs_item_offset(leaf, item);
3870 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003871 }
Chris Masondb945352007-10-15 16:15:53 -04003872
3873 if (leaf->map_token) {
3874 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3875 leaf->map_token = NULL;
3876 }
3877
Chris Mason5f39d392007-10-15 16:14:19 -04003878 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003879 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003880 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003881 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003882 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003883 btrfs_set_header_nritems(leaf, nritems - nr);
3884 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003885
Chris Mason74123bd2007-02-02 11:05:29 -05003886 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003887 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003888 if (leaf == root->node) {
3889 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003890 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003891 btrfs_set_path_blocking(path);
3892 clean_tree_block(trans, root, leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003893 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003894 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003895 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003896 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003897 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003898 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003899 struct btrfs_disk_key disk_key;
3900
3901 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003902 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003903 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003904 if (wret)
3905 ret = wret;
3906 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003907
Chris Mason74123bd2007-02-02 11:05:29 -05003908 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04003909 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003910 /* push_leaf_left fixes the path.
3911 * make sure the path still points to our leaf
3912 * for possible call to del_ptr below
3913 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003914 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003915 extent_buffer_get(leaf);
3916
Chris Masonb9473432009-03-13 11:00:37 -04003917 btrfs_set_path_blocking(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003918 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003919 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003920 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003921
3922 if (path->nodes[0] == leaf &&
3923 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003924 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003925 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003926 ret = wret;
3927 }
Chris Mason5f39d392007-10-15 16:14:19 -04003928
3929 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003930 path->slots[1] = slot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003931 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003932 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003933 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003934 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003935 /* if we're still in the path, make sure
3936 * we're dirty. Otherwise, one of the
3937 * push_leaf functions must have already
3938 * dirtied this buffer
3939 */
3940 if (path->nodes[0] == leaf)
3941 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003942 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003943 }
Chris Masond5719762007-03-23 10:01:08 -04003944 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003945 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003946 }
3947 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003948 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003949}
3950
Chris Mason97571fd2007-02-24 13:39:08 -05003951/*
Chris Mason925baed2008-06-25 16:01:30 -04003952 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003953 * returns 0 if it found something or 1 if there are no lesser leaves.
3954 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003955 *
3956 * This may release the path, and so you may lose any locks held at the
3957 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003958 */
3959int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3960{
Chris Mason925baed2008-06-25 16:01:30 -04003961 struct btrfs_key key;
3962 struct btrfs_disk_key found_key;
3963 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003964
Chris Mason925baed2008-06-25 16:01:30 -04003965 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003966
Chris Mason925baed2008-06-25 16:01:30 -04003967 if (key.offset > 0)
3968 key.offset--;
3969 else if (key.type > 0)
3970 key.type--;
3971 else if (key.objectid > 0)
3972 key.objectid--;
3973 else
3974 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003975
Chris Mason925baed2008-06-25 16:01:30 -04003976 btrfs_release_path(root, path);
3977 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3978 if (ret < 0)
3979 return ret;
3980 btrfs_item_key(path->nodes[0], &found_key, 0);
3981 ret = comp_keys(&found_key, &key);
3982 if (ret < 0)
3983 return 0;
3984 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003985}
3986
Chris Mason3f157a22008-06-25 16:01:31 -04003987/*
3988 * A helper function to walk down the tree starting at min_key, and looking
3989 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003990 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003991 *
3992 * This does not cow, but it does stuff the starting key it finds back
3993 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3994 * key and get a writable path.
3995 *
3996 * This does lock as it descends, and path->keep_locks should be set
3997 * to 1 by the caller.
3998 *
3999 * This honors path->lowest_level to prevent descent past a given level
4000 * of the tree.
4001 *
Chris Masond352ac62008-09-29 15:18:18 -04004002 * min_trans indicates the oldest transaction that you are interested
4003 * in walking through. Any nodes or leaves older than min_trans are
4004 * skipped over (without reading them).
4005 *
Chris Mason3f157a22008-06-25 16:01:31 -04004006 * returns zero if something useful was found, < 0 on error and 1 if there
4007 * was nothing in the tree that matched the search criteria.
4008 */
4009int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04004010 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04004011 struct btrfs_path *path, int cache_only,
4012 u64 min_trans)
4013{
4014 struct extent_buffer *cur;
4015 struct btrfs_key found_key;
4016 int slot;
Yan96524802008-07-24 12:19:49 -04004017 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04004018 u32 nritems;
4019 int level;
4020 int ret = 1;
4021
Chris Mason934d3752008-12-08 16:43:10 -05004022 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04004023again:
4024 cur = btrfs_lock_root_node(root);
4025 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04004026 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04004027 path->nodes[level] = cur;
4028 path->locks[level] = 1;
4029
4030 if (btrfs_header_generation(cur) < min_trans) {
4031 ret = 1;
4032 goto out;
4033 }
Chris Masond3977122009-01-05 21:25:51 -05004034 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04004035 nritems = btrfs_header_nritems(cur);
4036 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04004037 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004038
Chris Mason323ac952008-10-01 19:05:46 -04004039 /* at the lowest level, we're done, setup the path and exit */
4040 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04004041 if (slot >= nritems)
4042 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04004043 ret = 0;
4044 path->slots[level] = slot;
4045 btrfs_item_key_to_cpu(cur, &found_key, slot);
4046 goto out;
4047 }
Yan96524802008-07-24 12:19:49 -04004048 if (sret && slot > 0)
4049 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04004050 /*
4051 * check this node pointer against the cache_only and
4052 * min_trans parameters. If it isn't in cache or is too
4053 * old, skip to the next one.
4054 */
Chris Masond3977122009-01-05 21:25:51 -05004055 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04004056 u64 blockptr;
4057 u64 gen;
4058 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04004059 struct btrfs_disk_key disk_key;
4060
Chris Mason3f157a22008-06-25 16:01:31 -04004061 blockptr = btrfs_node_blockptr(cur, slot);
4062 gen = btrfs_node_ptr_generation(cur, slot);
4063 if (gen < min_trans) {
4064 slot++;
4065 continue;
4066 }
4067 if (!cache_only)
4068 break;
4069
Chris Masone02119d2008-09-05 16:13:11 -04004070 if (max_key) {
4071 btrfs_node_key(cur, &disk_key, slot);
4072 if (comp_keys(&disk_key, max_key) >= 0) {
4073 ret = 1;
4074 goto out;
4075 }
4076 }
4077
Chris Mason3f157a22008-06-25 16:01:31 -04004078 tmp = btrfs_find_tree_block(root, blockptr,
4079 btrfs_level_size(root, level - 1));
4080
4081 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
4082 free_extent_buffer(tmp);
4083 break;
4084 }
4085 if (tmp)
4086 free_extent_buffer(tmp);
4087 slot++;
4088 }
Chris Masone02119d2008-09-05 16:13:11 -04004089find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04004090 /*
4091 * we didn't find a candidate key in this node, walk forward
4092 * and find another one
4093 */
4094 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04004095 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004096 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04004097 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04004098 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004099 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04004100 btrfs_release_path(root, path);
4101 goto again;
4102 } else {
4103 goto out;
4104 }
4105 }
4106 /* save our key for returning back */
4107 btrfs_node_key_to_cpu(cur, &found_key, slot);
4108 path->slots[level] = slot;
4109 if (level == path->lowest_level) {
4110 ret = 0;
4111 unlock_up(path, level, 1);
4112 goto out;
4113 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004114 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004115 cur = read_node_slot(root, cur, slot);
4116
4117 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004118
Chris Mason3f157a22008-06-25 16:01:31 -04004119 path->locks[level - 1] = 1;
4120 path->nodes[level - 1] = cur;
4121 unlock_up(path, level, 1);
Chris Mason4008c042009-02-12 14:09:45 -05004122 btrfs_clear_path_blocking(path, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004123 }
4124out:
4125 if (ret == 0)
4126 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004127 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004128 return ret;
4129}
4130
4131/*
4132 * this is similar to btrfs_next_leaf, but does not try to preserve
4133 * and fixup the path. It looks for and returns the next key in the
4134 * tree based on the current path and the cache_only and min_trans
4135 * parameters.
4136 *
4137 * 0 is returned if another key is found, < 0 if there are any errors
4138 * and 1 is returned if there are no higher keys in the tree
4139 *
4140 * path->keep_locks should be set to 1 on the search made before
4141 * calling this function.
4142 */
Chris Masone7a84562008-06-25 16:01:31 -04004143int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Yan Zheng33c66f42009-07-22 09:59:00 -04004144 struct btrfs_key *key, int level,
Chris Mason3f157a22008-06-25 16:01:31 -04004145 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004146{
Chris Masone7a84562008-06-25 16:01:31 -04004147 int slot;
4148 struct extent_buffer *c;
4149
Chris Mason934d3752008-12-08 16:43:10 -05004150 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004151 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004152 if (!path->nodes[level])
4153 return 1;
4154
4155 slot = path->slots[level] + 1;
4156 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004157next:
Chris Masone7a84562008-06-25 16:01:31 -04004158 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04004159 int ret;
4160 int orig_lowest;
4161 struct btrfs_key cur_key;
4162 if (level + 1 >= BTRFS_MAX_LEVEL ||
4163 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04004164 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04004165
4166 if (path->locks[level + 1]) {
4167 level++;
4168 continue;
4169 }
4170
4171 slot = btrfs_header_nritems(c) - 1;
4172 if (level == 0)
4173 btrfs_item_key_to_cpu(c, &cur_key, slot);
4174 else
4175 btrfs_node_key_to_cpu(c, &cur_key, slot);
4176
4177 orig_lowest = path->lowest_level;
4178 btrfs_release_path(root, path);
4179 path->lowest_level = level;
4180 ret = btrfs_search_slot(NULL, root, &cur_key, path,
4181 0, 0);
4182 path->lowest_level = orig_lowest;
4183 if (ret < 0)
4184 return ret;
4185
4186 c = path->nodes[level];
4187 slot = path->slots[level];
4188 if (ret == 0)
4189 slot++;
4190 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04004191 }
Yan Zheng33c66f42009-07-22 09:59:00 -04004192
Chris Masone7a84562008-06-25 16:01:31 -04004193 if (level == 0)
4194 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004195 else {
4196 u64 blockptr = btrfs_node_blockptr(c, slot);
4197 u64 gen = btrfs_node_ptr_generation(c, slot);
4198
4199 if (cache_only) {
4200 struct extent_buffer *cur;
4201 cur = btrfs_find_tree_block(root, blockptr,
4202 btrfs_level_size(root, level - 1));
4203 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4204 slot++;
4205 if (cur)
4206 free_extent_buffer(cur);
4207 goto next;
4208 }
4209 free_extent_buffer(cur);
4210 }
4211 if (gen < min_trans) {
4212 slot++;
4213 goto next;
4214 }
Chris Masone7a84562008-06-25 16:01:31 -04004215 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004216 }
Chris Masone7a84562008-06-25 16:01:31 -04004217 return 0;
4218 }
4219 return 1;
4220}
4221
Chris Mason7bb86312007-12-11 09:25:06 -05004222/*
Chris Mason925baed2008-06-25 16:01:30 -04004223 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004224 * returns 0 if it found something or 1 if there are no greater leaves.
4225 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004226 */
Chris Mason234b63a2007-03-13 10:46:10 -04004227int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004228{
4229 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04004230 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04004231 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04004232 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04004233 struct btrfs_key key;
4234 u32 nritems;
4235 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04004236 int old_spinning = path->leave_spinning;
4237 int force_blocking = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004238
4239 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004240 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004241 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004242
Chris Mason8e73f272009-04-03 10:14:18 -04004243 /*
4244 * we take the blocks in an order that upsets lockdep. Using
4245 * blocking mode is the only way around it.
4246 */
4247#ifdef CONFIG_DEBUG_LOCK_ALLOC
4248 force_blocking = 1;
4249#endif
Chris Mason925baed2008-06-25 16:01:30 -04004250
Chris Mason8e73f272009-04-03 10:14:18 -04004251 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4252again:
4253 level = 1;
4254 next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004255 btrfs_release_path(root, path);
Chris Mason8e73f272009-04-03 10:14:18 -04004256
Chris Masona2135012008-06-25 16:01:30 -04004257 path->keep_locks = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004258
4259 if (!force_blocking)
4260 path->leave_spinning = 1;
4261
Chris Mason925baed2008-06-25 16:01:30 -04004262 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4263 path->keep_locks = 0;
4264
4265 if (ret < 0)
4266 return ret;
4267
Chris Masona2135012008-06-25 16:01:30 -04004268 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004269 /*
4270 * by releasing the path above we dropped all our locks. A balance
4271 * could have added more items next to the key that used to be
4272 * at the very end of the block. So, check again here and
4273 * advance the path if there are now more items available.
4274 */
Chris Masona2135012008-06-25 16:01:30 -04004275 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04004276 if (ret == 0)
4277 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04004278 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004279 goto done;
4280 }
Chris Masond97e63b2007-02-20 16:40:44 -05004281
Chris Masond3977122009-01-05 21:25:51 -05004282 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04004283 if (!path->nodes[level]) {
4284 ret = 1;
4285 goto done;
4286 }
Chris Mason5f39d392007-10-15 16:14:19 -04004287
Chris Masond97e63b2007-02-20 16:40:44 -05004288 slot = path->slots[level] + 1;
4289 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004290 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004291 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04004292 if (level == BTRFS_MAX_LEVEL) {
4293 ret = 1;
4294 goto done;
4295 }
Chris Masond97e63b2007-02-20 16:40:44 -05004296 continue;
4297 }
Chris Mason5f39d392007-10-15 16:14:19 -04004298
Chris Mason925baed2008-06-25 16:01:30 -04004299 if (next) {
4300 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004301 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004302 }
Chris Mason5f39d392007-10-15 16:14:19 -04004303
Chris Mason8e73f272009-04-03 10:14:18 -04004304 next = c;
4305 ret = read_block_for_search(NULL, root, path, &next, level,
4306 slot, &key);
4307 if (ret == -EAGAIN)
4308 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04004309
Chris Mason76a05b32009-05-14 13:24:30 -04004310 if (ret < 0) {
4311 btrfs_release_path(root, path);
4312 goto done;
4313 }
4314
Chris Mason5cd57b22008-06-25 16:01:30 -04004315 if (!path->skip_locking) {
Chris Mason8e73f272009-04-03 10:14:18 -04004316 ret = btrfs_try_spin_lock(next);
4317 if (!ret) {
4318 btrfs_set_path_blocking(path);
4319 btrfs_tree_lock(next);
4320 if (!force_blocking)
4321 btrfs_clear_path_blocking(path, next);
4322 }
4323 if (force_blocking)
4324 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004325 }
Chris Masond97e63b2007-02-20 16:40:44 -05004326 break;
4327 }
4328 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004329 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004330 level--;
4331 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004332 if (path->locks[level])
4333 btrfs_tree_unlock(c);
Chris Mason8e73f272009-04-03 10:14:18 -04004334
Chris Mason5f39d392007-10-15 16:14:19 -04004335 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004336 path->nodes[level] = next;
4337 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004338 if (!path->skip_locking)
4339 path->locks[level] = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004340
Chris Masond97e63b2007-02-20 16:40:44 -05004341 if (!level)
4342 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004343
Chris Mason8e73f272009-04-03 10:14:18 -04004344 ret = read_block_for_search(NULL, root, path, &next, level,
4345 0, &key);
4346 if (ret == -EAGAIN)
4347 goto again;
4348
Chris Mason76a05b32009-05-14 13:24:30 -04004349 if (ret < 0) {
4350 btrfs_release_path(root, path);
4351 goto done;
4352 }
4353
Chris Mason5cd57b22008-06-25 16:01:30 -04004354 if (!path->skip_locking) {
Chris Masonb9447ef2009-03-09 11:45:38 -04004355 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04004356 ret = btrfs_try_spin_lock(next);
4357 if (!ret) {
4358 btrfs_set_path_blocking(path);
4359 btrfs_tree_lock(next);
4360 if (!force_blocking)
4361 btrfs_clear_path_blocking(path, next);
4362 }
4363 if (force_blocking)
4364 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004365 }
Chris Masond97e63b2007-02-20 16:40:44 -05004366 }
Chris Mason8e73f272009-04-03 10:14:18 -04004367 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004368done:
4369 unlock_up(path, 0, 1);
Chris Mason8e73f272009-04-03 10:14:18 -04004370 path->leave_spinning = old_spinning;
4371 if (!old_spinning)
4372 btrfs_set_path_blocking(path);
4373
4374 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05004375}
Chris Mason0b86a832008-03-24 15:01:56 -04004376
Chris Mason3f157a22008-06-25 16:01:31 -04004377/*
4378 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4379 * searching until it gets past min_objectid or finds an item of 'type'
4380 *
4381 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4382 */
Chris Mason0b86a832008-03-24 15:01:56 -04004383int btrfs_previous_item(struct btrfs_root *root,
4384 struct btrfs_path *path, u64 min_objectid,
4385 int type)
4386{
4387 struct btrfs_key found_key;
4388 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004389 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004390 int ret;
4391
Chris Masond3977122009-01-05 21:25:51 -05004392 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004393 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004394 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004395 ret = btrfs_prev_leaf(root, path);
4396 if (ret != 0)
4397 return ret;
4398 } else {
4399 path->slots[0]--;
4400 }
4401 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004402 nritems = btrfs_header_nritems(leaf);
4403 if (nritems == 0)
4404 return 1;
4405 if (path->slots[0] == nritems)
4406 path->slots[0]--;
4407
Chris Mason0b86a832008-03-24 15:01:56 -04004408 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04004409 if (found_key.objectid < min_objectid)
4410 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04004411 if (found_key.type == type)
4412 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004413 if (found_key.objectid == min_objectid &&
4414 found_key.type < type)
4415 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004416 }
4417 return 1;
4418}