blob: 2b960278a2f959a34a5db412042bd8e86cdceb5d [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
560 if (k1.objectid > k2->objectid)
561 return 1;
562 if (k1.objectid < k2->objectid)
563 return -1;
564 if (k1.type > k2->type)
565 return 1;
566 if (k1.type < k2->type)
567 return -1;
568 if (k1.offset > k2->offset)
569 return 1;
570 if (k1.offset < k2->offset)
571 return -1;
572 return 0;
573}
574
Josef Bacikf3465ca2008-11-12 14:19:50 -0500575/*
576 * same as comp_keys only with two btrfs_key's
577 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400578int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -0500579{
580 if (k1->objectid > k2->objectid)
581 return 1;
582 if (k1->objectid < k2->objectid)
583 return -1;
584 if (k1->type > k2->type)
585 return 1;
586 if (k1->type < k2->type)
587 return -1;
588 if (k1->offset > k2->offset)
589 return 1;
590 if (k1->offset < k2->offset)
591 return -1;
592 return 0;
593}
Chris Mason081e9572007-11-06 10:26:24 -0500594
Chris Masond352ac62008-09-29 15:18:18 -0400595/*
596 * this is used by the defrag code to go through all the
597 * leaves pointed to by a node and reallocate them so that
598 * disk order is close to key order
599 */
Chris Mason6702ed42007-08-07 16:15:09 -0400600int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400601 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400602 int start_slot, int cache_only, u64 *last_ret,
603 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400604{
Chris Mason6b800532007-10-15 16:17:34 -0400605 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400606 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400607 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400608 u64 search_start = *last_ret;
609 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400610 u64 other;
611 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400612 int end_slot;
613 int i;
614 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400615 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400616 int uptodate;
617 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500618 int progress_passed = 0;
619 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400620
Chris Mason5708b952007-10-25 15:43:18 -0400621 parent_level = btrfs_header_level(parent);
622 if (cache_only && parent_level != 1)
623 return 0;
624
Chris Masond3977122009-01-05 21:25:51 -0500625 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400626 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500627 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400628 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400629
Chris Mason6b800532007-10-15 16:17:34 -0400630 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400631 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400632 end_slot = parent_nritems;
633
634 if (parent_nritems == 1)
635 return 0;
636
Chris Masonb4ce94d2009-02-04 09:25:08 -0500637 btrfs_set_lock_blocking(parent);
638
Chris Mason6702ed42007-08-07 16:15:09 -0400639 for (i = start_slot; i < end_slot; i++) {
640 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400641
Chris Mason5708b952007-10-25 15:43:18 -0400642 if (!parent->map_token) {
643 map_extent_buffer(parent,
644 btrfs_node_key_ptr_offset(i),
645 sizeof(struct btrfs_key_ptr),
646 &parent->map_token, &parent->kaddr,
647 &parent->map_start, &parent->map_len,
648 KM_USER1);
649 }
Chris Mason081e9572007-11-06 10:26:24 -0500650 btrfs_node_key(parent, &disk_key, i);
651 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
652 continue;
653
654 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400655 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400656 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400657 if (last_block == 0)
658 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400659
Chris Mason6702ed42007-08-07 16:15:09 -0400660 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400661 other = btrfs_node_blockptr(parent, i - 1);
662 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400663 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400664 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400665 other = btrfs_node_blockptr(parent, i + 1);
666 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400667 }
Chris Masone9d0b132007-08-10 14:06:19 -0400668 if (close) {
669 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400670 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400671 }
Chris Mason5708b952007-10-25 15:43:18 -0400672 if (parent->map_token) {
673 unmap_extent_buffer(parent, parent->map_token,
674 KM_USER1);
675 parent->map_token = NULL;
676 }
Chris Mason6702ed42007-08-07 16:15:09 -0400677
Chris Mason6b800532007-10-15 16:17:34 -0400678 cur = btrfs_find_tree_block(root, blocknr, blocksize);
679 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400680 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400681 else
682 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400683 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400684 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400685 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400686 continue;
687 }
Chris Mason6b800532007-10-15 16:17:34 -0400688 if (!cur) {
689 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400690 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400691 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400692 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400693 }
Chris Mason6702ed42007-08-07 16:15:09 -0400694 }
Chris Masone9d0b132007-08-10 14:06:19 -0400695 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400696 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400697
Chris Masone7a84562008-06-25 16:01:31 -0400698 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500699 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400700 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400701 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400702 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400703 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400704 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400705 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400706 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400707 break;
Yan252c38f2007-08-29 09:11:44 -0400708 }
Chris Masone7a84562008-06-25 16:01:31 -0400709 search_start = cur->start;
710 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400711 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400712 btrfs_tree_unlock(cur);
713 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400714 }
Chris Mason5708b952007-10-25 15:43:18 -0400715 if (parent->map_token) {
716 unmap_extent_buffer(parent, parent->map_token,
717 KM_USER1);
718 parent->map_token = NULL;
719 }
Chris Mason6702ed42007-08-07 16:15:09 -0400720 return err;
721}
722
Chris Mason74123bd2007-02-02 11:05:29 -0500723/*
724 * The leaf data grows from end-to-front in the node.
725 * this returns the address of the start of the last item,
726 * which is the stop of the leaf data stack
727 */
Chris Mason123abc82007-03-14 14:14:43 -0400728static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400729 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500730{
Chris Mason5f39d392007-10-15 16:14:19 -0400731 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500732 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400733 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400734 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500735}
736
Chris Masond352ac62008-09-29 15:18:18 -0400737/*
738 * extra debugging checks to make sure all the items in a key are
739 * well formed and in the proper order
740 */
Chris Mason123abc82007-03-14 14:14:43 -0400741static int check_node(struct btrfs_root *root, struct btrfs_path *path,
742 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500743{
Chris Mason5f39d392007-10-15 16:14:19 -0400744 struct extent_buffer *parent = NULL;
745 struct extent_buffer *node = path->nodes[level];
746 struct btrfs_disk_key parent_key;
747 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500748 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400749 int slot;
750 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400751 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500752
753 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400754 parent = path->nodes[level + 1];
Aneesha1f39632007-07-11 10:03:27 -0400755
Chris Mason8d7be552007-05-10 11:24:42 -0400756 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400757 BUG_ON(nritems == 0);
758 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400759 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400760 btrfs_node_key(parent, &parent_key, parent_slot);
761 btrfs_node_key(node, &node_key, 0);
762 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400763 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400764 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400765 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500766 }
Chris Mason123abc82007-03-14 14:14:43 -0400767 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400768 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400769 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
770 btrfs_node_key(node, &node_key, slot);
771 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400772 }
773 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400774 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
775 btrfs_node_key(node, &node_key, slot);
776 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500777 }
778 return 0;
779}
780
Chris Masond352ac62008-09-29 15:18:18 -0400781/*
782 * extra checking to make sure all the items in a leaf are
783 * well formed and in the proper order
784 */
Chris Mason123abc82007-03-14 14:14:43 -0400785static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
786 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500787{
Chris Mason5f39d392007-10-15 16:14:19 -0400788 struct extent_buffer *leaf = path->nodes[level];
789 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500790 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400791 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400792 struct btrfs_disk_key parent_key;
793 struct btrfs_disk_key leaf_key;
794 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400795
Chris Mason5f39d392007-10-15 16:14:19 -0400796 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500797
798 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400799 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400800
801 if (nritems == 0)
802 return 0;
803
804 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400805 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400806 btrfs_node_key(parent, &parent_key, parent_slot);
807 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400808
Chris Mason5f39d392007-10-15 16:14:19 -0400809 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400810 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400811 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400812 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500813 }
Chris Mason5f39d392007-10-15 16:14:19 -0400814 if (slot != 0 && slot < nritems - 1) {
815 btrfs_item_key(leaf, &leaf_key, slot);
816 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
817 if (comp_keys(&leaf_key, &cpukey) <= 0) {
818 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500819 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400820 BUG_ON(1);
821 }
822 if (btrfs_item_offset_nr(leaf, slot - 1) !=
823 btrfs_item_end_nr(leaf, slot)) {
824 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500825 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400826 BUG_ON(1);
827 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500828 }
Chris Mason8d7be552007-05-10 11:24:42 -0400829 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400830 btrfs_item_key(leaf, &leaf_key, slot);
831 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
832 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
833 if (btrfs_item_offset_nr(leaf, slot) !=
834 btrfs_item_end_nr(leaf, slot + 1)) {
835 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500836 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400837 BUG_ON(1);
838 }
Chris Mason8d7be552007-05-10 11:24:42 -0400839 }
Chris Mason5f39d392007-10-15 16:14:19 -0400840 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
841 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500842 return 0;
843}
844
Chris Masond3977122009-01-05 21:25:51 -0500845static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500846 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500847{
Chris Mason85d824c2008-04-10 10:23:19 -0400848 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500849 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400850 return check_leaf(root, path, level);
851 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500852}
853
Chris Mason74123bd2007-02-02 11:05:29 -0500854/*
Chris Mason5f39d392007-10-15 16:14:19 -0400855 * search for key in the extent_buffer. The items start at offset p,
856 * and they are item_size apart. There are 'max' items in p.
857 *
Chris Mason74123bd2007-02-02 11:05:29 -0500858 * the slot in the array is returned via slot, and it points to
859 * the place where you would insert key if it is not found in
860 * the array.
861 *
862 * slot may point to max if the key is bigger than all of the keys
863 */
Chris Masone02119d2008-09-05 16:13:11 -0400864static noinline int generic_bin_search(struct extent_buffer *eb,
865 unsigned long p,
866 int item_size, struct btrfs_key *key,
867 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500868{
869 int low = 0;
870 int high = max;
871 int mid;
872 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400873 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400874 struct btrfs_disk_key unaligned;
875 unsigned long offset;
876 char *map_token = NULL;
877 char *kaddr = NULL;
878 unsigned long map_start = 0;
879 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400880 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500881
Chris Masond3977122009-01-05 21:25:51 -0500882 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500883 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400884 offset = p + mid * item_size;
885
886 if (!map_token || offset < map_start ||
887 (offset + sizeof(struct btrfs_disk_key)) >
888 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400889 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400890 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400891 map_token = NULL;
892 }
Chris Mason934d3752008-12-08 16:43:10 -0500893
894 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400895 sizeof(struct btrfs_disk_key),
896 &map_token, &kaddr,
897 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400898
Chris Mason479965d2007-10-15 16:14:27 -0400899 if (!err) {
900 tmp = (struct btrfs_disk_key *)(kaddr + offset -
901 map_start);
902 } else {
903 read_extent_buffer(eb, &unaligned,
904 offset, sizeof(unaligned));
905 tmp = &unaligned;
906 }
907
Chris Mason5f39d392007-10-15 16:14:19 -0400908 } else {
909 tmp = (struct btrfs_disk_key *)(kaddr + offset -
910 map_start);
911 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500912 ret = comp_keys(tmp, key);
913
914 if (ret < 0)
915 low = mid + 1;
916 else if (ret > 0)
917 high = mid;
918 else {
919 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400920 if (map_token)
921 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500922 return 0;
923 }
924 }
925 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400926 if (map_token)
927 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500928 return 1;
929}
930
Chris Mason97571fd2007-02-24 13:39:08 -0500931/*
932 * simple bin_search frontend that does the right thing for
933 * leaves vs nodes
934 */
Chris Mason5f39d392007-10-15 16:14:19 -0400935static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
936 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500937{
Chris Mason5f39d392007-10-15 16:14:19 -0400938 if (level == 0) {
939 return generic_bin_search(eb,
940 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400941 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400942 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400943 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500944 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400945 return generic_bin_search(eb,
946 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400947 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400948 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400949 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500950 }
951 return -1;
952}
953
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400954int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
955 int level, int *slot)
956{
957 return bin_search(eb, key, level, slot);
958}
959
Chris Masond352ac62008-09-29 15:18:18 -0400960/* given a node and slot number, this reads the blocks it points to. The
961 * extent buffer is returned with a reference taken (but unlocked).
962 * NULL is returned on error.
963 */
Chris Masone02119d2008-09-05 16:13:11 -0400964static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400965 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500966{
Chris Masonca7a79a2008-05-12 12:59:19 -0400967 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500968 if (slot < 0)
969 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400970 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500971 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400972
973 BUG_ON(level == 0);
974
Chris Masondb945352007-10-15 16:15:53 -0400975 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400976 btrfs_level_size(root, level - 1),
977 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500978}
979
Chris Masond352ac62008-09-29 15:18:18 -0400980/*
981 * node level balancing, used to make sure nodes are in proper order for
982 * item deletion. We balance from the top down, so we have to make sure
983 * that a deletion won't leave an node completely empty later on.
984 */
Chris Masone02119d2008-09-05 16:13:11 -0400985static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500986 struct btrfs_root *root,
987 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500988{
Chris Mason5f39d392007-10-15 16:14:19 -0400989 struct extent_buffer *right = NULL;
990 struct extent_buffer *mid;
991 struct extent_buffer *left = NULL;
992 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500993 int ret = 0;
994 int wret;
995 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500996 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -0400997 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500998 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500999
1000 if (level == 0)
1001 return 0;
1002
Chris Mason5f39d392007-10-15 16:14:19 -04001003 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001004
Chris Mason925baed2008-06-25 16:01:30 -04001005 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -05001006 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1007
Chris Mason1d4f8a02007-03-13 09:28:32 -04001008 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001009
Chris Mason234b63a2007-03-13 10:46:10 -04001010 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001011 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -05001012 pslot = path->slots[level + 1];
1013
Chris Mason40689472007-03-17 14:29:23 -04001014 /*
1015 * deal with the case where there is only one pointer in the root
1016 * by promoting the node below to a root
1017 */
Chris Mason5f39d392007-10-15 16:14:19 -04001018 if (!parent) {
1019 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001020
Chris Mason5f39d392007-10-15 16:14:19 -04001021 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001022 return 0;
1023
1024 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001025 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -05001026 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -04001027 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001028 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001029 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan2f375ab2008-02-01 14:58:07 -05001030 BUG_ON(ret);
1031
Chris Mason925baed2008-06-25 16:01:30 -04001032 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -05001033 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -04001034 spin_unlock(&root->node_lock);
1035
Chris Mason0b86a832008-03-24 15:01:56 -04001036 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001037 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001038
Chris Mason925baed2008-06-25 16:01:30 -04001039 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001040 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001041 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001042 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001043 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001044 free_extent_buffer(mid);
Chris Mason7bb86312007-12-11 09:25:06 -05001045 ret = btrfs_free_extent(trans, root, mid->start, mid->len,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 0, root->root_key.objectid, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001047 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -04001048 free_extent_buffer(mid);
Chris Masondb945352007-10-15 16:15:53 -04001049 return ret;
Chris Masonbb803952007-03-01 12:04:21 -05001050 }
Chris Mason5f39d392007-10-15 16:14:19 -04001051 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001052 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001053 return 0;
1054
Chris Masona4b6e072009-03-16 10:59:57 -04001055 if (trans->transaction->delayed_refs.flushing &&
1056 btrfs_header_nritems(mid) > 2)
1057 return 0;
1058
Chris Mason5f39d392007-10-15 16:14:19 -04001059 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001060 err_on_enospc = 1;
1061
Chris Mason5f39d392007-10-15 16:14:19 -04001062 left = read_node_slot(root, parent, pslot - 1);
1063 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001064 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001065 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001066 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001067 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001068 if (wret) {
1069 ret = wret;
1070 goto enospc;
1071 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001072 }
Chris Mason5f39d392007-10-15 16:14:19 -04001073 right = read_node_slot(root, parent, pslot + 1);
1074 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001075 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001076 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001077 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001078 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001079 if (wret) {
1080 ret = wret;
1081 goto enospc;
1082 }
1083 }
1084
1085 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001086 if (left) {
1087 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001088 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001089 if (wret < 0)
1090 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001091 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -04001092 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -05001093 }
Chris Mason79f95c82007-03-01 15:16:26 -05001094
1095 /*
1096 * then try to empty the right most buffer into the middle
1097 */
Chris Mason5f39d392007-10-15 16:14:19 -04001098 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001099 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001100 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001101 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001102 if (btrfs_header_nritems(right) == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001103 u64 bytenr = right->start;
1104 u32 blocksize = right->len;
1105
Chris Mason5f39d392007-10-15 16:14:19 -04001106 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001107 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001108 free_extent_buffer(right);
Chris Masonbb803952007-03-01 12:04:21 -05001109 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001110 wret = del_ptr(trans, root, path, level + 1, pslot +
1111 1);
Chris Masonbb803952007-03-01 12:04:21 -05001112 if (wret)
1113 ret = wret;
Chris Masondb945352007-10-15 16:15:53 -04001114 wret = btrfs_free_extent(trans, root, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001115 blocksize, 0,
1116 root->root_key.objectid,
1117 level, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001118 if (wret)
1119 ret = wret;
1120 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001121 struct btrfs_disk_key right_key;
1122 btrfs_node_key(right, &right_key, 0);
1123 btrfs_set_node_key(parent, &right_key, pslot + 1);
1124 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001125 }
1126 }
Chris Mason5f39d392007-10-15 16:14:19 -04001127 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001128 /*
1129 * we're not allowed to leave a node with one item in the
1130 * tree during a delete. A deletion from lower in the tree
1131 * could try to delete the only pointer in this node.
1132 * So, pull some keys from the left.
1133 * There has to be a left pointer at this point because
1134 * otherwise we would have pulled some pointers from the
1135 * right
1136 */
Chris Mason5f39d392007-10-15 16:14:19 -04001137 BUG_ON(!left);
1138 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001139 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001140 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001141 goto enospc;
1142 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001143 if (wret == 1) {
1144 wret = push_node_left(trans, root, left, mid, 1);
1145 if (wret < 0)
1146 ret = wret;
1147 }
Chris Mason79f95c82007-03-01 15:16:26 -05001148 BUG_ON(wret == 1);
1149 }
Chris Mason5f39d392007-10-15 16:14:19 -04001150 if (btrfs_header_nritems(mid) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001151 /* we've managed to empty the middle node, drop it */
Chris Masondb945352007-10-15 16:15:53 -04001152 u64 bytenr = mid->start;
1153 u32 blocksize = mid->len;
Chris Mason925baed2008-06-25 16:01:30 -04001154
Chris Mason5f39d392007-10-15 16:14:19 -04001155 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001156 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001157 free_extent_buffer(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001158 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001159 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001160 if (wret)
1161 ret = wret;
Chris Mason7bb86312007-12-11 09:25:06 -05001162 wret = btrfs_free_extent(trans, root, bytenr, blocksize,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001163 0, root->root_key.objectid,
1164 level, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001165 if (wret)
1166 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -05001167 } else {
1168 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001169 struct btrfs_disk_key mid_key;
1170 btrfs_node_key(mid, &mid_key, 0);
1171 btrfs_set_node_key(parent, &mid_key, pslot);
1172 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001173 }
Chris Masonbb803952007-03-01 12:04:21 -05001174
Chris Mason79f95c82007-03-01 15:16:26 -05001175 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001176 if (left) {
1177 if (btrfs_header_nritems(left) > orig_slot) {
1178 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001179 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001180 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001181 path->slots[level + 1] -= 1;
1182 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001183 if (mid) {
1184 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001185 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001186 }
Chris Masonbb803952007-03-01 12:04:21 -05001187 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001188 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001189 path->slots[level] = orig_slot;
1190 }
1191 }
Chris Mason79f95c82007-03-01 15:16:26 -05001192 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001193 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001194 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001195 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001196 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001197enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001198 if (right) {
1199 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001200 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001201 }
1202 if (left) {
1203 if (path->nodes[level] != left)
1204 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001205 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001206 }
Chris Masonbb803952007-03-01 12:04:21 -05001207 return ret;
1208}
1209
Chris Masond352ac62008-09-29 15:18:18 -04001210/* Node balancing for insertion. Here we only split or push nodes around
1211 * when they are completely full. This is also done top down, so we
1212 * have to be pessimistic.
1213 */
Chris Masond3977122009-01-05 21:25:51 -05001214static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001215 struct btrfs_root *root,
1216 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001217{
Chris Mason5f39d392007-10-15 16:14:19 -04001218 struct extent_buffer *right = NULL;
1219 struct extent_buffer *mid;
1220 struct extent_buffer *left = NULL;
1221 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001222 int ret = 0;
1223 int wret;
1224 int pslot;
1225 int orig_slot = path->slots[level];
1226 u64 orig_ptr;
1227
1228 if (level == 0)
1229 return 1;
1230
Chris Mason5f39d392007-10-15 16:14:19 -04001231 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001232 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001233 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1234
1235 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001236 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001237 pslot = path->slots[level + 1];
1238
Chris Mason5f39d392007-10-15 16:14:19 -04001239 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001240 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001241
Chris Mason5f39d392007-10-15 16:14:19 -04001242 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001243
1244 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001245 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001246 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001247
1248 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001249 btrfs_set_lock_blocking(left);
1250
Chris Mason5f39d392007-10-15 16:14:19 -04001251 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001252 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1253 wret = 1;
1254 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001255 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001256 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001257 if (ret)
1258 wret = 1;
1259 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001260 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001261 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001262 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001263 }
Chris Masone66f7092007-04-20 13:16:02 -04001264 if (wret < 0)
1265 ret = wret;
1266 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001267 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001268 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001269 btrfs_node_key(mid, &disk_key, 0);
1270 btrfs_set_node_key(parent, &disk_key, pslot);
1271 btrfs_mark_buffer_dirty(parent);
1272 if (btrfs_header_nritems(left) > orig_slot) {
1273 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001274 path->slots[level + 1] -= 1;
1275 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001276 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001277 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001278 } else {
1279 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001280 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001281 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001282 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001283 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001284 }
Chris Masone66f7092007-04-20 13:16:02 -04001285 return 0;
1286 }
Chris Mason925baed2008-06-25 16:01:30 -04001287 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001288 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001289 }
Chris Mason925baed2008-06-25 16:01:30 -04001290 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001291
1292 /*
1293 * then try to empty the right most buffer into the middle
1294 */
Chris Mason5f39d392007-10-15 16:14:19 -04001295 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001296 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001297
Chris Mason925baed2008-06-25 16:01:30 -04001298 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001299 btrfs_set_lock_blocking(right);
1300
Chris Mason5f39d392007-10-15 16:14:19 -04001301 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001302 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1303 wret = 1;
1304 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001305 ret = btrfs_cow_block(trans, root, right,
1306 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001307 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001308 if (ret)
1309 wret = 1;
1310 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001311 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001312 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001313 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001314 }
Chris Masone66f7092007-04-20 13:16:02 -04001315 if (wret < 0)
1316 ret = wret;
1317 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001318 struct btrfs_disk_key disk_key;
1319
1320 btrfs_node_key(right, &disk_key, 0);
1321 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1322 btrfs_mark_buffer_dirty(parent);
1323
1324 if (btrfs_header_nritems(mid) <= orig_slot) {
1325 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001326 path->slots[level + 1] += 1;
1327 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001328 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001329 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001330 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001331 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001332 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001333 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001334 }
Chris Masone66f7092007-04-20 13:16:02 -04001335 return 0;
1336 }
Chris Mason925baed2008-06-25 16:01:30 -04001337 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001338 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001339 }
Chris Masone66f7092007-04-20 13:16:02 -04001340 return 1;
1341}
1342
Chris Mason74123bd2007-02-02 11:05:29 -05001343/*
Chris Masond352ac62008-09-29 15:18:18 -04001344 * readahead one full node of leaves, finding things that are close
1345 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001346 */
Chris Masonc8c42862009-04-03 10:14:18 -04001347static void reada_for_search(struct btrfs_root *root,
1348 struct btrfs_path *path,
1349 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001350{
Chris Mason5f39d392007-10-15 16:14:19 -04001351 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001352 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001353 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001354 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001355 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001356 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001357 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001358 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001359 u32 nr;
1360 u32 blocksize;
1361 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001362
Chris Masona6b6e752007-10-15 16:22:39 -04001363 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001364 return;
1365
Chris Mason6702ed42007-08-07 16:15:09 -04001366 if (!path->nodes[level])
1367 return;
1368
Chris Mason5f39d392007-10-15 16:14:19 -04001369 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001370
Chris Mason3c69fae2007-08-07 15:52:22 -04001371 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001372 blocksize = btrfs_level_size(root, level - 1);
1373 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001374 if (eb) {
1375 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001376 return;
1377 }
1378
Chris Masona7175312009-01-22 09:23:10 -05001379 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001380
Chris Mason5f39d392007-10-15 16:14:19 -04001381 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001382 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001383 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001384 if (direction < 0) {
1385 if (nr == 0)
1386 break;
1387 nr--;
1388 } else if (direction > 0) {
1389 nr++;
1390 if (nr >= nritems)
1391 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001392 }
Chris Mason01f46652007-12-21 16:24:26 -05001393 if (path->reada < 0 && objectid) {
1394 btrfs_node_key(node, &disk_key, nr);
1395 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1396 break;
1397 }
Chris Mason6b800532007-10-15 16:17:34 -04001398 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001399 if ((search <= target && target - search <= 65536) ||
1400 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001401 readahead_tree_block(root, search, blocksize,
1402 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001403 nread += blocksize;
1404 }
1405 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001406 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001407 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001408 }
1409}
Chris Mason925baed2008-06-25 16:01:30 -04001410
Chris Masond352ac62008-09-29 15:18:18 -04001411/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001412 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1413 * cache
1414 */
1415static noinline int reada_for_balance(struct btrfs_root *root,
1416 struct btrfs_path *path, int level)
1417{
1418 int slot;
1419 int nritems;
1420 struct extent_buffer *parent;
1421 struct extent_buffer *eb;
1422 u64 gen;
1423 u64 block1 = 0;
1424 u64 block2 = 0;
1425 int ret = 0;
1426 int blocksize;
1427
Chris Mason8c594ea2009-04-20 15:50:10 -04001428 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001429 if (!parent)
1430 return 0;
1431
1432 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04001433 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001434 blocksize = btrfs_level_size(root, level);
1435
1436 if (slot > 0) {
1437 block1 = btrfs_node_blockptr(parent, slot - 1);
1438 gen = btrfs_node_ptr_generation(parent, slot - 1);
1439 eb = btrfs_find_tree_block(root, block1, blocksize);
1440 if (eb && btrfs_buffer_uptodate(eb, gen))
1441 block1 = 0;
1442 free_extent_buffer(eb);
1443 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001444 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001445 block2 = btrfs_node_blockptr(parent, slot + 1);
1446 gen = btrfs_node_ptr_generation(parent, slot + 1);
1447 eb = btrfs_find_tree_block(root, block2, blocksize);
1448 if (eb && btrfs_buffer_uptodate(eb, gen))
1449 block2 = 0;
1450 free_extent_buffer(eb);
1451 }
1452 if (block1 || block2) {
1453 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04001454
1455 /* release the whole path */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001456 btrfs_release_path(root, path);
Chris Mason8c594ea2009-04-20 15:50:10 -04001457
1458 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001459 if (block1)
1460 readahead_tree_block(root, block1, blocksize, 0);
1461 if (block2)
1462 readahead_tree_block(root, block2, blocksize, 0);
1463
1464 if (block1) {
1465 eb = read_tree_block(root, block1, blocksize, 0);
1466 free_extent_buffer(eb);
1467 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001468 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001469 eb = read_tree_block(root, block2, blocksize, 0);
1470 free_extent_buffer(eb);
1471 }
1472 }
1473 return ret;
1474}
1475
1476
1477/*
Chris Masond3977122009-01-05 21:25:51 -05001478 * when we walk down the tree, it is usually safe to unlock the higher layers
1479 * in the tree. The exceptions are when our path goes through slot 0, because
1480 * operations on the tree might require changing key pointers higher up in the
1481 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001482 *
Chris Masond3977122009-01-05 21:25:51 -05001483 * callers might also have set path->keep_locks, which tells this code to keep
1484 * the lock if the path points to the last slot in the block. This is part of
1485 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001486 *
Chris Masond3977122009-01-05 21:25:51 -05001487 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1488 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001489 */
Chris Masone02119d2008-09-05 16:13:11 -04001490static noinline void unlock_up(struct btrfs_path *path, int level,
1491 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001492{
1493 int i;
1494 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001495 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001496 struct extent_buffer *t;
1497
1498 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1499 if (!path->nodes[i])
1500 break;
1501 if (!path->locks[i])
1502 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001503 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001504 skip_level = i + 1;
1505 continue;
1506 }
Chris Mason051e1b92008-06-25 16:01:30 -04001507 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001508 u32 nritems;
1509 t = path->nodes[i];
1510 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001511 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001512 skip_level = i + 1;
1513 continue;
1514 }
1515 }
Chris Mason051e1b92008-06-25 16:01:30 -04001516 if (skip_level < i && i >= lowest_unlock)
1517 no_skips = 1;
1518
Chris Mason925baed2008-06-25 16:01:30 -04001519 t = path->nodes[i];
1520 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1521 btrfs_tree_unlock(t);
1522 path->locks[i] = 0;
1523 }
1524 }
1525}
1526
Chris Mason3c69fae2007-08-07 15:52:22 -04001527/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001528 * This releases any locks held in the path starting at level and
1529 * going all the way up to the root.
1530 *
1531 * btrfs_search_slot will keep the lock held on higher nodes in a few
1532 * corner cases, such as COW of the block at slot zero in the node. This
1533 * ignores those rules, and it should only be called when there are no
1534 * more updates to be done higher up in the tree.
1535 */
1536noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1537{
1538 int i;
1539
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001540 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001541 return;
1542
1543 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1544 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001545 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001546 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001547 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001548 btrfs_tree_unlock(path->nodes[i]);
1549 path->locks[i] = 0;
1550 }
1551}
1552
1553/*
Chris Masonc8c42862009-04-03 10:14:18 -04001554 * helper function for btrfs_search_slot. The goal is to find a block
1555 * in cache without setting the path to blocking. If we find the block
1556 * we return zero and the path is unchanged.
1557 *
1558 * If we can't find the block, we set the path blocking and do some
1559 * reada. -EAGAIN is returned and the search must be repeated.
1560 */
1561static int
1562read_block_for_search(struct btrfs_trans_handle *trans,
1563 struct btrfs_root *root, struct btrfs_path *p,
1564 struct extent_buffer **eb_ret, int level, int slot,
1565 struct btrfs_key *key)
1566{
1567 u64 blocknr;
1568 u64 gen;
1569 u32 blocksize;
1570 struct extent_buffer *b = *eb_ret;
1571 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04001572 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001573
1574 blocknr = btrfs_node_blockptr(b, slot);
1575 gen = btrfs_node_ptr_generation(b, slot);
1576 blocksize = btrfs_level_size(root, level - 1);
1577
1578 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1579 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason76a05b32009-05-14 13:24:30 -04001580 /*
1581 * we found an up to date block without sleeping, return
1582 * right away
1583 */
Chris Masonc8c42862009-04-03 10:14:18 -04001584 *eb_ret = tmp;
1585 return 0;
1586 }
1587
1588 /*
1589 * reduce lock contention at high levels
1590 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04001591 * we read. Don't release the lock on the current
1592 * level because we need to walk this node to figure
1593 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04001594 */
Chris Mason8c594ea2009-04-20 15:50:10 -04001595 btrfs_unlock_up_safe(p, level + 1);
1596 btrfs_set_path_blocking(p);
1597
Chris Masonc8c42862009-04-03 10:14:18 -04001598 if (tmp)
1599 free_extent_buffer(tmp);
1600 if (p->reada)
1601 reada_for_search(root, p, level, slot, key->objectid);
1602
Chris Mason8c594ea2009-04-20 15:50:10 -04001603 btrfs_release_path(NULL, p);
Chris Mason76a05b32009-05-14 13:24:30 -04001604
1605 ret = -EAGAIN;
Chris Masonc8c42862009-04-03 10:14:18 -04001606 tmp = read_tree_block(root, blocknr, blocksize, gen);
Chris Mason76a05b32009-05-14 13:24:30 -04001607 if (tmp) {
1608 /*
1609 * If the read above didn't mark this buffer up to date,
1610 * it will never end up being up to date. Set ret to EIO now
1611 * and give up so that our caller doesn't loop forever
1612 * on our EAGAINs.
1613 */
1614 if (!btrfs_buffer_uptodate(tmp, 0))
1615 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04001616 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04001617 }
1618 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001619}
1620
1621/*
1622 * helper function for btrfs_search_slot. This does all of the checks
1623 * for node-level blocks and does any balancing required based on
1624 * the ins_len.
1625 *
1626 * If no extra work was required, zero is returned. If we had to
1627 * drop the path, -EAGAIN is returned and btrfs_search_slot must
1628 * start over
1629 */
1630static int
1631setup_nodes_for_search(struct btrfs_trans_handle *trans,
1632 struct btrfs_root *root, struct btrfs_path *p,
1633 struct extent_buffer *b, int level, int ins_len)
1634{
1635 int ret;
1636 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
1637 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
1638 int sret;
1639
1640 sret = reada_for_balance(root, p, level);
1641 if (sret)
1642 goto again;
1643
1644 btrfs_set_path_blocking(p);
1645 sret = split_node(trans, root, p, level);
1646 btrfs_clear_path_blocking(p, NULL);
1647
1648 BUG_ON(sret > 0);
1649 if (sret) {
1650 ret = sret;
1651 goto done;
1652 }
1653 b = p->nodes[level];
1654 } else if (ins_len < 0 && btrfs_header_nritems(b) <
1655 BTRFS_NODEPTRS_PER_BLOCK(root) / 4) {
1656 int sret;
1657
1658 sret = reada_for_balance(root, p, level);
1659 if (sret)
1660 goto again;
1661
1662 btrfs_set_path_blocking(p);
1663 sret = balance_level(trans, root, p, level);
1664 btrfs_clear_path_blocking(p, NULL);
1665
1666 if (sret) {
1667 ret = sret;
1668 goto done;
1669 }
1670 b = p->nodes[level];
1671 if (!b) {
1672 btrfs_release_path(NULL, p);
1673 goto again;
1674 }
1675 BUG_ON(btrfs_header_nritems(b) == 1);
1676 }
1677 return 0;
1678
1679again:
1680 ret = -EAGAIN;
1681done:
1682 return ret;
1683}
1684
1685/*
Chris Mason74123bd2007-02-02 11:05:29 -05001686 * look for key in the tree. path is filled in with nodes along the way
1687 * if key is found, we return zero and you can find the item in the leaf
1688 * level of the path (level 0)
1689 *
1690 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001691 * be inserted, and 1 is returned. If there are other errors during the
1692 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001693 *
1694 * if ins_len > 0, nodes and leaves will be split as we walk down the
1695 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1696 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001697 */
Chris Masone089f052007-03-16 16:20:31 -04001698int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1699 *root, struct btrfs_key *key, struct btrfs_path *p, int
1700 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001701{
Chris Mason5f39d392007-10-15 16:14:19 -04001702 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001703 int slot;
1704 int ret;
1705 int level;
Chris Mason925baed2008-06-25 16:01:30 -04001706 int lowest_unlock = 1;
Chris Mason9f3a7422007-08-07 15:52:19 -04001707 u8 lowest_level = 0;
1708
Chris Mason6702ed42007-08-07 16:15:09 -04001709 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001710 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001711 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001712
Chris Mason925baed2008-06-25 16:01:30 -04001713 if (ins_len < 0)
1714 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001715
Chris Masonbb803952007-03-01 12:04:21 -05001716again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001717 if (p->search_commit_root) {
1718 b = root->commit_root;
1719 extent_buffer_get(b);
1720 if (!p->skip_locking)
1721 btrfs_tree_lock(b);
1722 } else {
1723 if (p->skip_locking)
1724 b = btrfs_root_node(root);
1725 else
1726 b = btrfs_lock_root_node(root);
1727 }
Chris Mason925baed2008-06-25 16:01:30 -04001728
Chris Masoneb60cea2007-02-02 09:18:22 -05001729 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001730 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001731
1732 /*
1733 * setup the path here so we can release it under lock
1734 * contention with the cow code
1735 */
1736 p->nodes[level] = b;
1737 if (!p->skip_locking)
1738 p->locks[level] = 1;
1739
Chris Mason02217ed2007-03-02 16:08:05 -05001740 if (cow) {
1741 int wret;
Chris Mason65b51a02008-08-01 15:11:20 -04001742
Chris Masonc8c42862009-04-03 10:14:18 -04001743 /*
1744 * if we don't really need to cow this block
1745 * then we don't want to set the path blocking,
1746 * so we test it here
1747 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001748 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04001749 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001750
Chris Masonb4ce94d2009-02-04 09:25:08 -05001751 btrfs_set_path_blocking(p);
1752
Chris Masone20d96d2007-03-22 12:13:20 -04001753 wret = btrfs_cow_block(trans, root, b,
1754 p->nodes[level + 1],
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001755 p->slots[level + 1], &b);
Chris Mason54aa1f42007-06-22 14:16:25 -04001756 if (wret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001757 free_extent_buffer(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001758 ret = wret;
1759 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001760 }
Chris Mason02217ed2007-03-02 16:08:05 -05001761 }
Chris Mason65b51a02008-08-01 15:11:20 -04001762cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001763 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001764 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001765 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001766 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001767
Chris Masoneb60cea2007-02-02 09:18:22 -05001768 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001769 if (!p->skip_locking)
1770 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001771
Chris Mason4008c042009-02-12 14:09:45 -05001772 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001773
1774 /*
1775 * we have a lock on b and as long as we aren't changing
1776 * the tree, there is no way to for the items in b to change.
1777 * It is safe to drop the lock on our parent before we
1778 * go through the expensive btree search on b.
1779 *
1780 * If cow is true, then we might be changing slot zero,
1781 * which may require changing the parent. So, we can't
1782 * drop the lock until after we know which slot we're
1783 * operating on.
1784 */
1785 if (!cow)
1786 btrfs_unlock_up_safe(p, level + 1);
1787
Chris Mason123abc82007-03-14 14:14:43 -04001788 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001789 if (ret) {
1790 ret = -1;
1791 goto done;
1792 }
Chris Mason925baed2008-06-25 16:01:30 -04001793
Chris Mason5f39d392007-10-15 16:14:19 -04001794 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001795
Chris Mason5f39d392007-10-15 16:14:19 -04001796 if (level != 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001797 if (ret && slot > 0)
1798 slot -= 1;
1799 p->slots[level] = slot;
Chris Masonc8c42862009-04-03 10:14:18 -04001800 ret = setup_nodes_for_search(trans, root, p, b, level,
1801 ins_len);
1802 if (ret == -EAGAIN)
1803 goto again;
1804 else if (ret)
1805 goto done;
1806 b = p->nodes[level];
1807 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001808
Chris Masonf9efa9c2008-06-25 16:14:04 -04001809 unlock_up(p, level, lowest_unlock);
1810
Chris Mason9f3a7422007-08-07 15:52:19 -04001811 /* this is only true while dropping a snapshot */
Chris Mason925baed2008-06-25 16:01:30 -04001812 if (level == lowest_level) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001813 ret = 0;
1814 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001815 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001816
Chris Masonc8c42862009-04-03 10:14:18 -04001817 ret = read_block_for_search(trans, root, p,
1818 &b, level, slot, key);
1819 if (ret == -EAGAIN)
1820 goto again;
Chris Mason594a24e2008-06-25 16:01:30 -04001821
Chris Mason76a05b32009-05-14 13:24:30 -04001822 if (ret == -EIO)
1823 goto done;
1824
Chris Masonb4ce94d2009-02-04 09:25:08 -05001825 if (!p->skip_locking) {
1826 int lret;
1827
Chris Mason4008c042009-02-12 14:09:45 -05001828 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001829 lret = btrfs_try_spin_lock(b);
1830
1831 if (!lret) {
1832 btrfs_set_path_blocking(p);
1833 btrfs_tree_lock(b);
Chris Mason4008c042009-02-12 14:09:45 -05001834 btrfs_clear_path_blocking(p, b);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001835 }
1836 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001837 } else {
1838 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001839 if (ins_len > 0 &&
1840 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001841 int sret;
1842
1843 btrfs_set_path_blocking(p);
1844 sret = split_leaf(trans, root, key,
Chris Masoncc0c5532007-10-25 15:42:57 -04001845 p, ins_len, ret == 0);
Chris Mason4008c042009-02-12 14:09:45 -05001846 btrfs_clear_path_blocking(p, NULL);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001847
Chris Mason5c680ed2007-02-22 11:39:13 -05001848 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001849 if (sret) {
1850 ret = sret;
1851 goto done;
1852 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001853 }
Chris Mason459931e2008-12-10 09:10:46 -05001854 if (!p->search_for_split)
1855 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001856 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001857 }
1858 }
Chris Mason65b51a02008-08-01 15:11:20 -04001859 ret = 1;
1860done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001861 /*
1862 * we don't really know what they plan on doing with the path
1863 * from here on, so for now just mark it as blocking
1864 */
Chris Masonb9473432009-03-13 11:00:37 -04001865 if (!p->leave_spinning)
1866 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001867 if (ret < 0)
1868 btrfs_release_path(root, p);
Chris Mason65b51a02008-08-01 15:11:20 -04001869 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001870}
1871
Chris Mason74123bd2007-02-02 11:05:29 -05001872/*
1873 * adjust the pointers going up the tree, starting at level
1874 * making sure the right key of each node is points to 'key'.
1875 * This is used after shifting pointers to the left, so it stops
1876 * fixing up pointers when a given leaf/node is not in slot 0 of the
1877 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001878 *
1879 * If this fails to write a tree block, it returns -1, but continues
1880 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001881 */
Chris Mason5f39d392007-10-15 16:14:19 -04001882static int fixup_low_keys(struct btrfs_trans_handle *trans,
1883 struct btrfs_root *root, struct btrfs_path *path,
1884 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001885{
1886 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001887 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001888 struct extent_buffer *t;
1889
Chris Mason234b63a2007-03-13 10:46:10 -04001890 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001891 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001892 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001893 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001894 t = path->nodes[i];
1895 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001896 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001897 if (tslot != 0)
1898 break;
1899 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001900 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001901}
1902
Chris Mason74123bd2007-02-02 11:05:29 -05001903/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001904 * update item key.
1905 *
1906 * This function isn't completely safe. It's the caller's responsibility
1907 * that the new key won't break the order
1908 */
1909int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1910 struct btrfs_root *root, struct btrfs_path *path,
1911 struct btrfs_key *new_key)
1912{
1913 struct btrfs_disk_key disk_key;
1914 struct extent_buffer *eb;
1915 int slot;
1916
1917 eb = path->nodes[0];
1918 slot = path->slots[0];
1919 if (slot > 0) {
1920 btrfs_item_key(eb, &disk_key, slot - 1);
1921 if (comp_keys(&disk_key, new_key) >= 0)
1922 return -1;
1923 }
1924 if (slot < btrfs_header_nritems(eb) - 1) {
1925 btrfs_item_key(eb, &disk_key, slot + 1);
1926 if (comp_keys(&disk_key, new_key) <= 0)
1927 return -1;
1928 }
1929
1930 btrfs_cpu_key_to_disk(&disk_key, new_key);
1931 btrfs_set_item_key(eb, &disk_key, slot);
1932 btrfs_mark_buffer_dirty(eb);
1933 if (slot == 0)
1934 fixup_low_keys(trans, root, path, &disk_key, 1);
1935 return 0;
1936}
1937
1938/*
Chris Mason74123bd2007-02-02 11:05:29 -05001939 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001940 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001941 *
1942 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1943 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001944 */
Chris Mason98ed5172008-01-03 10:01:48 -05001945static int push_node_left(struct btrfs_trans_handle *trans,
1946 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001947 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001948{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001949 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001950 int src_nritems;
1951 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001952 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001953
Chris Mason5f39d392007-10-15 16:14:19 -04001954 src_nritems = btrfs_header_nritems(src);
1955 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001956 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001957 WARN_ON(btrfs_header_generation(src) != trans->transid);
1958 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001959
Chris Masonbce4eae2008-04-24 14:42:46 -04001960 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001961 return 1;
1962
Chris Masond3977122009-01-05 21:25:51 -05001963 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001964 return 1;
1965
Chris Masonbce4eae2008-04-24 14:42:46 -04001966 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001967 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001968 if (push_items < src_nritems) {
1969 /* leave at least 8 pointers in the node if
1970 * we aren't going to empty it
1971 */
1972 if (src_nritems - push_items < 8) {
1973 if (push_items <= 8)
1974 return 1;
1975 push_items -= 8;
1976 }
1977 }
1978 } else
1979 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001980
Chris Mason5f39d392007-10-15 16:14:19 -04001981 copy_extent_buffer(dst, src,
1982 btrfs_node_key_ptr_offset(dst_nritems),
1983 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001984 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001985
Chris Masonbb803952007-03-01 12:04:21 -05001986 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001987 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1988 btrfs_node_key_ptr_offset(push_items),
1989 (src_nritems - push_items) *
1990 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001991 }
Chris Mason5f39d392007-10-15 16:14:19 -04001992 btrfs_set_header_nritems(src, src_nritems - push_items);
1993 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1994 btrfs_mark_buffer_dirty(src);
1995 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001996
Chris Masonbb803952007-03-01 12:04:21 -05001997 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001998}
1999
Chris Mason97571fd2007-02-24 13:39:08 -05002000/*
Chris Mason79f95c82007-03-01 15:16:26 -05002001 * try to push data from one node into the next node right in the
2002 * tree.
2003 *
2004 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2005 * error, and > 0 if there was no room in the right hand block.
2006 *
2007 * this will only push up to 1/2 the contents of the left node over
2008 */
Chris Mason5f39d392007-10-15 16:14:19 -04002009static int balance_node_right(struct btrfs_trans_handle *trans,
2010 struct btrfs_root *root,
2011 struct extent_buffer *dst,
2012 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002013{
Chris Mason79f95c82007-03-01 15:16:26 -05002014 int push_items = 0;
2015 int max_push;
2016 int src_nritems;
2017 int dst_nritems;
2018 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002019
Chris Mason7bb86312007-12-11 09:25:06 -05002020 WARN_ON(btrfs_header_generation(src) != trans->transid);
2021 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2022
Chris Mason5f39d392007-10-15 16:14:19 -04002023 src_nritems = btrfs_header_nritems(src);
2024 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002025 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002026 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002027 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002028
Chris Masond3977122009-01-05 21:25:51 -05002029 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002030 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002031
2032 max_push = src_nritems / 2 + 1;
2033 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002034 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002035 return 1;
Yan252c38f2007-08-29 09:11:44 -04002036
Chris Mason79f95c82007-03-01 15:16:26 -05002037 if (max_push < push_items)
2038 push_items = max_push;
2039
Chris Mason5f39d392007-10-15 16:14:19 -04002040 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2041 btrfs_node_key_ptr_offset(0),
2042 (dst_nritems) *
2043 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002044
Chris Mason5f39d392007-10-15 16:14:19 -04002045 copy_extent_buffer(dst, src,
2046 btrfs_node_key_ptr_offset(0),
2047 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002048 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002049
Chris Mason5f39d392007-10-15 16:14:19 -04002050 btrfs_set_header_nritems(src, src_nritems - push_items);
2051 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002052
Chris Mason5f39d392007-10-15 16:14:19 -04002053 btrfs_mark_buffer_dirty(src);
2054 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002055
Chris Mason79f95c82007-03-01 15:16:26 -05002056 return ret;
2057}
2058
2059/*
Chris Mason97571fd2007-02-24 13:39:08 -05002060 * helper function to insert a new root level in the tree.
2061 * A new node is allocated, and a single item is inserted to
2062 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002063 *
2064 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002065 */
Chris Masond3977122009-01-05 21:25:51 -05002066static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002067 struct btrfs_root *root,
2068 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002069{
Chris Mason7bb86312007-12-11 09:25:06 -05002070 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002071 struct extent_buffer *lower;
2072 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002073 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002074 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05002075
2076 BUG_ON(path->nodes[level]);
2077 BUG_ON(path->nodes[level-1] != root->node);
2078
Chris Mason7bb86312007-12-11 09:25:06 -05002079 lower = path->nodes[level-1];
2080 if (level == 1)
2081 btrfs_item_key(lower, &lower_key, 0);
2082 else
2083 btrfs_node_key(lower, &lower_key, 0);
2084
Zheng Yan31840ae2008-09-23 13:14:14 -04002085 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002086 root->root_key.objectid, &lower_key,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002087 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002088 if (IS_ERR(c))
2089 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002090
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002091 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002092 btrfs_set_header_nritems(c, 1);
2093 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002094 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002095 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002096 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002097 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002098
Chris Mason5f39d392007-10-15 16:14:19 -04002099 write_extent_buffer(c, root->fs_info->fsid,
2100 (unsigned long)btrfs_header_fsid(c),
2101 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002102
2103 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2104 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2105 BTRFS_UUID_SIZE);
2106
Chris Mason5f39d392007-10-15 16:14:19 -04002107 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002108 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002109 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002110 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002111
2112 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002113
2114 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002115
Chris Mason925baed2008-06-25 16:01:30 -04002116 spin_lock(&root->node_lock);
2117 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002118 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002119 spin_unlock(&root->node_lock);
2120
2121 /* the super has an extra ref to root->node */
2122 free_extent_buffer(old);
2123
Chris Mason0b86a832008-03-24 15:01:56 -04002124 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002125 extent_buffer_get(c);
2126 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002127 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002128 path->slots[level] = 0;
2129 return 0;
2130}
2131
Chris Mason74123bd2007-02-02 11:05:29 -05002132/*
2133 * worker function to insert a single pointer in a node.
2134 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002135 *
Chris Mason74123bd2007-02-02 11:05:29 -05002136 * slot and level indicate where you want the key to go, and
2137 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002138 *
2139 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002140 */
Chris Masone089f052007-03-16 16:20:31 -04002141static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2142 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002143 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002144{
Chris Mason5f39d392007-10-15 16:14:19 -04002145 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002146 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002147
2148 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002149 lower = path->nodes[level];
2150 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04002151 BUG_ON(slot > nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002152 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002153 BUG();
2154 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002155 memmove_extent_buffer(lower,
2156 btrfs_node_key_ptr_offset(slot + 1),
2157 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002158 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002159 }
Chris Mason5f39d392007-10-15 16:14:19 -04002160 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002161 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002162 WARN_ON(trans->transid == 0);
2163 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002164 btrfs_set_header_nritems(lower, nritems + 1);
2165 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002166 return 0;
2167}
2168
Chris Mason97571fd2007-02-24 13:39:08 -05002169/*
2170 * split the node at the specified level in path in two.
2171 * The path is corrected to point to the appropriate node after the split
2172 *
2173 * Before splitting this tries to make some room in the node by pushing
2174 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002175 *
2176 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002177 */
Chris Masone02119d2008-09-05 16:13:11 -04002178static noinline int split_node(struct btrfs_trans_handle *trans,
2179 struct btrfs_root *root,
2180 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002181{
Chris Mason5f39d392007-10-15 16:14:19 -04002182 struct extent_buffer *c;
2183 struct extent_buffer *split;
2184 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002185 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002186 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002187 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002188 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002189
Chris Mason5f39d392007-10-15 16:14:19 -04002190 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002191 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002192 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002193 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002194 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002195 if (ret)
2196 return ret;
Chris Masona4b6e072009-03-16 10:59:57 -04002197 } else if (!trans->transaction->delayed_refs.flushing) {
Chris Masone66f7092007-04-20 13:16:02 -04002198 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002199 c = path->nodes[level];
2200 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002201 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002202 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002203 if (ret < 0)
2204 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002205 }
Chris Masone66f7092007-04-20 13:16:02 -04002206
Chris Mason5f39d392007-10-15 16:14:19 -04002207 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 mid = (c_nritems + 1) / 2;
2209 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05002210
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04002212 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002213 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002214 if (IS_ERR(split))
2215 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002216
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002217 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002218 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002219 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002220 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002221 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002222 btrfs_set_header_owner(split, root->root_key.objectid);
2223 write_extent_buffer(split, root->fs_info->fsid,
2224 (unsigned long)btrfs_header_fsid(split),
2225 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002226 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2227 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2228 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002229
Chris Mason5f39d392007-10-15 16:14:19 -04002230
2231 copy_extent_buffer(split, c,
2232 btrfs_node_key_ptr_offset(0),
2233 btrfs_node_key_ptr_offset(mid),
2234 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2235 btrfs_set_header_nritems(split, c_nritems - mid);
2236 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002237 ret = 0;
2238
Chris Mason5f39d392007-10-15 16:14:19 -04002239 btrfs_mark_buffer_dirty(c);
2240 btrfs_mark_buffer_dirty(split);
2241
Chris Masondb945352007-10-15 16:15:53 -04002242 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002243 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002244 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002245 if (wret)
2246 ret = wret;
2247
Chris Mason5de08d72007-02-24 06:24:44 -05002248 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002249 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002250 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002251 free_extent_buffer(c);
2252 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002253 path->slots[level + 1] += 1;
2254 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002255 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002256 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002257 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002258 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002259}
2260
Chris Mason74123bd2007-02-02 11:05:29 -05002261/*
2262 * how many bytes are required to store the items in a leaf. start
2263 * and nr indicate which items in the leaf to check. This totals up the
2264 * space used both by the item structs and the item data
2265 */
Chris Mason5f39d392007-10-15 16:14:19 -04002266static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002267{
2268 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002269 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002270 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002271
2272 if (!nr)
2273 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002274 data_len = btrfs_item_end_nr(l, start);
2275 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002276 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002277 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002278 return data_len;
2279}
2280
Chris Mason74123bd2007-02-02 11:05:29 -05002281/*
Chris Masond4dbff92007-04-04 14:08:15 -04002282 * The space between the end of the leaf items and
2283 * the start of the leaf data. IOW, how much room
2284 * the leaf has left for both items and data
2285 */
Chris Masond3977122009-01-05 21:25:51 -05002286noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002287 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002288{
Chris Mason5f39d392007-10-15 16:14:19 -04002289 int nritems = btrfs_header_nritems(leaf);
2290 int ret;
2291 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2292 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002293 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2294 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002295 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002296 leaf_space_used(leaf, 0, nritems), nritems);
2297 }
2298 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002299}
2300
Chris Mason44871b12009-03-13 10:04:31 -04002301static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2302 struct btrfs_root *root,
2303 struct btrfs_path *path,
2304 int data_size, int empty,
2305 struct extent_buffer *right,
2306 int free_space, u32 left_nritems)
Chris Mason00ec4c52007-02-24 12:47:20 -05002307{
Chris Mason5f39d392007-10-15 16:14:19 -04002308 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002309 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002310 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002311 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002312 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002313 int push_space = 0;
2314 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002315 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002316 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002317 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002318 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002319 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05002320
Chris Mason34a38212007-11-07 13:31:03 -05002321 if (empty)
2322 nr = 0;
2323 else
2324 nr = 1;
2325
Zheng Yan31840ae2008-09-23 13:14:14 -04002326 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002327 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002328
Chris Mason44871b12009-03-13 10:04:31 -04002329 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002330 i = left_nritems - 1;
2331 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002332 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002333
Zheng Yan31840ae2008-09-23 13:14:14 -04002334 if (!empty && push_items > 0) {
2335 if (path->slots[0] > i)
2336 break;
2337 if (path->slots[0] == i) {
2338 int space = btrfs_leaf_free_space(root, left);
2339 if (space + push_space * 2 > free_space)
2340 break;
2341 }
2342 }
2343
Chris Mason00ec4c52007-02-24 12:47:20 -05002344 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002345 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002346
2347 if (!left->map_token) {
2348 map_extent_buffer(left, (unsigned long)item,
2349 sizeof(struct btrfs_item),
2350 &left->map_token, &left->kaddr,
2351 &left->map_start, &left->map_len,
2352 KM_USER1);
2353 }
2354
2355 this_item_size = btrfs_item_size(left, item);
2356 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002357 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002358
Chris Mason00ec4c52007-02-24 12:47:20 -05002359 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002360 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002361 if (i == 0)
2362 break;
2363 i--;
Chris Masondb945352007-10-15 16:15:53 -04002364 }
2365 if (left->map_token) {
2366 unmap_extent_buffer(left, left->map_token, KM_USER1);
2367 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002368 }
Chris Mason5f39d392007-10-15 16:14:19 -04002369
Chris Mason925baed2008-06-25 16:01:30 -04002370 if (push_items == 0)
2371 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002372
Chris Mason34a38212007-11-07 13:31:03 -05002373 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002374 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002375
Chris Mason00ec4c52007-02-24 12:47:20 -05002376 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002377 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002378
Chris Mason5f39d392007-10-15 16:14:19 -04002379 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002380 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002381
Chris Mason00ec4c52007-02-24 12:47:20 -05002382 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002383 data_end = leaf_data_end(root, right);
2384 memmove_extent_buffer(right,
2385 btrfs_leaf_data(right) + data_end - push_space,
2386 btrfs_leaf_data(right) + data_end,
2387 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2388
Chris Mason00ec4c52007-02-24 12:47:20 -05002389 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002390 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002391 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2392 btrfs_leaf_data(left) + leaf_data_end(root, left),
2393 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002394
2395 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2396 btrfs_item_nr_offset(0),
2397 right_nritems * sizeof(struct btrfs_item));
2398
Chris Mason00ec4c52007-02-24 12:47:20 -05002399 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002400 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2401 btrfs_item_nr_offset(left_nritems - push_items),
2402 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002403
2404 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002405 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002406 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002407 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002408 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002409 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002410 if (!right->map_token) {
2411 map_extent_buffer(right, (unsigned long)item,
2412 sizeof(struct btrfs_item),
2413 &right->map_token, &right->kaddr,
2414 &right->map_start, &right->map_len,
2415 KM_USER1);
2416 }
2417 push_space -= btrfs_item_size(right, item);
2418 btrfs_set_item_offset(right, item, push_space);
2419 }
2420
2421 if (right->map_token) {
2422 unmap_extent_buffer(right, right->map_token, KM_USER1);
2423 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002424 }
Chris Mason7518a232007-03-12 12:01:18 -04002425 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002426 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002427
Chris Mason34a38212007-11-07 13:31:03 -05002428 if (left_nritems)
2429 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002430 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002431
Chris Mason5f39d392007-10-15 16:14:19 -04002432 btrfs_item_key(right, &disk_key, 0);
2433 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002434 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002435
Chris Mason00ec4c52007-02-24 12:47:20 -05002436 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002437 if (path->slots[0] >= left_nritems) {
2438 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002439 if (btrfs_header_nritems(path->nodes[0]) == 0)
2440 clean_tree_block(trans, root, path->nodes[0]);
2441 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002442 free_extent_buffer(path->nodes[0]);
2443 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002444 path->slots[1] += 1;
2445 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002446 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002447 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002448 }
2449 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002450
2451out_unlock:
2452 btrfs_tree_unlock(right);
2453 free_extent_buffer(right);
2454 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002455}
Chris Mason925baed2008-06-25 16:01:30 -04002456
Chris Mason00ec4c52007-02-24 12:47:20 -05002457/*
Chris Mason44871b12009-03-13 10:04:31 -04002458 * push some data in the path leaf to the right, trying to free up at
2459 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2460 *
2461 * returns 1 if the push failed because the other node didn't have enough
2462 * room, 0 if everything worked out and < 0 if there were major errors.
2463 */
2464static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
2465 *root, struct btrfs_path *path, int data_size,
2466 int empty)
2467{
2468 struct extent_buffer *left = path->nodes[0];
2469 struct extent_buffer *right;
2470 struct extent_buffer *upper;
2471 int slot;
2472 int free_space;
2473 u32 left_nritems;
2474 int ret;
2475
2476 if (!path->nodes[1])
2477 return 1;
2478
2479 slot = path->slots[1];
2480 upper = path->nodes[1];
2481 if (slot >= btrfs_header_nritems(upper) - 1)
2482 return 1;
2483
2484 btrfs_assert_tree_locked(path->nodes[1]);
2485
2486 right = read_node_slot(root, upper, slot + 1);
2487 btrfs_tree_lock(right);
2488 btrfs_set_lock_blocking(right);
2489
2490 free_space = btrfs_leaf_free_space(root, right);
2491 if (free_space < data_size)
2492 goto out_unlock;
2493
2494 /* cow and double check */
2495 ret = btrfs_cow_block(trans, root, right, upper,
2496 slot + 1, &right);
2497 if (ret)
2498 goto out_unlock;
2499
2500 free_space = btrfs_leaf_free_space(root, right);
2501 if (free_space < data_size)
2502 goto out_unlock;
2503
2504 left_nritems = btrfs_header_nritems(left);
2505 if (left_nritems == 0)
2506 goto out_unlock;
2507
2508 return __push_leaf_right(trans, root, path, data_size, empty,
2509 right, free_space, left_nritems);
2510out_unlock:
2511 btrfs_tree_unlock(right);
2512 free_extent_buffer(right);
2513 return 1;
2514}
2515
2516/*
Chris Mason74123bd2007-02-02 11:05:29 -05002517 * push some data in the path leaf to the left, trying to free up at
2518 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2519 */
Chris Mason44871b12009-03-13 10:04:31 -04002520static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2521 struct btrfs_root *root,
2522 struct btrfs_path *path, int data_size,
2523 int empty, struct extent_buffer *left,
2524 int free_space, int right_nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002525{
Chris Mason5f39d392007-10-15 16:14:19 -04002526 struct btrfs_disk_key disk_key;
2527 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002528 int slot;
2529 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002530 int push_space = 0;
2531 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002532 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002533 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002534 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002535 int ret = 0;
2536 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002537 u32 this_item_size;
2538 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002539
2540 slot = path->slots[1];
Chris Mason02217ed2007-03-02 16:08:05 -05002541
Chris Mason34a38212007-11-07 13:31:03 -05002542 if (empty)
2543 nr = right_nritems;
2544 else
2545 nr = right_nritems - 1;
2546
2547 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002548 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002549 if (!right->map_token) {
2550 map_extent_buffer(right, (unsigned long)item,
2551 sizeof(struct btrfs_item),
2552 &right->map_token, &right->kaddr,
2553 &right->map_start, &right->map_len,
2554 KM_USER1);
2555 }
2556
Zheng Yan31840ae2008-09-23 13:14:14 -04002557 if (!empty && push_items > 0) {
2558 if (path->slots[0] < i)
2559 break;
2560 if (path->slots[0] == i) {
2561 int space = btrfs_leaf_free_space(root, right);
2562 if (space + push_space * 2 > free_space)
2563 break;
2564 }
2565 }
2566
Chris Masonbe0e5c02007-01-26 15:51:26 -05002567 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002568 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002569
2570 this_item_size = btrfs_item_size(right, item);
2571 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002572 break;
Chris Masondb945352007-10-15 16:15:53 -04002573
Chris Masonbe0e5c02007-01-26 15:51:26 -05002574 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002575 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002576 }
Chris Masondb945352007-10-15 16:15:53 -04002577
2578 if (right->map_token) {
2579 unmap_extent_buffer(right, right->map_token, KM_USER1);
2580 right->map_token = NULL;
2581 }
2582
Chris Masonbe0e5c02007-01-26 15:51:26 -05002583 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002584 ret = 1;
2585 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002586 }
Chris Mason34a38212007-11-07 13:31:03 -05002587 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002588 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002589
Chris Masonbe0e5c02007-01-26 15:51:26 -05002590 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002591 copy_extent_buffer(left, right,
2592 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2593 btrfs_item_nr_offset(0),
2594 push_items * sizeof(struct btrfs_item));
2595
Chris Mason123abc82007-03-14 14:14:43 -04002596 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002597 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002598
2599 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002600 leaf_data_end(root, left) - push_space,
2601 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002602 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002603 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002604 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002605 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002606
Chris Masondb945352007-10-15 16:15:53 -04002607 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002608 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002609 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002610
Chris Mason5f39d392007-10-15 16:14:19 -04002611 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002612 if (!left->map_token) {
2613 map_extent_buffer(left, (unsigned long)item,
2614 sizeof(struct btrfs_item),
2615 &left->map_token, &left->kaddr,
2616 &left->map_start, &left->map_len,
2617 KM_USER1);
2618 }
2619
Chris Mason5f39d392007-10-15 16:14:19 -04002620 ioff = btrfs_item_offset(left, item);
2621 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002622 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002623 }
Chris Mason5f39d392007-10-15 16:14:19 -04002624 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002625 if (left->map_token) {
2626 unmap_extent_buffer(left, left->map_token, KM_USER1);
2627 left->map_token = NULL;
2628 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002629
2630 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002631 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002632 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2633 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002634 WARN_ON(1);
2635 }
Chris Mason5f39d392007-10-15 16:14:19 -04002636
Chris Mason34a38212007-11-07 13:31:03 -05002637 if (push_items < right_nritems) {
2638 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2639 leaf_data_end(root, right);
2640 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2641 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2642 btrfs_leaf_data(right) +
2643 leaf_data_end(root, right), push_space);
2644
2645 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002646 btrfs_item_nr_offset(push_items),
2647 (btrfs_header_nritems(right) - push_items) *
2648 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002649 }
Yaneef1c492007-11-26 10:58:13 -05002650 right_nritems -= push_items;
2651 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002652 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002653 for (i = 0; i < right_nritems; i++) {
2654 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002655
2656 if (!right->map_token) {
2657 map_extent_buffer(right, (unsigned long)item,
2658 sizeof(struct btrfs_item),
2659 &right->map_token, &right->kaddr,
2660 &right->map_start, &right->map_len,
2661 KM_USER1);
2662 }
2663
2664 push_space = push_space - btrfs_item_size(right, item);
2665 btrfs_set_item_offset(right, item, push_space);
2666 }
2667 if (right->map_token) {
2668 unmap_extent_buffer(right, right->map_token, KM_USER1);
2669 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002670 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002671
Chris Mason5f39d392007-10-15 16:14:19 -04002672 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002673 if (right_nritems)
2674 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002675
Chris Mason5f39d392007-10-15 16:14:19 -04002676 btrfs_item_key(right, &disk_key, 0);
2677 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002678 if (wret)
2679 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002680
2681 /* then fixup the leaf pointer in the path */
2682 if (path->slots[0] < push_items) {
2683 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002684 if (btrfs_header_nritems(path->nodes[0]) == 0)
2685 clean_tree_block(trans, root, path->nodes[0]);
2686 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002687 free_extent_buffer(path->nodes[0]);
2688 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002689 path->slots[1] -= 1;
2690 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002691 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002692 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002693 path->slots[0] -= push_items;
2694 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002695 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002696 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002697out:
2698 btrfs_tree_unlock(left);
2699 free_extent_buffer(left);
2700 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002701}
2702
Chris Mason74123bd2007-02-02 11:05:29 -05002703/*
Chris Mason44871b12009-03-13 10:04:31 -04002704 * push some data in the path leaf to the left, trying to free up at
2705 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2706 */
2707static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
2708 *root, struct btrfs_path *path, int data_size,
2709 int empty)
2710{
2711 struct extent_buffer *right = path->nodes[0];
2712 struct extent_buffer *left;
2713 int slot;
2714 int free_space;
2715 u32 right_nritems;
2716 int ret = 0;
2717
2718 slot = path->slots[1];
2719 if (slot == 0)
2720 return 1;
2721 if (!path->nodes[1])
2722 return 1;
2723
2724 right_nritems = btrfs_header_nritems(right);
2725 if (right_nritems == 0)
2726 return 1;
2727
2728 btrfs_assert_tree_locked(path->nodes[1]);
2729
2730 left = read_node_slot(root, path->nodes[1], slot - 1);
2731 btrfs_tree_lock(left);
2732 btrfs_set_lock_blocking(left);
2733
2734 free_space = btrfs_leaf_free_space(root, left);
2735 if (free_space < data_size) {
2736 ret = 1;
2737 goto out;
2738 }
2739
2740 /* cow and double check */
2741 ret = btrfs_cow_block(trans, root, left,
2742 path->nodes[1], slot - 1, &left);
2743 if (ret) {
2744 /* we hit -ENOSPC, but it isn't fatal here */
2745 ret = 1;
2746 goto out;
2747 }
2748
2749 free_space = btrfs_leaf_free_space(root, left);
2750 if (free_space < data_size) {
2751 ret = 1;
2752 goto out;
2753 }
2754
2755 return __push_leaf_left(trans, root, path, data_size,
2756 empty, left, free_space, right_nritems);
2757out:
2758 btrfs_tree_unlock(left);
2759 free_extent_buffer(left);
2760 return ret;
2761}
2762
2763/*
Chris Mason74123bd2007-02-02 11:05:29 -05002764 * split the path's leaf in two, making sure there is at least data_size
2765 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002766 *
2767 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002768 */
Chris Mason44871b12009-03-13 10:04:31 -04002769static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002770 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002771 struct btrfs_path *path,
2772 struct extent_buffer *l,
2773 struct extent_buffer *right,
2774 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002775{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002776 int data_copy_size;
2777 int rt_data_off;
2778 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002779 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002780 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002781 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002782
Chris Mason5f39d392007-10-15 16:14:19 -04002783 nritems = nritems - mid;
2784 btrfs_set_header_nritems(right, nritems);
2785 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2786
2787 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2788 btrfs_item_nr_offset(mid),
2789 nritems * sizeof(struct btrfs_item));
2790
2791 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002792 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2793 data_copy_size, btrfs_leaf_data(l) +
2794 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002795
Chris Mason5f39d392007-10-15 16:14:19 -04002796 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2797 btrfs_item_end_nr(l, mid);
2798
2799 for (i = 0; i < nritems; i++) {
2800 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002801 u32 ioff;
2802
2803 if (!right->map_token) {
2804 map_extent_buffer(right, (unsigned long)item,
2805 sizeof(struct btrfs_item),
2806 &right->map_token, &right->kaddr,
2807 &right->map_start, &right->map_len,
2808 KM_USER1);
2809 }
2810
2811 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002812 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002813 }
Chris Mason74123bd2007-02-02 11:05:29 -05002814
Chris Masondb945352007-10-15 16:15:53 -04002815 if (right->map_token) {
2816 unmap_extent_buffer(right, right->map_token, KM_USER1);
2817 right->map_token = NULL;
2818 }
2819
Chris Mason5f39d392007-10-15 16:14:19 -04002820 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002821 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002822 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002823 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2824 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002825 if (wret)
2826 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002827
2828 btrfs_mark_buffer_dirty(right);
2829 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002830 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002831
Chris Masonbe0e5c02007-01-26 15:51:26 -05002832 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002833 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002834 free_extent_buffer(path->nodes[0]);
2835 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002836 path->slots[0] -= mid;
2837 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002838 } else {
2839 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002840 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002841 }
Chris Mason5f39d392007-10-15 16:14:19 -04002842
Chris Masoneb60cea2007-02-02 09:18:22 -05002843 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002844
Chris Mason44871b12009-03-13 10:04:31 -04002845 return ret;
2846}
2847
2848/*
2849 * split the path's leaf in two, making sure there is at least data_size
2850 * available for the resulting leaf level of the path.
2851 *
2852 * returns 0 if all went well and < 0 on failure.
2853 */
2854static noinline int split_leaf(struct btrfs_trans_handle *trans,
2855 struct btrfs_root *root,
2856 struct btrfs_key *ins_key,
2857 struct btrfs_path *path, int data_size,
2858 int extend)
2859{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002860 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04002861 struct extent_buffer *l;
2862 u32 nritems;
2863 int mid;
2864 int slot;
2865 struct extent_buffer *right;
2866 int ret = 0;
2867 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002868 int split;
Chris Mason44871b12009-03-13 10:04:31 -04002869 int num_doubles = 0;
2870
2871 /* first try to make some room by pushing left and right */
Chris Masona4b6e072009-03-16 10:59:57 -04002872 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY &&
2873 !trans->transaction->delayed_refs.flushing) {
Chris Mason44871b12009-03-13 10:04:31 -04002874 wret = push_leaf_right(trans, root, path, data_size, 0);
2875 if (wret < 0)
2876 return wret;
2877 if (wret) {
2878 wret = push_leaf_left(trans, root, path, data_size, 0);
2879 if (wret < 0)
2880 return wret;
2881 }
2882 l = path->nodes[0];
2883
2884 /* did the pushes work? */
2885 if (btrfs_leaf_free_space(root, l) >= data_size)
2886 return 0;
2887 }
2888
2889 if (!path->nodes[1]) {
2890 ret = insert_new_root(trans, root, path, 1);
2891 if (ret)
2892 return ret;
2893 }
2894again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002895 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04002896 l = path->nodes[0];
2897 slot = path->slots[0];
2898 nritems = btrfs_header_nritems(l);
2899 mid = (nritems + 1) / 2;
2900
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002901 if (mid <= slot) {
2902 if (nritems == 1 ||
2903 leaf_space_used(l, mid, nritems - mid) + data_size >
2904 BTRFS_LEAF_DATA_SIZE(root)) {
2905 if (slot >= nritems) {
2906 split = 0;
2907 } else {
2908 mid = slot;
2909 if (mid != nritems &&
2910 leaf_space_used(l, mid, nritems - mid) +
2911 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2912 split = 2;
2913 }
2914 }
2915 }
2916 } else {
2917 if (leaf_space_used(l, 0, mid) + data_size >
2918 BTRFS_LEAF_DATA_SIZE(root)) {
2919 if (!extend && data_size && slot == 0) {
2920 split = 0;
2921 } else if ((extend || !data_size) && slot == 0) {
2922 mid = 1;
2923 } else {
2924 mid = slot;
2925 if (mid != nritems &&
2926 leaf_space_used(l, mid, nritems - mid) +
2927 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
2928 split = 2 ;
2929 }
2930 }
2931 }
2932 }
2933
2934 if (split == 0)
2935 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2936 else
2937 btrfs_item_key(l, &disk_key, mid);
2938
2939 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04002940 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002941 &disk_key, 0, l->start, 0);
Chris Mason44871b12009-03-13 10:04:31 -04002942 if (IS_ERR(right)) {
2943 BUG_ON(1);
2944 return PTR_ERR(right);
2945 }
2946
2947 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2948 btrfs_set_header_bytenr(right, right->start);
2949 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002950 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04002951 btrfs_set_header_owner(right, root->root_key.objectid);
2952 btrfs_set_header_level(right, 0);
2953 write_extent_buffer(right, root->fs_info->fsid,
2954 (unsigned long)btrfs_header_fsid(right),
2955 BTRFS_FSID_SIZE);
2956
2957 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2958 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2959 BTRFS_UUID_SIZE);
2960
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002961 if (split == 0) {
2962 if (mid <= slot) {
2963 btrfs_set_header_nritems(right, 0);
2964 wret = insert_ptr(trans, root, path,
2965 &disk_key, right->start,
2966 path->slots[1] + 1, 1);
2967 if (wret)
2968 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002969
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002970 btrfs_tree_unlock(path->nodes[0]);
2971 free_extent_buffer(path->nodes[0]);
2972 path->nodes[0] = right;
2973 path->slots[0] = 0;
2974 path->slots[1] += 1;
2975 } else {
2976 btrfs_set_header_nritems(right, 0);
2977 wret = insert_ptr(trans, root, path,
2978 &disk_key,
2979 right->start,
2980 path->slots[1], 1);
2981 if (wret)
2982 ret = wret;
2983 btrfs_tree_unlock(path->nodes[0]);
2984 free_extent_buffer(path->nodes[0]);
2985 path->nodes[0] = right;
2986 path->slots[0] = 0;
2987 if (path->slots[1] == 0) {
2988 wret = fixup_low_keys(trans, root,
2989 path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04002990 if (wret)
2991 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04002992 }
2993 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002994 btrfs_mark_buffer_dirty(right);
2995 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04002996 }
2997
2998 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
2999 BUG_ON(ret);
3000
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003001 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04003002 BUG_ON(num_doubles != 0);
3003 num_doubles++;
3004 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04003005 }
Chris Mason44871b12009-03-13 10:04:31 -04003006
Chris Masonbe0e5c02007-01-26 15:51:26 -05003007 return ret;
3008}
3009
Chris Masond352ac62008-09-29 15:18:18 -04003010/*
Chris Mason459931e2008-12-10 09:10:46 -05003011 * This function splits a single item into two items,
3012 * giving 'new_key' to the new item and splitting the
3013 * old one at split_offset (from the start of the item).
3014 *
3015 * The path may be released by this operation. After
3016 * the split, the path is pointing to the old item. The
3017 * new item is going to be in the same node as the old one.
3018 *
3019 * Note, the item being split must be smaller enough to live alone on
3020 * a tree block with room for one extra struct btrfs_item
3021 *
3022 * This allows us to split the item in place, keeping a lock on the
3023 * leaf the entire time.
3024 */
3025int btrfs_split_item(struct btrfs_trans_handle *trans,
3026 struct btrfs_root *root,
3027 struct btrfs_path *path,
3028 struct btrfs_key *new_key,
3029 unsigned long split_offset)
3030{
3031 u32 item_size;
3032 struct extent_buffer *leaf;
3033 struct btrfs_key orig_key;
3034 struct btrfs_item *item;
3035 struct btrfs_item *new_item;
3036 int ret = 0;
3037 int slot;
3038 u32 nritems;
3039 u32 orig_offset;
3040 struct btrfs_disk_key disk_key;
3041 char *buf;
3042
3043 leaf = path->nodes[0];
3044 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
3045 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
3046 goto split;
3047
3048 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3049 btrfs_release_path(root, path);
3050
3051 path->search_for_split = 1;
3052 path->keep_locks = 1;
3053
3054 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
3055 path->search_for_split = 0;
3056
3057 /* if our item isn't there or got smaller, return now */
3058 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
3059 path->slots[0])) {
3060 path->keep_locks = 0;
3061 return -EAGAIN;
3062 }
3063
Chris Masonb9473432009-03-13 11:00:37 -04003064 btrfs_set_path_blocking(path);
Yan Zheng87b29b22008-12-17 10:21:48 -05003065 ret = split_leaf(trans, root, &orig_key, path,
3066 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05003067 path->keep_locks = 0;
3068 BUG_ON(ret);
3069
Chris Masonb9473432009-03-13 11:00:37 -04003070 btrfs_unlock_up_safe(path, 1);
3071 leaf = path->nodes[0];
3072 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
3073
3074split:
Chris Masonb4ce94d2009-02-04 09:25:08 -05003075 /*
3076 * make sure any changes to the path from split_leaf leave it
3077 * in a blocking state
3078 */
3079 btrfs_set_path_blocking(path);
3080
Chris Mason459931e2008-12-10 09:10:46 -05003081 item = btrfs_item_nr(leaf, path->slots[0]);
3082 orig_offset = btrfs_item_offset(leaf, item);
3083 item_size = btrfs_item_size(leaf, item);
3084
Chris Mason459931e2008-12-10 09:10:46 -05003085 buf = kmalloc(item_size, GFP_NOFS);
3086 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3087 path->slots[0]), item_size);
3088 slot = path->slots[0] + 1;
3089 leaf = path->nodes[0];
3090
3091 nritems = btrfs_header_nritems(leaf);
3092
3093 if (slot != nritems) {
3094 /* shift the items */
3095 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
3096 btrfs_item_nr_offset(slot),
3097 (nritems - slot) * sizeof(struct btrfs_item));
3098
3099 }
3100
3101 btrfs_cpu_key_to_disk(&disk_key, new_key);
3102 btrfs_set_item_key(leaf, &disk_key, slot);
3103
3104 new_item = btrfs_item_nr(leaf, slot);
3105
3106 btrfs_set_item_offset(leaf, new_item, orig_offset);
3107 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3108
3109 btrfs_set_item_offset(leaf, item,
3110 orig_offset + item_size - split_offset);
3111 btrfs_set_item_size(leaf, item, split_offset);
3112
3113 btrfs_set_header_nritems(leaf, nritems + 1);
3114
3115 /* write the data for the start of the original item */
3116 write_extent_buffer(leaf, buf,
3117 btrfs_item_ptr_offset(leaf, path->slots[0]),
3118 split_offset);
3119
3120 /* write the data for the new item */
3121 write_extent_buffer(leaf, buf + split_offset,
3122 btrfs_item_ptr_offset(leaf, slot),
3123 item_size - split_offset);
3124 btrfs_mark_buffer_dirty(leaf);
3125
3126 ret = 0;
3127 if (btrfs_leaf_free_space(root, leaf) < 0) {
3128 btrfs_print_leaf(root, leaf);
3129 BUG();
3130 }
3131 kfree(buf);
3132 return ret;
3133}
3134
3135/*
Chris Masond352ac62008-09-29 15:18:18 -04003136 * make the item pointed to by the path smaller. new_size indicates
3137 * how small to make it, and from_end tells us if we just chop bytes
3138 * off the end of the item or if we shift the item to chop bytes off
3139 * the front.
3140 */
Chris Masonb18c6682007-04-17 13:26:50 -04003141int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3142 struct btrfs_root *root,
3143 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003144 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003145{
3146 int ret = 0;
3147 int slot;
3148 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003149 struct extent_buffer *leaf;
3150 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003151 u32 nritems;
3152 unsigned int data_end;
3153 unsigned int old_data_start;
3154 unsigned int old_size;
3155 unsigned int size_diff;
3156 int i;
3157
3158 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003159 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003160 slot = path->slots[0];
3161
3162 old_size = btrfs_item_size_nr(leaf, slot);
3163 if (old_size == new_size)
3164 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003165
Chris Mason5f39d392007-10-15 16:14:19 -04003166 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003167 data_end = leaf_data_end(root, leaf);
3168
Chris Mason5f39d392007-10-15 16:14:19 -04003169 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003170
Chris Masonb18c6682007-04-17 13:26:50 -04003171 size_diff = old_size - new_size;
3172
3173 BUG_ON(slot < 0);
3174 BUG_ON(slot >= nritems);
3175
3176 /*
3177 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3178 */
3179 /* first correct the data pointers */
3180 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003181 u32 ioff;
3182 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003183
3184 if (!leaf->map_token) {
3185 map_extent_buffer(leaf, (unsigned long)item,
3186 sizeof(struct btrfs_item),
3187 &leaf->map_token, &leaf->kaddr,
3188 &leaf->map_start, &leaf->map_len,
3189 KM_USER1);
3190 }
3191
Chris Mason5f39d392007-10-15 16:14:19 -04003192 ioff = btrfs_item_offset(leaf, item);
3193 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003194 }
Chris Masondb945352007-10-15 16:15:53 -04003195
3196 if (leaf->map_token) {
3197 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3198 leaf->map_token = NULL;
3199 }
3200
Chris Masonb18c6682007-04-17 13:26:50 -04003201 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003202 if (from_end) {
3203 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3204 data_end + size_diff, btrfs_leaf_data(leaf) +
3205 data_end, old_data_start + new_size - data_end);
3206 } else {
3207 struct btrfs_disk_key disk_key;
3208 u64 offset;
3209
3210 btrfs_item_key(leaf, &disk_key, slot);
3211
3212 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3213 unsigned long ptr;
3214 struct btrfs_file_extent_item *fi;
3215
3216 fi = btrfs_item_ptr(leaf, slot,
3217 struct btrfs_file_extent_item);
3218 fi = (struct btrfs_file_extent_item *)(
3219 (unsigned long)fi - size_diff);
3220
3221 if (btrfs_file_extent_type(leaf, fi) ==
3222 BTRFS_FILE_EXTENT_INLINE) {
3223 ptr = btrfs_item_ptr_offset(leaf, slot);
3224 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003225 (unsigned long)fi,
3226 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003227 disk_bytenr));
3228 }
3229 }
3230
3231 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3232 data_end + size_diff, btrfs_leaf_data(leaf) +
3233 data_end, old_data_start - data_end);
3234
3235 offset = btrfs_disk_key_offset(&disk_key);
3236 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3237 btrfs_set_item_key(leaf, &disk_key, slot);
3238 if (slot == 0)
3239 fixup_low_keys(trans, root, path, &disk_key, 1);
3240 }
Chris Mason5f39d392007-10-15 16:14:19 -04003241
3242 item = btrfs_item_nr(leaf, slot);
3243 btrfs_set_item_size(leaf, item, new_size);
3244 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003245
3246 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003247 if (btrfs_leaf_free_space(root, leaf) < 0) {
3248 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003249 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003250 }
Chris Masonb18c6682007-04-17 13:26:50 -04003251 return ret;
3252}
3253
Chris Masond352ac62008-09-29 15:18:18 -04003254/*
3255 * make the item pointed to by the path bigger, data_size is the new size.
3256 */
Chris Mason5f39d392007-10-15 16:14:19 -04003257int btrfs_extend_item(struct btrfs_trans_handle *trans,
3258 struct btrfs_root *root, struct btrfs_path *path,
3259 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003260{
3261 int ret = 0;
3262 int slot;
3263 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003264 struct extent_buffer *leaf;
3265 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003266 u32 nritems;
3267 unsigned int data_end;
3268 unsigned int old_data;
3269 unsigned int old_size;
3270 int i;
3271
3272 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003273 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003274
Chris Mason5f39d392007-10-15 16:14:19 -04003275 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003276 data_end = leaf_data_end(root, leaf);
3277
Chris Mason5f39d392007-10-15 16:14:19 -04003278 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3279 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003280 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003281 }
Chris Mason6567e832007-04-16 09:22:45 -04003282 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003283 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003284
3285 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003286 if (slot >= nritems) {
3287 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003288 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3289 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003290 BUG_ON(1);
3291 }
Chris Mason6567e832007-04-16 09:22:45 -04003292
3293 /*
3294 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3295 */
3296 /* first correct the data pointers */
3297 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003298 u32 ioff;
3299 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003300
3301 if (!leaf->map_token) {
3302 map_extent_buffer(leaf, (unsigned long)item,
3303 sizeof(struct btrfs_item),
3304 &leaf->map_token, &leaf->kaddr,
3305 &leaf->map_start, &leaf->map_len,
3306 KM_USER1);
3307 }
Chris Mason5f39d392007-10-15 16:14:19 -04003308 ioff = btrfs_item_offset(leaf, item);
3309 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003310 }
Chris Mason5f39d392007-10-15 16:14:19 -04003311
Chris Masondb945352007-10-15 16:15:53 -04003312 if (leaf->map_token) {
3313 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3314 leaf->map_token = NULL;
3315 }
3316
Chris Mason6567e832007-04-16 09:22:45 -04003317 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003318 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003319 data_end - data_size, btrfs_leaf_data(leaf) +
3320 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003321
Chris Mason6567e832007-04-16 09:22:45 -04003322 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003323 old_size = btrfs_item_size_nr(leaf, slot);
3324 item = btrfs_item_nr(leaf, slot);
3325 btrfs_set_item_size(leaf, item, old_size + data_size);
3326 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003327
3328 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003329 if (btrfs_leaf_free_space(root, leaf) < 0) {
3330 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003331 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003332 }
Chris Mason6567e832007-04-16 09:22:45 -04003333 return ret;
3334}
3335
Chris Mason74123bd2007-02-02 11:05:29 -05003336/*
Chris Masond352ac62008-09-29 15:18:18 -04003337 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003338 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003339 * Returns the number of keys that were inserted.
3340 */
3341int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3342 struct btrfs_root *root,
3343 struct btrfs_path *path,
3344 struct btrfs_key *cpu_key, u32 *data_size,
3345 int nr)
3346{
3347 struct extent_buffer *leaf;
3348 struct btrfs_item *item;
3349 int ret = 0;
3350 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003351 int i;
3352 u32 nritems;
3353 u32 total_data = 0;
3354 u32 total_size = 0;
3355 unsigned int data_end;
3356 struct btrfs_disk_key disk_key;
3357 struct btrfs_key found_key;
3358
Yan Zheng87b29b22008-12-17 10:21:48 -05003359 for (i = 0; i < nr; i++) {
3360 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3361 BTRFS_LEAF_DATA_SIZE(root)) {
3362 break;
3363 nr = i;
3364 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003365 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003366 total_size += data_size[i] + sizeof(struct btrfs_item);
3367 }
3368 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003369
Josef Bacikf3465ca2008-11-12 14:19:50 -05003370 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3371 if (ret == 0)
3372 return -EEXIST;
3373 if (ret < 0)
3374 goto out;
3375
Josef Bacikf3465ca2008-11-12 14:19:50 -05003376 leaf = path->nodes[0];
3377
3378 nritems = btrfs_header_nritems(leaf);
3379 data_end = leaf_data_end(root, leaf);
3380
3381 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3382 for (i = nr; i >= 0; i--) {
3383 total_data -= data_size[i];
3384 total_size -= data_size[i] + sizeof(struct btrfs_item);
3385 if (total_size < btrfs_leaf_free_space(root, leaf))
3386 break;
3387 }
3388 nr = i;
3389 }
3390
3391 slot = path->slots[0];
3392 BUG_ON(slot < 0);
3393
3394 if (slot != nritems) {
3395 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3396
3397 item = btrfs_item_nr(leaf, slot);
3398 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3399
3400 /* figure out how many keys we can insert in here */
3401 total_data = data_size[0];
3402 for (i = 1; i < nr; i++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003403 if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0)
Josef Bacikf3465ca2008-11-12 14:19:50 -05003404 break;
3405 total_data += data_size[i];
3406 }
3407 nr = i;
3408
3409 if (old_data < data_end) {
3410 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003411 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003412 slot, old_data, data_end);
3413 BUG_ON(1);
3414 }
3415 /*
3416 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3417 */
3418 /* first correct the data pointers */
3419 WARN_ON(leaf->map_token);
3420 for (i = slot; i < nritems; i++) {
3421 u32 ioff;
3422
3423 item = btrfs_item_nr(leaf, i);
3424 if (!leaf->map_token) {
3425 map_extent_buffer(leaf, (unsigned long)item,
3426 sizeof(struct btrfs_item),
3427 &leaf->map_token, &leaf->kaddr,
3428 &leaf->map_start, &leaf->map_len,
3429 KM_USER1);
3430 }
3431
3432 ioff = btrfs_item_offset(leaf, item);
3433 btrfs_set_item_offset(leaf, item, ioff - total_data);
3434 }
3435 if (leaf->map_token) {
3436 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3437 leaf->map_token = NULL;
3438 }
3439
3440 /* shift the items */
3441 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3442 btrfs_item_nr_offset(slot),
3443 (nritems - slot) * sizeof(struct btrfs_item));
3444
3445 /* shift the data */
3446 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3447 data_end - total_data, btrfs_leaf_data(leaf) +
3448 data_end, old_data - data_end);
3449 data_end = old_data;
3450 } else {
3451 /*
3452 * this sucks but it has to be done, if we are inserting at
3453 * the end of the leaf only insert 1 of the items, since we
3454 * have no way of knowing whats on the next leaf and we'd have
3455 * to drop our current locks to figure it out
3456 */
3457 nr = 1;
3458 }
3459
3460 /* setup the item for the new data */
3461 for (i = 0; i < nr; i++) {
3462 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3463 btrfs_set_item_key(leaf, &disk_key, slot + i);
3464 item = btrfs_item_nr(leaf, slot + i);
3465 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3466 data_end -= data_size[i];
3467 btrfs_set_item_size(leaf, item, data_size[i]);
3468 }
3469 btrfs_set_header_nritems(leaf, nritems + nr);
3470 btrfs_mark_buffer_dirty(leaf);
3471
3472 ret = 0;
3473 if (slot == 0) {
3474 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3475 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3476 }
3477
3478 if (btrfs_leaf_free_space(root, leaf) < 0) {
3479 btrfs_print_leaf(root, leaf);
3480 BUG();
3481 }
3482out:
3483 if (!ret)
3484 ret = nr;
3485 return ret;
3486}
3487
3488/*
Chris Mason44871b12009-03-13 10:04:31 -04003489 * this is a helper for btrfs_insert_empty_items, the main goal here is
3490 * to save stack depth by doing the bulk of the work in a function
3491 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003492 */
Chris Mason44871b12009-03-13 10:04:31 -04003493static noinline_for_stack int
3494setup_items_for_insert(struct btrfs_trans_handle *trans,
3495 struct btrfs_root *root, struct btrfs_path *path,
3496 struct btrfs_key *cpu_key, u32 *data_size,
3497 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003498{
Chris Mason5f39d392007-10-15 16:14:19 -04003499 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003500 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003501 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003502 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003503 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003504 int ret;
3505 struct extent_buffer *leaf;
3506 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003507
Chris Mason5f39d392007-10-15 16:14:19 -04003508 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003509 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003510
Chris Mason5f39d392007-10-15 16:14:19 -04003511 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003512 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003513
Chris Masonf25956c2008-09-12 15:32:53 -04003514 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003515 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003516 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003517 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003518 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003519 }
Chris Mason5f39d392007-10-15 16:14:19 -04003520
Chris Masonbe0e5c02007-01-26 15:51:26 -05003521 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003522 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003523
Chris Mason5f39d392007-10-15 16:14:19 -04003524 if (old_data < data_end) {
3525 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003526 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003527 slot, old_data, data_end);
3528 BUG_ON(1);
3529 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003530 /*
3531 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3532 */
3533 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003534 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003535 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003536 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003537
Chris Mason5f39d392007-10-15 16:14:19 -04003538 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003539 if (!leaf->map_token) {
3540 map_extent_buffer(leaf, (unsigned long)item,
3541 sizeof(struct btrfs_item),
3542 &leaf->map_token, &leaf->kaddr,
3543 &leaf->map_start, &leaf->map_len,
3544 KM_USER1);
3545 }
3546
Chris Mason5f39d392007-10-15 16:14:19 -04003547 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003548 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003549 }
Chris Masondb945352007-10-15 16:15:53 -04003550 if (leaf->map_token) {
3551 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3552 leaf->map_token = NULL;
3553 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003554
3555 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003556 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003557 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003558 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003559
3560 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003561 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003562 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003563 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003564 data_end = old_data;
3565 }
Chris Mason5f39d392007-10-15 16:14:19 -04003566
Chris Mason62e27492007-03-15 12:56:47 -04003567 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003568 for (i = 0; i < nr; i++) {
3569 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3570 btrfs_set_item_key(leaf, &disk_key, slot + i);
3571 item = btrfs_item_nr(leaf, slot + i);
3572 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3573 data_end -= data_size[i];
3574 btrfs_set_item_size(leaf, item, data_size[i]);
3575 }
Chris Mason44871b12009-03-13 10:04:31 -04003576
Chris Mason9c583092008-01-29 15:15:18 -05003577 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003578
3579 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003580 if (slot == 0) {
Chris Mason44871b12009-03-13 10:04:31 -04003581 struct btrfs_disk_key disk_key;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003582 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003583 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003584 }
Chris Masonb9473432009-03-13 11:00:37 -04003585 btrfs_unlock_up_safe(path, 1);
3586 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003587
Chris Mason5f39d392007-10-15 16:14:19 -04003588 if (btrfs_leaf_free_space(root, leaf) < 0) {
3589 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003590 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003591 }
Chris Mason44871b12009-03-13 10:04:31 -04003592 return ret;
3593}
3594
3595/*
3596 * Given a key and some data, insert items into the tree.
3597 * This does all the path init required, making room in the tree if needed.
3598 */
3599int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3600 struct btrfs_root *root,
3601 struct btrfs_path *path,
3602 struct btrfs_key *cpu_key, u32 *data_size,
3603 int nr)
3604{
3605 struct extent_buffer *leaf;
3606 int ret = 0;
3607 int slot;
3608 int i;
3609 u32 total_size = 0;
3610 u32 total_data = 0;
3611
3612 for (i = 0; i < nr; i++)
3613 total_data += data_size[i];
3614
3615 total_size = total_data + (nr * sizeof(struct btrfs_item));
3616 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3617 if (ret == 0)
3618 return -EEXIST;
3619 if (ret < 0)
3620 goto out;
3621
3622 leaf = path->nodes[0];
3623 slot = path->slots[0];
3624 BUG_ON(slot < 0);
3625
3626 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3627 total_data, total_size, nr);
3628
Chris Masoned2ff2c2007-03-01 18:59:40 -05003629out:
Chris Mason62e27492007-03-15 12:56:47 -04003630 return ret;
3631}
3632
3633/*
3634 * Given a key and some data, insert an item into the tree.
3635 * This does all the path init required, making room in the tree if needed.
3636 */
Chris Masone089f052007-03-16 16:20:31 -04003637int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3638 *root, struct btrfs_key *cpu_key, void *data, u32
3639 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003640{
3641 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003642 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003643 struct extent_buffer *leaf;
3644 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003645
Chris Mason2c90e5d2007-04-02 10:50:19 -04003646 path = btrfs_alloc_path();
3647 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003648 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003649 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003650 leaf = path->nodes[0];
3651 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3652 write_extent_buffer(leaf, data, ptr, data_size);
3653 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003654 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003655 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003656 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003657}
3658
Chris Mason74123bd2007-02-02 11:05:29 -05003659/*
Chris Mason5de08d72007-02-24 06:24:44 -05003660 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003661 *
Chris Masond352ac62008-09-29 15:18:18 -04003662 * the tree should have been previously balanced so the deletion does not
3663 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003664 */
Chris Masone089f052007-03-16 16:20:31 -04003665static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3666 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003667{
Chris Mason5f39d392007-10-15 16:14:19 -04003668 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003669 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003670 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003671 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003672
Chris Mason5f39d392007-10-15 16:14:19 -04003673 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003674 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003675 memmove_extent_buffer(parent,
3676 btrfs_node_key_ptr_offset(slot),
3677 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003678 sizeof(struct btrfs_key_ptr) *
3679 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003680 }
Chris Mason7518a232007-03-12 12:01:18 -04003681 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003682 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003683 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003684 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003685 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003686 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003687 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003688 struct btrfs_disk_key disk_key;
3689
3690 btrfs_node_key(parent, &disk_key, 0);
3691 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003692 if (wret)
3693 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003694 }
Chris Masond6025572007-03-30 14:27:56 -04003695 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003696 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003697}
3698
Chris Mason74123bd2007-02-02 11:05:29 -05003699/*
Chris Mason323ac952008-10-01 19:05:46 -04003700 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003701 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04003702 *
3703 * This deletes the pointer in path->nodes[1] and frees the leaf
3704 * block extent. zero is returned if it all worked out, < 0 otherwise.
3705 *
3706 * The path must have already been setup for deleting the leaf, including
3707 * all the proper balancing. path->nodes[1] must be locked.
3708 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003709static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3710 struct btrfs_root *root,
3711 struct btrfs_path *path,
3712 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04003713{
3714 int ret;
Chris Mason323ac952008-10-01 19:05:46 -04003715
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003716 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Chris Mason323ac952008-10-01 19:05:46 -04003717 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3718 if (ret)
3719 return ret;
3720
Chris Mason4d081c42009-02-04 09:31:28 -05003721 /*
3722 * btrfs_free_extent is expensive, we want to make sure we
3723 * aren't holding any locks when we call it
3724 */
3725 btrfs_unlock_up_safe(path, 0);
3726
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003727 ret = btrfs_free_extent(trans, root, leaf->start, leaf->len,
3728 0, root->root_key.objectid, 0, 0);
Chris Mason323ac952008-10-01 19:05:46 -04003729 return ret;
3730}
3731/*
Chris Mason74123bd2007-02-02 11:05:29 -05003732 * delete the item at the leaf level in path. If that empties
3733 * the leaf, remove it from the tree
3734 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003735int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3736 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003737{
Chris Mason5f39d392007-10-15 16:14:19 -04003738 struct extent_buffer *leaf;
3739 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003740 int last_off;
3741 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003742 int ret = 0;
3743 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003744 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003745 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003746
Chris Mason5f39d392007-10-15 16:14:19 -04003747 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003748 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3749
3750 for (i = 0; i < nr; i++)
3751 dsize += btrfs_item_size_nr(leaf, slot + i);
3752
Chris Mason5f39d392007-10-15 16:14:19 -04003753 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003754
Chris Mason85e21ba2008-01-29 15:11:36 -05003755 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003756 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003757
3758 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003759 data_end + dsize,
3760 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003761 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003762
Chris Mason85e21ba2008-01-29 15:11:36 -05003763 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003764 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003765
Chris Mason5f39d392007-10-15 16:14:19 -04003766 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003767 if (!leaf->map_token) {
3768 map_extent_buffer(leaf, (unsigned long)item,
3769 sizeof(struct btrfs_item),
3770 &leaf->map_token, &leaf->kaddr,
3771 &leaf->map_start, &leaf->map_len,
3772 KM_USER1);
3773 }
Chris Mason5f39d392007-10-15 16:14:19 -04003774 ioff = btrfs_item_offset(leaf, item);
3775 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003776 }
Chris Masondb945352007-10-15 16:15:53 -04003777
3778 if (leaf->map_token) {
3779 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3780 leaf->map_token = NULL;
3781 }
3782
Chris Mason5f39d392007-10-15 16:14:19 -04003783 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003784 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003785 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003786 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003787 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003788 btrfs_set_header_nritems(leaf, nritems - nr);
3789 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003790
Chris Mason74123bd2007-02-02 11:05:29 -05003791 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003792 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003793 if (leaf == root->node) {
3794 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003795 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003796 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003797 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003798 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003799 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003800 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003801 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003802 struct btrfs_disk_key disk_key;
3803
3804 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003805 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003806 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003807 if (wret)
3808 ret = wret;
3809 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003810
Chris Mason74123bd2007-02-02 11:05:29 -05003811 /* delete the leaf if it is mostly empty */
Chris Masona4b6e072009-03-16 10:59:57 -04003812 if (used < BTRFS_LEAF_DATA_SIZE(root) / 4 &&
3813 !trans->transaction->delayed_refs.flushing) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003814 /* push_leaf_left fixes the path.
3815 * make sure the path still points to our leaf
3816 * for possible call to del_ptr below
3817 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003818 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003819 extent_buffer_get(leaf);
3820
Chris Masonb9473432009-03-13 11:00:37 -04003821 btrfs_set_path_blocking(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003822 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003823 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003824 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003825
3826 if (path->nodes[0] == leaf &&
3827 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003828 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003829 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003830 ret = wret;
3831 }
Chris Mason5f39d392007-10-15 16:14:19 -04003832
3833 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003834 path->slots[1] = slot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003835 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003836 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003837 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003838 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003839 /* if we're still in the path, make sure
3840 * we're dirty. Otherwise, one of the
3841 * push_leaf functions must have already
3842 * dirtied this buffer
3843 */
3844 if (path->nodes[0] == leaf)
3845 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003846 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003847 }
Chris Masond5719762007-03-23 10:01:08 -04003848 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003849 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003850 }
3851 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003852 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003853}
3854
Chris Mason97571fd2007-02-24 13:39:08 -05003855/*
Chris Mason925baed2008-06-25 16:01:30 -04003856 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003857 * returns 0 if it found something or 1 if there are no lesser leaves.
3858 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003859 *
3860 * This may release the path, and so you may lose any locks held at the
3861 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003862 */
3863int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3864{
Chris Mason925baed2008-06-25 16:01:30 -04003865 struct btrfs_key key;
3866 struct btrfs_disk_key found_key;
3867 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003868
Chris Mason925baed2008-06-25 16:01:30 -04003869 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003870
Chris Mason925baed2008-06-25 16:01:30 -04003871 if (key.offset > 0)
3872 key.offset--;
3873 else if (key.type > 0)
3874 key.type--;
3875 else if (key.objectid > 0)
3876 key.objectid--;
3877 else
3878 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003879
Chris Mason925baed2008-06-25 16:01:30 -04003880 btrfs_release_path(root, path);
3881 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3882 if (ret < 0)
3883 return ret;
3884 btrfs_item_key(path->nodes[0], &found_key, 0);
3885 ret = comp_keys(&found_key, &key);
3886 if (ret < 0)
3887 return 0;
3888 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003889}
3890
Chris Mason3f157a22008-06-25 16:01:31 -04003891/*
3892 * A helper function to walk down the tree starting at min_key, and looking
3893 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003894 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003895 *
3896 * This does not cow, but it does stuff the starting key it finds back
3897 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3898 * key and get a writable path.
3899 *
3900 * This does lock as it descends, and path->keep_locks should be set
3901 * to 1 by the caller.
3902 *
3903 * This honors path->lowest_level to prevent descent past a given level
3904 * of the tree.
3905 *
Chris Masond352ac62008-09-29 15:18:18 -04003906 * min_trans indicates the oldest transaction that you are interested
3907 * in walking through. Any nodes or leaves older than min_trans are
3908 * skipped over (without reading them).
3909 *
Chris Mason3f157a22008-06-25 16:01:31 -04003910 * returns zero if something useful was found, < 0 on error and 1 if there
3911 * was nothing in the tree that matched the search criteria.
3912 */
3913int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003914 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003915 struct btrfs_path *path, int cache_only,
3916 u64 min_trans)
3917{
3918 struct extent_buffer *cur;
3919 struct btrfs_key found_key;
3920 int slot;
Yan96524802008-07-24 12:19:49 -04003921 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003922 u32 nritems;
3923 int level;
3924 int ret = 1;
3925
Chris Mason934d3752008-12-08 16:43:10 -05003926 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003927again:
3928 cur = btrfs_lock_root_node(root);
3929 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003930 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003931 path->nodes[level] = cur;
3932 path->locks[level] = 1;
3933
3934 if (btrfs_header_generation(cur) < min_trans) {
3935 ret = 1;
3936 goto out;
3937 }
Chris Masond3977122009-01-05 21:25:51 -05003938 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003939 nritems = btrfs_header_nritems(cur);
3940 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003941 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003942
Chris Mason323ac952008-10-01 19:05:46 -04003943 /* at the lowest level, we're done, setup the path and exit */
3944 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003945 if (slot >= nritems)
3946 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003947 ret = 0;
3948 path->slots[level] = slot;
3949 btrfs_item_key_to_cpu(cur, &found_key, slot);
3950 goto out;
3951 }
Yan96524802008-07-24 12:19:49 -04003952 if (sret && slot > 0)
3953 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003954 /*
3955 * check this node pointer against the cache_only and
3956 * min_trans parameters. If it isn't in cache or is too
3957 * old, skip to the next one.
3958 */
Chris Masond3977122009-01-05 21:25:51 -05003959 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003960 u64 blockptr;
3961 u64 gen;
3962 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003963 struct btrfs_disk_key disk_key;
3964
Chris Mason3f157a22008-06-25 16:01:31 -04003965 blockptr = btrfs_node_blockptr(cur, slot);
3966 gen = btrfs_node_ptr_generation(cur, slot);
3967 if (gen < min_trans) {
3968 slot++;
3969 continue;
3970 }
3971 if (!cache_only)
3972 break;
3973
Chris Masone02119d2008-09-05 16:13:11 -04003974 if (max_key) {
3975 btrfs_node_key(cur, &disk_key, slot);
3976 if (comp_keys(&disk_key, max_key) >= 0) {
3977 ret = 1;
3978 goto out;
3979 }
3980 }
3981
Chris Mason3f157a22008-06-25 16:01:31 -04003982 tmp = btrfs_find_tree_block(root, blockptr,
3983 btrfs_level_size(root, level - 1));
3984
3985 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3986 free_extent_buffer(tmp);
3987 break;
3988 }
3989 if (tmp)
3990 free_extent_buffer(tmp);
3991 slot++;
3992 }
Chris Masone02119d2008-09-05 16:13:11 -04003993find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003994 /*
3995 * we didn't find a candidate key in this node, walk forward
3996 * and find another one
3997 */
3998 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003999 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004000 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04004001 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04004002 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004003 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04004004 btrfs_release_path(root, path);
4005 goto again;
4006 } else {
4007 goto out;
4008 }
4009 }
4010 /* save our key for returning back */
4011 btrfs_node_key_to_cpu(cur, &found_key, slot);
4012 path->slots[level] = slot;
4013 if (level == path->lowest_level) {
4014 ret = 0;
4015 unlock_up(path, level, 1);
4016 goto out;
4017 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004018 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004019 cur = read_node_slot(root, cur, slot);
4020
4021 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004022
Chris Mason3f157a22008-06-25 16:01:31 -04004023 path->locks[level - 1] = 1;
4024 path->nodes[level - 1] = cur;
4025 unlock_up(path, level, 1);
Chris Mason4008c042009-02-12 14:09:45 -05004026 btrfs_clear_path_blocking(path, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004027 }
4028out:
4029 if (ret == 0)
4030 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004031 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004032 return ret;
4033}
4034
4035/*
4036 * this is similar to btrfs_next_leaf, but does not try to preserve
4037 * and fixup the path. It looks for and returns the next key in the
4038 * tree based on the current path and the cache_only and min_trans
4039 * parameters.
4040 *
4041 * 0 is returned if another key is found, < 0 if there are any errors
4042 * and 1 is returned if there are no higher keys in the tree
4043 *
4044 * path->keep_locks should be set to 1 on the search made before
4045 * calling this function.
4046 */
Chris Masone7a84562008-06-25 16:01:31 -04004047int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04004048 struct btrfs_key *key, int lowest_level,
4049 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004050{
4051 int level = lowest_level;
4052 int slot;
4053 struct extent_buffer *c;
4054
Chris Mason934d3752008-12-08 16:43:10 -05004055 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004056 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004057 if (!path->nodes[level])
4058 return 1;
4059
4060 slot = path->slots[level] + 1;
4061 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004062next:
Chris Masone7a84562008-06-25 16:01:31 -04004063 if (slot >= btrfs_header_nritems(c)) {
4064 level++;
Chris Masond3977122009-01-05 21:25:51 -05004065 if (level == BTRFS_MAX_LEVEL)
Chris Masone7a84562008-06-25 16:01:31 -04004066 return 1;
Chris Masone7a84562008-06-25 16:01:31 -04004067 continue;
4068 }
4069 if (level == 0)
4070 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004071 else {
4072 u64 blockptr = btrfs_node_blockptr(c, slot);
4073 u64 gen = btrfs_node_ptr_generation(c, slot);
4074
4075 if (cache_only) {
4076 struct extent_buffer *cur;
4077 cur = btrfs_find_tree_block(root, blockptr,
4078 btrfs_level_size(root, level - 1));
4079 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4080 slot++;
4081 if (cur)
4082 free_extent_buffer(cur);
4083 goto next;
4084 }
4085 free_extent_buffer(cur);
4086 }
4087 if (gen < min_trans) {
4088 slot++;
4089 goto next;
4090 }
Chris Masone7a84562008-06-25 16:01:31 -04004091 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004092 }
Chris Masone7a84562008-06-25 16:01:31 -04004093 return 0;
4094 }
4095 return 1;
4096}
4097
Chris Mason7bb86312007-12-11 09:25:06 -05004098/*
Chris Mason925baed2008-06-25 16:01:30 -04004099 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004100 * returns 0 if it found something or 1 if there are no greater leaves.
4101 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004102 */
Chris Mason234b63a2007-03-13 10:46:10 -04004103int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004104{
4105 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04004106 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04004107 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04004108 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04004109 struct btrfs_key key;
4110 u32 nritems;
4111 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04004112 int old_spinning = path->leave_spinning;
4113 int force_blocking = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004114
4115 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004116 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004117 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004118
Chris Mason8e73f272009-04-03 10:14:18 -04004119 /*
4120 * we take the blocks in an order that upsets lockdep. Using
4121 * blocking mode is the only way around it.
4122 */
4123#ifdef CONFIG_DEBUG_LOCK_ALLOC
4124 force_blocking = 1;
4125#endif
Chris Mason925baed2008-06-25 16:01:30 -04004126
Chris Mason8e73f272009-04-03 10:14:18 -04004127 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4128again:
4129 level = 1;
4130 next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004131 btrfs_release_path(root, path);
Chris Mason8e73f272009-04-03 10:14:18 -04004132
Chris Masona2135012008-06-25 16:01:30 -04004133 path->keep_locks = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004134
4135 if (!force_blocking)
4136 path->leave_spinning = 1;
4137
Chris Mason925baed2008-06-25 16:01:30 -04004138 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4139 path->keep_locks = 0;
4140
4141 if (ret < 0)
4142 return ret;
4143
Chris Masona2135012008-06-25 16:01:30 -04004144 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004145 /*
4146 * by releasing the path above we dropped all our locks. A balance
4147 * could have added more items next to the key that used to be
4148 * at the very end of the block. So, check again here and
4149 * advance the path if there are now more items available.
4150 */
Chris Masona2135012008-06-25 16:01:30 -04004151 if (nritems > 0 && path->slots[0] < nritems - 1) {
Chris Mason168fd7d2008-06-25 16:01:30 -04004152 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04004153 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004154 goto done;
4155 }
Chris Masond97e63b2007-02-20 16:40:44 -05004156
Chris Masond3977122009-01-05 21:25:51 -05004157 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04004158 if (!path->nodes[level]) {
4159 ret = 1;
4160 goto done;
4161 }
Chris Mason5f39d392007-10-15 16:14:19 -04004162
Chris Masond97e63b2007-02-20 16:40:44 -05004163 slot = path->slots[level] + 1;
4164 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004165 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004166 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04004167 if (level == BTRFS_MAX_LEVEL) {
4168 ret = 1;
4169 goto done;
4170 }
Chris Masond97e63b2007-02-20 16:40:44 -05004171 continue;
4172 }
Chris Mason5f39d392007-10-15 16:14:19 -04004173
Chris Mason925baed2008-06-25 16:01:30 -04004174 if (next) {
4175 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004176 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004177 }
Chris Mason5f39d392007-10-15 16:14:19 -04004178
Chris Mason8e73f272009-04-03 10:14:18 -04004179 next = c;
4180 ret = read_block_for_search(NULL, root, path, &next, level,
4181 slot, &key);
4182 if (ret == -EAGAIN)
4183 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04004184
Chris Mason76a05b32009-05-14 13:24:30 -04004185 if (ret < 0) {
4186 btrfs_release_path(root, path);
4187 goto done;
4188 }
4189
Chris Mason5cd57b22008-06-25 16:01:30 -04004190 if (!path->skip_locking) {
Chris Mason8e73f272009-04-03 10:14:18 -04004191 ret = btrfs_try_spin_lock(next);
4192 if (!ret) {
4193 btrfs_set_path_blocking(path);
4194 btrfs_tree_lock(next);
4195 if (!force_blocking)
4196 btrfs_clear_path_blocking(path, next);
4197 }
4198 if (force_blocking)
4199 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004200 }
Chris Masond97e63b2007-02-20 16:40:44 -05004201 break;
4202 }
4203 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004204 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004205 level--;
4206 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004207 if (path->locks[level])
4208 btrfs_tree_unlock(c);
Chris Mason8e73f272009-04-03 10:14:18 -04004209
Chris Mason5f39d392007-10-15 16:14:19 -04004210 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004211 path->nodes[level] = next;
4212 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004213 if (!path->skip_locking)
4214 path->locks[level] = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004215
Chris Masond97e63b2007-02-20 16:40:44 -05004216 if (!level)
4217 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004218
Chris Mason8e73f272009-04-03 10:14:18 -04004219 ret = read_block_for_search(NULL, root, path, &next, level,
4220 0, &key);
4221 if (ret == -EAGAIN)
4222 goto again;
4223
Chris Mason76a05b32009-05-14 13:24:30 -04004224 if (ret < 0) {
4225 btrfs_release_path(root, path);
4226 goto done;
4227 }
4228
Chris Mason5cd57b22008-06-25 16:01:30 -04004229 if (!path->skip_locking) {
Chris Masonb9447ef2009-03-09 11:45:38 -04004230 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04004231 ret = btrfs_try_spin_lock(next);
4232 if (!ret) {
4233 btrfs_set_path_blocking(path);
4234 btrfs_tree_lock(next);
4235 if (!force_blocking)
4236 btrfs_clear_path_blocking(path, next);
4237 }
4238 if (force_blocking)
4239 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004240 }
Chris Masond97e63b2007-02-20 16:40:44 -05004241 }
Chris Mason8e73f272009-04-03 10:14:18 -04004242 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004243done:
4244 unlock_up(path, 0, 1);
Chris Mason8e73f272009-04-03 10:14:18 -04004245 path->leave_spinning = old_spinning;
4246 if (!old_spinning)
4247 btrfs_set_path_blocking(path);
4248
4249 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05004250}
Chris Mason0b86a832008-03-24 15:01:56 -04004251
Chris Mason3f157a22008-06-25 16:01:31 -04004252/*
4253 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4254 * searching until it gets past min_objectid or finds an item of 'type'
4255 *
4256 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4257 */
Chris Mason0b86a832008-03-24 15:01:56 -04004258int btrfs_previous_item(struct btrfs_root *root,
4259 struct btrfs_path *path, u64 min_objectid,
4260 int type)
4261{
4262 struct btrfs_key found_key;
4263 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004264 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004265 int ret;
4266
Chris Masond3977122009-01-05 21:25:51 -05004267 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004268 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004269 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004270 ret = btrfs_prev_leaf(root, path);
4271 if (ret != 0)
4272 return ret;
4273 } else {
4274 path->slots[0]--;
4275 }
4276 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004277 nritems = btrfs_header_nritems(leaf);
4278 if (nritems == 0)
4279 return 1;
4280 if (path->slots[0] == nritems)
4281 path->slots[0]--;
4282
Chris Mason0b86a832008-03-24 15:01:56 -04004283 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4284 if (found_key.type == type)
4285 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004286 if (found_key.objectid < min_objectid)
4287 break;
4288 if (found_key.objectid == min_objectid &&
4289 found_key.type < type)
4290 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004291 }
4292 return 1;
4293}