blob: 91572091c0a48e4afdb38e65662a2a68f77f910c [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>
Chris Masoneb60cea2007-02-02 09:18:22 -050020#include "ctree.h"
21#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040022#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040023#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040024#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050025
Chris Masone089f052007-03-16 16:20:31 -040026static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
27 *root, struct btrfs_path *path, int level);
28static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040029 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040030 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040031static int push_node_left(struct btrfs_trans_handle *trans,
32 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040033 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040034static int balance_node_right(struct btrfs_trans_handle *trans,
35 struct btrfs_root *root,
36 struct extent_buffer *dst_buf,
37 struct extent_buffer *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040038static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
39 struct btrfs_path *path, int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050040
Chris Mason2c90e5d2007-04-02 10:50:19 -040041struct btrfs_path *btrfs_alloc_path(void)
42{
Chris Masondf24a2b2007-04-04 09:36:31 -040043 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050044 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
45 if (path)
Chris Mason2cc58cf2007-08-27 16:49:44 -040046 path->reada = 1;
Chris Masondf24a2b2007-04-04 09:36:31 -040047 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040048}
49
Chris Masonb4ce94d2009-02-04 09:25:08 -050050/*
51 * set all locked nodes in the path to blocking locks. This should
52 * be done before scheduling
53 */
54noinline void btrfs_set_path_blocking(struct btrfs_path *p)
55{
56 int i;
57 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
58 if (p->nodes[i] && p->locks[i])
59 btrfs_set_lock_blocking(p->nodes[i]);
60 }
61}
62
63/*
64 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050065 *
66 * held is used to keep lockdep happy, when lockdep is enabled
67 * we set held to a blocking lock before we go around and
68 * retake all the spinlocks in the path. You can safely use NULL
69 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050070 */
Chris Mason4008c042009-02-12 14:09:45 -050071noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
72 struct extent_buffer *held)
Chris Masonb4ce94d2009-02-04 09:25:08 -050073{
74 int i;
Chris Mason4008c042009-02-12 14:09:45 -050075
76#ifdef CONFIG_DEBUG_LOCK_ALLOC
77 /* lockdep really cares that we take all of these spinlocks
78 * in the right order. If any of the locks in the path are not
79 * currently blocking, it is going to complain. So, make really
80 * really sure by forcing the path to blocking before we clear
81 * the path blocking.
82 */
83 if (held)
84 btrfs_set_lock_blocking(held);
85 btrfs_set_path_blocking(p);
86#endif
87
88 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonb4ce94d2009-02-04 09:25:08 -050089 if (p->nodes[i] && p->locks[i])
90 btrfs_clear_lock_blocking(p->nodes[i]);
91 }
Chris Mason4008c042009-02-12 14:09:45 -050092
93#ifdef CONFIG_DEBUG_LOCK_ALLOC
94 if (held)
95 btrfs_clear_lock_blocking(held);
96#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -050097}
98
Chris Masond352ac62008-09-29 15:18:18 -040099/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400100void btrfs_free_path(struct btrfs_path *p)
101{
Chris Masondf24a2b2007-04-04 09:36:31 -0400102 btrfs_release_path(NULL, p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400103 kmem_cache_free(btrfs_path_cachep, p);
104}
105
Chris Masond352ac62008-09-29 15:18:18 -0400106/*
107 * path release drops references on the extent buffers in the path
108 * and it drops any locks held by this path
109 *
110 * It is safe to call this on paths that no locks or extent buffers held.
111 */
Chris Masond3977122009-01-05 21:25:51 -0500112noinline void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500113{
114 int i;
Chris Masona2135012008-06-25 16:01:30 -0400115
Chris Mason234b63a2007-03-13 10:46:10 -0400116 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400117 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500118 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400119 continue;
120 if (p->locks[i]) {
121 btrfs_tree_unlock(p->nodes[i]);
122 p->locks[i] = 0;
123 }
Chris Mason5f39d392007-10-15 16:14:19 -0400124 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400125 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500126 }
127}
128
Chris Masond352ac62008-09-29 15:18:18 -0400129/*
130 * safely gets a reference on the root node of a tree. A lock
131 * is not taken, so a concurrent writer may put a different node
132 * at the root of the tree. See btrfs_lock_root_node for the
133 * looping required.
134 *
135 * The extent buffer returned by this has a reference taken, so
136 * it won't disappear. It may stop being the root of the tree
137 * at any time because there are no locks held.
138 */
Chris Mason925baed2008-06-25 16:01:30 -0400139struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
140{
141 struct extent_buffer *eb;
142 spin_lock(&root->node_lock);
143 eb = root->node;
144 extent_buffer_get(eb);
145 spin_unlock(&root->node_lock);
146 return eb;
147}
148
Chris Masond352ac62008-09-29 15:18:18 -0400149/* loop around taking references on and locking the root node of the
150 * tree until you end up with a lock on the root. A locked buffer
151 * is returned, with a reference held.
152 */
Chris Mason925baed2008-06-25 16:01:30 -0400153struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
154{
155 struct extent_buffer *eb;
156
Chris Masond3977122009-01-05 21:25:51 -0500157 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400158 eb = btrfs_root_node(root);
159 btrfs_tree_lock(eb);
160
161 spin_lock(&root->node_lock);
162 if (eb == root->node) {
163 spin_unlock(&root->node_lock);
164 break;
165 }
166 spin_unlock(&root->node_lock);
167
168 btrfs_tree_unlock(eb);
169 free_extent_buffer(eb);
170 }
171 return eb;
172}
173
Chris Masond352ac62008-09-29 15:18:18 -0400174/* cowonly root (everything not a reference counted cow subvolume), just get
175 * put onto a simple dirty list. transaction.c walks this to make sure they
176 * get properly updated on disk.
177 */
Chris Mason0b86a832008-03-24 15:01:56 -0400178static void add_root_to_dirty_list(struct btrfs_root *root)
179{
180 if (root->track_dirty && list_empty(&root->dirty_list)) {
181 list_add(&root->dirty_list,
182 &root->fs_info->dirty_cowonly_roots);
183 }
184}
185
Chris Masond352ac62008-09-29 15:18:18 -0400186/*
187 * used by snapshot creation to make a copy of a root for a tree with
188 * a given objectid. The buffer with the new root node is returned in
189 * cow_ret, and this func returns zero on success or a negative error code.
190 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500191int btrfs_copy_root(struct btrfs_trans_handle *trans,
192 struct btrfs_root *root,
193 struct extent_buffer *buf,
194 struct extent_buffer **cow_ret, u64 new_root_objectid)
195{
196 struct extent_buffer *cow;
197 u32 nritems;
198 int ret = 0;
199 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400200 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500201
202 WARN_ON(root->ref_cows && trans->transid !=
203 root->fs_info->running_transaction->transid);
204 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
205
206 level = btrfs_header_level(buf);
207 nritems = btrfs_header_nritems(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400208 if (level == 0)
209 btrfs_item_key(buf, &disk_key, 0);
210 else
211 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400212
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400213 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
214 new_root_objectid, &disk_key, level,
215 buf->start, 0);
216 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500217 return PTR_ERR(cow);
218
219 copy_extent_buffer(cow, buf, 0, 0, cow->len);
220 btrfs_set_header_bytenr(cow, cow->start);
221 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400222 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
223 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
224 BTRFS_HEADER_FLAG_RELOC);
225 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
226 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
227 else
228 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500229
Yan Zheng2b820322008-11-17 21:11:30 -0500230 write_extent_buffer(cow, root->fs_info->fsid,
231 (unsigned long)btrfs_header_fsid(cow),
232 BTRFS_FSID_SIZE);
233
Chris Masonbe20aa92007-12-17 20:14:01 -0500234 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400235 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
236 ret = btrfs_inc_ref(trans, root, cow, 1);
237 else
238 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500239
Chris Masonbe20aa92007-12-17 20:14:01 -0500240 if (ret)
241 return ret;
242
243 btrfs_mark_buffer_dirty(cow);
244 *cow_ret = cow;
245 return 0;
246}
247
Chris Masond352ac62008-09-29 15:18:18 -0400248/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400249 * check if the tree block can be shared by multiple trees
250 */
251int btrfs_block_can_be_shared(struct btrfs_root *root,
252 struct extent_buffer *buf)
253{
254 /*
255 * Tree blocks not in refernece counted trees and tree roots
256 * are never shared. If a block was allocated after the last
257 * snapshot and the block was not allocated by tree relocation,
258 * we know the block is not shared.
259 */
260 if (root->ref_cows &&
261 buf != root->node && buf != root->commit_root &&
262 (btrfs_header_generation(buf) <=
263 btrfs_root_last_snapshot(&root->root_item) ||
264 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
265 return 1;
266#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
267 if (root->ref_cows &&
268 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
269 return 1;
270#endif
271 return 0;
272}
273
274static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
275 struct btrfs_root *root,
276 struct extent_buffer *buf,
277 struct extent_buffer *cow)
278{
279 u64 refs;
280 u64 owner;
281 u64 flags;
282 u64 new_flags = 0;
283 int ret;
284
285 /*
286 * Backrefs update rules:
287 *
288 * Always use full backrefs for extent pointers in tree block
289 * allocated by tree relocation.
290 *
291 * If a shared tree block is no longer referenced by its owner
292 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
293 * use full backrefs for extent pointers in tree block.
294 *
295 * If a tree block is been relocating
296 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
297 * use full backrefs for extent pointers in tree block.
298 * The reason for this is some operations (such as drop tree)
299 * are only allowed for blocks use full backrefs.
300 */
301
302 if (btrfs_block_can_be_shared(root, buf)) {
303 ret = btrfs_lookup_extent_info(trans, root, buf->start,
304 buf->len, &refs, &flags);
305 BUG_ON(ret);
306 BUG_ON(refs == 0);
307 } else {
308 refs = 1;
309 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
310 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
311 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
312 else
313 flags = 0;
314 }
315
316 owner = btrfs_header_owner(buf);
317 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
318 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
319
320 if (refs > 1) {
321 if ((owner == root->root_key.objectid ||
322 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
323 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
324 ret = btrfs_inc_ref(trans, root, buf, 1);
325 BUG_ON(ret);
326
327 if (root->root_key.objectid ==
328 BTRFS_TREE_RELOC_OBJECTID) {
329 ret = btrfs_dec_ref(trans, root, buf, 0);
330 BUG_ON(ret);
331 ret = btrfs_inc_ref(trans, root, cow, 1);
332 BUG_ON(ret);
333 }
334 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
335 } else {
336
337 if (root->root_key.objectid ==
338 BTRFS_TREE_RELOC_OBJECTID)
339 ret = btrfs_inc_ref(trans, root, cow, 1);
340 else
341 ret = btrfs_inc_ref(trans, root, cow, 0);
342 BUG_ON(ret);
343 }
344 if (new_flags != 0) {
345 ret = btrfs_set_disk_extent_flags(trans, root,
346 buf->start,
347 buf->len,
348 new_flags, 0);
349 BUG_ON(ret);
350 }
351 } else {
352 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
353 if (root->root_key.objectid ==
354 BTRFS_TREE_RELOC_OBJECTID)
355 ret = btrfs_inc_ref(trans, root, cow, 1);
356 else
357 ret = btrfs_inc_ref(trans, root, cow, 0);
358 BUG_ON(ret);
359 ret = btrfs_dec_ref(trans, root, buf, 1);
360 BUG_ON(ret);
361 }
362 clean_tree_block(trans, root, buf);
363 }
364 return 0;
365}
366
367/*
Chris Masond3977122009-01-05 21:25:51 -0500368 * does the dirty work in cow of a single block. The parent block (if
369 * supplied) is updated to point to the new cow copy. The new buffer is marked
370 * dirty and returned locked. If you modify the block it needs to be marked
371 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400372 *
373 * search_start -- an allocation hint for the new block
374 *
Chris Masond3977122009-01-05 21:25:51 -0500375 * empty_size -- a hint that you plan on doing more cow. This is the size in
376 * bytes the allocator should try to find free next to the block it returns.
377 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400378 */
Chris Masond3977122009-01-05 21:25:51 -0500379static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400380 struct btrfs_root *root,
381 struct extent_buffer *buf,
382 struct extent_buffer *parent, int parent_slot,
383 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400384 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400385{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400386 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400387 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500388 int level;
Chris Mason925baed2008-06-25 16:01:30 -0400389 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400390 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400391
Chris Mason925baed2008-06-25 16:01:30 -0400392 if (*cow_ret == buf)
393 unlock_orig = 1;
394
Chris Masonb9447ef2009-03-09 11:45:38 -0400395 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400396
Chris Mason7bb86312007-12-11 09:25:06 -0500397 WARN_ON(root->ref_cows && trans->transid !=
398 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400399 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400400
Chris Mason7bb86312007-12-11 09:25:06 -0500401 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400402
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400403 if (level == 0)
404 btrfs_item_key(buf, &disk_key, 0);
405 else
406 btrfs_node_key(buf, &disk_key, 0);
407
408 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
409 if (parent)
410 parent_start = parent->start;
411 else
412 parent_start = 0;
413 } else
414 parent_start = 0;
415
416 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
417 root->root_key.objectid, &disk_key,
418 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -0400419 if (IS_ERR(cow))
420 return PTR_ERR(cow);
421
Chris Masonb4ce94d2009-02-04 09:25:08 -0500422 /* cow is set to blocking by btrfs_init_new_buffer */
423
Chris Mason5f39d392007-10-15 16:14:19 -0400424 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400425 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400426 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400427 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
428 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
429 BTRFS_HEADER_FLAG_RELOC);
430 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
431 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
432 else
433 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -0400434
Yan Zheng2b820322008-11-17 21:11:30 -0500435 write_extent_buffer(cow, root->fs_info->fsid,
436 (unsigned long)btrfs_header_fsid(cow),
437 BTRFS_FSID_SIZE);
438
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400439 update_ref_for_cow(trans, root, buf, cow);
Zheng Yan1a40e232008-09-26 10:09:34 -0400440
Chris Mason6702ed42007-08-07 16:15:09 -0400441 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400442 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400443 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
444 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
445 parent_start = buf->start;
446 else
447 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400448
449 spin_lock(&root->node_lock);
Chris Mason6702ed42007-08-07 16:15:09 -0400450 root->node = cow;
Chris Mason5f39d392007-10-15 16:14:19 -0400451 extent_buffer_get(cow);
Chris Mason925baed2008-06-25 16:01:30 -0400452 spin_unlock(&root->node_lock);
453
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400454 btrfs_free_extent(trans, root, buf->start, buf->len,
455 parent_start, root->root_key.objectid,
456 level, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400457 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400458 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400459 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400460 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
461 parent_start = parent->start;
462 else
463 parent_start = 0;
464
465 WARN_ON(trans->transid != btrfs_header_generation(parent));
Chris Mason5f39d392007-10-15 16:14:19 -0400466 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400467 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500468 btrfs_set_node_ptr_generation(parent, parent_slot,
469 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400470 btrfs_mark_buffer_dirty(parent);
Chris Mason7bb86312007-12-11 09:25:06 -0500471 btrfs_free_extent(trans, root, buf->start, buf->len,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400472 parent_start, root->root_key.objectid,
473 level, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400474 }
Chris Mason925baed2008-06-25 16:01:30 -0400475 if (unlock_orig)
476 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400477 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400478 btrfs_mark_buffer_dirty(cow);
479 *cow_ret = cow;
480 return 0;
481}
482
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400483static inline int should_cow_block(struct btrfs_trans_handle *trans,
484 struct btrfs_root *root,
485 struct extent_buffer *buf)
486{
487 if (btrfs_header_generation(buf) == trans->transid &&
488 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
489 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
490 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
491 return 0;
492 return 1;
493}
494
Chris Masond352ac62008-09-29 15:18:18 -0400495/*
496 * cows a single block, see __btrfs_cow_block for the real work.
497 * This version of it has extra checks so that a block isn't cow'd more than
498 * once per transaction, as long as it hasn't been written yet
499 */
Chris Masond3977122009-01-05 21:25:51 -0500500noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400501 struct btrfs_root *root, struct extent_buffer *buf,
502 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400503 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -0500504{
Chris Mason6702ed42007-08-07 16:15:09 -0400505 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400506 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500507
Chris Masonccd467d2007-06-28 15:57:36 -0400508 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500509 printk(KERN_CRIT "trans %llu running %llu\n",
510 (unsigned long long)trans->transid,
511 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400512 root->fs_info->running_transaction->transid);
513 WARN_ON(1);
514 }
515 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500516 printk(KERN_CRIT "trans %llu running %llu\n",
517 (unsigned long long)trans->transid,
518 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400519 WARN_ON(1);
520 }
Chris Masondc17ff82008-01-08 15:46:30 -0500521
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400522 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500523 *cow_ret = buf;
524 return 0;
525 }
Chris Masonc4876852009-02-04 09:24:25 -0500526
Chris Mason0b86a832008-03-24 15:01:56 -0400527 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500528
529 if (parent)
530 btrfs_set_lock_blocking(parent);
531 btrfs_set_lock_blocking(buf);
532
Chris Masonf510cfe2007-10-15 16:14:48 -0400533 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400534 parent_slot, cow_ret, search_start, 0);
Chris Masonf510cfe2007-10-15 16:14:48 -0400535 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400536}
537
Chris Masond352ac62008-09-29 15:18:18 -0400538/*
539 * helper function for defrag to decide if two blocks pointed to by a
540 * node are actually close by
541 */
Chris Mason6b800532007-10-15 16:17:34 -0400542static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400543{
Chris Mason6b800532007-10-15 16:17:34 -0400544 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400545 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400546 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400547 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500548 return 0;
549}
550
Chris Mason081e9572007-11-06 10:26:24 -0500551/*
552 * compare two keys in a memcmp fashion
553 */
554static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
555{
556 struct btrfs_key k1;
557
558 btrfs_disk_key_to_cpu(&k1, disk);
559
Diego Calleja20736ab2009-07-24 11:06:52 -0400560 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -0500561}
562
Josef Bacikf3465ca2008-11-12 14:19:50 -0500563/*
564 * same as comp_keys only with two btrfs_key's
565 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400566int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -0500567{
568 if (k1->objectid > k2->objectid)
569 return 1;
570 if (k1->objectid < k2->objectid)
571 return -1;
572 if (k1->type > k2->type)
573 return 1;
574 if (k1->type < k2->type)
575 return -1;
576 if (k1->offset > k2->offset)
577 return 1;
578 if (k1->offset < k2->offset)
579 return -1;
580 return 0;
581}
Chris Mason081e9572007-11-06 10:26:24 -0500582
Chris Masond352ac62008-09-29 15:18:18 -0400583/*
584 * this is used by the defrag code to go through all the
585 * leaves pointed to by a node and reallocate them so that
586 * disk order is close to key order
587 */
Chris Mason6702ed42007-08-07 16:15:09 -0400588int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400589 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400590 int start_slot, int cache_only, u64 *last_ret,
591 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400592{
Chris Mason6b800532007-10-15 16:17:34 -0400593 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400594 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400595 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400596 u64 search_start = *last_ret;
597 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400598 u64 other;
599 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400600 int end_slot;
601 int i;
602 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400603 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400604 int uptodate;
605 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500606 int progress_passed = 0;
607 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400608
Chris Mason5708b952007-10-25 15:43:18 -0400609 parent_level = btrfs_header_level(parent);
610 if (cache_only && parent_level != 1)
611 return 0;
612
Chris Masond3977122009-01-05 21:25:51 -0500613 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400614 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500615 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400616 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400617
Chris Mason6b800532007-10-15 16:17:34 -0400618 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400619 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400620 end_slot = parent_nritems;
621
622 if (parent_nritems == 1)
623 return 0;
624
Chris Masonb4ce94d2009-02-04 09:25:08 -0500625 btrfs_set_lock_blocking(parent);
626
Chris Mason6702ed42007-08-07 16:15:09 -0400627 for (i = start_slot; i < end_slot; i++) {
628 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400629
Chris Mason5708b952007-10-25 15:43:18 -0400630 if (!parent->map_token) {
631 map_extent_buffer(parent,
632 btrfs_node_key_ptr_offset(i),
633 sizeof(struct btrfs_key_ptr),
634 &parent->map_token, &parent->kaddr,
635 &parent->map_start, &parent->map_len,
636 KM_USER1);
637 }
Chris Mason081e9572007-11-06 10:26:24 -0500638 btrfs_node_key(parent, &disk_key, i);
639 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
640 continue;
641
642 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400643 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400644 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400645 if (last_block == 0)
646 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400647
Chris Mason6702ed42007-08-07 16:15:09 -0400648 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400649 other = btrfs_node_blockptr(parent, i - 1);
650 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400651 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400652 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400653 other = btrfs_node_blockptr(parent, i + 1);
654 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400655 }
Chris Masone9d0b132007-08-10 14:06:19 -0400656 if (close) {
657 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400658 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400659 }
Chris Mason5708b952007-10-25 15:43:18 -0400660 if (parent->map_token) {
661 unmap_extent_buffer(parent, parent->map_token,
662 KM_USER1);
663 parent->map_token = NULL;
664 }
Chris Mason6702ed42007-08-07 16:15:09 -0400665
Chris Mason6b800532007-10-15 16:17:34 -0400666 cur = btrfs_find_tree_block(root, blocknr, blocksize);
667 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400668 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400669 else
670 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400671 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400672 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400673 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400674 continue;
675 }
Chris Mason6b800532007-10-15 16:17:34 -0400676 if (!cur) {
677 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400678 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400679 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400680 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400681 }
Chris Mason6702ed42007-08-07 16:15:09 -0400682 }
Chris Masone9d0b132007-08-10 14:06:19 -0400683 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400684 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400685
Chris Masone7a84562008-06-25 16:01:31 -0400686 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500687 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400688 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400689 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400690 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400691 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400692 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400693 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400694 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400695 break;
Yan252c38f2007-08-29 09:11:44 -0400696 }
Chris Masone7a84562008-06-25 16:01:31 -0400697 search_start = cur->start;
698 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400699 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400700 btrfs_tree_unlock(cur);
701 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400702 }
Chris Mason5708b952007-10-25 15:43:18 -0400703 if (parent->map_token) {
704 unmap_extent_buffer(parent, parent->map_token,
705 KM_USER1);
706 parent->map_token = NULL;
707 }
Chris Mason6702ed42007-08-07 16:15:09 -0400708 return err;
709}
710
Chris Mason74123bd2007-02-02 11:05:29 -0500711/*
712 * The leaf data grows from end-to-front in the node.
713 * this returns the address of the start of the last item,
714 * which is the stop of the leaf data stack
715 */
Chris Mason123abc82007-03-14 14:14:43 -0400716static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400717 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500718{
Chris Mason5f39d392007-10-15 16:14:19 -0400719 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500720 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400721 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400722 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500723}
724
Chris Masond352ac62008-09-29 15:18:18 -0400725/*
726 * extra debugging checks to make sure all the items in a key are
727 * well formed and in the proper order
728 */
Chris Mason123abc82007-03-14 14:14:43 -0400729static int check_node(struct btrfs_root *root, struct btrfs_path *path,
730 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500731{
Chris Mason5f39d392007-10-15 16:14:19 -0400732 struct extent_buffer *parent = NULL;
733 struct extent_buffer *node = path->nodes[level];
734 struct btrfs_disk_key parent_key;
735 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500736 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400737 int slot;
738 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400739 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500740
741 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400742 parent = path->nodes[level + 1];
Aneesha1f39632007-07-11 10:03:27 -0400743
Chris Mason8d7be552007-05-10 11:24:42 -0400744 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400745 BUG_ON(nritems == 0);
746 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400747 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400748 btrfs_node_key(parent, &parent_key, parent_slot);
749 btrfs_node_key(node, &node_key, 0);
750 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400751 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400752 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400753 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500754 }
Chris Mason123abc82007-03-14 14:14:43 -0400755 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400756 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400757 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
758 btrfs_node_key(node, &node_key, slot);
759 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400760 }
761 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400762 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
763 btrfs_node_key(node, &node_key, slot);
764 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500765 }
766 return 0;
767}
768
Chris Masond352ac62008-09-29 15:18:18 -0400769/*
770 * extra checking to make sure all the items in a leaf are
771 * well formed and in the proper order
772 */
Chris Mason123abc82007-03-14 14:14:43 -0400773static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
774 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500775{
Chris Mason5f39d392007-10-15 16:14:19 -0400776 struct extent_buffer *leaf = path->nodes[level];
777 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500778 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400779 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400780 struct btrfs_disk_key parent_key;
781 struct btrfs_disk_key leaf_key;
782 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400783
Chris Mason5f39d392007-10-15 16:14:19 -0400784 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500785
786 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400787 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400788
789 if (nritems == 0)
790 return 0;
791
792 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400793 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400794 btrfs_node_key(parent, &parent_key, parent_slot);
795 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400796
Chris Mason5f39d392007-10-15 16:14:19 -0400797 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400798 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400799 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400800 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500801 }
Chris Mason5f39d392007-10-15 16:14:19 -0400802 if (slot != 0 && slot < nritems - 1) {
803 btrfs_item_key(leaf, &leaf_key, slot);
804 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
805 if (comp_keys(&leaf_key, &cpukey) <= 0) {
806 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500807 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400808 BUG_ON(1);
809 }
810 if (btrfs_item_offset_nr(leaf, slot - 1) !=
811 btrfs_item_end_nr(leaf, slot)) {
812 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500813 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400814 BUG_ON(1);
815 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500816 }
Chris Mason8d7be552007-05-10 11:24:42 -0400817 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400818 btrfs_item_key(leaf, &leaf_key, slot);
819 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
820 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
821 if (btrfs_item_offset_nr(leaf, slot) !=
822 btrfs_item_end_nr(leaf, slot + 1)) {
823 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500824 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400825 BUG_ON(1);
826 }
Chris Mason8d7be552007-05-10 11:24:42 -0400827 }
Chris Mason5f39d392007-10-15 16:14:19 -0400828 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
829 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500830 return 0;
831}
832
Chris Masond3977122009-01-05 21:25:51 -0500833static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500834 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500835{
Chris Mason85d824c2008-04-10 10:23:19 -0400836 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500837 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400838 return check_leaf(root, path, level);
839 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500840}
841
Chris Mason74123bd2007-02-02 11:05:29 -0500842/*
Chris Mason5f39d392007-10-15 16:14:19 -0400843 * search for key in the extent_buffer. The items start at offset p,
844 * and they are item_size apart. There are 'max' items in p.
845 *
Chris Mason74123bd2007-02-02 11:05:29 -0500846 * the slot in the array is returned via slot, and it points to
847 * the place where you would insert key if it is not found in
848 * the array.
849 *
850 * slot may point to max if the key is bigger than all of the keys
851 */
Chris Masone02119d2008-09-05 16:13:11 -0400852static noinline int generic_bin_search(struct extent_buffer *eb,
853 unsigned long p,
854 int item_size, struct btrfs_key *key,
855 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500856{
857 int low = 0;
858 int high = max;
859 int mid;
860 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400861 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400862 struct btrfs_disk_key unaligned;
863 unsigned long offset;
864 char *map_token = NULL;
865 char *kaddr = NULL;
866 unsigned long map_start = 0;
867 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400868 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500869
Chris Masond3977122009-01-05 21:25:51 -0500870 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500871 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400872 offset = p + mid * item_size;
873
874 if (!map_token || offset < map_start ||
875 (offset + sizeof(struct btrfs_disk_key)) >
876 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400877 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400878 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400879 map_token = NULL;
880 }
Chris Mason934d3752008-12-08 16:43:10 -0500881
882 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400883 sizeof(struct btrfs_disk_key),
884 &map_token, &kaddr,
885 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400886
Chris Mason479965d2007-10-15 16:14:27 -0400887 if (!err) {
888 tmp = (struct btrfs_disk_key *)(kaddr + offset -
889 map_start);
890 } else {
891 read_extent_buffer(eb, &unaligned,
892 offset, sizeof(unaligned));
893 tmp = &unaligned;
894 }
895
Chris Mason5f39d392007-10-15 16:14:19 -0400896 } else {
897 tmp = (struct btrfs_disk_key *)(kaddr + offset -
898 map_start);
899 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500900 ret = comp_keys(tmp, key);
901
902 if (ret < 0)
903 low = mid + 1;
904 else if (ret > 0)
905 high = mid;
906 else {
907 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400908 if (map_token)
909 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500910 return 0;
911 }
912 }
913 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400914 if (map_token)
915 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500916 return 1;
917}
918
Chris Mason97571fd2007-02-24 13:39:08 -0500919/*
920 * simple bin_search frontend that does the right thing for
921 * leaves vs nodes
922 */
Chris Mason5f39d392007-10-15 16:14:19 -0400923static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
924 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500925{
Chris Mason5f39d392007-10-15 16:14:19 -0400926 if (level == 0) {
927 return generic_bin_search(eb,
928 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400929 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400930 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400931 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500932 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400933 return generic_bin_search(eb,
934 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400935 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400936 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400937 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500938 }
939 return -1;
940}
941
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400942int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
943 int level, int *slot)
944{
945 return bin_search(eb, key, level, slot);
946}
947
Chris Masond352ac62008-09-29 15:18:18 -0400948/* given a node and slot number, this reads the blocks it points to. The
949 * extent buffer is returned with a reference taken (but unlocked).
950 * NULL is returned on error.
951 */
Chris Masone02119d2008-09-05 16:13:11 -0400952static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400953 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500954{
Chris Masonca7a79a2008-05-12 12:59:19 -0400955 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500956 if (slot < 0)
957 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400958 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500959 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400960
961 BUG_ON(level == 0);
962
Chris Masondb945352007-10-15 16:15:53 -0400963 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400964 btrfs_level_size(root, level - 1),
965 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500966}
967
Chris Masond352ac62008-09-29 15:18:18 -0400968/*
969 * node level balancing, used to make sure nodes are in proper order for
970 * item deletion. We balance from the top down, so we have to make sure
971 * that a deletion won't leave an node completely empty later on.
972 */
Chris Masone02119d2008-09-05 16:13:11 -0400973static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500974 struct btrfs_root *root,
975 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500976{
Chris Mason5f39d392007-10-15 16:14:19 -0400977 struct extent_buffer *right = NULL;
978 struct extent_buffer *mid;
979 struct extent_buffer *left = NULL;
980 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500981 int ret = 0;
982 int wret;
983 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500984 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -0400985 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500986 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500987
988 if (level == 0)
989 return 0;
990
Chris Mason5f39d392007-10-15 16:14:19 -0400991 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -0500992
Chris Mason925baed2008-06-25 16:01:30 -0400993 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -0500994 WARN_ON(btrfs_header_generation(mid) != trans->transid);
995
Chris Mason1d4f8a02007-03-13 09:28:32 -0400996 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500997
Chris Mason234b63a2007-03-13 10:46:10 -0400998 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -0400999 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -05001000 pslot = path->slots[level + 1];
1001
Chris Mason40689472007-03-17 14:29:23 -04001002 /*
1003 * deal with the case where there is only one pointer in the root
1004 * by promoting the node below to a root
1005 */
Chris Mason5f39d392007-10-15 16:14:19 -04001006 if (!parent) {
1007 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001008
Chris Mason5f39d392007-10-15 16:14:19 -04001009 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001010 return 0;
1011
1012 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001013 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -05001014 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -04001015 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001016 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001017 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan2f375ab2008-02-01 14:58:07 -05001018 BUG_ON(ret);
1019
Chris Mason925baed2008-06-25 16:01:30 -04001020 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -05001021 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -04001022 spin_unlock(&root->node_lock);
1023
Chris Mason0b86a832008-03-24 15:01:56 -04001024 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001025 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001026
Chris Mason925baed2008-06-25 16:01:30 -04001027 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001028 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001029 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001030 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001031 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001032 free_extent_buffer(mid);
Chris Mason7bb86312007-12-11 09:25:06 -05001033 ret = btrfs_free_extent(trans, root, mid->start, mid->len,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034 0, root->root_key.objectid, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001035 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -04001036 free_extent_buffer(mid);
Chris Masondb945352007-10-15 16:15:53 -04001037 return ret;
Chris Masonbb803952007-03-01 12:04:21 -05001038 }
Chris Mason5f39d392007-10-15 16:14:19 -04001039 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001040 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001041 return 0;
1042
Chris Masonb3612422009-05-13 19:12:15 -04001043 if (btrfs_header_nritems(mid) > 2)
Chris Masona4b6e072009-03-16 10:59:57 -04001044 return 0;
1045
Chris Mason5f39d392007-10-15 16:14:19 -04001046 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001047 err_on_enospc = 1;
1048
Chris Mason5f39d392007-10-15 16:14:19 -04001049 left = read_node_slot(root, parent, pslot - 1);
1050 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001051 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001052 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001053 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001054 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001055 if (wret) {
1056 ret = wret;
1057 goto enospc;
1058 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001059 }
Chris Mason5f39d392007-10-15 16:14:19 -04001060 right = read_node_slot(root, parent, pslot + 1);
1061 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001062 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001063 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001064 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001065 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001066 if (wret) {
1067 ret = wret;
1068 goto enospc;
1069 }
1070 }
1071
1072 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001073 if (left) {
1074 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001075 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001076 if (wret < 0)
1077 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001078 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001079 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -05001080 }
Chris Mason79f95c82007-03-01 15:16:26 -05001081
1082 /*
1083 * then try to empty the right most buffer into the middle
1084 */
Chris Mason5f39d392007-10-15 16:14:19 -04001085 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001086 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001087 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001088 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001089 if (btrfs_header_nritems(right) == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001090 u64 bytenr = right->start;
1091 u32 blocksize = right->len;
1092
Chris Mason5f39d392007-10-15 16:14:19 -04001093 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001094 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001095 free_extent_buffer(right);
Chris Masonbb803952007-03-01 12:04:21 -05001096 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001097 wret = del_ptr(trans, root, path, level + 1, pslot +
1098 1);
Chris Masonbb803952007-03-01 12:04:21 -05001099 if (wret)
1100 ret = wret;
Chris Masondb945352007-10-15 16:15:53 -04001101 wret = btrfs_free_extent(trans, root, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001102 blocksize, 0,
1103 root->root_key.objectid,
1104 level, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001105 if (wret)
1106 ret = wret;
1107 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001108 struct btrfs_disk_key right_key;
1109 btrfs_node_key(right, &right_key, 0);
1110 btrfs_set_node_key(parent, &right_key, pslot + 1);
1111 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001112 }
1113 }
Chris Mason5f39d392007-10-15 16:14:19 -04001114 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001115 /*
1116 * we're not allowed to leave a node with one item in the
1117 * tree during a delete. A deletion from lower in the tree
1118 * could try to delete the only pointer in this node.
1119 * So, pull some keys from the left.
1120 * There has to be a left pointer at this point because
1121 * otherwise we would have pulled some pointers from the
1122 * right
1123 */
Chris Mason5f39d392007-10-15 16:14:19 -04001124 BUG_ON(!left);
1125 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001126 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001127 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001128 goto enospc;
1129 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001130 if (wret == 1) {
1131 wret = push_node_left(trans, root, left, mid, 1);
1132 if (wret < 0)
1133 ret = wret;
1134 }
Chris Mason79f95c82007-03-01 15:16:26 -05001135 BUG_ON(wret == 1);
1136 }
Chris Mason5f39d392007-10-15 16:14:19 -04001137 if (btrfs_header_nritems(mid) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001138 /* we've managed to empty the middle node, drop it */
Chris Masondb945352007-10-15 16:15:53 -04001139 u64 bytenr = mid->start;
1140 u32 blocksize = mid->len;
Chris Mason925baed2008-06-25 16:01:30 -04001141
Chris Mason5f39d392007-10-15 16:14:19 -04001142 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001143 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001144 free_extent_buffer(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001145 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001146 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001147 if (wret)
1148 ret = wret;
Chris Mason7bb86312007-12-11 09:25:06 -05001149 wret = btrfs_free_extent(trans, root, bytenr, blocksize,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001150 0, root->root_key.objectid,
1151 level, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001152 if (wret)
1153 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -05001154 } else {
1155 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001156 struct btrfs_disk_key mid_key;
1157 btrfs_node_key(mid, &mid_key, 0);
1158 btrfs_set_node_key(parent, &mid_key, pslot);
1159 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001160 }
Chris Masonbb803952007-03-01 12:04:21 -05001161
Chris Mason79f95c82007-03-01 15:16:26 -05001162 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001163 if (left) {
1164 if (btrfs_header_nritems(left) > orig_slot) {
1165 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001166 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001167 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001168 path->slots[level + 1] -= 1;
1169 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001170 if (mid) {
1171 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001172 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001173 }
Chris Masonbb803952007-03-01 12:04:21 -05001174 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001175 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001176 path->slots[level] = orig_slot;
1177 }
1178 }
Chris Mason79f95c82007-03-01 15:16:26 -05001179 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001180 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001181 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001182 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001183 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001184enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001185 if (right) {
1186 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001187 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001188 }
1189 if (left) {
1190 if (path->nodes[level] != left)
1191 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001192 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001193 }
Chris Masonbb803952007-03-01 12:04:21 -05001194 return ret;
1195}
1196
Chris Masond352ac62008-09-29 15:18:18 -04001197/* Node balancing for insertion. Here we only split or push nodes around
1198 * when they are completely full. This is also done top down, so we
1199 * have to be pessimistic.
1200 */
Chris Masond3977122009-01-05 21:25:51 -05001201static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001202 struct btrfs_root *root,
1203 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001204{
Chris Mason5f39d392007-10-15 16:14:19 -04001205 struct extent_buffer *right = NULL;
1206 struct extent_buffer *mid;
1207 struct extent_buffer *left = NULL;
1208 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001209 int ret = 0;
1210 int wret;
1211 int pslot;
1212 int orig_slot = path->slots[level];
1213 u64 orig_ptr;
1214
1215 if (level == 0)
1216 return 1;
1217
Chris Mason5f39d392007-10-15 16:14:19 -04001218 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001219 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001220 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1221
1222 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001223 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001224 pslot = path->slots[level + 1];
1225
Chris Mason5f39d392007-10-15 16:14:19 -04001226 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001227 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001228
Chris Mason5f39d392007-10-15 16:14:19 -04001229 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001230
1231 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001232 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001233 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001234
1235 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001236 btrfs_set_lock_blocking(left);
1237
Chris Mason5f39d392007-10-15 16:14:19 -04001238 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001239 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1240 wret = 1;
1241 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001242 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001243 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001244 if (ret)
1245 wret = 1;
1246 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001247 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001248 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001249 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001250 }
Chris Masone66f7092007-04-20 13:16:02 -04001251 if (wret < 0)
1252 ret = wret;
1253 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001254 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001255 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001256 btrfs_node_key(mid, &disk_key, 0);
1257 btrfs_set_node_key(parent, &disk_key, pslot);
1258 btrfs_mark_buffer_dirty(parent);
1259 if (btrfs_header_nritems(left) > orig_slot) {
1260 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001261 path->slots[level + 1] -= 1;
1262 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001263 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001264 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001265 } else {
1266 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001267 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001268 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001269 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001270 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001271 }
Chris Masone66f7092007-04-20 13:16:02 -04001272 return 0;
1273 }
Chris Mason925baed2008-06-25 16:01:30 -04001274 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001275 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001276 }
Chris Mason925baed2008-06-25 16:01:30 -04001277 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001278
1279 /*
1280 * then try to empty the right most buffer into the middle
1281 */
Chris Mason5f39d392007-10-15 16:14:19 -04001282 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001283 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001284
Chris Mason925baed2008-06-25 16:01:30 -04001285 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001286 btrfs_set_lock_blocking(right);
1287
Chris Mason5f39d392007-10-15 16:14:19 -04001288 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001289 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1290 wret = 1;
1291 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001292 ret = btrfs_cow_block(trans, root, right,
1293 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001294 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001295 if (ret)
1296 wret = 1;
1297 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001298 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001299 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001300 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001301 }
Chris Masone66f7092007-04-20 13:16:02 -04001302 if (wret < 0)
1303 ret = wret;
1304 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001305 struct btrfs_disk_key disk_key;
1306
1307 btrfs_node_key(right, &disk_key, 0);
1308 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1309 btrfs_mark_buffer_dirty(parent);
1310
1311 if (btrfs_header_nritems(mid) <= orig_slot) {
1312 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001313 path->slots[level + 1] += 1;
1314 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001315 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001316 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001317 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001318 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001319 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001320 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001321 }
Chris Masone66f7092007-04-20 13:16:02 -04001322 return 0;
1323 }
Chris Mason925baed2008-06-25 16:01:30 -04001324 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001325 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001326 }
Chris Masone66f7092007-04-20 13:16:02 -04001327 return 1;
1328}
1329
Chris Mason74123bd2007-02-02 11:05:29 -05001330/*
Chris Masond352ac62008-09-29 15:18:18 -04001331 * readahead one full node of leaves, finding things that are close
1332 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001333 */
Chris Masonc8c42862009-04-03 10:14:18 -04001334static void reada_for_search(struct btrfs_root *root,
1335 struct btrfs_path *path,
1336 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001337{
Chris Mason5f39d392007-10-15 16:14:19 -04001338 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001339 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001340 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001341 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001342 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001343 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001344 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001345 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001346 u32 nr;
1347 u32 blocksize;
1348 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001349
Chris Masona6b6e752007-10-15 16:22:39 -04001350 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001351 return;
1352
Chris Mason6702ed42007-08-07 16:15:09 -04001353 if (!path->nodes[level])
1354 return;
1355
Chris Mason5f39d392007-10-15 16:14:19 -04001356 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001357
Chris Mason3c69fae2007-08-07 15:52:22 -04001358 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001359 blocksize = btrfs_level_size(root, level - 1);
1360 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001361 if (eb) {
1362 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001363 return;
1364 }
1365
Chris Masona7175312009-01-22 09:23:10 -05001366 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001367
Chris Mason5f39d392007-10-15 16:14:19 -04001368 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001369 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001370 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001371 if (direction < 0) {
1372 if (nr == 0)
1373 break;
1374 nr--;
1375 } else if (direction > 0) {
1376 nr++;
1377 if (nr >= nritems)
1378 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001379 }
Chris Mason01f46652007-12-21 16:24:26 -05001380 if (path->reada < 0 && objectid) {
1381 btrfs_node_key(node, &disk_key, nr);
1382 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1383 break;
1384 }
Chris Mason6b800532007-10-15 16:17:34 -04001385 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001386 if ((search <= target && target - search <= 65536) ||
1387 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001388 readahead_tree_block(root, search, blocksize,
1389 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001390 nread += blocksize;
1391 }
1392 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001393 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001394 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001395 }
1396}
Chris Mason925baed2008-06-25 16:01:30 -04001397
Chris Masond352ac62008-09-29 15:18:18 -04001398/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001399 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1400 * cache
1401 */
1402static noinline int reada_for_balance(struct btrfs_root *root,
1403 struct btrfs_path *path, int level)
1404{
1405 int slot;
1406 int nritems;
1407 struct extent_buffer *parent;
1408 struct extent_buffer *eb;
1409 u64 gen;
1410 u64 block1 = 0;
1411 u64 block2 = 0;
1412 int ret = 0;
1413 int blocksize;
1414
Chris Mason8c594ea2009-04-20 15:50:10 -04001415 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001416 if (!parent)
1417 return 0;
1418
1419 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04001420 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001421 blocksize = btrfs_level_size(root, level);
1422
1423 if (slot > 0) {
1424 block1 = btrfs_node_blockptr(parent, slot - 1);
1425 gen = btrfs_node_ptr_generation(parent, slot - 1);
1426 eb = btrfs_find_tree_block(root, block1, blocksize);
1427 if (eb && btrfs_buffer_uptodate(eb, gen))
1428 block1 = 0;
1429 free_extent_buffer(eb);
1430 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001431 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001432 block2 = btrfs_node_blockptr(parent, slot + 1);
1433 gen = btrfs_node_ptr_generation(parent, slot + 1);
1434 eb = btrfs_find_tree_block(root, block2, blocksize);
1435 if (eb && btrfs_buffer_uptodate(eb, gen))
1436 block2 = 0;
1437 free_extent_buffer(eb);
1438 }
1439 if (block1 || block2) {
1440 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04001441
1442 /* release the whole path */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001443 btrfs_release_path(root, path);
Chris Mason8c594ea2009-04-20 15:50:10 -04001444
1445 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001446 if (block1)
1447 readahead_tree_block(root, block1, blocksize, 0);
1448 if (block2)
1449 readahead_tree_block(root, block2, blocksize, 0);
1450
1451 if (block1) {
1452 eb = read_tree_block(root, block1, blocksize, 0);
1453 free_extent_buffer(eb);
1454 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001455 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001456 eb = read_tree_block(root, block2, blocksize, 0);
1457 free_extent_buffer(eb);
1458 }
1459 }
1460 return ret;
1461}
1462
1463
1464/*
Chris Masond3977122009-01-05 21:25:51 -05001465 * when we walk down the tree, it is usually safe to unlock the higher layers
1466 * in the tree. The exceptions are when our path goes through slot 0, because
1467 * operations on the tree might require changing key pointers higher up in the
1468 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001469 *
Chris Masond3977122009-01-05 21:25:51 -05001470 * callers might also have set path->keep_locks, which tells this code to keep
1471 * the lock if the path points to the last slot in the block. This is part of
1472 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001473 *
Chris Masond3977122009-01-05 21:25:51 -05001474 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1475 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001476 */
Chris Masone02119d2008-09-05 16:13:11 -04001477static noinline void unlock_up(struct btrfs_path *path, int level,
1478 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001479{
1480 int i;
1481 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001482 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001483 struct extent_buffer *t;
1484
1485 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1486 if (!path->nodes[i])
1487 break;
1488 if (!path->locks[i])
1489 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001490 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001491 skip_level = i + 1;
1492 continue;
1493 }
Chris Mason051e1b92008-06-25 16:01:30 -04001494 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001495 u32 nritems;
1496 t = path->nodes[i];
1497 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001498 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001499 skip_level = i + 1;
1500 continue;
1501 }
1502 }
Chris Mason051e1b92008-06-25 16:01:30 -04001503 if (skip_level < i && i >= lowest_unlock)
1504 no_skips = 1;
1505
Chris Mason925baed2008-06-25 16:01:30 -04001506 t = path->nodes[i];
1507 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1508 btrfs_tree_unlock(t);
1509 path->locks[i] = 0;
1510 }
1511 }
1512}
1513
Chris Mason3c69fae2007-08-07 15:52:22 -04001514/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001515 * This releases any locks held in the path starting at level and
1516 * going all the way up to the root.
1517 *
1518 * btrfs_search_slot will keep the lock held on higher nodes in a few
1519 * corner cases, such as COW of the block at slot zero in the node. This
1520 * ignores those rules, and it should only be called when there are no
1521 * more updates to be done higher up in the tree.
1522 */
1523noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1524{
1525 int i;
1526
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001527 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001528 return;
1529
1530 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1531 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001532 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001533 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001534 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001535 btrfs_tree_unlock(path->nodes[i]);
1536 path->locks[i] = 0;
1537 }
1538}
1539
1540/*
Chris Masonc8c42862009-04-03 10:14:18 -04001541 * helper function for btrfs_search_slot. The goal is to find a block
1542 * in cache without setting the path to blocking. If we find the block
1543 * we return zero and the path is unchanged.
1544 *
1545 * If we can't find the block, we set the path blocking and do some
1546 * reada. -EAGAIN is returned and the search must be repeated.
1547 */
1548static int
1549read_block_for_search(struct btrfs_trans_handle *trans,
1550 struct btrfs_root *root, struct btrfs_path *p,
1551 struct extent_buffer **eb_ret, int level, int slot,
1552 struct btrfs_key *key)
1553{
1554 u64 blocknr;
1555 u64 gen;
1556 u32 blocksize;
1557 struct extent_buffer *b = *eb_ret;
1558 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04001559 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001560
1561 blocknr = btrfs_node_blockptr(b, slot);
1562 gen = btrfs_node_ptr_generation(b, slot);
1563 blocksize = btrfs_level_size(root, level - 1);
1564
1565 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1566 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason76a05b32009-05-14 13:24:30 -04001567 /*
1568 * we found an up to date block without sleeping, return
1569 * right away
1570 */
Chris Masonc8c42862009-04-03 10:14:18 -04001571 *eb_ret = tmp;
1572 return 0;
1573 }
1574
1575 /*
1576 * reduce lock contention at high levels
1577 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04001578 * we read. Don't release the lock on the current
1579 * level because we need to walk this node to figure
1580 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04001581 */
Chris Mason8c594ea2009-04-20 15:50:10 -04001582 btrfs_unlock_up_safe(p, level + 1);
1583 btrfs_set_path_blocking(p);
1584
Chris Masonc8c42862009-04-03 10:14:18 -04001585 if (tmp)
1586 free_extent_buffer(tmp);
1587 if (p->reada)
1588 reada_for_search(root, p, level, slot, key->objectid);
1589
Chris Mason8c594ea2009-04-20 15:50:10 -04001590 btrfs_release_path(NULL, p);
Chris Mason76a05b32009-05-14 13:24:30 -04001591
1592 ret = -EAGAIN;
Chris Masonc8c42862009-04-03 10:14:18 -04001593 tmp = read_tree_block(root, blocknr, blocksize, gen);
Chris Mason76a05b32009-05-14 13:24:30 -04001594 if (tmp) {
1595 /*
1596 * If the read above didn't mark this buffer up to date,
1597 * it will never end up being up to date. Set ret to EIO now
1598 * and give up so that our caller doesn't loop forever
1599 * on our EAGAINs.
1600 */
1601 if (!btrfs_buffer_uptodate(tmp, 0))
1602 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04001603 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04001604 }
1605 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001606}
1607
1608/*
1609 * helper function for btrfs_search_slot. This does all of the checks
1610 * for node-level blocks and does any balancing required based on
1611 * the ins_len.
1612 *
1613 * If no extra work was required, zero is returned. If we had to
1614 * drop the path, -EAGAIN is returned and btrfs_search_slot must
1615 * start over
1616 */
1617static int
1618setup_nodes_for_search(struct btrfs_trans_handle *trans,
1619 struct btrfs_root *root, struct btrfs_path *p,
1620 struct extent_buffer *b, int level, int ins_len)
1621{
1622 int ret;
1623 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
1624 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
1625 int sret;
1626
1627 sret = reada_for_balance(root, p, level);
1628 if (sret)
1629 goto again;
1630
1631 btrfs_set_path_blocking(p);
1632 sret = split_node(trans, root, p, level);
1633 btrfs_clear_path_blocking(p, NULL);
1634
1635 BUG_ON(sret > 0);
1636 if (sret) {
1637 ret = sret;
1638 goto done;
1639 }
1640 b = p->nodes[level];
1641 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04001642 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04001643 int sret;
1644
1645 sret = reada_for_balance(root, p, level);
1646 if (sret)
1647 goto again;
1648
1649 btrfs_set_path_blocking(p);
1650 sret = balance_level(trans, root, p, level);
1651 btrfs_clear_path_blocking(p, NULL);
1652
1653 if (sret) {
1654 ret = sret;
1655 goto done;
1656 }
1657 b = p->nodes[level];
1658 if (!b) {
1659 btrfs_release_path(NULL, p);
1660 goto again;
1661 }
1662 BUG_ON(btrfs_header_nritems(b) == 1);
1663 }
1664 return 0;
1665
1666again:
1667 ret = -EAGAIN;
1668done:
1669 return ret;
1670}
1671
1672/*
Chris Mason74123bd2007-02-02 11:05:29 -05001673 * look for key in the tree. path is filled in with nodes along the way
1674 * if key is found, we return zero and you can find the item in the leaf
1675 * level of the path (level 0)
1676 *
1677 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001678 * be inserted, and 1 is returned. If there are other errors during the
1679 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001680 *
1681 * if ins_len > 0, nodes and leaves will be split as we walk down the
1682 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1683 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001684 */
Chris Masone089f052007-03-16 16:20:31 -04001685int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1686 *root, struct btrfs_key *key, struct btrfs_path *p, int
1687 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001688{
Chris Mason5f39d392007-10-15 16:14:19 -04001689 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001690 int slot;
1691 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04001692 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001693 int level;
Chris Mason925baed2008-06-25 16:01:30 -04001694 int lowest_unlock = 1;
Chris Mason9f3a7422007-08-07 15:52:19 -04001695 u8 lowest_level = 0;
1696
Chris Mason6702ed42007-08-07 16:15:09 -04001697 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001698 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001699 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001700
Chris Mason925baed2008-06-25 16:01:30 -04001701 if (ins_len < 0)
1702 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001703
Chris Masonbb803952007-03-01 12:04:21 -05001704again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001705 if (p->search_commit_root) {
1706 b = root->commit_root;
1707 extent_buffer_get(b);
1708 if (!p->skip_locking)
1709 btrfs_tree_lock(b);
1710 } else {
1711 if (p->skip_locking)
1712 b = btrfs_root_node(root);
1713 else
1714 b = btrfs_lock_root_node(root);
1715 }
Chris Mason925baed2008-06-25 16:01:30 -04001716
Chris Masoneb60cea2007-02-02 09:18:22 -05001717 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001718 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001719
1720 /*
1721 * setup the path here so we can release it under lock
1722 * contention with the cow code
1723 */
1724 p->nodes[level] = b;
1725 if (!p->skip_locking)
1726 p->locks[level] = 1;
1727
Chris Mason02217ed2007-03-02 16:08:05 -05001728 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04001729 /*
1730 * if we don't really need to cow this block
1731 * then we don't want to set the path blocking,
1732 * so we test it here
1733 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001734 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04001735 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001736
Chris Masonb4ce94d2009-02-04 09:25:08 -05001737 btrfs_set_path_blocking(p);
1738
Yan Zheng33c66f42009-07-22 09:59:00 -04001739 err = btrfs_cow_block(trans, root, b,
1740 p->nodes[level + 1],
1741 p->slots[level + 1], &b);
1742 if (err) {
Chris Mason5f39d392007-10-15 16:14:19 -04001743 free_extent_buffer(b);
Yan Zheng33c66f42009-07-22 09:59:00 -04001744 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001745 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001746 }
Chris Mason02217ed2007-03-02 16:08:05 -05001747 }
Chris Mason65b51a02008-08-01 15:11:20 -04001748cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001749 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001750 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001751 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001752 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001753
Chris Masoneb60cea2007-02-02 09:18:22 -05001754 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001755 if (!p->skip_locking)
1756 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001757
Chris Mason4008c042009-02-12 14:09:45 -05001758 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001759
1760 /*
1761 * we have a lock on b and as long as we aren't changing
1762 * the tree, there is no way to for the items in b to change.
1763 * It is safe to drop the lock on our parent before we
1764 * go through the expensive btree search on b.
1765 *
1766 * If cow is true, then we might be changing slot zero,
1767 * which may require changing the parent. So, we can't
1768 * drop the lock until after we know which slot we're
1769 * operating on.
1770 */
1771 if (!cow)
1772 btrfs_unlock_up_safe(p, level + 1);
1773
Chris Mason123abc82007-03-14 14:14:43 -04001774 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001775 if (ret) {
1776 ret = -1;
1777 goto done;
1778 }
Chris Mason925baed2008-06-25 16:01:30 -04001779
Chris Mason5f39d392007-10-15 16:14:19 -04001780 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001781
Chris Mason5f39d392007-10-15 16:14:19 -04001782 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001783 int dec = 0;
1784 if (ret && slot > 0) {
1785 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001786 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04001787 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001788 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04001789 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonc8c42862009-04-03 10:14:18 -04001790 ins_len);
Yan Zheng33c66f42009-07-22 09:59:00 -04001791 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001792 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001793 if (err) {
1794 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04001795 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001796 }
Chris Masonc8c42862009-04-03 10:14:18 -04001797 b = p->nodes[level];
1798 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001799
Chris Masonf9efa9c2008-06-25 16:14:04 -04001800 unlock_up(p, level, lowest_unlock);
1801
Chris Mason925baed2008-06-25 16:01:30 -04001802 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001803 if (dec)
1804 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001805 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001806 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001807
Yan Zheng33c66f42009-07-22 09:59:00 -04001808 err = read_block_for_search(trans, root, p,
Chris Masonc8c42862009-04-03 10:14:18 -04001809 &b, level, slot, key);
Yan Zheng33c66f42009-07-22 09:59:00 -04001810 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001811 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001812 if (err) {
1813 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04001814 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001815 }
Chris Mason76a05b32009-05-14 13:24:30 -04001816
Chris Masonb4ce94d2009-02-04 09:25:08 -05001817 if (!p->skip_locking) {
Chris Mason4008c042009-02-12 14:09:45 -05001818 btrfs_clear_path_blocking(p, NULL);
Yan Zheng33c66f42009-07-22 09:59:00 -04001819 err = btrfs_try_spin_lock(b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001820
Yan Zheng33c66f42009-07-22 09:59:00 -04001821 if (!err) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001822 btrfs_set_path_blocking(p);
1823 btrfs_tree_lock(b);
Chris Mason4008c042009-02-12 14:09:45 -05001824 btrfs_clear_path_blocking(p, b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001825 }
1826 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001827 } else {
1828 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001829 if (ins_len > 0 &&
1830 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001831 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04001832 err = split_leaf(trans, root, key,
1833 p, ins_len, ret == 0);
Chris Mason4008c042009-02-12 14:09:45 -05001834 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001835
Yan Zheng33c66f42009-07-22 09:59:00 -04001836 BUG_ON(err > 0);
1837 if (err) {
1838 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001839 goto done;
1840 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001841 }
Chris Mason459931e2008-12-10 09:10:46 -05001842 if (!p->search_for_split)
1843 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001844 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001845 }
1846 }
Chris Mason65b51a02008-08-01 15:11:20 -04001847 ret = 1;
1848done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001849 /*
1850 * we don't really know what they plan on doing with the path
1851 * from here on, so for now just mark it as blocking
1852 */
Chris Masonb9473432009-03-13 11:00:37 -04001853 if (!p->leave_spinning)
1854 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001855 if (ret < 0)
1856 btrfs_release_path(root, p);
Chris Mason65b51a02008-08-01 15:11:20 -04001857 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001858}
1859
Chris Mason74123bd2007-02-02 11:05:29 -05001860/*
1861 * adjust the pointers going up the tree, starting at level
1862 * making sure the right key of each node is points to 'key'.
1863 * This is used after shifting pointers to the left, so it stops
1864 * fixing up pointers when a given leaf/node is not in slot 0 of the
1865 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001866 *
1867 * If this fails to write a tree block, it returns -1, but continues
1868 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001869 */
Chris Mason5f39d392007-10-15 16:14:19 -04001870static int fixup_low_keys(struct btrfs_trans_handle *trans,
1871 struct btrfs_root *root, struct btrfs_path *path,
1872 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001873{
1874 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001875 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001876 struct extent_buffer *t;
1877
Chris Mason234b63a2007-03-13 10:46:10 -04001878 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001879 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001880 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001881 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001882 t = path->nodes[i];
1883 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001884 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001885 if (tslot != 0)
1886 break;
1887 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001888 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001889}
1890
Chris Mason74123bd2007-02-02 11:05:29 -05001891/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001892 * update item key.
1893 *
1894 * This function isn't completely safe. It's the caller's responsibility
1895 * that the new key won't break the order
1896 */
1897int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1898 struct btrfs_root *root, struct btrfs_path *path,
1899 struct btrfs_key *new_key)
1900{
1901 struct btrfs_disk_key disk_key;
1902 struct extent_buffer *eb;
1903 int slot;
1904
1905 eb = path->nodes[0];
1906 slot = path->slots[0];
1907 if (slot > 0) {
1908 btrfs_item_key(eb, &disk_key, slot - 1);
1909 if (comp_keys(&disk_key, new_key) >= 0)
1910 return -1;
1911 }
1912 if (slot < btrfs_header_nritems(eb) - 1) {
1913 btrfs_item_key(eb, &disk_key, slot + 1);
1914 if (comp_keys(&disk_key, new_key) <= 0)
1915 return -1;
1916 }
1917
1918 btrfs_cpu_key_to_disk(&disk_key, new_key);
1919 btrfs_set_item_key(eb, &disk_key, slot);
1920 btrfs_mark_buffer_dirty(eb);
1921 if (slot == 0)
1922 fixup_low_keys(trans, root, path, &disk_key, 1);
1923 return 0;
1924}
1925
1926/*
Chris Mason74123bd2007-02-02 11:05:29 -05001927 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001928 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001929 *
1930 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1931 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001932 */
Chris Mason98ed5172008-01-03 10:01:48 -05001933static int push_node_left(struct btrfs_trans_handle *trans,
1934 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001935 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001936{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001937 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001938 int src_nritems;
1939 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001940 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001941
Chris Mason5f39d392007-10-15 16:14:19 -04001942 src_nritems = btrfs_header_nritems(src);
1943 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001944 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001945 WARN_ON(btrfs_header_generation(src) != trans->transid);
1946 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001947
Chris Masonbce4eae2008-04-24 14:42:46 -04001948 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001949 return 1;
1950
Chris Masond3977122009-01-05 21:25:51 -05001951 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001952 return 1;
1953
Chris Masonbce4eae2008-04-24 14:42:46 -04001954 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001955 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001956 if (push_items < src_nritems) {
1957 /* leave at least 8 pointers in the node if
1958 * we aren't going to empty it
1959 */
1960 if (src_nritems - push_items < 8) {
1961 if (push_items <= 8)
1962 return 1;
1963 push_items -= 8;
1964 }
1965 }
1966 } else
1967 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001968
Chris Mason5f39d392007-10-15 16:14:19 -04001969 copy_extent_buffer(dst, src,
1970 btrfs_node_key_ptr_offset(dst_nritems),
1971 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001972 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001973
Chris Masonbb803952007-03-01 12:04:21 -05001974 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001975 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1976 btrfs_node_key_ptr_offset(push_items),
1977 (src_nritems - push_items) *
1978 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001979 }
Chris Mason5f39d392007-10-15 16:14:19 -04001980 btrfs_set_header_nritems(src, src_nritems - push_items);
1981 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1982 btrfs_mark_buffer_dirty(src);
1983 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001984
Chris Masonbb803952007-03-01 12:04:21 -05001985 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001986}
1987
Chris Mason97571fd2007-02-24 13:39:08 -05001988/*
Chris Mason79f95c82007-03-01 15:16:26 -05001989 * try to push data from one node into the next node right in the
1990 * tree.
1991 *
1992 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
1993 * error, and > 0 if there was no room in the right hand block.
1994 *
1995 * this will only push up to 1/2 the contents of the left node over
1996 */
Chris Mason5f39d392007-10-15 16:14:19 -04001997static int balance_node_right(struct btrfs_trans_handle *trans,
1998 struct btrfs_root *root,
1999 struct extent_buffer *dst,
2000 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002001{
Chris Mason79f95c82007-03-01 15:16:26 -05002002 int push_items = 0;
2003 int max_push;
2004 int src_nritems;
2005 int dst_nritems;
2006 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002007
Chris Mason7bb86312007-12-11 09:25:06 -05002008 WARN_ON(btrfs_header_generation(src) != trans->transid);
2009 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2010
Chris Mason5f39d392007-10-15 16:14:19 -04002011 src_nritems = btrfs_header_nritems(src);
2012 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002013 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002014 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002015 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002016
Chris Masond3977122009-01-05 21:25:51 -05002017 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002018 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002019
2020 max_push = src_nritems / 2 + 1;
2021 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002022 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002023 return 1;
Yan252c38f2007-08-29 09:11:44 -04002024
Chris Mason79f95c82007-03-01 15:16:26 -05002025 if (max_push < push_items)
2026 push_items = max_push;
2027
Chris Mason5f39d392007-10-15 16:14:19 -04002028 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2029 btrfs_node_key_ptr_offset(0),
2030 (dst_nritems) *
2031 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002032
Chris Mason5f39d392007-10-15 16:14:19 -04002033 copy_extent_buffer(dst, src,
2034 btrfs_node_key_ptr_offset(0),
2035 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002036 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002037
Chris Mason5f39d392007-10-15 16:14:19 -04002038 btrfs_set_header_nritems(src, src_nritems - push_items);
2039 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002040
Chris Mason5f39d392007-10-15 16:14:19 -04002041 btrfs_mark_buffer_dirty(src);
2042 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002043
Chris Mason79f95c82007-03-01 15:16:26 -05002044 return ret;
2045}
2046
2047/*
Chris Mason97571fd2007-02-24 13:39:08 -05002048 * helper function to insert a new root level in the tree.
2049 * A new node is allocated, and a single item is inserted to
2050 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002051 *
2052 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002053 */
Chris Masond3977122009-01-05 21:25:51 -05002054static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002055 struct btrfs_root *root,
2056 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002057{
Chris Mason7bb86312007-12-11 09:25:06 -05002058 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002059 struct extent_buffer *lower;
2060 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002061 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002062 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05002063
2064 BUG_ON(path->nodes[level]);
2065 BUG_ON(path->nodes[level-1] != root->node);
2066
Chris Mason7bb86312007-12-11 09:25:06 -05002067 lower = path->nodes[level-1];
2068 if (level == 1)
2069 btrfs_item_key(lower, &lower_key, 0);
2070 else
2071 btrfs_node_key(lower, &lower_key, 0);
2072
Zheng Yan31840ae2008-09-23 13:14:14 -04002073 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002074 root->root_key.objectid, &lower_key,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002075 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002076 if (IS_ERR(c))
2077 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002078
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002079 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002080 btrfs_set_header_nritems(c, 1);
2081 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002082 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002083 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002084 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002085 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002086
Chris Mason5f39d392007-10-15 16:14:19 -04002087 write_extent_buffer(c, root->fs_info->fsid,
2088 (unsigned long)btrfs_header_fsid(c),
2089 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002090
2091 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2092 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2093 BTRFS_UUID_SIZE);
2094
Chris Mason5f39d392007-10-15 16:14:19 -04002095 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002096 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002097 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002098 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002099
2100 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002101
2102 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002103
Chris Mason925baed2008-06-25 16:01:30 -04002104 spin_lock(&root->node_lock);
2105 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002106 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002107 spin_unlock(&root->node_lock);
2108
2109 /* the super has an extra ref to root->node */
2110 free_extent_buffer(old);
2111
Chris Mason0b86a832008-03-24 15:01:56 -04002112 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002113 extent_buffer_get(c);
2114 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002115 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002116 path->slots[level] = 0;
2117 return 0;
2118}
2119
Chris Mason74123bd2007-02-02 11:05:29 -05002120/*
2121 * worker function to insert a single pointer in a node.
2122 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002123 *
Chris Mason74123bd2007-02-02 11:05:29 -05002124 * slot and level indicate where you want the key to go, and
2125 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002126 *
2127 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002128 */
Chris Masone089f052007-03-16 16:20:31 -04002129static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2130 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002131 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002132{
Chris Mason5f39d392007-10-15 16:14:19 -04002133 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002134 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002135
2136 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002137 lower = path->nodes[level];
2138 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04002139 BUG_ON(slot > nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002140 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002141 BUG();
2142 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002143 memmove_extent_buffer(lower,
2144 btrfs_node_key_ptr_offset(slot + 1),
2145 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002146 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002147 }
Chris Mason5f39d392007-10-15 16:14:19 -04002148 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002149 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002150 WARN_ON(trans->transid == 0);
2151 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002152 btrfs_set_header_nritems(lower, nritems + 1);
2153 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002154 return 0;
2155}
2156
Chris Mason97571fd2007-02-24 13:39:08 -05002157/*
2158 * split the node at the specified level in path in two.
2159 * The path is corrected to point to the appropriate node after the split
2160 *
2161 * Before splitting this tries to make some room in the node by pushing
2162 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002163 *
2164 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002165 */
Chris Masone02119d2008-09-05 16:13:11 -04002166static noinline int split_node(struct btrfs_trans_handle *trans,
2167 struct btrfs_root *root,
2168 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002169{
Chris Mason5f39d392007-10-15 16:14:19 -04002170 struct extent_buffer *c;
2171 struct extent_buffer *split;
2172 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002173 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002174 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002175 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002176 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002177
Chris Mason5f39d392007-10-15 16:14:19 -04002178 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002179 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002180 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002181 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002182 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002183 if (ret)
2184 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04002185 } else {
Chris Masone66f7092007-04-20 13:16:02 -04002186 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002187 c = path->nodes[level];
2188 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002189 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002190 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002191 if (ret < 0)
2192 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002193 }
Chris Masone66f7092007-04-20 13:16:02 -04002194
Chris Mason5f39d392007-10-15 16:14:19 -04002195 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002196 mid = (c_nritems + 1) / 2;
2197 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05002198
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04002200 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002202 if (IS_ERR(split))
2203 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002204
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002205 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002206 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002207 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002208 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002210 btrfs_set_header_owner(split, root->root_key.objectid);
2211 write_extent_buffer(split, root->fs_info->fsid,
2212 (unsigned long)btrfs_header_fsid(split),
2213 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002214 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2215 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2216 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002217
Chris Mason5f39d392007-10-15 16:14:19 -04002218
2219 copy_extent_buffer(split, c,
2220 btrfs_node_key_ptr_offset(0),
2221 btrfs_node_key_ptr_offset(mid),
2222 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2223 btrfs_set_header_nritems(split, c_nritems - mid);
2224 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002225 ret = 0;
2226
Chris Mason5f39d392007-10-15 16:14:19 -04002227 btrfs_mark_buffer_dirty(c);
2228 btrfs_mark_buffer_dirty(split);
2229
Chris Masondb945352007-10-15 16:15:53 -04002230 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002231 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002232 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002233 if (wret)
2234 ret = wret;
2235
Chris Mason5de08d72007-02-24 06:24:44 -05002236 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002237 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002238 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002239 free_extent_buffer(c);
2240 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002241 path->slots[level + 1] += 1;
2242 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002243 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002244 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002245 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002246 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002247}
2248
Chris Mason74123bd2007-02-02 11:05:29 -05002249/*
2250 * how many bytes are required to store the items in a leaf. start
2251 * and nr indicate which items in the leaf to check. This totals up the
2252 * space used both by the item structs and the item data
2253 */
Chris Mason5f39d392007-10-15 16:14:19 -04002254static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002255{
2256 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002257 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002258 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002259
2260 if (!nr)
2261 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002262 data_len = btrfs_item_end_nr(l, start);
2263 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002264 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002265 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002266 return data_len;
2267}
2268
Chris Mason74123bd2007-02-02 11:05:29 -05002269/*
Chris Masond4dbff92007-04-04 14:08:15 -04002270 * The space between the end of the leaf items and
2271 * the start of the leaf data. IOW, how much room
2272 * the leaf has left for both items and data
2273 */
Chris Masond3977122009-01-05 21:25:51 -05002274noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002275 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002276{
Chris Mason5f39d392007-10-15 16:14:19 -04002277 int nritems = btrfs_header_nritems(leaf);
2278 int ret;
2279 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2280 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002281 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2282 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002283 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002284 leaf_space_used(leaf, 0, nritems), nritems);
2285 }
2286 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002287}
2288
Chris Mason44871b12009-03-13 10:04:31 -04002289static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2290 struct btrfs_root *root,
2291 struct btrfs_path *path,
2292 int data_size, int empty,
2293 struct extent_buffer *right,
2294 int free_space, u32 left_nritems)
Chris Mason00ec4c52007-02-24 12:47:20 -05002295{
Chris Mason5f39d392007-10-15 16:14:19 -04002296 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002297 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002298 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002299 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002300 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002301 int push_space = 0;
2302 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002303 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002304 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002305 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002306 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002307 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05002308
Chris Mason34a38212007-11-07 13:31:03 -05002309 if (empty)
2310 nr = 0;
2311 else
2312 nr = 1;
2313
Zheng Yan31840ae2008-09-23 13:14:14 -04002314 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002315 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002316
Chris Mason44871b12009-03-13 10:04:31 -04002317 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002318 i = left_nritems - 1;
2319 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002320 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002321
Zheng Yan31840ae2008-09-23 13:14:14 -04002322 if (!empty && push_items > 0) {
2323 if (path->slots[0] > i)
2324 break;
2325 if (path->slots[0] == i) {
2326 int space = btrfs_leaf_free_space(root, left);
2327 if (space + push_space * 2 > free_space)
2328 break;
2329 }
2330 }
2331
Chris Mason00ec4c52007-02-24 12:47:20 -05002332 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002333 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002334
2335 if (!left->map_token) {
2336 map_extent_buffer(left, (unsigned long)item,
2337 sizeof(struct btrfs_item),
2338 &left->map_token, &left->kaddr,
2339 &left->map_start, &left->map_len,
2340 KM_USER1);
2341 }
2342
2343 this_item_size = btrfs_item_size(left, item);
2344 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002345 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002346
Chris Mason00ec4c52007-02-24 12:47:20 -05002347 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002348 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002349 if (i == 0)
2350 break;
2351 i--;
Chris Masondb945352007-10-15 16:15:53 -04002352 }
2353 if (left->map_token) {
2354 unmap_extent_buffer(left, left->map_token, KM_USER1);
2355 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002356 }
Chris Mason5f39d392007-10-15 16:14:19 -04002357
Chris Mason925baed2008-06-25 16:01:30 -04002358 if (push_items == 0)
2359 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002360
Chris Mason34a38212007-11-07 13:31:03 -05002361 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002362 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002363
Chris Mason00ec4c52007-02-24 12:47:20 -05002364 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002365 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002366
Chris Mason5f39d392007-10-15 16:14:19 -04002367 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002368 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002369
Chris Mason00ec4c52007-02-24 12:47:20 -05002370 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002371 data_end = leaf_data_end(root, right);
2372 memmove_extent_buffer(right,
2373 btrfs_leaf_data(right) + data_end - push_space,
2374 btrfs_leaf_data(right) + data_end,
2375 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2376
Chris Mason00ec4c52007-02-24 12:47:20 -05002377 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002378 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002379 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2380 btrfs_leaf_data(left) + leaf_data_end(root, left),
2381 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002382
2383 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2384 btrfs_item_nr_offset(0),
2385 right_nritems * sizeof(struct btrfs_item));
2386
Chris Mason00ec4c52007-02-24 12:47:20 -05002387 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002388 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2389 btrfs_item_nr_offset(left_nritems - push_items),
2390 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002391
2392 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002393 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002394 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002395 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002396 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002397 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002398 if (!right->map_token) {
2399 map_extent_buffer(right, (unsigned long)item,
2400 sizeof(struct btrfs_item),
2401 &right->map_token, &right->kaddr,
2402 &right->map_start, &right->map_len,
2403 KM_USER1);
2404 }
2405 push_space -= btrfs_item_size(right, item);
2406 btrfs_set_item_offset(right, item, push_space);
2407 }
2408
2409 if (right->map_token) {
2410 unmap_extent_buffer(right, right->map_token, KM_USER1);
2411 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002412 }
Chris Mason7518a232007-03-12 12:01:18 -04002413 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002414 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002415
Chris Mason34a38212007-11-07 13:31:03 -05002416 if (left_nritems)
2417 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002418 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002419
Chris Mason5f39d392007-10-15 16:14:19 -04002420 btrfs_item_key(right, &disk_key, 0);
2421 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002422 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002423
Chris Mason00ec4c52007-02-24 12:47:20 -05002424 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002425 if (path->slots[0] >= left_nritems) {
2426 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002427 if (btrfs_header_nritems(path->nodes[0]) == 0)
2428 clean_tree_block(trans, root, path->nodes[0]);
2429 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002430 free_extent_buffer(path->nodes[0]);
2431 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002432 path->slots[1] += 1;
2433 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002434 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002435 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002436 }
2437 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002438
2439out_unlock:
2440 btrfs_tree_unlock(right);
2441 free_extent_buffer(right);
2442 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002443}
Chris Mason925baed2008-06-25 16:01:30 -04002444
Chris Mason00ec4c52007-02-24 12:47:20 -05002445/*
Chris Mason44871b12009-03-13 10:04:31 -04002446 * push some data in the path leaf to the right, trying to free up at
2447 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2448 *
2449 * returns 1 if the push failed because the other node didn't have enough
2450 * room, 0 if everything worked out and < 0 if there were major errors.
2451 */
2452static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
2453 *root, struct btrfs_path *path, int data_size,
2454 int empty)
2455{
2456 struct extent_buffer *left = path->nodes[0];
2457 struct extent_buffer *right;
2458 struct extent_buffer *upper;
2459 int slot;
2460 int free_space;
2461 u32 left_nritems;
2462 int ret;
2463
2464 if (!path->nodes[1])
2465 return 1;
2466
2467 slot = path->slots[1];
2468 upper = path->nodes[1];
2469 if (slot >= btrfs_header_nritems(upper) - 1)
2470 return 1;
2471
2472 btrfs_assert_tree_locked(path->nodes[1]);
2473
2474 right = read_node_slot(root, upper, slot + 1);
2475 btrfs_tree_lock(right);
2476 btrfs_set_lock_blocking(right);
2477
2478 free_space = btrfs_leaf_free_space(root, right);
2479 if (free_space < data_size)
2480 goto out_unlock;
2481
2482 /* cow and double check */
2483 ret = btrfs_cow_block(trans, root, right, upper,
2484 slot + 1, &right);
2485 if (ret)
2486 goto out_unlock;
2487
2488 free_space = btrfs_leaf_free_space(root, right);
2489 if (free_space < data_size)
2490 goto out_unlock;
2491
2492 left_nritems = btrfs_header_nritems(left);
2493 if (left_nritems == 0)
2494 goto out_unlock;
2495
2496 return __push_leaf_right(trans, root, path, data_size, empty,
2497 right, free_space, left_nritems);
2498out_unlock:
2499 btrfs_tree_unlock(right);
2500 free_extent_buffer(right);
2501 return 1;
2502}
2503
2504/*
Chris Mason74123bd2007-02-02 11:05:29 -05002505 * push some data in the path leaf to the left, trying to free up at
2506 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2507 */
Chris Mason44871b12009-03-13 10:04:31 -04002508static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2509 struct btrfs_root *root,
2510 struct btrfs_path *path, int data_size,
2511 int empty, struct extent_buffer *left,
2512 int free_space, int right_nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002513{
Chris Mason5f39d392007-10-15 16:14:19 -04002514 struct btrfs_disk_key disk_key;
2515 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002516 int slot;
2517 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002518 int push_space = 0;
2519 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002520 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002521 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002522 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002523 int ret = 0;
2524 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002525 u32 this_item_size;
2526 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002527
2528 slot = path->slots[1];
Chris Mason02217ed2007-03-02 16:08:05 -05002529
Chris Mason34a38212007-11-07 13:31:03 -05002530 if (empty)
2531 nr = right_nritems;
2532 else
2533 nr = right_nritems - 1;
2534
2535 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002536 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002537 if (!right->map_token) {
2538 map_extent_buffer(right, (unsigned long)item,
2539 sizeof(struct btrfs_item),
2540 &right->map_token, &right->kaddr,
2541 &right->map_start, &right->map_len,
2542 KM_USER1);
2543 }
2544
Zheng Yan31840ae2008-09-23 13:14:14 -04002545 if (!empty && push_items > 0) {
2546 if (path->slots[0] < i)
2547 break;
2548 if (path->slots[0] == i) {
2549 int space = btrfs_leaf_free_space(root, right);
2550 if (space + push_space * 2 > free_space)
2551 break;
2552 }
2553 }
2554
Chris Masonbe0e5c02007-01-26 15:51:26 -05002555 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002556 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002557
2558 this_item_size = btrfs_item_size(right, item);
2559 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002560 break;
Chris Masondb945352007-10-15 16:15:53 -04002561
Chris Masonbe0e5c02007-01-26 15:51:26 -05002562 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002563 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002564 }
Chris Masondb945352007-10-15 16:15:53 -04002565
2566 if (right->map_token) {
2567 unmap_extent_buffer(right, right->map_token, KM_USER1);
2568 right->map_token = NULL;
2569 }
2570
Chris Masonbe0e5c02007-01-26 15:51:26 -05002571 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002572 ret = 1;
2573 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002574 }
Chris Mason34a38212007-11-07 13:31:03 -05002575 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002576 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002577
Chris Masonbe0e5c02007-01-26 15:51:26 -05002578 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002579 copy_extent_buffer(left, right,
2580 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2581 btrfs_item_nr_offset(0),
2582 push_items * sizeof(struct btrfs_item));
2583
Chris Mason123abc82007-03-14 14:14:43 -04002584 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002585 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002586
2587 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002588 leaf_data_end(root, left) - push_space,
2589 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002590 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002591 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002592 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002593 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002594
Chris Masondb945352007-10-15 16:15:53 -04002595 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002596 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002597 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002598
Chris Mason5f39d392007-10-15 16:14:19 -04002599 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002600 if (!left->map_token) {
2601 map_extent_buffer(left, (unsigned long)item,
2602 sizeof(struct btrfs_item),
2603 &left->map_token, &left->kaddr,
2604 &left->map_start, &left->map_len,
2605 KM_USER1);
2606 }
2607
Chris Mason5f39d392007-10-15 16:14:19 -04002608 ioff = btrfs_item_offset(left, item);
2609 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002610 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002611 }
Chris Mason5f39d392007-10-15 16:14:19 -04002612 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002613 if (left->map_token) {
2614 unmap_extent_buffer(left, left->map_token, KM_USER1);
2615 left->map_token = NULL;
2616 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002617
2618 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002619 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002620 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2621 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002622 WARN_ON(1);
2623 }
Chris Mason5f39d392007-10-15 16:14:19 -04002624
Chris Mason34a38212007-11-07 13:31:03 -05002625 if (push_items < right_nritems) {
2626 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2627 leaf_data_end(root, right);
2628 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2629 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2630 btrfs_leaf_data(right) +
2631 leaf_data_end(root, right), push_space);
2632
2633 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002634 btrfs_item_nr_offset(push_items),
2635 (btrfs_header_nritems(right) - push_items) *
2636 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002637 }
Yaneef1c492007-11-26 10:58:13 -05002638 right_nritems -= push_items;
2639 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002640 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002641 for (i = 0; i < right_nritems; i++) {
2642 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002643
2644 if (!right->map_token) {
2645 map_extent_buffer(right, (unsigned long)item,
2646 sizeof(struct btrfs_item),
2647 &right->map_token, &right->kaddr,
2648 &right->map_start, &right->map_len,
2649 KM_USER1);
2650 }
2651
2652 push_space = push_space - btrfs_item_size(right, item);
2653 btrfs_set_item_offset(right, item, push_space);
2654 }
2655 if (right->map_token) {
2656 unmap_extent_buffer(right, right->map_token, KM_USER1);
2657 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002658 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002659
Chris Mason5f39d392007-10-15 16:14:19 -04002660 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002661 if (right_nritems)
2662 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002663
Chris Mason5f39d392007-10-15 16:14:19 -04002664 btrfs_item_key(right, &disk_key, 0);
2665 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002666 if (wret)
2667 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002668
2669 /* then fixup the leaf pointer in the path */
2670 if (path->slots[0] < push_items) {
2671 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002672 if (btrfs_header_nritems(path->nodes[0]) == 0)
2673 clean_tree_block(trans, root, path->nodes[0]);
2674 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002675 free_extent_buffer(path->nodes[0]);
2676 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002677 path->slots[1] -= 1;
2678 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002679 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002680 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002681 path->slots[0] -= push_items;
2682 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002683 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002684 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002685out:
2686 btrfs_tree_unlock(left);
2687 free_extent_buffer(left);
2688 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002689}
2690
Chris Mason74123bd2007-02-02 11:05:29 -05002691/*
Chris Mason44871b12009-03-13 10:04:31 -04002692 * push some data in the path leaf to the left, trying to free up at
2693 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2694 */
2695static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
2696 *root, struct btrfs_path *path, int data_size,
2697 int empty)
2698{
2699 struct extent_buffer *right = path->nodes[0];
2700 struct extent_buffer *left;
2701 int slot;
2702 int free_space;
2703 u32 right_nritems;
2704 int ret = 0;
2705
2706 slot = path->slots[1];
2707 if (slot == 0)
2708 return 1;
2709 if (!path->nodes[1])
2710 return 1;
2711
2712 right_nritems = btrfs_header_nritems(right);
2713 if (right_nritems == 0)
2714 return 1;
2715
2716 btrfs_assert_tree_locked(path->nodes[1]);
2717
2718 left = read_node_slot(root, path->nodes[1], slot - 1);
2719 btrfs_tree_lock(left);
2720 btrfs_set_lock_blocking(left);
2721
2722 free_space = btrfs_leaf_free_space(root, left);
2723 if (free_space < data_size) {
2724 ret = 1;
2725 goto out;
2726 }
2727
2728 /* cow and double check */
2729 ret = btrfs_cow_block(trans, root, left,
2730 path->nodes[1], slot - 1, &left);
2731 if (ret) {
2732 /* we hit -ENOSPC, but it isn't fatal here */
2733 ret = 1;
2734 goto out;
2735 }
2736
2737 free_space = btrfs_leaf_free_space(root, left);
2738 if (free_space < data_size) {
2739 ret = 1;
2740 goto out;
2741 }
2742
2743 return __push_leaf_left(trans, root, path, data_size,
2744 empty, left, free_space, right_nritems);
2745out:
2746 btrfs_tree_unlock(left);
2747 free_extent_buffer(left);
2748 return ret;
2749}
2750
2751/*
Chris Mason74123bd2007-02-02 11:05:29 -05002752 * split the path's leaf in two, making sure there is at least data_size
2753 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002754 *
2755 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002756 */
Chris Mason44871b12009-03-13 10:04:31 -04002757static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002758 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002759 struct btrfs_path *path,
2760 struct extent_buffer *l,
2761 struct extent_buffer *right,
2762 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002763{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002764 int data_copy_size;
2765 int rt_data_off;
2766 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002767 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002768 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002769 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002770
Chris Mason5f39d392007-10-15 16:14:19 -04002771 nritems = nritems - mid;
2772 btrfs_set_header_nritems(right, nritems);
2773 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2774
2775 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2776 btrfs_item_nr_offset(mid),
2777 nritems * sizeof(struct btrfs_item));
2778
2779 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002780 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2781 data_copy_size, btrfs_leaf_data(l) +
2782 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002783
Chris Mason5f39d392007-10-15 16:14:19 -04002784 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2785 btrfs_item_end_nr(l, mid);
2786
2787 for (i = 0; i < nritems; i++) {
2788 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002789 u32 ioff;
2790
2791 if (!right->map_token) {
2792 map_extent_buffer(right, (unsigned long)item,
2793 sizeof(struct btrfs_item),
2794 &right->map_token, &right->kaddr,
2795 &right->map_start, &right->map_len,
2796 KM_USER1);
2797 }
2798
2799 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002800 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002801 }
Chris Mason74123bd2007-02-02 11:05:29 -05002802
Chris Masondb945352007-10-15 16:15:53 -04002803 if (right->map_token) {
2804 unmap_extent_buffer(right, right->map_token, KM_USER1);
2805 right->map_token = NULL;
2806 }
2807
Chris Mason5f39d392007-10-15 16:14:19 -04002808 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002809 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002810 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002811 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2812 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002813 if (wret)
2814 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002815
2816 btrfs_mark_buffer_dirty(right);
2817 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002818 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002819
Chris Masonbe0e5c02007-01-26 15:51:26 -05002820 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002821 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002822 free_extent_buffer(path->nodes[0]);
2823 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002824 path->slots[0] -= mid;
2825 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002826 } else {
2827 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002828 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002829 }
Chris Mason5f39d392007-10-15 16:14:19 -04002830
Chris Masoneb60cea2007-02-02 09:18:22 -05002831 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002832
Chris Mason44871b12009-03-13 10:04:31 -04002833 return ret;
2834}
2835
2836/*
2837 * split the path's leaf in two, making sure there is at least data_size
2838 * available for the resulting leaf level of the path.
2839 *
2840 * returns 0 if all went well and < 0 on failure.
2841 */
2842static noinline int split_leaf(struct btrfs_trans_handle *trans,
2843 struct btrfs_root *root,
2844 struct btrfs_key *ins_key,
2845 struct btrfs_path *path, int data_size,
2846 int extend)
2847{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002848 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04002849 struct extent_buffer *l;
2850 u32 nritems;
2851 int mid;
2852 int slot;
2853 struct extent_buffer *right;
2854 int ret = 0;
2855 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002856 int split;
Chris Mason44871b12009-03-13 10:04:31 -04002857 int num_doubles = 0;
2858
2859 /* first try to make some room by pushing left and right */
Chris Masonb3612422009-05-13 19:12:15 -04002860 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
Chris Mason44871b12009-03-13 10:04:31 -04002861 wret = push_leaf_right(trans, root, path, data_size, 0);
2862 if (wret < 0)
2863 return wret;
2864 if (wret) {
2865 wret = push_leaf_left(trans, root, path, data_size, 0);
2866 if (wret < 0)
2867 return wret;
2868 }
2869 l = path->nodes[0];
2870
2871 /* did the pushes work? */
2872 if (btrfs_leaf_free_space(root, l) >= data_size)
2873 return 0;
2874 }
2875
2876 if (!path->nodes[1]) {
2877 ret = insert_new_root(trans, root, path, 1);
2878 if (ret)
2879 return ret;
2880 }
2881again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002882 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04002883 l = path->nodes[0];
2884 slot = path->slots[0];
2885 nritems = btrfs_header_nritems(l);
2886 mid = (nritems + 1) / 2;
2887
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002888 if (mid <= slot) {
2889 if (nritems == 1 ||
2890 leaf_space_used(l, mid, nritems - mid) + data_size >
2891 BTRFS_LEAF_DATA_SIZE(root)) {
2892 if (slot >= nritems) {
2893 split = 0;
2894 } else {
2895 mid = slot;
2896 if (mid != nritems &&
2897 leaf_space_used(l, mid, nritems - mid) +
2898 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2899 split = 2;
2900 }
2901 }
2902 }
2903 } else {
2904 if (leaf_space_used(l, 0, mid) + data_size >
2905 BTRFS_LEAF_DATA_SIZE(root)) {
2906 if (!extend && data_size && slot == 0) {
2907 split = 0;
2908 } else if ((extend || !data_size) && slot == 0) {
2909 mid = 1;
2910 } else {
2911 mid = slot;
2912 if (mid != nritems &&
2913 leaf_space_used(l, mid, nritems - mid) +
2914 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2915 split = 2 ;
2916 }
2917 }
2918 }
2919 }
2920
2921 if (split == 0)
2922 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2923 else
2924 btrfs_item_key(l, &disk_key, mid);
2925
2926 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04002927 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002928 &disk_key, 0, l->start, 0);
Chris Mason44871b12009-03-13 10:04:31 -04002929 if (IS_ERR(right)) {
2930 BUG_ON(1);
2931 return PTR_ERR(right);
2932 }
2933
2934 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2935 btrfs_set_header_bytenr(right, right->start);
2936 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002937 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04002938 btrfs_set_header_owner(right, root->root_key.objectid);
2939 btrfs_set_header_level(right, 0);
2940 write_extent_buffer(right, root->fs_info->fsid,
2941 (unsigned long)btrfs_header_fsid(right),
2942 BTRFS_FSID_SIZE);
2943
2944 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2945 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2946 BTRFS_UUID_SIZE);
2947
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948 if (split == 0) {
2949 if (mid <= slot) {
2950 btrfs_set_header_nritems(right, 0);
2951 wret = insert_ptr(trans, root, path,
2952 &disk_key, right->start,
2953 path->slots[1] + 1, 1);
2954 if (wret)
2955 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002956
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002957 btrfs_tree_unlock(path->nodes[0]);
2958 free_extent_buffer(path->nodes[0]);
2959 path->nodes[0] = right;
2960 path->slots[0] = 0;
2961 path->slots[1] += 1;
2962 } else {
2963 btrfs_set_header_nritems(right, 0);
2964 wret = insert_ptr(trans, root, path,
2965 &disk_key,
2966 right->start,
2967 path->slots[1], 1);
2968 if (wret)
2969 ret = wret;
2970 btrfs_tree_unlock(path->nodes[0]);
2971 free_extent_buffer(path->nodes[0]);
2972 path->nodes[0] = right;
2973 path->slots[0] = 0;
2974 if (path->slots[1] == 0) {
2975 wret = fixup_low_keys(trans, root,
2976 path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04002977 if (wret)
2978 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002979 }
2980 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002981 btrfs_mark_buffer_dirty(right);
2982 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04002983 }
2984
2985 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
2986 BUG_ON(ret);
2987
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002988 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002989 BUG_ON(num_doubles != 0);
2990 num_doubles++;
2991 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04002992 }
Chris Mason44871b12009-03-13 10:04:31 -04002993
Chris Masonbe0e5c02007-01-26 15:51:26 -05002994 return ret;
2995}
2996
Chris Masond352ac62008-09-29 15:18:18 -04002997/*
Chris Mason459931e2008-12-10 09:10:46 -05002998 * This function splits a single item into two items,
2999 * giving 'new_key' to the new item and splitting the
3000 * old one at split_offset (from the start of the item).
3001 *
3002 * The path may be released by this operation. After
3003 * the split, the path is pointing to the old item. The
3004 * new item is going to be in the same node as the old one.
3005 *
3006 * Note, the item being split must be smaller enough to live alone on
3007 * a tree block with room for one extra struct btrfs_item
3008 *
3009 * This allows us to split the item in place, keeping a lock on the
3010 * leaf the entire time.
3011 */
3012int btrfs_split_item(struct btrfs_trans_handle *trans,
3013 struct btrfs_root *root,
3014 struct btrfs_path *path,
3015 struct btrfs_key *new_key,
3016 unsigned long split_offset)
3017{
3018 u32 item_size;
3019 struct extent_buffer *leaf;
3020 struct btrfs_key orig_key;
3021 struct btrfs_item *item;
3022 struct btrfs_item *new_item;
3023 int ret = 0;
3024 int slot;
3025 u32 nritems;
3026 u32 orig_offset;
3027 struct btrfs_disk_key disk_key;
3028 char *buf;
3029
3030 leaf = path->nodes[0];
3031 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
3032 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
3033 goto split;
3034
3035 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3036 btrfs_release_path(root, path);
3037
3038 path->search_for_split = 1;
3039 path->keep_locks = 1;
3040
3041 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
3042 path->search_for_split = 0;
3043
3044 /* if our item isn't there or got smaller, return now */
3045 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
3046 path->slots[0])) {
3047 path->keep_locks = 0;
3048 return -EAGAIN;
3049 }
3050
Chris Masonb9473432009-03-13 11:00:37 -04003051 btrfs_set_path_blocking(path);
Yan Zheng87b29b22008-12-17 10:21:48 -05003052 ret = split_leaf(trans, root, &orig_key, path,
3053 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05003054 path->keep_locks = 0;
3055 BUG_ON(ret);
3056
Chris Masonb9473432009-03-13 11:00:37 -04003057 btrfs_unlock_up_safe(path, 1);
3058 leaf = path->nodes[0];
3059 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
3060
3061split:
Chris Masonb4ce94d2009-02-04 09:25:08 -05003062 /*
3063 * make sure any changes to the path from split_leaf leave it
3064 * in a blocking state
3065 */
3066 btrfs_set_path_blocking(path);
3067
Chris Mason459931e2008-12-10 09:10:46 -05003068 item = btrfs_item_nr(leaf, path->slots[0]);
3069 orig_offset = btrfs_item_offset(leaf, item);
3070 item_size = btrfs_item_size(leaf, item);
3071
Chris Mason459931e2008-12-10 09:10:46 -05003072 buf = kmalloc(item_size, GFP_NOFS);
3073 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3074 path->slots[0]), item_size);
3075 slot = path->slots[0] + 1;
3076 leaf = path->nodes[0];
3077
3078 nritems = btrfs_header_nritems(leaf);
3079
3080 if (slot != nritems) {
3081 /* shift the items */
3082 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
3083 btrfs_item_nr_offset(slot),
3084 (nritems - slot) * sizeof(struct btrfs_item));
3085
3086 }
3087
3088 btrfs_cpu_key_to_disk(&disk_key, new_key);
3089 btrfs_set_item_key(leaf, &disk_key, slot);
3090
3091 new_item = btrfs_item_nr(leaf, slot);
3092
3093 btrfs_set_item_offset(leaf, new_item, orig_offset);
3094 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3095
3096 btrfs_set_item_offset(leaf, item,
3097 orig_offset + item_size - split_offset);
3098 btrfs_set_item_size(leaf, item, split_offset);
3099
3100 btrfs_set_header_nritems(leaf, nritems + 1);
3101
3102 /* write the data for the start of the original item */
3103 write_extent_buffer(leaf, buf,
3104 btrfs_item_ptr_offset(leaf, path->slots[0]),
3105 split_offset);
3106
3107 /* write the data for the new item */
3108 write_extent_buffer(leaf, buf + split_offset,
3109 btrfs_item_ptr_offset(leaf, slot),
3110 item_size - split_offset);
3111 btrfs_mark_buffer_dirty(leaf);
3112
3113 ret = 0;
3114 if (btrfs_leaf_free_space(root, leaf) < 0) {
3115 btrfs_print_leaf(root, leaf);
3116 BUG();
3117 }
3118 kfree(buf);
3119 return ret;
3120}
3121
3122/*
Chris Masond352ac62008-09-29 15:18:18 -04003123 * make the item pointed to by the path smaller. new_size indicates
3124 * how small to make it, and from_end tells us if we just chop bytes
3125 * off the end of the item or if we shift the item to chop bytes off
3126 * the front.
3127 */
Chris Masonb18c6682007-04-17 13:26:50 -04003128int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3129 struct btrfs_root *root,
3130 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003131 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003132{
3133 int ret = 0;
3134 int slot;
3135 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003136 struct extent_buffer *leaf;
3137 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003138 u32 nritems;
3139 unsigned int data_end;
3140 unsigned int old_data_start;
3141 unsigned int old_size;
3142 unsigned int size_diff;
3143 int i;
3144
3145 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003146 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003147 slot = path->slots[0];
3148
3149 old_size = btrfs_item_size_nr(leaf, slot);
3150 if (old_size == new_size)
3151 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003152
Chris Mason5f39d392007-10-15 16:14:19 -04003153 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003154 data_end = leaf_data_end(root, leaf);
3155
Chris Mason5f39d392007-10-15 16:14:19 -04003156 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003157
Chris Masonb18c6682007-04-17 13:26:50 -04003158 size_diff = old_size - new_size;
3159
3160 BUG_ON(slot < 0);
3161 BUG_ON(slot >= nritems);
3162
3163 /*
3164 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3165 */
3166 /* first correct the data pointers */
3167 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003168 u32 ioff;
3169 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003170
3171 if (!leaf->map_token) {
3172 map_extent_buffer(leaf, (unsigned long)item,
3173 sizeof(struct btrfs_item),
3174 &leaf->map_token, &leaf->kaddr,
3175 &leaf->map_start, &leaf->map_len,
3176 KM_USER1);
3177 }
3178
Chris Mason5f39d392007-10-15 16:14:19 -04003179 ioff = btrfs_item_offset(leaf, item);
3180 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003181 }
Chris Masondb945352007-10-15 16:15:53 -04003182
3183 if (leaf->map_token) {
3184 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3185 leaf->map_token = NULL;
3186 }
3187
Chris Masonb18c6682007-04-17 13:26:50 -04003188 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003189 if (from_end) {
3190 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3191 data_end + size_diff, btrfs_leaf_data(leaf) +
3192 data_end, old_data_start + new_size - data_end);
3193 } else {
3194 struct btrfs_disk_key disk_key;
3195 u64 offset;
3196
3197 btrfs_item_key(leaf, &disk_key, slot);
3198
3199 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3200 unsigned long ptr;
3201 struct btrfs_file_extent_item *fi;
3202
3203 fi = btrfs_item_ptr(leaf, slot,
3204 struct btrfs_file_extent_item);
3205 fi = (struct btrfs_file_extent_item *)(
3206 (unsigned long)fi - size_diff);
3207
3208 if (btrfs_file_extent_type(leaf, fi) ==
3209 BTRFS_FILE_EXTENT_INLINE) {
3210 ptr = btrfs_item_ptr_offset(leaf, slot);
3211 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003212 (unsigned long)fi,
3213 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003214 disk_bytenr));
3215 }
3216 }
3217
3218 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3219 data_end + size_diff, btrfs_leaf_data(leaf) +
3220 data_end, old_data_start - data_end);
3221
3222 offset = btrfs_disk_key_offset(&disk_key);
3223 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3224 btrfs_set_item_key(leaf, &disk_key, slot);
3225 if (slot == 0)
3226 fixup_low_keys(trans, root, path, &disk_key, 1);
3227 }
Chris Mason5f39d392007-10-15 16:14:19 -04003228
3229 item = btrfs_item_nr(leaf, slot);
3230 btrfs_set_item_size(leaf, item, new_size);
3231 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003232
3233 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003234 if (btrfs_leaf_free_space(root, leaf) < 0) {
3235 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003236 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003237 }
Chris Masonb18c6682007-04-17 13:26:50 -04003238 return ret;
3239}
3240
Chris Masond352ac62008-09-29 15:18:18 -04003241/*
3242 * make the item pointed to by the path bigger, data_size is the new size.
3243 */
Chris Mason5f39d392007-10-15 16:14:19 -04003244int btrfs_extend_item(struct btrfs_trans_handle *trans,
3245 struct btrfs_root *root, struct btrfs_path *path,
3246 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003247{
3248 int ret = 0;
3249 int slot;
3250 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003251 struct extent_buffer *leaf;
3252 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003253 u32 nritems;
3254 unsigned int data_end;
3255 unsigned int old_data;
3256 unsigned int old_size;
3257 int i;
3258
3259 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003260 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003261
Chris Mason5f39d392007-10-15 16:14:19 -04003262 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003263 data_end = leaf_data_end(root, leaf);
3264
Chris Mason5f39d392007-10-15 16:14:19 -04003265 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3266 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003267 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003268 }
Chris Mason6567e832007-04-16 09:22:45 -04003269 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003270 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003271
3272 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003273 if (slot >= nritems) {
3274 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003275 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3276 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003277 BUG_ON(1);
3278 }
Chris Mason6567e832007-04-16 09:22:45 -04003279
3280 /*
3281 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3282 */
3283 /* first correct the data pointers */
3284 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003285 u32 ioff;
3286 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003287
3288 if (!leaf->map_token) {
3289 map_extent_buffer(leaf, (unsigned long)item,
3290 sizeof(struct btrfs_item),
3291 &leaf->map_token, &leaf->kaddr,
3292 &leaf->map_start, &leaf->map_len,
3293 KM_USER1);
3294 }
Chris Mason5f39d392007-10-15 16:14:19 -04003295 ioff = btrfs_item_offset(leaf, item);
3296 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003297 }
Chris Mason5f39d392007-10-15 16:14:19 -04003298
Chris Masondb945352007-10-15 16:15:53 -04003299 if (leaf->map_token) {
3300 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3301 leaf->map_token = NULL;
3302 }
3303
Chris Mason6567e832007-04-16 09:22:45 -04003304 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003305 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003306 data_end - data_size, btrfs_leaf_data(leaf) +
3307 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003308
Chris Mason6567e832007-04-16 09:22:45 -04003309 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003310 old_size = btrfs_item_size_nr(leaf, slot);
3311 item = btrfs_item_nr(leaf, slot);
3312 btrfs_set_item_size(leaf, item, old_size + data_size);
3313 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003314
3315 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003316 if (btrfs_leaf_free_space(root, leaf) < 0) {
3317 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003318 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003319 }
Chris Mason6567e832007-04-16 09:22:45 -04003320 return ret;
3321}
3322
Chris Mason74123bd2007-02-02 11:05:29 -05003323/*
Chris Masond352ac62008-09-29 15:18:18 -04003324 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003325 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003326 * Returns the number of keys that were inserted.
3327 */
3328int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3329 struct btrfs_root *root,
3330 struct btrfs_path *path,
3331 struct btrfs_key *cpu_key, u32 *data_size,
3332 int nr)
3333{
3334 struct extent_buffer *leaf;
3335 struct btrfs_item *item;
3336 int ret = 0;
3337 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003338 int i;
3339 u32 nritems;
3340 u32 total_data = 0;
3341 u32 total_size = 0;
3342 unsigned int data_end;
3343 struct btrfs_disk_key disk_key;
3344 struct btrfs_key found_key;
3345
Yan Zheng87b29b22008-12-17 10:21:48 -05003346 for (i = 0; i < nr; i++) {
3347 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3348 BTRFS_LEAF_DATA_SIZE(root)) {
3349 break;
3350 nr = i;
3351 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003352 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003353 total_size += data_size[i] + sizeof(struct btrfs_item);
3354 }
3355 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003356
Josef Bacikf3465ca2008-11-12 14:19:50 -05003357 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3358 if (ret == 0)
3359 return -EEXIST;
3360 if (ret < 0)
3361 goto out;
3362
Josef Bacikf3465ca2008-11-12 14:19:50 -05003363 leaf = path->nodes[0];
3364
3365 nritems = btrfs_header_nritems(leaf);
3366 data_end = leaf_data_end(root, leaf);
3367
3368 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3369 for (i = nr; i >= 0; i--) {
3370 total_data -= data_size[i];
3371 total_size -= data_size[i] + sizeof(struct btrfs_item);
3372 if (total_size < btrfs_leaf_free_space(root, leaf))
3373 break;
3374 }
3375 nr = i;
3376 }
3377
3378 slot = path->slots[0];
3379 BUG_ON(slot < 0);
3380
3381 if (slot != nritems) {
3382 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3383
3384 item = btrfs_item_nr(leaf, slot);
3385 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3386
3387 /* figure out how many keys we can insert in here */
3388 total_data = data_size[0];
3389 for (i = 1; i < nr; i++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003390 if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0)
Josef Bacikf3465ca2008-11-12 14:19:50 -05003391 break;
3392 total_data += data_size[i];
3393 }
3394 nr = i;
3395
3396 if (old_data < data_end) {
3397 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003398 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003399 slot, old_data, data_end);
3400 BUG_ON(1);
3401 }
3402 /*
3403 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3404 */
3405 /* first correct the data pointers */
3406 WARN_ON(leaf->map_token);
3407 for (i = slot; i < nritems; i++) {
3408 u32 ioff;
3409
3410 item = btrfs_item_nr(leaf, i);
3411 if (!leaf->map_token) {
3412 map_extent_buffer(leaf, (unsigned long)item,
3413 sizeof(struct btrfs_item),
3414 &leaf->map_token, &leaf->kaddr,
3415 &leaf->map_start, &leaf->map_len,
3416 KM_USER1);
3417 }
3418
3419 ioff = btrfs_item_offset(leaf, item);
3420 btrfs_set_item_offset(leaf, item, ioff - total_data);
3421 }
3422 if (leaf->map_token) {
3423 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3424 leaf->map_token = NULL;
3425 }
3426
3427 /* shift the items */
3428 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3429 btrfs_item_nr_offset(slot),
3430 (nritems - slot) * sizeof(struct btrfs_item));
3431
3432 /* shift the data */
3433 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3434 data_end - total_data, btrfs_leaf_data(leaf) +
3435 data_end, old_data - data_end);
3436 data_end = old_data;
3437 } else {
3438 /*
3439 * this sucks but it has to be done, if we are inserting at
3440 * the end of the leaf only insert 1 of the items, since we
3441 * have no way of knowing whats on the next leaf and we'd have
3442 * to drop our current locks to figure it out
3443 */
3444 nr = 1;
3445 }
3446
3447 /* setup the item for the new data */
3448 for (i = 0; i < nr; i++) {
3449 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3450 btrfs_set_item_key(leaf, &disk_key, slot + i);
3451 item = btrfs_item_nr(leaf, slot + i);
3452 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3453 data_end -= data_size[i];
3454 btrfs_set_item_size(leaf, item, data_size[i]);
3455 }
3456 btrfs_set_header_nritems(leaf, nritems + nr);
3457 btrfs_mark_buffer_dirty(leaf);
3458
3459 ret = 0;
3460 if (slot == 0) {
3461 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3462 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3463 }
3464
3465 if (btrfs_leaf_free_space(root, leaf) < 0) {
3466 btrfs_print_leaf(root, leaf);
3467 BUG();
3468 }
3469out:
3470 if (!ret)
3471 ret = nr;
3472 return ret;
3473}
3474
3475/*
Chris Mason44871b12009-03-13 10:04:31 -04003476 * this is a helper for btrfs_insert_empty_items, the main goal here is
3477 * to save stack depth by doing the bulk of the work in a function
3478 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003479 */
Chris Mason44871b12009-03-13 10:04:31 -04003480static noinline_for_stack int
3481setup_items_for_insert(struct btrfs_trans_handle *trans,
3482 struct btrfs_root *root, struct btrfs_path *path,
3483 struct btrfs_key *cpu_key, u32 *data_size,
3484 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003485{
Chris Mason5f39d392007-10-15 16:14:19 -04003486 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003487 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003488 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003489 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003490 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003491 int ret;
3492 struct extent_buffer *leaf;
3493 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003494
Chris Mason5f39d392007-10-15 16:14:19 -04003495 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003496 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003497
Chris Mason5f39d392007-10-15 16:14:19 -04003498 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003499 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003500
Chris Masonf25956c2008-09-12 15:32:53 -04003501 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003502 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003503 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003504 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003505 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003506 }
Chris Mason5f39d392007-10-15 16:14:19 -04003507
Chris Masonbe0e5c02007-01-26 15:51:26 -05003508 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003509 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003510
Chris Mason5f39d392007-10-15 16:14:19 -04003511 if (old_data < data_end) {
3512 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003513 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003514 slot, old_data, data_end);
3515 BUG_ON(1);
3516 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003517 /*
3518 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3519 */
3520 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003521 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003522 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003523 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003524
Chris Mason5f39d392007-10-15 16:14:19 -04003525 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003526 if (!leaf->map_token) {
3527 map_extent_buffer(leaf, (unsigned long)item,
3528 sizeof(struct btrfs_item),
3529 &leaf->map_token, &leaf->kaddr,
3530 &leaf->map_start, &leaf->map_len,
3531 KM_USER1);
3532 }
3533
Chris Mason5f39d392007-10-15 16:14:19 -04003534 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003535 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003536 }
Chris Masondb945352007-10-15 16:15:53 -04003537 if (leaf->map_token) {
3538 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3539 leaf->map_token = NULL;
3540 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003541
3542 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003543 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003544 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003545 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003546
3547 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003548 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003549 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003550 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003551 data_end = old_data;
3552 }
Chris Mason5f39d392007-10-15 16:14:19 -04003553
Chris Mason62e27492007-03-15 12:56:47 -04003554 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003555 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 }
Chris Mason44871b12009-03-13 10:04:31 -04003563
Chris Mason9c583092008-01-29 15:15:18 -05003564 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003565
3566 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003567 if (slot == 0) {
Chris Mason44871b12009-03-13 10:04:31 -04003568 struct btrfs_disk_key disk_key;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003569 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003570 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003571 }
Chris Masonb9473432009-03-13 11:00:37 -04003572 btrfs_unlock_up_safe(path, 1);
3573 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003574
Chris Mason5f39d392007-10-15 16:14:19 -04003575 if (btrfs_leaf_free_space(root, leaf) < 0) {
3576 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003577 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003578 }
Chris Mason44871b12009-03-13 10:04:31 -04003579 return ret;
3580}
3581
3582/*
3583 * Given a key and some data, insert items into the tree.
3584 * This does all the path init required, making room in the tree if needed.
3585 */
3586int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3587 struct btrfs_root *root,
3588 struct btrfs_path *path,
3589 struct btrfs_key *cpu_key, u32 *data_size,
3590 int nr)
3591{
3592 struct extent_buffer *leaf;
3593 int ret = 0;
3594 int slot;
3595 int i;
3596 u32 total_size = 0;
3597 u32 total_data = 0;
3598
3599 for (i = 0; i < nr; i++)
3600 total_data += data_size[i];
3601
3602 total_size = total_data + (nr * sizeof(struct btrfs_item));
3603 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3604 if (ret == 0)
3605 return -EEXIST;
3606 if (ret < 0)
3607 goto out;
3608
3609 leaf = path->nodes[0];
3610 slot = path->slots[0];
3611 BUG_ON(slot < 0);
3612
3613 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3614 total_data, total_size, nr);
3615
Chris Masoned2ff2c2007-03-01 18:59:40 -05003616out:
Chris Mason62e27492007-03-15 12:56:47 -04003617 return ret;
3618}
3619
3620/*
3621 * Given a key and some data, insert an item into the tree.
3622 * This does all the path init required, making room in the tree if needed.
3623 */
Chris Masone089f052007-03-16 16:20:31 -04003624int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3625 *root, struct btrfs_key *cpu_key, void *data, u32
3626 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003627{
3628 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003629 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003630 struct extent_buffer *leaf;
3631 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003632
Chris Mason2c90e5d2007-04-02 10:50:19 -04003633 path = btrfs_alloc_path();
3634 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003635 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003636 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003637 leaf = path->nodes[0];
3638 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3639 write_extent_buffer(leaf, data, ptr, data_size);
3640 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003641 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003642 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003643 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003644}
3645
Chris Mason74123bd2007-02-02 11:05:29 -05003646/*
Chris Mason5de08d72007-02-24 06:24:44 -05003647 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003648 *
Chris Masond352ac62008-09-29 15:18:18 -04003649 * the tree should have been previously balanced so the deletion does not
3650 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003651 */
Chris Masone089f052007-03-16 16:20:31 -04003652static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3653 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003654{
Chris Mason5f39d392007-10-15 16:14:19 -04003655 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003656 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003657 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003658 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003659
Chris Mason5f39d392007-10-15 16:14:19 -04003660 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003661 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003662 memmove_extent_buffer(parent,
3663 btrfs_node_key_ptr_offset(slot),
3664 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003665 sizeof(struct btrfs_key_ptr) *
3666 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003667 }
Chris Mason7518a232007-03-12 12:01:18 -04003668 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003669 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003670 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003671 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003672 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003673 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003674 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003675 struct btrfs_disk_key disk_key;
3676
3677 btrfs_node_key(parent, &disk_key, 0);
3678 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003679 if (wret)
3680 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003681 }
Chris Masond6025572007-03-30 14:27:56 -04003682 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003683 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003684}
3685
Chris Mason74123bd2007-02-02 11:05:29 -05003686/*
Chris Mason323ac952008-10-01 19:05:46 -04003687 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003688 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04003689 *
3690 * This deletes the pointer in path->nodes[1] and frees the leaf
3691 * block extent. zero is returned if it all worked out, < 0 otherwise.
3692 *
3693 * The path must have already been setup for deleting the leaf, including
3694 * all the proper balancing. path->nodes[1] must be locked.
3695 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003696static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3697 struct btrfs_root *root,
3698 struct btrfs_path *path,
3699 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04003700{
3701 int ret;
Chris Mason323ac952008-10-01 19:05:46 -04003702
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003703 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Chris Mason323ac952008-10-01 19:05:46 -04003704 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3705 if (ret)
3706 return ret;
3707
Chris Mason4d081c42009-02-04 09:31:28 -05003708 /*
3709 * btrfs_free_extent is expensive, we want to make sure we
3710 * aren't holding any locks when we call it
3711 */
3712 btrfs_unlock_up_safe(path, 0);
3713
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003714 ret = btrfs_free_extent(trans, root, leaf->start, leaf->len,
3715 0, root->root_key.objectid, 0, 0);
Chris Mason323ac952008-10-01 19:05:46 -04003716 return ret;
3717}
3718/*
Chris Mason74123bd2007-02-02 11:05:29 -05003719 * delete the item at the leaf level in path. If that empties
3720 * the leaf, remove it from the tree
3721 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003722int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3723 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003724{
Chris Mason5f39d392007-10-15 16:14:19 -04003725 struct extent_buffer *leaf;
3726 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003727 int last_off;
3728 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003729 int ret = 0;
3730 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003731 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003732 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003733
Chris Mason5f39d392007-10-15 16:14:19 -04003734 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003735 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3736
3737 for (i = 0; i < nr; i++)
3738 dsize += btrfs_item_size_nr(leaf, slot + i);
3739
Chris Mason5f39d392007-10-15 16:14:19 -04003740 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003741
Chris Mason85e21ba2008-01-29 15:11:36 -05003742 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003743 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003744
3745 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003746 data_end + dsize,
3747 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003748 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003749
Chris Mason85e21ba2008-01-29 15:11:36 -05003750 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003751 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003752
Chris Mason5f39d392007-10-15 16:14:19 -04003753 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003754 if (!leaf->map_token) {
3755 map_extent_buffer(leaf, (unsigned long)item,
3756 sizeof(struct btrfs_item),
3757 &leaf->map_token, &leaf->kaddr,
3758 &leaf->map_start, &leaf->map_len,
3759 KM_USER1);
3760 }
Chris Mason5f39d392007-10-15 16:14:19 -04003761 ioff = btrfs_item_offset(leaf, item);
3762 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003763 }
Chris Masondb945352007-10-15 16:15:53 -04003764
3765 if (leaf->map_token) {
3766 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3767 leaf->map_token = NULL;
3768 }
3769
Chris Mason5f39d392007-10-15 16:14:19 -04003770 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003771 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003772 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003773 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003774 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003775 btrfs_set_header_nritems(leaf, nritems - nr);
3776 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003777
Chris Mason74123bd2007-02-02 11:05:29 -05003778 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003779 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003780 if (leaf == root->node) {
3781 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003782 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003783 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003784 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003785 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003786 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003787 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003788 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003789 struct btrfs_disk_key disk_key;
3790
3791 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003792 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003793 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003794 if (wret)
3795 ret = wret;
3796 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003797
Chris Mason74123bd2007-02-02 11:05:29 -05003798 /* delete the leaf if it is mostly empty */
Chris Masoncfbb9302009-05-18 10:41:58 -04003799 if (used < BTRFS_LEAF_DATA_SIZE(root) / 2) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003800 /* push_leaf_left fixes the path.
3801 * make sure the path still points to our leaf
3802 * for possible call to del_ptr below
3803 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003804 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003805 extent_buffer_get(leaf);
3806
Chris Masonb9473432009-03-13 11:00:37 -04003807 btrfs_set_path_blocking(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003808 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003809 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003810 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003811
3812 if (path->nodes[0] == leaf &&
3813 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003814 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003815 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003816 ret = wret;
3817 }
Chris Mason5f39d392007-10-15 16:14:19 -04003818
3819 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003820 path->slots[1] = slot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003821 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003822 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003823 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003824 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003825 /* if we're still in the path, make sure
3826 * we're dirty. Otherwise, one of the
3827 * push_leaf functions must have already
3828 * dirtied this buffer
3829 */
3830 if (path->nodes[0] == leaf)
3831 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003832 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003833 }
Chris Masond5719762007-03-23 10:01:08 -04003834 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003835 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003836 }
3837 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003838 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003839}
3840
Chris Mason97571fd2007-02-24 13:39:08 -05003841/*
Chris Mason925baed2008-06-25 16:01:30 -04003842 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003843 * returns 0 if it found something or 1 if there are no lesser leaves.
3844 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003845 *
3846 * This may release the path, and so you may lose any locks held at the
3847 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003848 */
3849int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3850{
Chris Mason925baed2008-06-25 16:01:30 -04003851 struct btrfs_key key;
3852 struct btrfs_disk_key found_key;
3853 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003854
Chris Mason925baed2008-06-25 16:01:30 -04003855 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003856
Chris Mason925baed2008-06-25 16:01:30 -04003857 if (key.offset > 0)
3858 key.offset--;
3859 else if (key.type > 0)
3860 key.type--;
3861 else if (key.objectid > 0)
3862 key.objectid--;
3863 else
3864 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003865
Chris Mason925baed2008-06-25 16:01:30 -04003866 btrfs_release_path(root, path);
3867 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3868 if (ret < 0)
3869 return ret;
3870 btrfs_item_key(path->nodes[0], &found_key, 0);
3871 ret = comp_keys(&found_key, &key);
3872 if (ret < 0)
3873 return 0;
3874 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003875}
3876
Chris Mason3f157a22008-06-25 16:01:31 -04003877/*
3878 * A helper function to walk down the tree starting at min_key, and looking
3879 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003880 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003881 *
3882 * This does not cow, but it does stuff the starting key it finds back
3883 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3884 * key and get a writable path.
3885 *
3886 * This does lock as it descends, and path->keep_locks should be set
3887 * to 1 by the caller.
3888 *
3889 * This honors path->lowest_level to prevent descent past a given level
3890 * of the tree.
3891 *
Chris Masond352ac62008-09-29 15:18:18 -04003892 * min_trans indicates the oldest transaction that you are interested
3893 * in walking through. Any nodes or leaves older than min_trans are
3894 * skipped over (without reading them).
3895 *
Chris Mason3f157a22008-06-25 16:01:31 -04003896 * returns zero if something useful was found, < 0 on error and 1 if there
3897 * was nothing in the tree that matched the search criteria.
3898 */
3899int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003900 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003901 struct btrfs_path *path, int cache_only,
3902 u64 min_trans)
3903{
3904 struct extent_buffer *cur;
3905 struct btrfs_key found_key;
3906 int slot;
Yan96524802008-07-24 12:19:49 -04003907 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003908 u32 nritems;
3909 int level;
3910 int ret = 1;
3911
Chris Mason934d3752008-12-08 16:43:10 -05003912 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003913again:
3914 cur = btrfs_lock_root_node(root);
3915 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003916 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003917 path->nodes[level] = cur;
3918 path->locks[level] = 1;
3919
3920 if (btrfs_header_generation(cur) < min_trans) {
3921 ret = 1;
3922 goto out;
3923 }
Chris Masond3977122009-01-05 21:25:51 -05003924 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003925 nritems = btrfs_header_nritems(cur);
3926 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003927 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003928
Chris Mason323ac952008-10-01 19:05:46 -04003929 /* at the lowest level, we're done, setup the path and exit */
3930 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003931 if (slot >= nritems)
3932 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003933 ret = 0;
3934 path->slots[level] = slot;
3935 btrfs_item_key_to_cpu(cur, &found_key, slot);
3936 goto out;
3937 }
Yan96524802008-07-24 12:19:49 -04003938 if (sret && slot > 0)
3939 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003940 /*
3941 * check this node pointer against the cache_only and
3942 * min_trans parameters. If it isn't in cache or is too
3943 * old, skip to the next one.
3944 */
Chris Masond3977122009-01-05 21:25:51 -05003945 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003946 u64 blockptr;
3947 u64 gen;
3948 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003949 struct btrfs_disk_key disk_key;
3950
Chris Mason3f157a22008-06-25 16:01:31 -04003951 blockptr = btrfs_node_blockptr(cur, slot);
3952 gen = btrfs_node_ptr_generation(cur, slot);
3953 if (gen < min_trans) {
3954 slot++;
3955 continue;
3956 }
3957 if (!cache_only)
3958 break;
3959
Chris Masone02119d2008-09-05 16:13:11 -04003960 if (max_key) {
3961 btrfs_node_key(cur, &disk_key, slot);
3962 if (comp_keys(&disk_key, max_key) >= 0) {
3963 ret = 1;
3964 goto out;
3965 }
3966 }
3967
Chris Mason3f157a22008-06-25 16:01:31 -04003968 tmp = btrfs_find_tree_block(root, blockptr,
3969 btrfs_level_size(root, level - 1));
3970
3971 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3972 free_extent_buffer(tmp);
3973 break;
3974 }
3975 if (tmp)
3976 free_extent_buffer(tmp);
3977 slot++;
3978 }
Chris Masone02119d2008-09-05 16:13:11 -04003979find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003980 /*
3981 * we didn't find a candidate key in this node, walk forward
3982 * and find another one
3983 */
3984 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003985 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003986 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04003987 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04003988 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04003989 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04003990 btrfs_release_path(root, path);
3991 goto again;
3992 } else {
3993 goto out;
3994 }
3995 }
3996 /* save our key for returning back */
3997 btrfs_node_key_to_cpu(cur, &found_key, slot);
3998 path->slots[level] = slot;
3999 if (level == path->lowest_level) {
4000 ret = 0;
4001 unlock_up(path, level, 1);
4002 goto out;
4003 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004004 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004005 cur = read_node_slot(root, cur, slot);
4006
4007 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004008
Chris Mason3f157a22008-06-25 16:01:31 -04004009 path->locks[level - 1] = 1;
4010 path->nodes[level - 1] = cur;
4011 unlock_up(path, level, 1);
Chris Mason4008c042009-02-12 14:09:45 -05004012 btrfs_clear_path_blocking(path, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004013 }
4014out:
4015 if (ret == 0)
4016 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004017 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004018 return ret;
4019}
4020
4021/*
4022 * this is similar to btrfs_next_leaf, but does not try to preserve
4023 * and fixup the path. It looks for and returns the next key in the
4024 * tree based on the current path and the cache_only and min_trans
4025 * parameters.
4026 *
4027 * 0 is returned if another key is found, < 0 if there are any errors
4028 * and 1 is returned if there are no higher keys in the tree
4029 *
4030 * path->keep_locks should be set to 1 on the search made before
4031 * calling this function.
4032 */
Chris Masone7a84562008-06-25 16:01:31 -04004033int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Yan Zheng33c66f42009-07-22 09:59:00 -04004034 struct btrfs_key *key, int level,
Chris Mason3f157a22008-06-25 16:01:31 -04004035 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004036{
Chris Masone7a84562008-06-25 16:01:31 -04004037 int slot;
4038 struct extent_buffer *c;
4039
Chris Mason934d3752008-12-08 16:43:10 -05004040 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004041 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004042 if (!path->nodes[level])
4043 return 1;
4044
4045 slot = path->slots[level] + 1;
4046 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004047next:
Chris Masone7a84562008-06-25 16:01:31 -04004048 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04004049 int ret;
4050 int orig_lowest;
4051 struct btrfs_key cur_key;
4052 if (level + 1 >= BTRFS_MAX_LEVEL ||
4053 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04004054 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04004055
4056 if (path->locks[level + 1]) {
4057 level++;
4058 continue;
4059 }
4060
4061 slot = btrfs_header_nritems(c) - 1;
4062 if (level == 0)
4063 btrfs_item_key_to_cpu(c, &cur_key, slot);
4064 else
4065 btrfs_node_key_to_cpu(c, &cur_key, slot);
4066
4067 orig_lowest = path->lowest_level;
4068 btrfs_release_path(root, path);
4069 path->lowest_level = level;
4070 ret = btrfs_search_slot(NULL, root, &cur_key, path,
4071 0, 0);
4072 path->lowest_level = orig_lowest;
4073 if (ret < 0)
4074 return ret;
4075
4076 c = path->nodes[level];
4077 slot = path->slots[level];
4078 if (ret == 0)
4079 slot++;
4080 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04004081 }
Yan Zheng33c66f42009-07-22 09:59:00 -04004082
Chris Masone7a84562008-06-25 16:01:31 -04004083 if (level == 0)
4084 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004085 else {
4086 u64 blockptr = btrfs_node_blockptr(c, slot);
4087 u64 gen = btrfs_node_ptr_generation(c, slot);
4088
4089 if (cache_only) {
4090 struct extent_buffer *cur;
4091 cur = btrfs_find_tree_block(root, blockptr,
4092 btrfs_level_size(root, level - 1));
4093 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4094 slot++;
4095 if (cur)
4096 free_extent_buffer(cur);
4097 goto next;
4098 }
4099 free_extent_buffer(cur);
4100 }
4101 if (gen < min_trans) {
4102 slot++;
4103 goto next;
4104 }
Chris Masone7a84562008-06-25 16:01:31 -04004105 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004106 }
Chris Masone7a84562008-06-25 16:01:31 -04004107 return 0;
4108 }
4109 return 1;
4110}
4111
Chris Mason7bb86312007-12-11 09:25:06 -05004112/*
Chris Mason925baed2008-06-25 16:01:30 -04004113 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004114 * returns 0 if it found something or 1 if there are no greater leaves.
4115 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004116 */
Chris Mason234b63a2007-03-13 10:46:10 -04004117int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004118{
4119 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04004120 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04004121 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04004122 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04004123 struct btrfs_key key;
4124 u32 nritems;
4125 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04004126 int old_spinning = path->leave_spinning;
4127 int force_blocking = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004128
4129 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004130 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004131 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004132
Chris Mason8e73f272009-04-03 10:14:18 -04004133 /*
4134 * we take the blocks in an order that upsets lockdep. Using
4135 * blocking mode is the only way around it.
4136 */
4137#ifdef CONFIG_DEBUG_LOCK_ALLOC
4138 force_blocking = 1;
4139#endif
Chris Mason925baed2008-06-25 16:01:30 -04004140
Chris Mason8e73f272009-04-03 10:14:18 -04004141 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4142again:
4143 level = 1;
4144 next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004145 btrfs_release_path(root, path);
Chris Mason8e73f272009-04-03 10:14:18 -04004146
Chris Masona2135012008-06-25 16:01:30 -04004147 path->keep_locks = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004148
4149 if (!force_blocking)
4150 path->leave_spinning = 1;
4151
Chris Mason925baed2008-06-25 16:01:30 -04004152 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4153 path->keep_locks = 0;
4154
4155 if (ret < 0)
4156 return ret;
4157
Chris Masona2135012008-06-25 16:01:30 -04004158 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004159 /*
4160 * by releasing the path above we dropped all our locks. A balance
4161 * could have added more items next to the key that used to be
4162 * at the very end of the block. So, check again here and
4163 * advance the path if there are now more items available.
4164 */
Chris Masona2135012008-06-25 16:01:30 -04004165 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04004166 if (ret == 0)
4167 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04004168 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004169 goto done;
4170 }
Chris Masond97e63b2007-02-20 16:40:44 -05004171
Chris Masond3977122009-01-05 21:25:51 -05004172 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04004173 if (!path->nodes[level]) {
4174 ret = 1;
4175 goto done;
4176 }
Chris Mason5f39d392007-10-15 16:14:19 -04004177
Chris Masond97e63b2007-02-20 16:40:44 -05004178 slot = path->slots[level] + 1;
4179 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004180 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004181 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04004182 if (level == BTRFS_MAX_LEVEL) {
4183 ret = 1;
4184 goto done;
4185 }
Chris Masond97e63b2007-02-20 16:40:44 -05004186 continue;
4187 }
Chris Mason5f39d392007-10-15 16:14:19 -04004188
Chris Mason925baed2008-06-25 16:01:30 -04004189 if (next) {
4190 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004191 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004192 }
Chris Mason5f39d392007-10-15 16:14:19 -04004193
Chris Mason8e73f272009-04-03 10:14:18 -04004194 next = c;
4195 ret = read_block_for_search(NULL, root, path, &next, level,
4196 slot, &key);
4197 if (ret == -EAGAIN)
4198 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04004199
Chris Mason76a05b32009-05-14 13:24:30 -04004200 if (ret < 0) {
4201 btrfs_release_path(root, path);
4202 goto done;
4203 }
4204
Chris Mason5cd57b22008-06-25 16:01:30 -04004205 if (!path->skip_locking) {
Chris Mason8e73f272009-04-03 10:14:18 -04004206 ret = btrfs_try_spin_lock(next);
4207 if (!ret) {
4208 btrfs_set_path_blocking(path);
4209 btrfs_tree_lock(next);
4210 if (!force_blocking)
4211 btrfs_clear_path_blocking(path, next);
4212 }
4213 if (force_blocking)
4214 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004215 }
Chris Masond97e63b2007-02-20 16:40:44 -05004216 break;
4217 }
4218 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004219 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004220 level--;
4221 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004222 if (path->locks[level])
4223 btrfs_tree_unlock(c);
Chris Mason8e73f272009-04-03 10:14:18 -04004224
Chris Mason5f39d392007-10-15 16:14:19 -04004225 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004226 path->nodes[level] = next;
4227 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004228 if (!path->skip_locking)
4229 path->locks[level] = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004230
Chris Masond97e63b2007-02-20 16:40:44 -05004231 if (!level)
4232 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004233
Chris Mason8e73f272009-04-03 10:14:18 -04004234 ret = read_block_for_search(NULL, root, path, &next, level,
4235 0, &key);
4236 if (ret == -EAGAIN)
4237 goto again;
4238
Chris Mason76a05b32009-05-14 13:24:30 -04004239 if (ret < 0) {
4240 btrfs_release_path(root, path);
4241 goto done;
4242 }
4243
Chris Mason5cd57b22008-06-25 16:01:30 -04004244 if (!path->skip_locking) {
Chris Masonb9447ef2009-03-09 11:45:38 -04004245 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04004246 ret = btrfs_try_spin_lock(next);
4247 if (!ret) {
4248 btrfs_set_path_blocking(path);
4249 btrfs_tree_lock(next);
4250 if (!force_blocking)
4251 btrfs_clear_path_blocking(path, next);
4252 }
4253 if (force_blocking)
4254 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004255 }
Chris Masond97e63b2007-02-20 16:40:44 -05004256 }
Chris Mason8e73f272009-04-03 10:14:18 -04004257 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004258done:
4259 unlock_up(path, 0, 1);
Chris Mason8e73f272009-04-03 10:14:18 -04004260 path->leave_spinning = old_spinning;
4261 if (!old_spinning)
4262 btrfs_set_path_blocking(path);
4263
4264 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05004265}
Chris Mason0b86a832008-03-24 15:01:56 -04004266
Chris Mason3f157a22008-06-25 16:01:31 -04004267/*
4268 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4269 * searching until it gets past min_objectid or finds an item of 'type'
4270 *
4271 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4272 */
Chris Mason0b86a832008-03-24 15:01:56 -04004273int btrfs_previous_item(struct btrfs_root *root,
4274 struct btrfs_path *path, u64 min_objectid,
4275 int type)
4276{
4277 struct btrfs_key found_key;
4278 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004279 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004280 int ret;
4281
Chris Masond3977122009-01-05 21:25:51 -05004282 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004283 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004284 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004285 ret = btrfs_prev_leaf(root, path);
4286 if (ret != 0)
4287 return ret;
4288 } else {
4289 path->slots[0]--;
4290 }
4291 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004292 nritems = btrfs_header_nritems(leaf);
4293 if (nritems == 0)
4294 return 1;
4295 if (path->slots[0] == nritems)
4296 path->slots[0]--;
4297
Chris Mason0b86a832008-03-24 15:01:56 -04004298 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4299 if (found_key.type == type)
4300 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004301 if (found_key.objectid < min_objectid)
4302 break;
4303 if (found_key.objectid == min_objectid &&
4304 found_key.type < type)
4305 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004306 }
4307 return 1;
4308}