blob: 74c03fb0ca1dd91f0723c54acb18645b1153318e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
Chris Masond352ac62008-09-29 15:18:18 -04002 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masona6b6e752007-10-15 16:22:39 -040019#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050021#include "ctree.h"
22#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040023#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040024#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040025#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050026
Chris Masone089f052007-03-16 16:20:31 -040027static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
28 *root, struct btrfs_path *path, int level);
29static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040030 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040031 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040032static int push_node_left(struct btrfs_trans_handle *trans,
33 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040034 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040035static int balance_node_right(struct btrfs_trans_handle *trans,
36 struct btrfs_root *root,
37 struct extent_buffer *dst_buf,
38 struct extent_buffer *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040039static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
40 struct btrfs_path *path, int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050041
Chris Mason2c90e5d2007-04-02 10:50:19 -040042struct btrfs_path *btrfs_alloc_path(void)
43{
Chris Masondf24a2b2007-04-04 09:36:31 -040044 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050045 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Masondf24a2b2007-04-04 09:36:31 -040046 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040047}
48
Chris Masonb4ce94d2009-02-04 09:25:08 -050049/*
50 * set all locked nodes in the path to blocking locks. This should
51 * be done before scheduling
52 */
53noinline void btrfs_set_path_blocking(struct btrfs_path *p)
54{
55 int i;
56 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040057 if (!p->nodes[i] || !p->locks[i])
58 continue;
59 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
60 if (p->locks[i] == BTRFS_READ_LOCK)
61 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
62 else if (p->locks[i] == BTRFS_WRITE_LOCK)
63 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050064 }
65}
66
67/*
68 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050069 *
70 * held is used to keep lockdep happy, when lockdep is enabled
71 * we set held to a blocking lock before we go around and
72 * retake all the spinlocks in the path. You can safely use NULL
73 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050074 */
Chris Mason4008c042009-02-12 14:09:45 -050075noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040076 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050077{
78 int i;
Chris Mason4008c042009-02-12 14:09:45 -050079
80#ifdef CONFIG_DEBUG_LOCK_ALLOC
81 /* lockdep really cares that we take all of these spinlocks
82 * in the right order. If any of the locks in the path are not
83 * currently blocking, it is going to complain. So, make really
84 * really sure by forcing the path to blocking before we clear
85 * the path blocking.
86 */
Chris Masonbd681512011-07-16 15:23:14 -040087 if (held) {
88 btrfs_set_lock_blocking_rw(held, held_rw);
89 if (held_rw == BTRFS_WRITE_LOCK)
90 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
91 else if (held_rw == BTRFS_READ_LOCK)
92 held_rw = BTRFS_READ_LOCK_BLOCKING;
93 }
Chris Mason4008c042009-02-12 14:09:45 -050094 btrfs_set_path_blocking(p);
95#endif
96
97 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -040098 if (p->nodes[i] && p->locks[i]) {
99 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
100 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
101 p->locks[i] = BTRFS_WRITE_LOCK;
102 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
103 p->locks[i] = BTRFS_READ_LOCK;
104 }
Chris Masonb4ce94d2009-02-04 09:25:08 -0500105 }
Chris Mason4008c042009-02-12 14:09:45 -0500106
107#ifdef CONFIG_DEBUG_LOCK_ALLOC
108 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400109 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Mason4008c042009-02-12 14:09:45 -0500110#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -0500111}
112
Chris Masond352ac62008-09-29 15:18:18 -0400113/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400114void btrfs_free_path(struct btrfs_path *p)
115{
Jesper Juhlff175d52010-12-25 21:22:30 +0000116 if (!p)
117 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200118 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400119 kmem_cache_free(btrfs_path_cachep, p);
120}
121
Chris Masond352ac62008-09-29 15:18:18 -0400122/*
123 * path release drops references on the extent buffers in the path
124 * and it drops any locks held by this path
125 *
126 * It is safe to call this on paths that no locks or extent buffers held.
127 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200128noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500129{
130 int i;
Chris Masona2135012008-06-25 16:01:30 -0400131
Chris Mason234b63a2007-03-13 10:46:10 -0400132 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400133 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500134 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400135 continue;
136 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400137 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400138 p->locks[i] = 0;
139 }
Chris Mason5f39d392007-10-15 16:14:19 -0400140 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400141 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500142 }
143}
144
Chris Masond352ac62008-09-29 15:18:18 -0400145/*
146 * safely gets a reference on the root node of a tree. A lock
147 * is not taken, so a concurrent writer may put a different node
148 * at the root of the tree. See btrfs_lock_root_node for the
149 * looping required.
150 *
151 * The extent buffer returned by this has a reference taken, so
152 * it won't disappear. It may stop being the root of the tree
153 * at any time because there are no locks held.
154 */
Chris Mason925baed2008-06-25 16:01:30 -0400155struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
156{
157 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400158
Josef Bacik3083ee22012-03-09 16:01:49 -0500159 while (1) {
160 rcu_read_lock();
161 eb = rcu_dereference(root->node);
162
163 /*
164 * RCU really hurts here, we could free up the root node because
165 * it was cow'ed but we may not get the new root node yet so do
166 * the inc_not_zero dance and if it doesn't work then
167 * synchronize_rcu and try again.
168 */
169 if (atomic_inc_not_zero(&eb->refs)) {
170 rcu_read_unlock();
171 break;
172 }
173 rcu_read_unlock();
174 synchronize_rcu();
175 }
Chris Mason925baed2008-06-25 16:01:30 -0400176 return eb;
177}
178
Chris Masond352ac62008-09-29 15:18:18 -0400179/* loop around taking references on and locking the root node of the
180 * tree until you end up with a lock on the root. A locked buffer
181 * is returned, with a reference held.
182 */
Chris Mason925baed2008-06-25 16:01:30 -0400183struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
184{
185 struct extent_buffer *eb;
186
Chris Masond3977122009-01-05 21:25:51 -0500187 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400188 eb = btrfs_root_node(root);
189 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400190 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400191 break;
Chris Mason925baed2008-06-25 16:01:30 -0400192 btrfs_tree_unlock(eb);
193 free_extent_buffer(eb);
194 }
195 return eb;
196}
197
Chris Masonbd681512011-07-16 15:23:14 -0400198/* loop around taking references on and locking the root node of the
199 * tree until you end up with a lock on the root. A locked buffer
200 * is returned, with a reference held.
201 */
202struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
203{
204 struct extent_buffer *eb;
205
206 while (1) {
207 eb = btrfs_root_node(root);
208 btrfs_tree_read_lock(eb);
209 if (eb == root->node)
210 break;
211 btrfs_tree_read_unlock(eb);
212 free_extent_buffer(eb);
213 }
214 return eb;
215}
216
Chris Masond352ac62008-09-29 15:18:18 -0400217/* cowonly root (everything not a reference counted cow subvolume), just get
218 * put onto a simple dirty list. transaction.c walks this to make sure they
219 * get properly updated on disk.
220 */
Chris Mason0b86a832008-03-24 15:01:56 -0400221static void add_root_to_dirty_list(struct btrfs_root *root)
222{
223 if (root->track_dirty && list_empty(&root->dirty_list)) {
224 list_add(&root->dirty_list,
225 &root->fs_info->dirty_cowonly_roots);
226 }
227}
228
Chris Masond352ac62008-09-29 15:18:18 -0400229/*
230 * used by snapshot creation to make a copy of a root for a tree with
231 * a given objectid. The buffer with the new root node is returned in
232 * cow_ret, and this func returns zero on success or a negative error code.
233 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500234int btrfs_copy_root(struct btrfs_trans_handle *trans,
235 struct btrfs_root *root,
236 struct extent_buffer *buf,
237 struct extent_buffer **cow_ret, u64 new_root_objectid)
238{
239 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500240 int ret = 0;
241 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400242 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500243
244 WARN_ON(root->ref_cows && trans->transid !=
245 root->fs_info->running_transaction->transid);
246 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
247
248 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400249 if (level == 0)
250 btrfs_item_key(buf, &disk_key, 0);
251 else
252 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400253
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400254 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
255 new_root_objectid, &disk_key, level,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200256 buf->start, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400257 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500258 return PTR_ERR(cow);
259
260 copy_extent_buffer(cow, buf, 0, 0, cow->len);
261 btrfs_set_header_bytenr(cow, cow->start);
262 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400263 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
264 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
265 BTRFS_HEADER_FLAG_RELOC);
266 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
267 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
268 else
269 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500270
Yan Zheng2b820322008-11-17 21:11:30 -0500271 write_extent_buffer(cow, root->fs_info->fsid,
272 (unsigned long)btrfs_header_fsid(cow),
273 BTRFS_FSID_SIZE);
274
Chris Masonbe20aa92007-12-17 20:14:01 -0500275 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400276 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200277 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400278 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200279 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Chris Mason4aec2b52007-12-18 16:25:45 -0500280
Chris Masonbe20aa92007-12-17 20:14:01 -0500281 if (ret)
282 return ret;
283
284 btrfs_mark_buffer_dirty(cow);
285 *cow_ret = cow;
286 return 0;
287}
288
Chris Masond352ac62008-09-29 15:18:18 -0400289/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400290 * check if the tree block can be shared by multiple trees
291 */
292int btrfs_block_can_be_shared(struct btrfs_root *root,
293 struct extent_buffer *buf)
294{
295 /*
296 * Tree blocks not in refernece counted trees and tree roots
297 * are never shared. If a block was allocated after the last
298 * snapshot and the block was not allocated by tree relocation,
299 * we know the block is not shared.
300 */
301 if (root->ref_cows &&
302 buf != root->node && buf != root->commit_root &&
303 (btrfs_header_generation(buf) <=
304 btrfs_root_last_snapshot(&root->root_item) ||
305 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
306 return 1;
307#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
308 if (root->ref_cows &&
309 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
310 return 1;
311#endif
312 return 0;
313}
314
315static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
316 struct btrfs_root *root,
317 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400318 struct extent_buffer *cow,
319 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400320{
321 u64 refs;
322 u64 owner;
323 u64 flags;
324 u64 new_flags = 0;
325 int ret;
326
327 /*
328 * Backrefs update rules:
329 *
330 * Always use full backrefs for extent pointers in tree block
331 * allocated by tree relocation.
332 *
333 * If a shared tree block is no longer referenced by its owner
334 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
335 * use full backrefs for extent pointers in tree block.
336 *
337 * If a tree block is been relocating
338 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
339 * use full backrefs for extent pointers in tree block.
340 * The reason for this is some operations (such as drop tree)
341 * are only allowed for blocks use full backrefs.
342 */
343
344 if (btrfs_block_can_be_shared(root, buf)) {
345 ret = btrfs_lookup_extent_info(trans, root, buf->start,
346 buf->len, &refs, &flags);
347 BUG_ON(ret);
348 BUG_ON(refs == 0);
349 } else {
350 refs = 1;
351 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
352 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
353 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
354 else
355 flags = 0;
356 }
357
358 owner = btrfs_header_owner(buf);
359 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
360 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
361
362 if (refs > 1) {
363 if ((owner == root->root_key.objectid ||
364 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
365 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200366 ret = btrfs_inc_ref(trans, root, buf, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400367 BUG_ON(ret);
368
369 if (root->root_key.objectid ==
370 BTRFS_TREE_RELOC_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200371 ret = btrfs_dec_ref(trans, root, buf, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400372 BUG_ON(ret);
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200373 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400374 BUG_ON(ret);
375 }
376 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
377 } else {
378
379 if (root->root_key.objectid ==
380 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200381 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400382 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200383 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400384 BUG_ON(ret);
385 }
386 if (new_flags != 0) {
387 ret = btrfs_set_disk_extent_flags(trans, root,
388 buf->start,
389 buf->len,
390 new_flags, 0);
391 BUG_ON(ret);
392 }
393 } else {
394 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
395 if (root->root_key.objectid ==
396 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200397 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400398 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200399 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400400 BUG_ON(ret);
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200401 ret = btrfs_dec_ref(trans, root, buf, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400402 BUG_ON(ret);
403 }
404 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400405 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400406 }
407 return 0;
408}
409
410/*
Chris Masond3977122009-01-05 21:25:51 -0500411 * does the dirty work in cow of a single block. The parent block (if
412 * supplied) is updated to point to the new cow copy. The new buffer is marked
413 * dirty and returned locked. If you modify the block it needs to be marked
414 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400415 *
416 * search_start -- an allocation hint for the new block
417 *
Chris Masond3977122009-01-05 21:25:51 -0500418 * empty_size -- a hint that you plan on doing more cow. This is the size in
419 * bytes the allocator should try to find free next to the block it returns.
420 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400421 */
Chris Masond3977122009-01-05 21:25:51 -0500422static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400423 struct btrfs_root *root,
424 struct extent_buffer *buf,
425 struct extent_buffer *parent, int parent_slot,
426 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400427 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400428{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400429 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400430 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500431 int level;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400432 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400433 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400434 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400435
Chris Mason925baed2008-06-25 16:01:30 -0400436 if (*cow_ret == buf)
437 unlock_orig = 1;
438
Chris Masonb9447ef2009-03-09 11:45:38 -0400439 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400440
Chris Mason7bb86312007-12-11 09:25:06 -0500441 WARN_ON(root->ref_cows && trans->transid !=
442 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400443 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400444
Chris Mason7bb86312007-12-11 09:25:06 -0500445 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400446
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400447 if (level == 0)
448 btrfs_item_key(buf, &disk_key, 0);
449 else
450 btrfs_node_key(buf, &disk_key, 0);
451
452 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
453 if (parent)
454 parent_start = parent->start;
455 else
456 parent_start = 0;
457 } else
458 parent_start = 0;
459
460 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
461 root->root_key.objectid, &disk_key,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200462 level, search_start, empty_size, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400463 if (IS_ERR(cow))
464 return PTR_ERR(cow);
465
Chris Masonb4ce94d2009-02-04 09:25:08 -0500466 /* cow is set to blocking by btrfs_init_new_buffer */
467
Chris Mason5f39d392007-10-15 16:14:19 -0400468 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400469 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400470 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400471 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
472 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
473 BTRFS_HEADER_FLAG_RELOC);
474 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
475 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
476 else
477 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -0400478
Yan Zheng2b820322008-11-17 21:11:30 -0500479 write_extent_buffer(cow, root->fs_info->fsid,
480 (unsigned long)btrfs_header_fsid(cow),
481 BTRFS_FSID_SIZE);
482
Yan, Zhengf0486c62010-05-16 10:46:25 -0400483 update_ref_for_cow(trans, root, buf, cow, &last_ref);
Zheng Yan1a40e232008-09-26 10:09:34 -0400484
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400485 if (root->ref_cows)
486 btrfs_reloc_cow_block(trans, root, buf, cow);
487
Chris Mason6702ed42007-08-07 16:15:09 -0400488 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400489 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400490 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
491 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
492 parent_start = buf->start;
493 else
494 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400495
Chris Mason5f39d392007-10-15 16:14:19 -0400496 extent_buffer_get(cow);
Chris Mason240f62c2011-03-23 14:54:42 -0400497 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -0400498
Yan, Zhengf0486c62010-05-16 10:46:25 -0400499 btrfs_free_tree_block(trans, root, buf, parent_start,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200500 last_ref, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400501 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400502 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400503 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400504 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
505 parent_start = parent->start;
506 else
507 parent_start = 0;
508
509 WARN_ON(trans->transid != btrfs_header_generation(parent));
Chris Mason5f39d392007-10-15 16:14:19 -0400510 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400511 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500512 btrfs_set_node_ptr_generation(parent, parent_slot,
513 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400514 btrfs_mark_buffer_dirty(parent);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400515 btrfs_free_tree_block(trans, root, buf, parent_start,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200516 last_ref, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400517 }
Chris Mason925baed2008-06-25 16:01:30 -0400518 if (unlock_orig)
519 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -0500520 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400521 btrfs_mark_buffer_dirty(cow);
522 *cow_ret = cow;
523 return 0;
524}
525
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400526static inline int should_cow_block(struct btrfs_trans_handle *trans,
527 struct btrfs_root *root,
528 struct extent_buffer *buf)
529{
Liu Bof1ebcc72011-11-14 20:48:06 -0500530 /* ensure we can see the force_cow */
531 smp_rmb();
532
533 /*
534 * We do not need to cow a block if
535 * 1) this block is not created or changed in this transaction;
536 * 2) this block does not belong to TREE_RELOC tree;
537 * 3) the root is not forced COW.
538 *
539 * What is forced COW:
540 * when we create snapshot during commiting the transaction,
541 * after we've finished coping src root, we must COW the shared
542 * block to ensure the metadata consistency.
543 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400544 if (btrfs_header_generation(buf) == trans->transid &&
545 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
546 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -0500547 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
548 !root->force_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400549 return 0;
550 return 1;
551}
552
Chris Masond352ac62008-09-29 15:18:18 -0400553/*
554 * cows a single block, see __btrfs_cow_block for the real work.
555 * This version of it has extra checks so that a block isn't cow'd more than
556 * once per transaction, as long as it hasn't been written yet
557 */
Chris Masond3977122009-01-05 21:25:51 -0500558noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400559 struct btrfs_root *root, struct extent_buffer *buf,
560 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400561 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -0500562{
Chris Mason6702ed42007-08-07 16:15:09 -0400563 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400564 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500565
Chris Masonccd467d2007-06-28 15:57:36 -0400566 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500567 printk(KERN_CRIT "trans %llu running %llu\n",
568 (unsigned long long)trans->transid,
569 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400570 root->fs_info->running_transaction->transid);
571 WARN_ON(1);
572 }
573 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500574 printk(KERN_CRIT "trans %llu running %llu\n",
575 (unsigned long long)trans->transid,
576 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400577 WARN_ON(1);
578 }
Chris Masondc17ff82008-01-08 15:46:30 -0500579
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400580 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500581 *cow_ret = buf;
582 return 0;
583 }
Chris Masonc4876852009-02-04 09:24:25 -0500584
Chris Mason0b86a832008-03-24 15:01:56 -0400585 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500586
587 if (parent)
588 btrfs_set_lock_blocking(parent);
589 btrfs_set_lock_blocking(buf);
590
Chris Masonf510cfe2007-10-15 16:14:48 -0400591 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400592 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +0000593
594 trace_btrfs_cow_block(root, buf, *cow_ret);
595
Chris Masonf510cfe2007-10-15 16:14:48 -0400596 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400597}
598
Chris Masond352ac62008-09-29 15:18:18 -0400599/*
600 * helper function for defrag to decide if two blocks pointed to by a
601 * node are actually close by
602 */
Chris Mason6b800532007-10-15 16:17:34 -0400603static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400604{
Chris Mason6b800532007-10-15 16:17:34 -0400605 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400606 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400607 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400608 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500609 return 0;
610}
611
Chris Mason081e9572007-11-06 10:26:24 -0500612/*
613 * compare two keys in a memcmp fashion
614 */
615static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
616{
617 struct btrfs_key k1;
618
619 btrfs_disk_key_to_cpu(&k1, disk);
620
Diego Calleja20736ab2009-07-24 11:06:52 -0400621 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -0500622}
623
Josef Bacikf3465ca2008-11-12 14:19:50 -0500624/*
625 * same as comp_keys only with two btrfs_key's
626 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400627int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -0500628{
629 if (k1->objectid > k2->objectid)
630 return 1;
631 if (k1->objectid < k2->objectid)
632 return -1;
633 if (k1->type > k2->type)
634 return 1;
635 if (k1->type < k2->type)
636 return -1;
637 if (k1->offset > k2->offset)
638 return 1;
639 if (k1->offset < k2->offset)
640 return -1;
641 return 0;
642}
Chris Mason081e9572007-11-06 10:26:24 -0500643
Chris Masond352ac62008-09-29 15:18:18 -0400644/*
645 * this is used by the defrag code to go through all the
646 * leaves pointed to by a node and reallocate them so that
647 * disk order is close to key order
648 */
Chris Mason6702ed42007-08-07 16:15:09 -0400649int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400650 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400651 int start_slot, int cache_only, u64 *last_ret,
652 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400653{
Chris Mason6b800532007-10-15 16:17:34 -0400654 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400655 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400656 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400657 u64 search_start = *last_ret;
658 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400659 u64 other;
660 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400661 int end_slot;
662 int i;
663 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400664 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400665 int uptodate;
666 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500667 int progress_passed = 0;
668 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400669
Chris Mason5708b952007-10-25 15:43:18 -0400670 parent_level = btrfs_header_level(parent);
671 if (cache_only && parent_level != 1)
672 return 0;
673
Chris Masond3977122009-01-05 21:25:51 -0500674 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400675 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500676 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400677 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400678
Chris Mason6b800532007-10-15 16:17:34 -0400679 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400680 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400681 end_slot = parent_nritems;
682
683 if (parent_nritems == 1)
684 return 0;
685
Chris Masonb4ce94d2009-02-04 09:25:08 -0500686 btrfs_set_lock_blocking(parent);
687
Chris Mason6702ed42007-08-07 16:15:09 -0400688 for (i = start_slot; i < end_slot; i++) {
689 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400690
Chris Mason081e9572007-11-06 10:26:24 -0500691 btrfs_node_key(parent, &disk_key, i);
692 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
693 continue;
694
695 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400696 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400697 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400698 if (last_block == 0)
699 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400700
Chris Mason6702ed42007-08-07 16:15:09 -0400701 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400702 other = btrfs_node_blockptr(parent, i - 1);
703 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400704 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400705 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400706 other = btrfs_node_blockptr(parent, i + 1);
707 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400708 }
Chris Masone9d0b132007-08-10 14:06:19 -0400709 if (close) {
710 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400711 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400712 }
Chris Mason6702ed42007-08-07 16:15:09 -0400713
Chris Mason6b800532007-10-15 16:17:34 -0400714 cur = btrfs_find_tree_block(root, blocknr, blocksize);
715 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400716 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400717 else
718 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400719 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400720 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400721 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400722 continue;
723 }
Chris Mason6b800532007-10-15 16:17:34 -0400724 if (!cur) {
725 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400726 blocksize, gen);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +0000727 if (!cur)
728 return -EIO;
Chris Mason6b800532007-10-15 16:17:34 -0400729 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400730 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400731 }
Chris Mason6702ed42007-08-07 16:15:09 -0400732 }
Chris Masone9d0b132007-08-10 14:06:19 -0400733 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400734 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400735
Chris Masone7a84562008-06-25 16:01:31 -0400736 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500737 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400738 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400739 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400740 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400741 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400742 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400743 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400744 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400745 break;
Yan252c38f2007-08-29 09:11:44 -0400746 }
Chris Masone7a84562008-06-25 16:01:31 -0400747 search_start = cur->start;
748 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400749 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400750 btrfs_tree_unlock(cur);
751 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400752 }
753 return err;
754}
755
Chris Mason74123bd2007-02-02 11:05:29 -0500756/*
757 * The leaf data grows from end-to-front in the node.
758 * this returns the address of the start of the last item,
759 * which is the stop of the leaf data stack
760 */
Chris Mason123abc82007-03-14 14:14:43 -0400761static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400762 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500763{
Chris Mason5f39d392007-10-15 16:14:19 -0400764 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500765 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400766 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400767 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500768}
769
Chris Masonaa5d6be2007-02-28 16:35:06 -0500770
Chris Mason74123bd2007-02-02 11:05:29 -0500771/*
Chris Mason5f39d392007-10-15 16:14:19 -0400772 * search for key in the extent_buffer. The items start at offset p,
773 * and they are item_size apart. There are 'max' items in p.
774 *
Chris Mason74123bd2007-02-02 11:05:29 -0500775 * the slot in the array is returned via slot, and it points to
776 * the place where you would insert key if it is not found in
777 * the array.
778 *
779 * slot may point to max if the key is bigger than all of the keys
780 */
Chris Masone02119d2008-09-05 16:13:11 -0400781static noinline int generic_bin_search(struct extent_buffer *eb,
782 unsigned long p,
783 int item_size, struct btrfs_key *key,
784 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500785{
786 int low = 0;
787 int high = max;
788 int mid;
789 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400790 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400791 struct btrfs_disk_key unaligned;
792 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -0400793 char *kaddr = NULL;
794 unsigned long map_start = 0;
795 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400796 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500797
Chris Masond3977122009-01-05 21:25:51 -0500798 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500799 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400800 offset = p + mid * item_size;
801
Chris Masona6591712011-07-19 12:04:14 -0400802 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -0400803 (offset + sizeof(struct btrfs_disk_key)) >
804 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -0500805
806 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400807 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -0400808 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -0400809
Chris Mason479965d2007-10-15 16:14:27 -0400810 if (!err) {
811 tmp = (struct btrfs_disk_key *)(kaddr + offset -
812 map_start);
813 } else {
814 read_extent_buffer(eb, &unaligned,
815 offset, sizeof(unaligned));
816 tmp = &unaligned;
817 }
818
Chris Mason5f39d392007-10-15 16:14:19 -0400819 } else {
820 tmp = (struct btrfs_disk_key *)(kaddr + offset -
821 map_start);
822 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500823 ret = comp_keys(tmp, key);
824
825 if (ret < 0)
826 low = mid + 1;
827 else if (ret > 0)
828 high = mid;
829 else {
830 *slot = mid;
831 return 0;
832 }
833 }
834 *slot = low;
835 return 1;
836}
837
Chris Mason97571fd2007-02-24 13:39:08 -0500838/*
839 * simple bin_search frontend that does the right thing for
840 * leaves vs nodes
841 */
Chris Mason5f39d392007-10-15 16:14:19 -0400842static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
843 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500844{
Chris Mason5f39d392007-10-15 16:14:19 -0400845 if (level == 0) {
846 return generic_bin_search(eb,
847 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400848 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400849 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400850 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500851 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400852 return generic_bin_search(eb,
853 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400854 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400855 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400856 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500857 }
858 return -1;
859}
860
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400861int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
862 int level, int *slot)
863{
864 return bin_search(eb, key, level, slot);
865}
866
Yan, Zhengf0486c62010-05-16 10:46:25 -0400867static void root_add_used(struct btrfs_root *root, u32 size)
868{
869 spin_lock(&root->accounting_lock);
870 btrfs_set_root_used(&root->root_item,
871 btrfs_root_used(&root->root_item) + size);
872 spin_unlock(&root->accounting_lock);
873}
874
875static void root_sub_used(struct btrfs_root *root, u32 size)
876{
877 spin_lock(&root->accounting_lock);
878 btrfs_set_root_used(&root->root_item,
879 btrfs_root_used(&root->root_item) - size);
880 spin_unlock(&root->accounting_lock);
881}
882
Chris Masond352ac62008-09-29 15:18:18 -0400883/* given a node and slot number, this reads the blocks it points to. The
884 * extent buffer is returned with a reference taken (but unlocked).
885 * NULL is returned on error.
886 */
Chris Masone02119d2008-09-05 16:13:11 -0400887static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400888 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500889{
Chris Masonca7a79a2008-05-12 12:59:19 -0400890 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500891 if (slot < 0)
892 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400893 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500894 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400895
896 BUG_ON(level == 0);
897
Chris Masondb945352007-10-15 16:15:53 -0400898 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400899 btrfs_level_size(root, level - 1),
900 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500901}
902
Chris Masond352ac62008-09-29 15:18:18 -0400903/*
904 * node level balancing, used to make sure nodes are in proper order for
905 * item deletion. We balance from the top down, so we have to make sure
906 * that a deletion won't leave an node completely empty later on.
907 */
Chris Masone02119d2008-09-05 16:13:11 -0400908static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500909 struct btrfs_root *root,
910 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500911{
Chris Mason5f39d392007-10-15 16:14:19 -0400912 struct extent_buffer *right = NULL;
913 struct extent_buffer *mid;
914 struct extent_buffer *left = NULL;
915 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500916 int ret = 0;
917 int wret;
918 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500919 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -0500920 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500921
922 if (level == 0)
923 return 0;
924
Chris Mason5f39d392007-10-15 16:14:19 -0400925 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -0500926
Chris Masonbd681512011-07-16 15:23:14 -0400927 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
928 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -0500929 WARN_ON(btrfs_header_generation(mid) != trans->transid);
930
Chris Mason1d4f8a02007-03-13 09:28:32 -0400931 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500932
Li Zefana05a9bb2011-09-06 16:55:34 +0800933 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400934 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +0800935 pslot = path->slots[level + 1];
936 }
Chris Masonbb803952007-03-01 12:04:21 -0500937
Chris Mason40689472007-03-17 14:29:23 -0400938 /*
939 * deal with the case where there is only one pointer in the root
940 * by promoting the node below to a root
941 */
Chris Mason5f39d392007-10-15 16:14:19 -0400942 if (!parent) {
943 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -0500944
Chris Mason5f39d392007-10-15 16:14:19 -0400945 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500946 return 0;
947
948 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -0400949 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -0500950 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -0400951 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500952 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400953 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400954 if (ret) {
955 btrfs_tree_unlock(child);
956 free_extent_buffer(child);
957 goto enospc;
958 }
Yan2f375ab2008-02-01 14:58:07 -0500959
Chris Mason240f62c2011-03-23 14:54:42 -0400960 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -0400961
Chris Mason0b86a832008-03-24 15:01:56 -0400962 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -0400963 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500964
Chris Mason925baed2008-06-25 16:01:30 -0400965 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500966 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400967 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -0400968 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -0500969 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -0400970 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400971
972 root_sub_used(root, mid->len);
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200973 btrfs_free_tree_block(trans, root, mid, 0, 1, 0);
Chris Masonbb803952007-03-01 12:04:21 -0500974 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -0500975 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400976 return 0;
Chris Masonbb803952007-03-01 12:04:21 -0500977 }
Chris Mason5f39d392007-10-15 16:14:19 -0400978 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -0400979 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500980 return 0;
981
Andi Kleen559af822010-10-29 15:14:37 -0400982 btrfs_header_nritems(mid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400983
Chris Mason5f39d392007-10-15 16:14:19 -0400984 left = read_node_slot(root, parent, pslot - 1);
985 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -0400986 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500987 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -0400988 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400989 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -0400990 if (wret) {
991 ret = wret;
992 goto enospc;
993 }
Chris Mason2cc58cf2007-08-27 16:49:44 -0400994 }
Chris Mason5f39d392007-10-15 16:14:19 -0400995 right = read_node_slot(root, parent, pslot + 1);
996 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -0400997 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500998 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -0400999 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001000 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001001 if (wret) {
1002 ret = wret;
1003 goto enospc;
1004 }
1005 }
1006
1007 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001008 if (left) {
1009 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001010 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001011 if (wret < 0)
1012 ret = wret;
Andi Kleen559af822010-10-29 15:14:37 -04001013 btrfs_header_nritems(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001014 }
Chris Mason79f95c82007-03-01 15:16:26 -05001015
1016 /*
1017 * then try to empty the right most buffer into the middle
1018 */
Chris Mason5f39d392007-10-15 16:14:19 -04001019 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001020 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001021 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001022 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001023 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001024 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001025 btrfs_tree_unlock(right);
Chris Masone089f052007-03-16 16:20:31 -04001026 wret = del_ptr(trans, root, path, level + 1, pslot +
1027 1);
Chris Masonbb803952007-03-01 12:04:21 -05001028 if (wret)
1029 ret = wret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001030 root_sub_used(root, right->len);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001031 btrfs_free_tree_block(trans, root, right, 0, 1, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05001032 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001033 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001034 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001035 struct btrfs_disk_key right_key;
1036 btrfs_node_key(right, &right_key, 0);
1037 btrfs_set_node_key(parent, &right_key, pslot + 1);
1038 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001039 }
1040 }
Chris Mason5f39d392007-10-15 16:14:19 -04001041 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001042 /*
1043 * we're not allowed to leave a node with one item in the
1044 * tree during a delete. A deletion from lower in the tree
1045 * could try to delete the only pointer in this node.
1046 * So, pull some keys from the left.
1047 * There has to be a left pointer at this point because
1048 * otherwise we would have pulled some pointers from the
1049 * right
1050 */
Chris Mason5f39d392007-10-15 16:14:19 -04001051 BUG_ON(!left);
1052 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001053 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001054 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001055 goto enospc;
1056 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001057 if (wret == 1) {
1058 wret = push_node_left(trans, root, left, mid, 1);
1059 if (wret < 0)
1060 ret = wret;
1061 }
Chris Mason79f95c82007-03-01 15:16:26 -05001062 BUG_ON(wret == 1);
1063 }
Chris Mason5f39d392007-10-15 16:14:19 -04001064 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001065 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001066 btrfs_tree_unlock(mid);
Chris Masone089f052007-03-16 16:20:31 -04001067 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001068 if (wret)
1069 ret = wret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001070 root_sub_used(root, mid->len);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001071 btrfs_free_tree_block(trans, root, mid, 0, 1, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05001072 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001073 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001074 } else {
1075 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001076 struct btrfs_disk_key mid_key;
1077 btrfs_node_key(mid, &mid_key, 0);
1078 btrfs_set_node_key(parent, &mid_key, pslot);
1079 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001080 }
Chris Masonbb803952007-03-01 12:04:21 -05001081
Chris Mason79f95c82007-03-01 15:16:26 -05001082 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001083 if (left) {
1084 if (btrfs_header_nritems(left) > orig_slot) {
1085 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001086 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001087 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001088 path->slots[level + 1] -= 1;
1089 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001090 if (mid) {
1091 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001092 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001093 }
Chris Masonbb803952007-03-01 12:04:21 -05001094 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001095 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001096 path->slots[level] = orig_slot;
1097 }
1098 }
Chris Mason79f95c82007-03-01 15:16:26 -05001099 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04001100 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001101 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001102 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001103enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001104 if (right) {
1105 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001106 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001107 }
1108 if (left) {
1109 if (path->nodes[level] != left)
1110 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001111 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001112 }
Chris Masonbb803952007-03-01 12:04:21 -05001113 return ret;
1114}
1115
Chris Masond352ac62008-09-29 15:18:18 -04001116/* Node balancing for insertion. Here we only split or push nodes around
1117 * when they are completely full. This is also done top down, so we
1118 * have to be pessimistic.
1119 */
Chris Masond3977122009-01-05 21:25:51 -05001120static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001121 struct btrfs_root *root,
1122 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001123{
Chris Mason5f39d392007-10-15 16:14:19 -04001124 struct extent_buffer *right = NULL;
1125 struct extent_buffer *mid;
1126 struct extent_buffer *left = NULL;
1127 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001128 int ret = 0;
1129 int wret;
1130 int pslot;
1131 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04001132
1133 if (level == 0)
1134 return 1;
1135
Chris Mason5f39d392007-10-15 16:14:19 -04001136 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001137 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001138
Li Zefana05a9bb2011-09-06 16:55:34 +08001139 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001140 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001141 pslot = path->slots[level + 1];
1142 }
Chris Masone66f7092007-04-20 13:16:02 -04001143
Chris Mason5f39d392007-10-15 16:14:19 -04001144 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001145 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001146
Chris Mason5f39d392007-10-15 16:14:19 -04001147 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001148
1149 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001150 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001151 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001152
1153 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001154 btrfs_set_lock_blocking(left);
1155
Chris Mason5f39d392007-10-15 16:14:19 -04001156 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001157 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1158 wret = 1;
1159 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001160 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001161 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001162 if (ret)
1163 wret = 1;
1164 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001165 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001166 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001167 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001168 }
Chris Masone66f7092007-04-20 13:16:02 -04001169 if (wret < 0)
1170 ret = wret;
1171 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001172 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001173 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001174 btrfs_node_key(mid, &disk_key, 0);
1175 btrfs_set_node_key(parent, &disk_key, pslot);
1176 btrfs_mark_buffer_dirty(parent);
1177 if (btrfs_header_nritems(left) > orig_slot) {
1178 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001179 path->slots[level + 1] -= 1;
1180 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001181 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001182 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001183 } else {
1184 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001185 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001186 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001187 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001188 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001189 }
Chris Masone66f7092007-04-20 13:16:02 -04001190 return 0;
1191 }
Chris Mason925baed2008-06-25 16:01:30 -04001192 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001193 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001194 }
Chris Mason925baed2008-06-25 16:01:30 -04001195 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001196
1197 /*
1198 * then try to empty the right most buffer into the middle
1199 */
Chris Mason5f39d392007-10-15 16:14:19 -04001200 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001201 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001202
Chris Mason925baed2008-06-25 16:01:30 -04001203 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001204 btrfs_set_lock_blocking(right);
1205
Chris Mason5f39d392007-10-15 16:14:19 -04001206 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001207 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1208 wret = 1;
1209 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001210 ret = btrfs_cow_block(trans, root, right,
1211 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001212 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001213 if (ret)
1214 wret = 1;
1215 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001216 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001217 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001218 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001219 }
Chris Masone66f7092007-04-20 13:16:02 -04001220 if (wret < 0)
1221 ret = wret;
1222 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001223 struct btrfs_disk_key disk_key;
1224
1225 btrfs_node_key(right, &disk_key, 0);
1226 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1227 btrfs_mark_buffer_dirty(parent);
1228
1229 if (btrfs_header_nritems(mid) <= orig_slot) {
1230 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001231 path->slots[level + 1] += 1;
1232 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001233 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001234 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001235 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001236 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001237 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001238 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001239 }
Chris Masone66f7092007-04-20 13:16:02 -04001240 return 0;
1241 }
Chris Mason925baed2008-06-25 16:01:30 -04001242 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001243 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001244 }
Chris Masone66f7092007-04-20 13:16:02 -04001245 return 1;
1246}
1247
Chris Mason74123bd2007-02-02 11:05:29 -05001248/*
Chris Masond352ac62008-09-29 15:18:18 -04001249 * readahead one full node of leaves, finding things that are close
1250 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001251 */
Chris Masonc8c42862009-04-03 10:14:18 -04001252static void reada_for_search(struct btrfs_root *root,
1253 struct btrfs_path *path,
1254 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001255{
Chris Mason5f39d392007-10-15 16:14:19 -04001256 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001257 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001258 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001259 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001260 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001261 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04001262 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04001263 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001264 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001265 u32 nr;
1266 u32 blocksize;
1267 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001268
Chris Masona6b6e752007-10-15 16:22:39 -04001269 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001270 return;
1271
Chris Mason6702ed42007-08-07 16:15:09 -04001272 if (!path->nodes[level])
1273 return;
1274
Chris Mason5f39d392007-10-15 16:14:19 -04001275 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001276
Chris Mason3c69fae2007-08-07 15:52:22 -04001277 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001278 blocksize = btrfs_level_size(root, level - 1);
1279 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001280 if (eb) {
1281 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001282 return;
1283 }
1284
Chris Masona7175312009-01-22 09:23:10 -05001285 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001286
Chris Mason5f39d392007-10-15 16:14:19 -04001287 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001288 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04001289
Chris Masond3977122009-01-05 21:25:51 -05001290 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001291 if (direction < 0) {
1292 if (nr == 0)
1293 break;
1294 nr--;
1295 } else if (direction > 0) {
1296 nr++;
1297 if (nr >= nritems)
1298 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001299 }
Chris Mason01f46652007-12-21 16:24:26 -05001300 if (path->reada < 0 && objectid) {
1301 btrfs_node_key(node, &disk_key, nr);
1302 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1303 break;
1304 }
Chris Mason6b800532007-10-15 16:17:34 -04001305 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001306 if ((search <= target && target - search <= 65536) ||
1307 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04001308 gen = btrfs_node_ptr_generation(node, nr);
Josef Bacikcb25c2e2011-05-11 12:17:34 -04001309 readahead_tree_block(root, search, blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -04001310 nread += blocksize;
1311 }
1312 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001313 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001314 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001315 }
1316}
Chris Mason925baed2008-06-25 16:01:30 -04001317
Chris Masond352ac62008-09-29 15:18:18 -04001318/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001319 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1320 * cache
1321 */
1322static noinline int reada_for_balance(struct btrfs_root *root,
1323 struct btrfs_path *path, int level)
1324{
1325 int slot;
1326 int nritems;
1327 struct extent_buffer *parent;
1328 struct extent_buffer *eb;
1329 u64 gen;
1330 u64 block1 = 0;
1331 u64 block2 = 0;
1332 int ret = 0;
1333 int blocksize;
1334
Chris Mason8c594ea2009-04-20 15:50:10 -04001335 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001336 if (!parent)
1337 return 0;
1338
1339 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04001340 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001341 blocksize = btrfs_level_size(root, level);
1342
1343 if (slot > 0) {
1344 block1 = btrfs_node_blockptr(parent, slot - 1);
1345 gen = btrfs_node_ptr_generation(parent, slot - 1);
1346 eb = btrfs_find_tree_block(root, block1, blocksize);
1347 if (eb && btrfs_buffer_uptodate(eb, gen))
1348 block1 = 0;
1349 free_extent_buffer(eb);
1350 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001351 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001352 block2 = btrfs_node_blockptr(parent, slot + 1);
1353 gen = btrfs_node_ptr_generation(parent, slot + 1);
1354 eb = btrfs_find_tree_block(root, block2, blocksize);
1355 if (eb && btrfs_buffer_uptodate(eb, gen))
1356 block2 = 0;
1357 free_extent_buffer(eb);
1358 }
1359 if (block1 || block2) {
1360 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04001361
1362 /* release the whole path */
David Sterbab3b4aa72011-04-21 01:20:15 +02001363 btrfs_release_path(path);
Chris Mason8c594ea2009-04-20 15:50:10 -04001364
1365 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001366 if (block1)
1367 readahead_tree_block(root, block1, blocksize, 0);
1368 if (block2)
1369 readahead_tree_block(root, block2, blocksize, 0);
1370
1371 if (block1) {
1372 eb = read_tree_block(root, block1, blocksize, 0);
1373 free_extent_buffer(eb);
1374 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001375 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001376 eb = read_tree_block(root, block2, blocksize, 0);
1377 free_extent_buffer(eb);
1378 }
1379 }
1380 return ret;
1381}
1382
1383
1384/*
Chris Masond3977122009-01-05 21:25:51 -05001385 * when we walk down the tree, it is usually safe to unlock the higher layers
1386 * in the tree. The exceptions are when our path goes through slot 0, because
1387 * operations on the tree might require changing key pointers higher up in the
1388 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001389 *
Chris Masond3977122009-01-05 21:25:51 -05001390 * callers might also have set path->keep_locks, which tells this code to keep
1391 * the lock if the path points to the last slot in the block. This is part of
1392 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001393 *
Chris Masond3977122009-01-05 21:25:51 -05001394 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1395 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001396 */
Chris Masone02119d2008-09-05 16:13:11 -04001397static noinline void unlock_up(struct btrfs_path *path, int level,
1398 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001399{
1400 int i;
1401 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001402 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001403 struct extent_buffer *t;
1404
1405 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1406 if (!path->nodes[i])
1407 break;
1408 if (!path->locks[i])
1409 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001410 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001411 skip_level = i + 1;
1412 continue;
1413 }
Chris Mason051e1b92008-06-25 16:01:30 -04001414 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001415 u32 nritems;
1416 t = path->nodes[i];
1417 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001418 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001419 skip_level = i + 1;
1420 continue;
1421 }
1422 }
Chris Mason051e1b92008-06-25 16:01:30 -04001423 if (skip_level < i && i >= lowest_unlock)
1424 no_skips = 1;
1425
Chris Mason925baed2008-06-25 16:01:30 -04001426 t = path->nodes[i];
1427 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04001428 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04001429 path->locks[i] = 0;
1430 }
1431 }
1432}
1433
Chris Mason3c69fae2007-08-07 15:52:22 -04001434/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001435 * This releases any locks held in the path starting at level and
1436 * going all the way up to the root.
1437 *
1438 * btrfs_search_slot will keep the lock held on higher nodes in a few
1439 * corner cases, such as COW of the block at slot zero in the node. This
1440 * ignores those rules, and it should only be called when there are no
1441 * more updates to be done higher up in the tree.
1442 */
1443noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1444{
1445 int i;
1446
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001447 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001448 return;
1449
1450 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1451 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001452 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001453 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001454 continue;
Chris Masonbd681512011-07-16 15:23:14 -04001455 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001456 path->locks[i] = 0;
1457 }
1458}
1459
1460/*
Chris Masonc8c42862009-04-03 10:14:18 -04001461 * helper function for btrfs_search_slot. The goal is to find a block
1462 * in cache without setting the path to blocking. If we find the block
1463 * we return zero and the path is unchanged.
1464 *
1465 * If we can't find the block, we set the path blocking and do some
1466 * reada. -EAGAIN is returned and the search must be repeated.
1467 */
1468static int
1469read_block_for_search(struct btrfs_trans_handle *trans,
1470 struct btrfs_root *root, struct btrfs_path *p,
1471 struct extent_buffer **eb_ret, int level, int slot,
1472 struct btrfs_key *key)
1473{
1474 u64 blocknr;
1475 u64 gen;
1476 u32 blocksize;
1477 struct extent_buffer *b = *eb_ret;
1478 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04001479 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001480
1481 blocknr = btrfs_node_blockptr(b, slot);
1482 gen = btrfs_node_ptr_generation(b, slot);
1483 blocksize = btrfs_level_size(root, level - 1);
1484
1485 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
Chris Masoncb449212010-10-24 11:01:27 -04001486 if (tmp) {
1487 if (btrfs_buffer_uptodate(tmp, 0)) {
1488 if (btrfs_buffer_uptodate(tmp, gen)) {
1489 /*
1490 * we found an up to date block without
1491 * sleeping, return
1492 * right away
1493 */
1494 *eb_ret = tmp;
1495 return 0;
1496 }
1497 /* the pages were up to date, but we failed
1498 * the generation number check. Do a full
1499 * read for the generation number that is correct.
1500 * We must do this without dropping locks so
1501 * we can trust our generation number
1502 */
1503 free_extent_buffer(tmp);
Chris Masonbd681512011-07-16 15:23:14 -04001504 btrfs_set_path_blocking(p);
1505
Chris Masoncb449212010-10-24 11:01:27 -04001506 tmp = read_tree_block(root, blocknr, blocksize, gen);
1507 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
1508 *eb_ret = tmp;
1509 return 0;
1510 }
1511 free_extent_buffer(tmp);
David Sterbab3b4aa72011-04-21 01:20:15 +02001512 btrfs_release_path(p);
Chris Masoncb449212010-10-24 11:01:27 -04001513 return -EIO;
1514 }
Chris Masonc8c42862009-04-03 10:14:18 -04001515 }
1516
1517 /*
1518 * reduce lock contention at high levels
1519 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04001520 * we read. Don't release the lock on the current
1521 * level because we need to walk this node to figure
1522 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04001523 */
Chris Mason8c594ea2009-04-20 15:50:10 -04001524 btrfs_unlock_up_safe(p, level + 1);
1525 btrfs_set_path_blocking(p);
1526
Chris Masoncb449212010-10-24 11:01:27 -04001527 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04001528 if (p->reada)
1529 reada_for_search(root, p, level, slot, key->objectid);
1530
David Sterbab3b4aa72011-04-21 01:20:15 +02001531 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001532
1533 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04001534 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04001535 if (tmp) {
1536 /*
1537 * If the read above didn't mark this buffer up to date,
1538 * it will never end up being up to date. Set ret to EIO now
1539 * and give up so that our caller doesn't loop forever
1540 * on our EAGAINs.
1541 */
1542 if (!btrfs_buffer_uptodate(tmp, 0))
1543 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04001544 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04001545 }
1546 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001547}
1548
1549/*
1550 * helper function for btrfs_search_slot. This does all of the checks
1551 * for node-level blocks and does any balancing required based on
1552 * the ins_len.
1553 *
1554 * If no extra work was required, zero is returned. If we had to
1555 * drop the path, -EAGAIN is returned and btrfs_search_slot must
1556 * start over
1557 */
1558static int
1559setup_nodes_for_search(struct btrfs_trans_handle *trans,
1560 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04001561 struct extent_buffer *b, int level, int ins_len,
1562 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04001563{
1564 int ret;
1565 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
1566 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
1567 int sret;
1568
Chris Masonbd681512011-07-16 15:23:14 -04001569 if (*write_lock_level < level + 1) {
1570 *write_lock_level = level + 1;
1571 btrfs_release_path(p);
1572 goto again;
1573 }
1574
Chris Masonc8c42862009-04-03 10:14:18 -04001575 sret = reada_for_balance(root, p, level);
1576 if (sret)
1577 goto again;
1578
1579 btrfs_set_path_blocking(p);
1580 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04001581 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04001582
1583 BUG_ON(sret > 0);
1584 if (sret) {
1585 ret = sret;
1586 goto done;
1587 }
1588 b = p->nodes[level];
1589 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04001590 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04001591 int sret;
1592
Chris Masonbd681512011-07-16 15:23:14 -04001593 if (*write_lock_level < level + 1) {
1594 *write_lock_level = level + 1;
1595 btrfs_release_path(p);
1596 goto again;
1597 }
1598
Chris Masonc8c42862009-04-03 10:14:18 -04001599 sret = reada_for_balance(root, p, level);
1600 if (sret)
1601 goto again;
1602
1603 btrfs_set_path_blocking(p);
1604 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04001605 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04001606
1607 if (sret) {
1608 ret = sret;
1609 goto done;
1610 }
1611 b = p->nodes[level];
1612 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001613 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04001614 goto again;
1615 }
1616 BUG_ON(btrfs_header_nritems(b) == 1);
1617 }
1618 return 0;
1619
1620again:
1621 ret = -EAGAIN;
1622done:
1623 return ret;
1624}
1625
1626/*
Chris Mason74123bd2007-02-02 11:05:29 -05001627 * look for key in the tree. path is filled in with nodes along the way
1628 * if key is found, we return zero and you can find the item in the leaf
1629 * level of the path (level 0)
1630 *
1631 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001632 * be inserted, and 1 is returned. If there are other errors during the
1633 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001634 *
1635 * if ins_len > 0, nodes and leaves will be split as we walk down the
1636 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1637 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001638 */
Chris Masone089f052007-03-16 16:20:31 -04001639int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1640 *root, struct btrfs_key *key, struct btrfs_path *p, int
1641 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001642{
Chris Mason5f39d392007-10-15 16:14:19 -04001643 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001644 int slot;
1645 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04001646 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001647 int level;
Chris Mason925baed2008-06-25 16:01:30 -04001648 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04001649 int root_lock;
1650 /* everything at write_lock_level or lower must be write locked */
1651 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04001652 u8 lowest_level = 0;
1653
Chris Mason6702ed42007-08-07 16:15:09 -04001654 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001655 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001656 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001657
Chris Masonbd681512011-07-16 15:23:14 -04001658 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001659 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001660
Chris Masonbd681512011-07-16 15:23:14 -04001661 /* when we are removing items, we might have to go up to level
1662 * two as we update tree pointers Make sure we keep write
1663 * for those levels as well
1664 */
1665 write_lock_level = 2;
1666 } else if (ins_len > 0) {
1667 /*
1668 * for inserting items, make sure we have a write lock on
1669 * level 1 so we can update keys
1670 */
1671 write_lock_level = 1;
1672 }
1673
1674 if (!cow)
1675 write_lock_level = -1;
1676
1677 if (cow && (p->keep_locks || p->lowest_level))
1678 write_lock_level = BTRFS_MAX_LEVEL;
1679
Chris Masonbb803952007-03-01 12:04:21 -05001680again:
Chris Masonbd681512011-07-16 15:23:14 -04001681 /*
1682 * we try very hard to do read locks on the root
1683 */
1684 root_lock = BTRFS_READ_LOCK;
1685 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001686 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04001687 /*
1688 * the commit roots are read only
1689 * so we always do read locks
1690 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001691 b = root->commit_root;
1692 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04001693 level = btrfs_header_level(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001694 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04001695 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001696 } else {
Chris Masonbd681512011-07-16 15:23:14 -04001697 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001698 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04001699 level = btrfs_header_level(b);
1700 } else {
1701 /* we don't know the level of the root node
1702 * until we actually have it read locked
1703 */
1704 b = btrfs_read_lock_root_node(root);
1705 level = btrfs_header_level(b);
1706 if (level <= write_lock_level) {
1707 /* whoops, must trade for write lock */
1708 btrfs_tree_read_unlock(b);
1709 free_extent_buffer(b);
1710 b = btrfs_lock_root_node(root);
1711 root_lock = BTRFS_WRITE_LOCK;
1712
1713 /* the level might have changed, check again */
1714 level = btrfs_header_level(b);
1715 }
1716 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001717 }
Chris Masonbd681512011-07-16 15:23:14 -04001718 p->nodes[level] = b;
1719 if (!p->skip_locking)
1720 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04001721
Chris Masoneb60cea2007-02-02 09:18:22 -05001722 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001723 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001724
1725 /*
1726 * setup the path here so we can release it under lock
1727 * contention with the cow code
1728 */
Chris Mason02217ed2007-03-02 16:08:05 -05001729 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04001730 /*
1731 * if we don't really need to cow this block
1732 * then we don't want to set the path blocking,
1733 * so we test it here
1734 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001735 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04001736 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001737
Chris Masonb4ce94d2009-02-04 09:25:08 -05001738 btrfs_set_path_blocking(p);
1739
Chris Masonbd681512011-07-16 15:23:14 -04001740 /*
1741 * must have write locks on this node and the
1742 * parent
1743 */
1744 if (level + 1 > write_lock_level) {
1745 write_lock_level = level + 1;
1746 btrfs_release_path(p);
1747 goto again;
1748 }
1749
Yan Zheng33c66f42009-07-22 09:59:00 -04001750 err = btrfs_cow_block(trans, root, b,
1751 p->nodes[level + 1],
1752 p->slots[level + 1], &b);
1753 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001754 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001755 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001756 }
Chris Mason02217ed2007-03-02 16:08:05 -05001757 }
Chris Mason65b51a02008-08-01 15:11:20 -04001758cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001759 BUG_ON(!cow && ins_len);
Chris Mason65b51a02008-08-01 15:11:20 -04001760
Chris Masoneb60cea2007-02-02 09:18:22 -05001761 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04001762 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001763
1764 /*
1765 * we have a lock on b and as long as we aren't changing
1766 * the tree, there is no way to for the items in b to change.
1767 * It is safe to drop the lock on our parent before we
1768 * go through the expensive btree search on b.
1769 *
1770 * If cow is true, then we might be changing slot zero,
1771 * which may require changing the parent. So, we can't
1772 * drop the lock until after we know which slot we're
1773 * operating on.
1774 */
1775 if (!cow)
1776 btrfs_unlock_up_safe(p, level + 1);
1777
Chris Mason5f39d392007-10-15 16:14:19 -04001778 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001779
Chris Mason5f39d392007-10-15 16:14:19 -04001780 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001781 int dec = 0;
1782 if (ret && slot > 0) {
1783 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001784 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04001785 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001786 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04001787 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04001788 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04001789 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001790 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001791 if (err) {
1792 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04001793 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001794 }
Chris Masonc8c42862009-04-03 10:14:18 -04001795 b = p->nodes[level];
1796 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001797
Chris Masonbd681512011-07-16 15:23:14 -04001798 /*
1799 * slot 0 is special, if we change the key
1800 * we have to update the parent pointer
1801 * which means we must have a write lock
1802 * on the parent
1803 */
1804 if (slot == 0 && cow &&
1805 write_lock_level < level + 1) {
1806 write_lock_level = level + 1;
1807 btrfs_release_path(p);
1808 goto again;
1809 }
1810
Chris Masonf9efa9c2008-06-25 16:14:04 -04001811 unlock_up(p, level, lowest_unlock);
1812
Chris Mason925baed2008-06-25 16:01:30 -04001813 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001814 if (dec)
1815 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001816 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001817 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001818
Yan Zheng33c66f42009-07-22 09:59:00 -04001819 err = read_block_for_search(trans, root, p,
Chris Masonc8c42862009-04-03 10:14:18 -04001820 &b, level, slot, key);
Yan Zheng33c66f42009-07-22 09:59:00 -04001821 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001822 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001823 if (err) {
1824 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04001825 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001826 }
Chris Mason76a05b32009-05-14 13:24:30 -04001827
Chris Masonb4ce94d2009-02-04 09:25:08 -05001828 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04001829 level = btrfs_header_level(b);
1830 if (level <= write_lock_level) {
1831 err = btrfs_try_tree_write_lock(b);
1832 if (!err) {
1833 btrfs_set_path_blocking(p);
1834 btrfs_tree_lock(b);
1835 btrfs_clear_path_blocking(p, b,
1836 BTRFS_WRITE_LOCK);
1837 }
1838 p->locks[level] = BTRFS_WRITE_LOCK;
1839 } else {
1840 err = btrfs_try_tree_read_lock(b);
1841 if (!err) {
1842 btrfs_set_path_blocking(p);
1843 btrfs_tree_read_lock(b);
1844 btrfs_clear_path_blocking(p, b,
1845 BTRFS_READ_LOCK);
1846 }
1847 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001848 }
Chris Masonbd681512011-07-16 15:23:14 -04001849 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001850 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001851 } else {
1852 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001853 if (ins_len > 0 &&
1854 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04001855 if (write_lock_level < 1) {
1856 write_lock_level = 1;
1857 btrfs_release_path(p);
1858 goto again;
1859 }
1860
Chris Masonb4ce94d2009-02-04 09:25:08 -05001861 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04001862 err = split_leaf(trans, root, key,
1863 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04001864 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001865
Yan Zheng33c66f42009-07-22 09:59:00 -04001866 BUG_ON(err > 0);
1867 if (err) {
1868 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001869 goto done;
1870 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001871 }
Chris Mason459931e2008-12-10 09:10:46 -05001872 if (!p->search_for_split)
1873 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001874 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001875 }
1876 }
Chris Mason65b51a02008-08-01 15:11:20 -04001877 ret = 1;
1878done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001879 /*
1880 * we don't really know what they plan on doing with the path
1881 * from here on, so for now just mark it as blocking
1882 */
Chris Masonb9473432009-03-13 11:00:37 -04001883 if (!p->leave_spinning)
1884 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001885 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02001886 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04001887 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001888}
1889
Chris Mason74123bd2007-02-02 11:05:29 -05001890/*
1891 * adjust the pointers going up the tree, starting at level
1892 * making sure the right key of each node is points to 'key'.
1893 * This is used after shifting pointers to the left, so it stops
1894 * fixing up pointers when a given leaf/node is not in slot 0 of the
1895 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001896 *
1897 * If this fails to write a tree block, it returns -1, but continues
1898 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001899 */
Chris Mason5f39d392007-10-15 16:14:19 -04001900static int fixup_low_keys(struct btrfs_trans_handle *trans,
1901 struct btrfs_root *root, struct btrfs_path *path,
1902 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001903{
1904 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001905 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001906 struct extent_buffer *t;
1907
Chris Mason234b63a2007-03-13 10:46:10 -04001908 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001909 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001910 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001911 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001912 t = path->nodes[i];
1913 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001914 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001915 if (tslot != 0)
1916 break;
1917 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001918 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001919}
1920
Chris Mason74123bd2007-02-02 11:05:29 -05001921/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001922 * update item key.
1923 *
1924 * This function isn't completely safe. It's the caller's responsibility
1925 * that the new key won't break the order
1926 */
1927int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1928 struct btrfs_root *root, struct btrfs_path *path,
1929 struct btrfs_key *new_key)
1930{
1931 struct btrfs_disk_key disk_key;
1932 struct extent_buffer *eb;
1933 int slot;
1934
1935 eb = path->nodes[0];
1936 slot = path->slots[0];
1937 if (slot > 0) {
1938 btrfs_item_key(eb, &disk_key, slot - 1);
1939 if (comp_keys(&disk_key, new_key) >= 0)
1940 return -1;
1941 }
1942 if (slot < btrfs_header_nritems(eb) - 1) {
1943 btrfs_item_key(eb, &disk_key, slot + 1);
1944 if (comp_keys(&disk_key, new_key) <= 0)
1945 return -1;
1946 }
1947
1948 btrfs_cpu_key_to_disk(&disk_key, new_key);
1949 btrfs_set_item_key(eb, &disk_key, slot);
1950 btrfs_mark_buffer_dirty(eb);
1951 if (slot == 0)
1952 fixup_low_keys(trans, root, path, &disk_key, 1);
1953 return 0;
1954}
1955
1956/*
Chris Mason74123bd2007-02-02 11:05:29 -05001957 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001958 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001959 *
1960 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1961 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001962 */
Chris Mason98ed5172008-01-03 10:01:48 -05001963static int push_node_left(struct btrfs_trans_handle *trans,
1964 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001965 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001966{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001967 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001968 int src_nritems;
1969 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001970 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001971
Chris Mason5f39d392007-10-15 16:14:19 -04001972 src_nritems = btrfs_header_nritems(src);
1973 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001974 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001975 WARN_ON(btrfs_header_generation(src) != trans->transid);
1976 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001977
Chris Masonbce4eae2008-04-24 14:42:46 -04001978 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001979 return 1;
1980
Chris Masond3977122009-01-05 21:25:51 -05001981 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001982 return 1;
1983
Chris Masonbce4eae2008-04-24 14:42:46 -04001984 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001985 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001986 if (push_items < src_nritems) {
1987 /* leave at least 8 pointers in the node if
1988 * we aren't going to empty it
1989 */
1990 if (src_nritems - push_items < 8) {
1991 if (push_items <= 8)
1992 return 1;
1993 push_items -= 8;
1994 }
1995 }
1996 } else
1997 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001998
Chris Mason5f39d392007-10-15 16:14:19 -04001999 copy_extent_buffer(dst, src,
2000 btrfs_node_key_ptr_offset(dst_nritems),
2001 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05002002 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04002003
Chris Masonbb803952007-03-01 12:04:21 -05002004 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002005 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
2006 btrfs_node_key_ptr_offset(push_items),
2007 (src_nritems - push_items) *
2008 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05002009 }
Chris Mason5f39d392007-10-15 16:14:19 -04002010 btrfs_set_header_nritems(src, src_nritems - push_items);
2011 btrfs_set_header_nritems(dst, dst_nritems + push_items);
2012 btrfs_mark_buffer_dirty(src);
2013 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002014
Chris Masonbb803952007-03-01 12:04:21 -05002015 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002016}
2017
Chris Mason97571fd2007-02-24 13:39:08 -05002018/*
Chris Mason79f95c82007-03-01 15:16:26 -05002019 * try to push data from one node into the next node right in the
2020 * tree.
2021 *
2022 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2023 * error, and > 0 if there was no room in the right hand block.
2024 *
2025 * this will only push up to 1/2 the contents of the left node over
2026 */
Chris Mason5f39d392007-10-15 16:14:19 -04002027static int balance_node_right(struct btrfs_trans_handle *trans,
2028 struct btrfs_root *root,
2029 struct extent_buffer *dst,
2030 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002031{
Chris Mason79f95c82007-03-01 15:16:26 -05002032 int push_items = 0;
2033 int max_push;
2034 int src_nritems;
2035 int dst_nritems;
2036 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002037
Chris Mason7bb86312007-12-11 09:25:06 -05002038 WARN_ON(btrfs_header_generation(src) != trans->transid);
2039 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2040
Chris Mason5f39d392007-10-15 16:14:19 -04002041 src_nritems = btrfs_header_nritems(src);
2042 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002043 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002044 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002045 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002046
Chris Masond3977122009-01-05 21:25:51 -05002047 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002048 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002049
2050 max_push = src_nritems / 2 + 1;
2051 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002052 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002053 return 1;
Yan252c38f2007-08-29 09:11:44 -04002054
Chris Mason79f95c82007-03-01 15:16:26 -05002055 if (max_push < push_items)
2056 push_items = max_push;
2057
Chris Mason5f39d392007-10-15 16:14:19 -04002058 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2059 btrfs_node_key_ptr_offset(0),
2060 (dst_nritems) *
2061 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002062
Chris Mason5f39d392007-10-15 16:14:19 -04002063 copy_extent_buffer(dst, src,
2064 btrfs_node_key_ptr_offset(0),
2065 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002066 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002067
Chris Mason5f39d392007-10-15 16:14:19 -04002068 btrfs_set_header_nritems(src, src_nritems - push_items);
2069 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002070
Chris Mason5f39d392007-10-15 16:14:19 -04002071 btrfs_mark_buffer_dirty(src);
2072 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002073
Chris Mason79f95c82007-03-01 15:16:26 -05002074 return ret;
2075}
2076
2077/*
Chris Mason97571fd2007-02-24 13:39:08 -05002078 * helper function to insert a new root level in the tree.
2079 * A new node is allocated, and a single item is inserted to
2080 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002081 *
2082 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002083 */
Chris Masond3977122009-01-05 21:25:51 -05002084static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002085 struct btrfs_root *root,
2086 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002087{
Chris Mason7bb86312007-12-11 09:25:06 -05002088 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002089 struct extent_buffer *lower;
2090 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002091 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002092 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05002093
2094 BUG_ON(path->nodes[level]);
2095 BUG_ON(path->nodes[level-1] != root->node);
2096
Chris Mason7bb86312007-12-11 09:25:06 -05002097 lower = path->nodes[level-1];
2098 if (level == 1)
2099 btrfs_item_key(lower, &lower_key, 0);
2100 else
2101 btrfs_node_key(lower, &lower_key, 0);
2102
Zheng Yan31840ae2008-09-23 13:14:14 -04002103 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002104 root->root_key.objectid, &lower_key,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002105 level, root->node->start, 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002106 if (IS_ERR(c))
2107 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002108
Yan, Zhengf0486c62010-05-16 10:46:25 -04002109 root_add_used(root, root->nodesize);
2110
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002111 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002112 btrfs_set_header_nritems(c, 1);
2113 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002114 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002115 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002116 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002117 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002118
Chris Mason5f39d392007-10-15 16:14:19 -04002119 write_extent_buffer(c, root->fs_info->fsid,
2120 (unsigned long)btrfs_header_fsid(c),
2121 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002122
2123 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2124 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2125 BTRFS_UUID_SIZE);
2126
Chris Mason5f39d392007-10-15 16:14:19 -04002127 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002128 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002129 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002130 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002131
2132 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002133
2134 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002135
Chris Mason925baed2008-06-25 16:01:30 -04002136 old = root->node;
Chris Mason240f62c2011-03-23 14:54:42 -04002137 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04002138
2139 /* the super has an extra ref to root->node */
2140 free_extent_buffer(old);
2141
Chris Mason0b86a832008-03-24 15:01:56 -04002142 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002143 extent_buffer_get(c);
2144 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04002145 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05002146 path->slots[level] = 0;
2147 return 0;
2148}
2149
Chris Mason74123bd2007-02-02 11:05:29 -05002150/*
2151 * worker function to insert a single pointer in a node.
2152 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002153 *
Chris Mason74123bd2007-02-02 11:05:29 -05002154 * slot and level indicate where you want the key to go, and
2155 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002156 *
2157 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002158 */
Chris Masone089f052007-03-16 16:20:31 -04002159static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2160 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002161 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002162{
Chris Mason5f39d392007-10-15 16:14:19 -04002163 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002164 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002165
2166 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002167 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002168 lower = path->nodes[level];
2169 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04002170 BUG_ON(slot > nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002171 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002172 BUG();
2173 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002174 memmove_extent_buffer(lower,
2175 btrfs_node_key_ptr_offset(slot + 1),
2176 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002177 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002178 }
Chris Mason5f39d392007-10-15 16:14:19 -04002179 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002180 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002181 WARN_ON(trans->transid == 0);
2182 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002183 btrfs_set_header_nritems(lower, nritems + 1);
2184 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002185 return 0;
2186}
2187
Chris Mason97571fd2007-02-24 13:39:08 -05002188/*
2189 * split the node at the specified level in path in two.
2190 * The path is corrected to point to the appropriate node after the split
2191 *
2192 * Before splitting this tries to make some room in the node by pushing
2193 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002194 *
2195 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002196 */
Chris Masone02119d2008-09-05 16:13:11 -04002197static noinline int split_node(struct btrfs_trans_handle *trans,
2198 struct btrfs_root *root,
2199 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002200{
Chris Mason5f39d392007-10-15 16:14:19 -04002201 struct extent_buffer *c;
2202 struct extent_buffer *split;
2203 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002204 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002205 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002206 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002207 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002208
Chris Mason5f39d392007-10-15 16:14:19 -04002209 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002210 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002211 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002212 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002213 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002214 if (ret)
2215 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04002216 } else {
Chris Masone66f7092007-04-20 13:16:02 -04002217 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002218 c = path->nodes[level];
2219 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002220 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002221 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002222 if (ret < 0)
2223 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002224 }
Chris Masone66f7092007-04-20 13:16:02 -04002225
Chris Mason5f39d392007-10-15 16:14:19 -04002226 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002227 mid = (c_nritems + 1) / 2;
2228 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05002229
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002230 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04002231 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002232 &disk_key, level, c->start, 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002233 if (IS_ERR(split))
2234 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002235
Yan, Zhengf0486c62010-05-16 10:46:25 -04002236 root_add_used(root, root->nodesize);
2237
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002238 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002239 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002240 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002241 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002242 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002243 btrfs_set_header_owner(split, root->root_key.objectid);
2244 write_extent_buffer(split, root->fs_info->fsid,
2245 (unsigned long)btrfs_header_fsid(split),
2246 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002247 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2248 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2249 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002250
Chris Mason5f39d392007-10-15 16:14:19 -04002251
2252 copy_extent_buffer(split, c,
2253 btrfs_node_key_ptr_offset(0),
2254 btrfs_node_key_ptr_offset(mid),
2255 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2256 btrfs_set_header_nritems(split, c_nritems - mid);
2257 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002258 ret = 0;
2259
Chris Mason5f39d392007-10-15 16:14:19 -04002260 btrfs_mark_buffer_dirty(c);
2261 btrfs_mark_buffer_dirty(split);
2262
Chris Masondb945352007-10-15 16:15:53 -04002263 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002264 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002265 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002266 if (wret)
2267 ret = wret;
2268
Chris Mason5de08d72007-02-24 06:24:44 -05002269 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002270 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002271 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002272 free_extent_buffer(c);
2273 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002274 path->slots[level + 1] += 1;
2275 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002276 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002277 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002278 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002279 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002280}
2281
Chris Mason74123bd2007-02-02 11:05:29 -05002282/*
2283 * how many bytes are required to store the items in a leaf. start
2284 * and nr indicate which items in the leaf to check. This totals up the
2285 * space used both by the item structs and the item data
2286 */
Chris Mason5f39d392007-10-15 16:14:19 -04002287static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002288{
2289 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002290 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002291 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002292
2293 if (!nr)
2294 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002295 data_len = btrfs_item_end_nr(l, start);
2296 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002297 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002298 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002299 return data_len;
2300}
2301
Chris Mason74123bd2007-02-02 11:05:29 -05002302/*
Chris Masond4dbff92007-04-04 14:08:15 -04002303 * The space between the end of the leaf items and
2304 * the start of the leaf data. IOW, how much room
2305 * the leaf has left for both items and data
2306 */
Chris Masond3977122009-01-05 21:25:51 -05002307noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002308 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002309{
Chris Mason5f39d392007-10-15 16:14:19 -04002310 int nritems = btrfs_header_nritems(leaf);
2311 int ret;
2312 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2313 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002314 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2315 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002316 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002317 leaf_space_used(leaf, 0, nritems), nritems);
2318 }
2319 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002320}
2321
Chris Mason99d8f832010-07-07 10:51:48 -04002322/*
2323 * min slot controls the lowest index we're willing to push to the
2324 * right. We'll push up to and including min_slot, but no lower
2325 */
Chris Mason44871b12009-03-13 10:04:31 -04002326static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2327 struct btrfs_root *root,
2328 struct btrfs_path *path,
2329 int data_size, int empty,
2330 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04002331 int free_space, u32 left_nritems,
2332 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05002333{
Chris Mason5f39d392007-10-15 16:14:19 -04002334 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002335 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002336 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002337 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002338 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002339 int push_space = 0;
2340 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002341 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002342 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002343 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002344 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002345 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05002346
Chris Mason34a38212007-11-07 13:31:03 -05002347 if (empty)
2348 nr = 0;
2349 else
Chris Mason99d8f832010-07-07 10:51:48 -04002350 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05002351
Zheng Yan31840ae2008-09-23 13:14:14 -04002352 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002353 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002354
Chris Mason44871b12009-03-13 10:04:31 -04002355 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002356 i = left_nritems - 1;
2357 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002358 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002359
Zheng Yan31840ae2008-09-23 13:14:14 -04002360 if (!empty && push_items > 0) {
2361 if (path->slots[0] > i)
2362 break;
2363 if (path->slots[0] == i) {
2364 int space = btrfs_leaf_free_space(root, left);
2365 if (space + push_space * 2 > free_space)
2366 break;
2367 }
2368 }
2369
Chris Mason00ec4c52007-02-24 12:47:20 -05002370 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002371 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002372
Chris Masondb945352007-10-15 16:15:53 -04002373 this_item_size = btrfs_item_size(left, item);
2374 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002375 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002376
Chris Mason00ec4c52007-02-24 12:47:20 -05002377 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002378 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002379 if (i == 0)
2380 break;
2381 i--;
Chris Masondb945352007-10-15 16:15:53 -04002382 }
Chris Mason5f39d392007-10-15 16:14:19 -04002383
Chris Mason925baed2008-06-25 16:01:30 -04002384 if (push_items == 0)
2385 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002386
Chris Mason34a38212007-11-07 13:31:03 -05002387 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002388 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002389
Chris Mason00ec4c52007-02-24 12:47:20 -05002390 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002391 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002392
Chris Mason5f39d392007-10-15 16:14:19 -04002393 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002394 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002395
Chris Mason00ec4c52007-02-24 12:47:20 -05002396 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002397 data_end = leaf_data_end(root, right);
2398 memmove_extent_buffer(right,
2399 btrfs_leaf_data(right) + data_end - push_space,
2400 btrfs_leaf_data(right) + data_end,
2401 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2402
Chris Mason00ec4c52007-02-24 12:47:20 -05002403 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002404 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002405 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2406 btrfs_leaf_data(left) + leaf_data_end(root, left),
2407 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002408
2409 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2410 btrfs_item_nr_offset(0),
2411 right_nritems * sizeof(struct btrfs_item));
2412
Chris Mason00ec4c52007-02-24 12:47:20 -05002413 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002414 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2415 btrfs_item_nr_offset(left_nritems - push_items),
2416 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002417
2418 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002419 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002420 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002421 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002422 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002423 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002424 push_space -= btrfs_item_size(right, item);
2425 btrfs_set_item_offset(right, item, push_space);
2426 }
2427
Chris Mason7518a232007-03-12 12:01:18 -04002428 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002429 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002430
Chris Mason34a38212007-11-07 13:31:03 -05002431 if (left_nritems)
2432 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002433 else
2434 clean_tree_block(trans, root, left);
2435
Chris Mason5f39d392007-10-15 16:14:19 -04002436 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002437
Chris Mason5f39d392007-10-15 16:14:19 -04002438 btrfs_item_key(right, &disk_key, 0);
2439 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002440 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002441
Chris Mason00ec4c52007-02-24 12:47:20 -05002442 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002443 if (path->slots[0] >= left_nritems) {
2444 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002445 if (btrfs_header_nritems(path->nodes[0]) == 0)
2446 clean_tree_block(trans, root, path->nodes[0]);
2447 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002448 free_extent_buffer(path->nodes[0]);
2449 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002450 path->slots[1] += 1;
2451 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002452 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002453 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002454 }
2455 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002456
2457out_unlock:
2458 btrfs_tree_unlock(right);
2459 free_extent_buffer(right);
2460 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002461}
Chris Mason925baed2008-06-25 16:01:30 -04002462
Chris Mason00ec4c52007-02-24 12:47:20 -05002463/*
Chris Mason44871b12009-03-13 10:04:31 -04002464 * push some data in the path leaf to the right, trying to free up at
2465 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2466 *
2467 * returns 1 if the push failed because the other node didn't have enough
2468 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04002469 *
2470 * this will push starting from min_slot to the end of the leaf. It won't
2471 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04002472 */
2473static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04002474 *root, struct btrfs_path *path,
2475 int min_data_size, int data_size,
2476 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04002477{
2478 struct extent_buffer *left = path->nodes[0];
2479 struct extent_buffer *right;
2480 struct extent_buffer *upper;
2481 int slot;
2482 int free_space;
2483 u32 left_nritems;
2484 int ret;
2485
2486 if (!path->nodes[1])
2487 return 1;
2488
2489 slot = path->slots[1];
2490 upper = path->nodes[1];
2491 if (slot >= btrfs_header_nritems(upper) - 1)
2492 return 1;
2493
2494 btrfs_assert_tree_locked(path->nodes[1]);
2495
2496 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00002497 if (right == NULL)
2498 return 1;
2499
Chris Mason44871b12009-03-13 10:04:31 -04002500 btrfs_tree_lock(right);
2501 btrfs_set_lock_blocking(right);
2502
2503 free_space = btrfs_leaf_free_space(root, right);
2504 if (free_space < data_size)
2505 goto out_unlock;
2506
2507 /* cow and double check */
2508 ret = btrfs_cow_block(trans, root, right, upper,
2509 slot + 1, &right);
2510 if (ret)
2511 goto out_unlock;
2512
2513 free_space = btrfs_leaf_free_space(root, right);
2514 if (free_space < data_size)
2515 goto out_unlock;
2516
2517 left_nritems = btrfs_header_nritems(left);
2518 if (left_nritems == 0)
2519 goto out_unlock;
2520
Chris Mason99d8f832010-07-07 10:51:48 -04002521 return __push_leaf_right(trans, root, path, min_data_size, empty,
2522 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04002523out_unlock:
2524 btrfs_tree_unlock(right);
2525 free_extent_buffer(right);
2526 return 1;
2527}
2528
2529/*
Chris Mason74123bd2007-02-02 11:05:29 -05002530 * push some data in the path leaf to the left, trying to free up at
2531 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04002532 *
2533 * max_slot can put a limit on how far into the leaf we'll push items. The
2534 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
2535 * items
Chris Mason74123bd2007-02-02 11:05:29 -05002536 */
Chris Mason44871b12009-03-13 10:04:31 -04002537static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2538 struct btrfs_root *root,
2539 struct btrfs_path *path, int data_size,
2540 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04002541 int free_space, u32 right_nritems,
2542 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002543{
Chris Mason5f39d392007-10-15 16:14:19 -04002544 struct btrfs_disk_key disk_key;
2545 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002546 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002547 int push_space = 0;
2548 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002549 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002550 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002551 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002552 int ret = 0;
2553 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002554 u32 this_item_size;
2555 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002556
Chris Mason34a38212007-11-07 13:31:03 -05002557 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04002558 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05002559 else
Chris Mason99d8f832010-07-07 10:51:48 -04002560 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05002561
2562 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002563 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002564
Zheng Yan31840ae2008-09-23 13:14:14 -04002565 if (!empty && push_items > 0) {
2566 if (path->slots[0] < i)
2567 break;
2568 if (path->slots[0] == i) {
2569 int space = btrfs_leaf_free_space(root, right);
2570 if (space + push_space * 2 > free_space)
2571 break;
2572 }
2573 }
2574
Chris Masonbe0e5c02007-01-26 15:51:26 -05002575 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002576 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002577
2578 this_item_size = btrfs_item_size(right, item);
2579 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002580 break;
Chris Masondb945352007-10-15 16:15:53 -04002581
Chris Masonbe0e5c02007-01-26 15:51:26 -05002582 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002583 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002584 }
Chris Masondb945352007-10-15 16:15:53 -04002585
Chris Masonbe0e5c02007-01-26 15:51:26 -05002586 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002587 ret = 1;
2588 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002589 }
Chris Mason34a38212007-11-07 13:31:03 -05002590 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002591 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002592
Chris Masonbe0e5c02007-01-26 15:51:26 -05002593 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002594 copy_extent_buffer(left, right,
2595 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2596 btrfs_item_nr_offset(0),
2597 push_items * sizeof(struct btrfs_item));
2598
Chris Mason123abc82007-03-14 14:14:43 -04002599 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002600 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002601
2602 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002603 leaf_data_end(root, left) - push_space,
2604 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002605 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002606 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002607 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002608 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002609
Chris Masondb945352007-10-15 16:15:53 -04002610 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002611 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002612 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002613
Chris Mason5f39d392007-10-15 16:14:19 -04002614 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002615
Chris Mason5f39d392007-10-15 16:14:19 -04002616 ioff = btrfs_item_offset(left, item);
2617 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002618 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002619 }
Chris Mason5f39d392007-10-15 16:14:19 -04002620 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002621
2622 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002623 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002624 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2625 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002626 WARN_ON(1);
2627 }
Chris Mason5f39d392007-10-15 16:14:19 -04002628
Chris Mason34a38212007-11-07 13:31:03 -05002629 if (push_items < right_nritems) {
2630 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2631 leaf_data_end(root, right);
2632 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2633 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2634 btrfs_leaf_data(right) +
2635 leaf_data_end(root, right), push_space);
2636
2637 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002638 btrfs_item_nr_offset(push_items),
2639 (btrfs_header_nritems(right) - push_items) *
2640 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002641 }
Yaneef1c492007-11-26 10:58:13 -05002642 right_nritems -= push_items;
2643 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002644 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002645 for (i = 0; i < right_nritems; i++) {
2646 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002647
Chris Masondb945352007-10-15 16:15:53 -04002648 push_space = push_space - btrfs_item_size(right, item);
2649 btrfs_set_item_offset(right, item, push_space);
2650 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002651
Chris Mason5f39d392007-10-15 16:14:19 -04002652 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002653 if (right_nritems)
2654 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002655 else
2656 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04002657
Chris Mason5f39d392007-10-15 16:14:19 -04002658 btrfs_item_key(right, &disk_key, 0);
2659 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002660 if (wret)
2661 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002662
2663 /* then fixup the leaf pointer in the path */
2664 if (path->slots[0] < push_items) {
2665 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002666 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002667 free_extent_buffer(path->nodes[0]);
2668 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002669 path->slots[1] -= 1;
2670 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002671 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002672 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002673 path->slots[0] -= push_items;
2674 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002675 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002676 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002677out:
2678 btrfs_tree_unlock(left);
2679 free_extent_buffer(left);
2680 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002681}
2682
Chris Mason74123bd2007-02-02 11:05:29 -05002683/*
Chris Mason44871b12009-03-13 10:04:31 -04002684 * push some data in the path leaf to the left, trying to free up at
2685 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04002686 *
2687 * max_slot can put a limit on how far into the leaf we'll push items. The
2688 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
2689 * items
Chris Mason44871b12009-03-13 10:04:31 -04002690 */
2691static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04002692 *root, struct btrfs_path *path, int min_data_size,
2693 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04002694{
2695 struct extent_buffer *right = path->nodes[0];
2696 struct extent_buffer *left;
2697 int slot;
2698 int free_space;
2699 u32 right_nritems;
2700 int ret = 0;
2701
2702 slot = path->slots[1];
2703 if (slot == 0)
2704 return 1;
2705 if (!path->nodes[1])
2706 return 1;
2707
2708 right_nritems = btrfs_header_nritems(right);
2709 if (right_nritems == 0)
2710 return 1;
2711
2712 btrfs_assert_tree_locked(path->nodes[1]);
2713
2714 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00002715 if (left == NULL)
2716 return 1;
2717
Chris Mason44871b12009-03-13 10:04:31 -04002718 btrfs_tree_lock(left);
2719 btrfs_set_lock_blocking(left);
2720
2721 free_space = btrfs_leaf_free_space(root, left);
2722 if (free_space < data_size) {
2723 ret = 1;
2724 goto out;
2725 }
2726
2727 /* cow and double check */
2728 ret = btrfs_cow_block(trans, root, left,
2729 path->nodes[1], slot - 1, &left);
2730 if (ret) {
2731 /* we hit -ENOSPC, but it isn't fatal here */
2732 ret = 1;
2733 goto out;
2734 }
2735
2736 free_space = btrfs_leaf_free_space(root, left);
2737 if (free_space < data_size) {
2738 ret = 1;
2739 goto out;
2740 }
2741
Chris Mason99d8f832010-07-07 10:51:48 -04002742 return __push_leaf_left(trans, root, path, min_data_size,
2743 empty, left, free_space, right_nritems,
2744 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04002745out:
2746 btrfs_tree_unlock(left);
2747 free_extent_buffer(left);
2748 return ret;
2749}
2750
2751/*
Chris Mason74123bd2007-02-02 11:05:29 -05002752 * split the path's leaf in two, making sure there is at least data_size
2753 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002754 *
2755 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002756 */
Chris Mason44871b12009-03-13 10:04:31 -04002757static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002758 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002759 struct btrfs_path *path,
2760 struct extent_buffer *l,
2761 struct extent_buffer *right,
2762 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002763{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002764 int data_copy_size;
2765 int rt_data_off;
2766 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002767 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002768 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002769 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002770
Chris Mason5f39d392007-10-15 16:14:19 -04002771 nritems = nritems - mid;
2772 btrfs_set_header_nritems(right, nritems);
2773 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2774
2775 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2776 btrfs_item_nr_offset(mid),
2777 nritems * sizeof(struct btrfs_item));
2778
2779 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002780 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2781 data_copy_size, btrfs_leaf_data(l) +
2782 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002783
Chris Mason5f39d392007-10-15 16:14:19 -04002784 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2785 btrfs_item_end_nr(l, mid);
2786
2787 for (i = 0; i < nritems; i++) {
2788 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002789 u32 ioff;
2790
Chris Masondb945352007-10-15 16:15:53 -04002791 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002792 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002793 }
Chris Mason74123bd2007-02-02 11:05:29 -05002794
Chris Mason5f39d392007-10-15 16:14:19 -04002795 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002796 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002797 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002798 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2799 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002800 if (wret)
2801 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002802
2803 btrfs_mark_buffer_dirty(right);
2804 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002805 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002806
Chris Masonbe0e5c02007-01-26 15:51:26 -05002807 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002808 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002809 free_extent_buffer(path->nodes[0]);
2810 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002811 path->slots[0] -= mid;
2812 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002813 } else {
2814 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002815 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002816 }
Chris Mason5f39d392007-10-15 16:14:19 -04002817
Chris Masoneb60cea2007-02-02 09:18:22 -05002818 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002819
Chris Mason44871b12009-03-13 10:04:31 -04002820 return ret;
2821}
2822
2823/*
Chris Mason99d8f832010-07-07 10:51:48 -04002824 * double splits happen when we need to insert a big item in the middle
2825 * of a leaf. A double split can leave us with 3 mostly empty leaves:
2826 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
2827 * A B C
2828 *
2829 * We avoid this by trying to push the items on either side of our target
2830 * into the adjacent leaves. If all goes well we can avoid the double split
2831 * completely.
2832 */
2833static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
2834 struct btrfs_root *root,
2835 struct btrfs_path *path,
2836 int data_size)
2837{
2838 int ret;
2839 int progress = 0;
2840 int slot;
2841 u32 nritems;
2842
2843 slot = path->slots[0];
2844
2845 /*
2846 * try to push all the items after our slot into the
2847 * right leaf
2848 */
2849 ret = push_leaf_right(trans, root, path, 1, data_size, 0, slot);
2850 if (ret < 0)
2851 return ret;
2852
2853 if (ret == 0)
2854 progress++;
2855
2856 nritems = btrfs_header_nritems(path->nodes[0]);
2857 /*
2858 * our goal is to get our slot at the start or end of a leaf. If
2859 * we've done so we're done
2860 */
2861 if (path->slots[0] == 0 || path->slots[0] == nritems)
2862 return 0;
2863
2864 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
2865 return 0;
2866
2867 /* try to push all the items before our slot into the next leaf */
2868 slot = path->slots[0];
2869 ret = push_leaf_left(trans, root, path, 1, data_size, 0, slot);
2870 if (ret < 0)
2871 return ret;
2872
2873 if (ret == 0)
2874 progress++;
2875
2876 if (progress)
2877 return 0;
2878 return 1;
2879}
2880
2881/*
Chris Mason44871b12009-03-13 10:04:31 -04002882 * split the path's leaf in two, making sure there is at least data_size
2883 * available for the resulting leaf level of the path.
2884 *
2885 * returns 0 if all went well and < 0 on failure.
2886 */
2887static noinline int split_leaf(struct btrfs_trans_handle *trans,
2888 struct btrfs_root *root,
2889 struct btrfs_key *ins_key,
2890 struct btrfs_path *path, int data_size,
2891 int extend)
2892{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002893 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04002894 struct extent_buffer *l;
2895 u32 nritems;
2896 int mid;
2897 int slot;
2898 struct extent_buffer *right;
2899 int ret = 0;
2900 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002901 int split;
Chris Mason44871b12009-03-13 10:04:31 -04002902 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04002903 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04002904
Yan, Zhenga5719522009-09-24 09:17:31 -04002905 l = path->nodes[0];
2906 slot = path->slots[0];
2907 if (extend && data_size + btrfs_item_size_nr(l, slot) +
2908 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
2909 return -EOVERFLOW;
2910
Chris Mason44871b12009-03-13 10:04:31 -04002911 /* first try to make some room by pushing left and right */
Chris Mason99d8f832010-07-07 10:51:48 -04002912 if (data_size) {
2913 wret = push_leaf_right(trans, root, path, data_size,
2914 data_size, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04002915 if (wret < 0)
2916 return wret;
2917 if (wret) {
Chris Mason99d8f832010-07-07 10:51:48 -04002918 wret = push_leaf_left(trans, root, path, data_size,
2919 data_size, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04002920 if (wret < 0)
2921 return wret;
2922 }
2923 l = path->nodes[0];
2924
2925 /* did the pushes work? */
2926 if (btrfs_leaf_free_space(root, l) >= data_size)
2927 return 0;
2928 }
2929
2930 if (!path->nodes[1]) {
2931 ret = insert_new_root(trans, root, path, 1);
2932 if (ret)
2933 return ret;
2934 }
2935again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002936 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04002937 l = path->nodes[0];
2938 slot = path->slots[0];
2939 nritems = btrfs_header_nritems(l);
2940 mid = (nritems + 1) / 2;
2941
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002942 if (mid <= slot) {
2943 if (nritems == 1 ||
2944 leaf_space_used(l, mid, nritems - mid) + data_size >
2945 BTRFS_LEAF_DATA_SIZE(root)) {
2946 if (slot >= nritems) {
2947 split = 0;
2948 } else {
2949 mid = slot;
2950 if (mid != nritems &&
2951 leaf_space_used(l, mid, nritems - mid) +
2952 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04002953 if (data_size && !tried_avoid_double)
2954 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002955 split = 2;
2956 }
2957 }
2958 }
2959 } else {
2960 if (leaf_space_used(l, 0, mid) + data_size >
2961 BTRFS_LEAF_DATA_SIZE(root)) {
2962 if (!extend && data_size && slot == 0) {
2963 split = 0;
2964 } else if ((extend || !data_size) && slot == 0) {
2965 mid = 1;
2966 } else {
2967 mid = slot;
2968 if (mid != nritems &&
2969 leaf_space_used(l, mid, nritems - mid) +
2970 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04002971 if (data_size && !tried_avoid_double)
2972 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002973 split = 2 ;
2974 }
2975 }
2976 }
2977 }
2978
2979 if (split == 0)
2980 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2981 else
2982 btrfs_item_key(l, &disk_key, mid);
2983
2984 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04002985 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002986 &disk_key, 0, l->start, 0, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002987 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04002988 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002989
2990 root_add_used(root, root->leafsize);
Chris Mason44871b12009-03-13 10:04:31 -04002991
2992 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2993 btrfs_set_header_bytenr(right, right->start);
2994 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002995 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04002996 btrfs_set_header_owner(right, root->root_key.objectid);
2997 btrfs_set_header_level(right, 0);
2998 write_extent_buffer(right, root->fs_info->fsid,
2999 (unsigned long)btrfs_header_fsid(right),
3000 BTRFS_FSID_SIZE);
3001
3002 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
3003 (unsigned long)btrfs_header_chunk_tree_uuid(right),
3004 BTRFS_UUID_SIZE);
3005
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003006 if (split == 0) {
3007 if (mid <= slot) {
3008 btrfs_set_header_nritems(right, 0);
3009 wret = insert_ptr(trans, root, path,
3010 &disk_key, right->start,
3011 path->slots[1] + 1, 1);
3012 if (wret)
3013 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04003014
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003015 btrfs_tree_unlock(path->nodes[0]);
3016 free_extent_buffer(path->nodes[0]);
3017 path->nodes[0] = right;
3018 path->slots[0] = 0;
3019 path->slots[1] += 1;
3020 } else {
3021 btrfs_set_header_nritems(right, 0);
3022 wret = insert_ptr(trans, root, path,
3023 &disk_key,
3024 right->start,
3025 path->slots[1], 1);
3026 if (wret)
3027 ret = wret;
3028 btrfs_tree_unlock(path->nodes[0]);
3029 free_extent_buffer(path->nodes[0]);
3030 path->nodes[0] = right;
3031 path->slots[0] = 0;
3032 if (path->slots[1] == 0) {
3033 wret = fixup_low_keys(trans, root,
3034 path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04003035 if (wret)
3036 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04003037 }
3038 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003039 btrfs_mark_buffer_dirty(right);
3040 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04003041 }
3042
3043 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
3044 BUG_ON(ret);
3045
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003046 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04003047 BUG_ON(num_doubles != 0);
3048 num_doubles++;
3049 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04003050 }
Chris Mason44871b12009-03-13 10:04:31 -04003051
Chris Masonbe0e5c02007-01-26 15:51:26 -05003052 return ret;
Chris Mason99d8f832010-07-07 10:51:48 -04003053
3054push_for_double:
3055 push_for_double_split(trans, root, path, data_size);
3056 tried_avoid_double = 1;
3057 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
3058 return 0;
3059 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003060}
3061
Yan, Zhengad48fd752009-11-12 09:33:58 +00003062static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
3063 struct btrfs_root *root,
3064 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05003065{
Yan, Zhengad48fd752009-11-12 09:33:58 +00003066 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05003067 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003068 struct btrfs_file_extent_item *fi;
3069 u64 extent_len = 0;
3070 u32 item_size;
3071 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05003072
3073 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00003074 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3075
3076 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
3077 key.type != BTRFS_EXTENT_CSUM_KEY);
3078
3079 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
3080 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05003081
3082 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003083 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3084 fi = btrfs_item_ptr(leaf, path->slots[0],
3085 struct btrfs_file_extent_item);
3086 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
3087 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003088 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05003089
Chris Mason459931e2008-12-10 09:10:46 -05003090 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003091 path->search_for_split = 1;
3092 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05003093 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003094 if (ret < 0)
3095 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003096
Yan, Zhengad48fd752009-11-12 09:33:58 +00003097 ret = -EAGAIN;
3098 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05003099 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00003100 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
3101 goto err;
3102
Chris Mason109f6ae2010-04-02 09:20:18 -04003103 /* the leaf has changed, it now has room. return now */
3104 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
3105 goto err;
3106
Yan, Zhengad48fd752009-11-12 09:33:58 +00003107 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3108 fi = btrfs_item_ptr(leaf, path->slots[0],
3109 struct btrfs_file_extent_item);
3110 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
3111 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003112 }
3113
Chris Masonb9473432009-03-13 11:00:37 -04003114 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003115 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003116 if (ret)
3117 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003118
Yan, Zhengad48fd752009-11-12 09:33:58 +00003119 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04003120 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003121 return 0;
3122err:
3123 path->keep_locks = 0;
3124 return ret;
3125}
3126
3127static noinline int split_item(struct btrfs_trans_handle *trans,
3128 struct btrfs_root *root,
3129 struct btrfs_path *path,
3130 struct btrfs_key *new_key,
3131 unsigned long split_offset)
3132{
3133 struct extent_buffer *leaf;
3134 struct btrfs_item *item;
3135 struct btrfs_item *new_item;
3136 int slot;
3137 char *buf;
3138 u32 nritems;
3139 u32 item_size;
3140 u32 orig_offset;
3141 struct btrfs_disk_key disk_key;
3142
Chris Masonb9473432009-03-13 11:00:37 -04003143 leaf = path->nodes[0];
3144 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
3145
Chris Masonb4ce94d2009-02-04 09:25:08 -05003146 btrfs_set_path_blocking(path);
3147
Chris Mason459931e2008-12-10 09:10:46 -05003148 item = btrfs_item_nr(leaf, path->slots[0]);
3149 orig_offset = btrfs_item_offset(leaf, item);
3150 item_size = btrfs_item_size(leaf, item);
3151
Chris Mason459931e2008-12-10 09:10:46 -05003152 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003153 if (!buf)
3154 return -ENOMEM;
3155
Chris Mason459931e2008-12-10 09:10:46 -05003156 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3157 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003158
Chris Mason459931e2008-12-10 09:10:46 -05003159 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05003160 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05003161 if (slot != nritems) {
3162 /* shift the items */
3163 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00003164 btrfs_item_nr_offset(slot),
3165 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05003166 }
3167
3168 btrfs_cpu_key_to_disk(&disk_key, new_key);
3169 btrfs_set_item_key(leaf, &disk_key, slot);
3170
3171 new_item = btrfs_item_nr(leaf, slot);
3172
3173 btrfs_set_item_offset(leaf, new_item, orig_offset);
3174 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3175
3176 btrfs_set_item_offset(leaf, item,
3177 orig_offset + item_size - split_offset);
3178 btrfs_set_item_size(leaf, item, split_offset);
3179
3180 btrfs_set_header_nritems(leaf, nritems + 1);
3181
3182 /* write the data for the start of the original item */
3183 write_extent_buffer(leaf, buf,
3184 btrfs_item_ptr_offset(leaf, path->slots[0]),
3185 split_offset);
3186
3187 /* write the data for the new item */
3188 write_extent_buffer(leaf, buf + split_offset,
3189 btrfs_item_ptr_offset(leaf, slot),
3190 item_size - split_offset);
3191 btrfs_mark_buffer_dirty(leaf);
3192
Yan, Zhengad48fd752009-11-12 09:33:58 +00003193 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05003194 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003195 return 0;
3196}
3197
3198/*
3199 * This function splits a single item into two items,
3200 * giving 'new_key' to the new item and splitting the
3201 * old one at split_offset (from the start of the item).
3202 *
3203 * The path may be released by this operation. After
3204 * the split, the path is pointing to the old item. The
3205 * new item is going to be in the same node as the old one.
3206 *
3207 * Note, the item being split must be smaller enough to live alone on
3208 * a tree block with room for one extra struct btrfs_item
3209 *
3210 * This allows us to split the item in place, keeping a lock on the
3211 * leaf the entire time.
3212 */
3213int btrfs_split_item(struct btrfs_trans_handle *trans,
3214 struct btrfs_root *root,
3215 struct btrfs_path *path,
3216 struct btrfs_key *new_key,
3217 unsigned long split_offset)
3218{
3219 int ret;
3220 ret = setup_leaf_for_split(trans, root, path,
3221 sizeof(struct btrfs_item));
3222 if (ret)
3223 return ret;
3224
3225 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05003226 return ret;
3227}
3228
3229/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00003230 * This function duplicate a item, giving 'new_key' to the new item.
3231 * It guarantees both items live in the same tree leaf and the new item
3232 * is contiguous with the original item.
3233 *
3234 * This allows us to split file extent in place, keeping a lock on the
3235 * leaf the entire time.
3236 */
3237int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
3238 struct btrfs_root *root,
3239 struct btrfs_path *path,
3240 struct btrfs_key *new_key)
3241{
3242 struct extent_buffer *leaf;
3243 int ret;
3244 u32 item_size;
3245
3246 leaf = path->nodes[0];
3247 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3248 ret = setup_leaf_for_split(trans, root, path,
3249 item_size + sizeof(struct btrfs_item));
3250 if (ret)
3251 return ret;
3252
3253 path->slots[0]++;
3254 ret = setup_items_for_insert(trans, root, path, new_key, &item_size,
3255 item_size, item_size +
3256 sizeof(struct btrfs_item), 1);
3257 BUG_ON(ret);
3258
3259 leaf = path->nodes[0];
3260 memcpy_extent_buffer(leaf,
3261 btrfs_item_ptr_offset(leaf, path->slots[0]),
3262 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
3263 item_size);
3264 return 0;
3265}
3266
3267/*
Chris Masond352ac62008-09-29 15:18:18 -04003268 * make the item pointed to by the path smaller. new_size indicates
3269 * how small to make it, and from_end tells us if we just chop bytes
3270 * off the end of the item or if we shift the item to chop bytes off
3271 * the front.
3272 */
Chris Masonb18c6682007-04-17 13:26:50 -04003273int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3274 struct btrfs_root *root,
3275 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003276 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003277{
Chris Masonb18c6682007-04-17 13:26:50 -04003278 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04003279 struct extent_buffer *leaf;
3280 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003281 u32 nritems;
3282 unsigned int data_end;
3283 unsigned int old_data_start;
3284 unsigned int old_size;
3285 unsigned int size_diff;
3286 int i;
3287
Chris Mason5f39d392007-10-15 16:14:19 -04003288 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003289 slot = path->slots[0];
3290
3291 old_size = btrfs_item_size_nr(leaf, slot);
3292 if (old_size == new_size)
3293 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003294
Chris Mason5f39d392007-10-15 16:14:19 -04003295 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003296 data_end = leaf_data_end(root, leaf);
3297
Chris Mason5f39d392007-10-15 16:14:19 -04003298 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003299
Chris Masonb18c6682007-04-17 13:26:50 -04003300 size_diff = old_size - new_size;
3301
3302 BUG_ON(slot < 0);
3303 BUG_ON(slot >= nritems);
3304
3305 /*
3306 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3307 */
3308 /* first correct the data pointers */
3309 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003310 u32 ioff;
3311 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003312
Chris Mason5f39d392007-10-15 16:14:19 -04003313 ioff = btrfs_item_offset(leaf, item);
3314 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003315 }
Chris Masondb945352007-10-15 16:15:53 -04003316
Chris Masonb18c6682007-04-17 13:26:50 -04003317 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003318 if (from_end) {
3319 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3320 data_end + size_diff, btrfs_leaf_data(leaf) +
3321 data_end, old_data_start + new_size - data_end);
3322 } else {
3323 struct btrfs_disk_key disk_key;
3324 u64 offset;
3325
3326 btrfs_item_key(leaf, &disk_key, slot);
3327
3328 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3329 unsigned long ptr;
3330 struct btrfs_file_extent_item *fi;
3331
3332 fi = btrfs_item_ptr(leaf, slot,
3333 struct btrfs_file_extent_item);
3334 fi = (struct btrfs_file_extent_item *)(
3335 (unsigned long)fi - size_diff);
3336
3337 if (btrfs_file_extent_type(leaf, fi) ==
3338 BTRFS_FILE_EXTENT_INLINE) {
3339 ptr = btrfs_item_ptr_offset(leaf, slot);
3340 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003341 (unsigned long)fi,
3342 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003343 disk_bytenr));
3344 }
3345 }
3346
3347 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3348 data_end + size_diff, btrfs_leaf_data(leaf) +
3349 data_end, old_data_start - data_end);
3350
3351 offset = btrfs_disk_key_offset(&disk_key);
3352 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3353 btrfs_set_item_key(leaf, &disk_key, slot);
3354 if (slot == 0)
3355 fixup_low_keys(trans, root, path, &disk_key, 1);
3356 }
Chris Mason5f39d392007-10-15 16:14:19 -04003357
3358 item = btrfs_item_nr(leaf, slot);
3359 btrfs_set_item_size(leaf, item, new_size);
3360 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003361
Chris Mason5f39d392007-10-15 16:14:19 -04003362 if (btrfs_leaf_free_space(root, leaf) < 0) {
3363 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003364 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003365 }
Tsutomu Itoh1cd30792011-05-19 05:19:08 +00003366 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003367}
3368
Chris Masond352ac62008-09-29 15:18:18 -04003369/*
3370 * make the item pointed to by the path bigger, data_size is the new size.
3371 */
Chris Mason5f39d392007-10-15 16:14:19 -04003372int btrfs_extend_item(struct btrfs_trans_handle *trans,
3373 struct btrfs_root *root, struct btrfs_path *path,
3374 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003375{
Chris Mason6567e832007-04-16 09:22:45 -04003376 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04003377 struct extent_buffer *leaf;
3378 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003379 u32 nritems;
3380 unsigned int data_end;
3381 unsigned int old_data;
3382 unsigned int old_size;
3383 int i;
3384
Chris Mason5f39d392007-10-15 16:14:19 -04003385 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003386
Chris Mason5f39d392007-10-15 16:14:19 -04003387 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003388 data_end = leaf_data_end(root, leaf);
3389
Chris Mason5f39d392007-10-15 16:14:19 -04003390 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3391 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003392 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003393 }
Chris Mason6567e832007-04-16 09:22:45 -04003394 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003395 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003396
3397 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003398 if (slot >= nritems) {
3399 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003400 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3401 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003402 BUG_ON(1);
3403 }
Chris Mason6567e832007-04-16 09:22:45 -04003404
3405 /*
3406 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3407 */
3408 /* first correct the data pointers */
3409 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003410 u32 ioff;
3411 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003412
Chris Mason5f39d392007-10-15 16:14:19 -04003413 ioff = btrfs_item_offset(leaf, item);
3414 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003415 }
Chris Mason5f39d392007-10-15 16:14:19 -04003416
Chris Mason6567e832007-04-16 09:22:45 -04003417 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003418 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003419 data_end - data_size, btrfs_leaf_data(leaf) +
3420 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003421
Chris Mason6567e832007-04-16 09:22:45 -04003422 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003423 old_size = btrfs_item_size_nr(leaf, slot);
3424 item = btrfs_item_nr(leaf, slot);
3425 btrfs_set_item_size(leaf, item, old_size + data_size);
3426 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003427
Chris Mason5f39d392007-10-15 16:14:19 -04003428 if (btrfs_leaf_free_space(root, leaf) < 0) {
3429 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003430 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003431 }
Tsutomu Itoh1cd30792011-05-19 05:19:08 +00003432 return 0;
Chris Mason6567e832007-04-16 09:22:45 -04003433}
3434
Chris Mason74123bd2007-02-02 11:05:29 -05003435/*
Chris Masond352ac62008-09-29 15:18:18 -04003436 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003437 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003438 * Returns the number of keys that were inserted.
3439 */
3440int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3441 struct btrfs_root *root,
3442 struct btrfs_path *path,
3443 struct btrfs_key *cpu_key, u32 *data_size,
3444 int nr)
3445{
3446 struct extent_buffer *leaf;
3447 struct btrfs_item *item;
3448 int ret = 0;
3449 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003450 int i;
3451 u32 nritems;
3452 u32 total_data = 0;
3453 u32 total_size = 0;
3454 unsigned int data_end;
3455 struct btrfs_disk_key disk_key;
3456 struct btrfs_key found_key;
3457
Yan Zheng87b29b22008-12-17 10:21:48 -05003458 for (i = 0; i < nr; i++) {
3459 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3460 BTRFS_LEAF_DATA_SIZE(root)) {
3461 break;
3462 nr = i;
3463 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003464 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003465 total_size += data_size[i] + sizeof(struct btrfs_item);
3466 }
3467 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003468
Josef Bacikf3465ca2008-11-12 14:19:50 -05003469 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3470 if (ret == 0)
3471 return -EEXIST;
3472 if (ret < 0)
3473 goto out;
3474
Josef Bacikf3465ca2008-11-12 14:19:50 -05003475 leaf = path->nodes[0];
3476
3477 nritems = btrfs_header_nritems(leaf);
3478 data_end = leaf_data_end(root, leaf);
3479
3480 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3481 for (i = nr; i >= 0; i--) {
3482 total_data -= data_size[i];
3483 total_size -= data_size[i] + sizeof(struct btrfs_item);
3484 if (total_size < btrfs_leaf_free_space(root, leaf))
3485 break;
3486 }
3487 nr = i;
3488 }
3489
3490 slot = path->slots[0];
3491 BUG_ON(slot < 0);
3492
3493 if (slot != nritems) {
3494 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3495
3496 item = btrfs_item_nr(leaf, slot);
3497 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3498
3499 /* figure out how many keys we can insert in here */
3500 total_data = data_size[0];
3501 for (i = 1; i < nr; i++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003502 if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0)
Josef Bacikf3465ca2008-11-12 14:19:50 -05003503 break;
3504 total_data += data_size[i];
3505 }
3506 nr = i;
3507
3508 if (old_data < data_end) {
3509 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003510 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003511 slot, old_data, data_end);
3512 BUG_ON(1);
3513 }
3514 /*
3515 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3516 */
3517 /* first correct the data pointers */
Josef Bacikf3465ca2008-11-12 14:19:50 -05003518 for (i = slot; i < nritems; i++) {
3519 u32 ioff;
3520
3521 item = btrfs_item_nr(leaf, i);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003522 ioff = btrfs_item_offset(leaf, item);
3523 btrfs_set_item_offset(leaf, item, ioff - total_data);
3524 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003525 /* shift the items */
3526 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3527 btrfs_item_nr_offset(slot),
3528 (nritems - slot) * sizeof(struct btrfs_item));
3529
3530 /* shift the data */
3531 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3532 data_end - total_data, btrfs_leaf_data(leaf) +
3533 data_end, old_data - data_end);
3534 data_end = old_data;
3535 } else {
3536 /*
3537 * this sucks but it has to be done, if we are inserting at
3538 * the end of the leaf only insert 1 of the items, since we
3539 * have no way of knowing whats on the next leaf and we'd have
3540 * to drop our current locks to figure it out
3541 */
3542 nr = 1;
3543 }
3544
3545 /* setup the item for the new data */
3546 for (i = 0; i < nr; i++) {
3547 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3548 btrfs_set_item_key(leaf, &disk_key, slot + i);
3549 item = btrfs_item_nr(leaf, slot + i);
3550 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3551 data_end -= data_size[i];
3552 btrfs_set_item_size(leaf, item, data_size[i]);
3553 }
3554 btrfs_set_header_nritems(leaf, nritems + nr);
3555 btrfs_mark_buffer_dirty(leaf);
3556
3557 ret = 0;
3558 if (slot == 0) {
3559 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3560 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3561 }
3562
3563 if (btrfs_leaf_free_space(root, leaf) < 0) {
3564 btrfs_print_leaf(root, leaf);
3565 BUG();
3566 }
3567out:
3568 if (!ret)
3569 ret = nr;
3570 return ret;
3571}
3572
3573/*
Chris Mason44871b12009-03-13 10:04:31 -04003574 * this is a helper for btrfs_insert_empty_items, the main goal here is
3575 * to save stack depth by doing the bulk of the work in a function
3576 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003577 */
Miao Xie16cdcec2011-04-22 18:12:22 +08003578int setup_items_for_insert(struct btrfs_trans_handle *trans,
3579 struct btrfs_root *root, struct btrfs_path *path,
3580 struct btrfs_key *cpu_key, u32 *data_size,
3581 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003582{
Chris Mason5f39d392007-10-15 16:14:19 -04003583 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003584 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003585 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003586 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003587 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003588 int ret;
3589 struct extent_buffer *leaf;
3590 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003591
Chris Mason5f39d392007-10-15 16:14:19 -04003592 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003593 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003594
Chris Mason5f39d392007-10-15 16:14:19 -04003595 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003596 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003597
Chris Masonf25956c2008-09-12 15:32:53 -04003598 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003599 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003600 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003601 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003602 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003603 }
Chris Mason5f39d392007-10-15 16:14:19 -04003604
Chris Masonbe0e5c02007-01-26 15:51:26 -05003605 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003606 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003607
Chris Mason5f39d392007-10-15 16:14:19 -04003608 if (old_data < data_end) {
3609 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003610 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003611 slot, old_data, data_end);
3612 BUG_ON(1);
3613 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003614 /*
3615 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3616 */
3617 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04003618 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003619 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003620
Chris Mason5f39d392007-10-15 16:14:19 -04003621 item = btrfs_item_nr(leaf, i);
3622 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003623 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003624 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003625 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003626 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003627 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003628 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003629
3630 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003631 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003632 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003633 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003634 data_end = old_data;
3635 }
Chris Mason5f39d392007-10-15 16:14:19 -04003636
Chris Mason62e27492007-03-15 12:56:47 -04003637 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003638 for (i = 0; i < nr; i++) {
3639 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3640 btrfs_set_item_key(leaf, &disk_key, slot + i);
3641 item = btrfs_item_nr(leaf, slot + i);
3642 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3643 data_end -= data_size[i];
3644 btrfs_set_item_size(leaf, item, data_size[i]);
3645 }
Chris Mason44871b12009-03-13 10:04:31 -04003646
Chris Mason9c583092008-01-29 15:15:18 -05003647 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003648
3649 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003650 if (slot == 0) {
3651 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003652 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003653 }
Chris Masonb9473432009-03-13 11:00:37 -04003654 btrfs_unlock_up_safe(path, 1);
3655 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003656
Chris Mason5f39d392007-10-15 16:14:19 -04003657 if (btrfs_leaf_free_space(root, leaf) < 0) {
3658 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003659 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003660 }
Chris Mason44871b12009-03-13 10:04:31 -04003661 return ret;
3662}
3663
3664/*
3665 * Given a key and some data, insert items into the tree.
3666 * This does all the path init required, making room in the tree if needed.
3667 */
3668int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3669 struct btrfs_root *root,
3670 struct btrfs_path *path,
3671 struct btrfs_key *cpu_key, u32 *data_size,
3672 int nr)
3673{
Chris Mason44871b12009-03-13 10:04:31 -04003674 int ret = 0;
3675 int slot;
3676 int i;
3677 u32 total_size = 0;
3678 u32 total_data = 0;
3679
3680 for (i = 0; i < nr; i++)
3681 total_data += data_size[i];
3682
3683 total_size = total_data + (nr * sizeof(struct btrfs_item));
3684 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3685 if (ret == 0)
3686 return -EEXIST;
3687 if (ret < 0)
3688 goto out;
3689
Chris Mason44871b12009-03-13 10:04:31 -04003690 slot = path->slots[0];
3691 BUG_ON(slot < 0);
3692
3693 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3694 total_data, total_size, nr);
3695
Chris Masoned2ff2c2007-03-01 18:59:40 -05003696out:
Chris Mason62e27492007-03-15 12:56:47 -04003697 return ret;
3698}
3699
3700/*
3701 * Given a key and some data, insert an item into the tree.
3702 * This does all the path init required, making room in the tree if needed.
3703 */
Chris Masone089f052007-03-16 16:20:31 -04003704int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3705 *root, struct btrfs_key *cpu_key, void *data, u32
3706 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003707{
3708 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003709 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003710 struct extent_buffer *leaf;
3711 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003712
Chris Mason2c90e5d2007-04-02 10:50:19 -04003713 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003714 if (!path)
3715 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003716 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003717 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003718 leaf = path->nodes[0];
3719 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3720 write_extent_buffer(leaf, data, ptr, data_size);
3721 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003722 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003723 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003724 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003725}
3726
Chris Mason74123bd2007-02-02 11:05:29 -05003727/*
Chris Mason5de08d72007-02-24 06:24:44 -05003728 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003729 *
Chris Masond352ac62008-09-29 15:18:18 -04003730 * the tree should have been previously balanced so the deletion does not
3731 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003732 */
Chris Masone089f052007-03-16 16:20:31 -04003733static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3734 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003735{
Chris Mason5f39d392007-10-15 16:14:19 -04003736 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003737 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003738 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003739 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003740
Chris Mason5f39d392007-10-15 16:14:19 -04003741 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003742 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003743 memmove_extent_buffer(parent,
3744 btrfs_node_key_ptr_offset(slot),
3745 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003746 sizeof(struct btrfs_key_ptr) *
3747 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003748 }
Chris Mason7518a232007-03-12 12:01:18 -04003749 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003750 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003751 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003752 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003753 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003754 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003755 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003756 struct btrfs_disk_key disk_key;
3757
3758 btrfs_node_key(parent, &disk_key, 0);
3759 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003760 if (wret)
3761 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003762 }
Chris Masond6025572007-03-30 14:27:56 -04003763 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003764 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003765}
3766
Chris Mason74123bd2007-02-02 11:05:29 -05003767/*
Chris Mason323ac952008-10-01 19:05:46 -04003768 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003769 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04003770 *
3771 * This deletes the pointer in path->nodes[1] and frees the leaf
3772 * block extent. zero is returned if it all worked out, < 0 otherwise.
3773 *
3774 * The path must have already been setup for deleting the leaf, including
3775 * all the proper balancing. path->nodes[1] must be locked.
3776 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003777static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3778 struct btrfs_root *root,
3779 struct btrfs_path *path,
3780 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04003781{
3782 int ret;
Chris Mason323ac952008-10-01 19:05:46 -04003783
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003784 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Chris Mason323ac952008-10-01 19:05:46 -04003785 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3786 if (ret)
3787 return ret;
3788
Chris Mason4d081c42009-02-04 09:31:28 -05003789 /*
3790 * btrfs_free_extent is expensive, we want to make sure we
3791 * aren't holding any locks when we call it
3792 */
3793 btrfs_unlock_up_safe(path, 0);
3794
Yan, Zhengf0486c62010-05-16 10:46:25 -04003795 root_sub_used(root, leaf->len);
3796
Josef Bacik3083ee22012-03-09 16:01:49 -05003797 extent_buffer_get(leaf);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003798 btrfs_free_tree_block(trans, root, leaf, 0, 1, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05003799 free_extent_buffer_stale(leaf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003800 return 0;
Chris Mason323ac952008-10-01 19:05:46 -04003801}
3802/*
Chris Mason74123bd2007-02-02 11:05:29 -05003803 * delete the item at the leaf level in path. If that empties
3804 * the leaf, remove it from the tree
3805 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003806int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3807 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003808{
Chris Mason5f39d392007-10-15 16:14:19 -04003809 struct extent_buffer *leaf;
3810 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003811 int last_off;
3812 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003813 int ret = 0;
3814 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003815 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003816 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003817
Chris Mason5f39d392007-10-15 16:14:19 -04003818 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003819 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3820
3821 for (i = 0; i < nr; i++)
3822 dsize += btrfs_item_size_nr(leaf, slot + i);
3823
Chris Mason5f39d392007-10-15 16:14:19 -04003824 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003825
Chris Mason85e21ba2008-01-29 15:11:36 -05003826 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003827 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003828
3829 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003830 data_end + dsize,
3831 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003832 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003833
Chris Mason85e21ba2008-01-29 15:11:36 -05003834 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003835 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003836
Chris Mason5f39d392007-10-15 16:14:19 -04003837 item = btrfs_item_nr(leaf, i);
3838 ioff = btrfs_item_offset(leaf, item);
3839 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003840 }
Chris Masondb945352007-10-15 16:15:53 -04003841
Chris Mason5f39d392007-10-15 16:14:19 -04003842 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003843 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003844 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003845 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003846 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003847 btrfs_set_header_nritems(leaf, nritems - nr);
3848 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003849
Chris Mason74123bd2007-02-02 11:05:29 -05003850 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003851 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003852 if (leaf == root->node) {
3853 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003854 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003855 btrfs_set_path_blocking(path);
3856 clean_tree_block(trans, root, leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003857 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003858 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003859 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003860 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003861 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003862 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003863 struct btrfs_disk_key disk_key;
3864
3865 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003866 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003867 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003868 if (wret)
3869 ret = wret;
3870 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003871
Chris Mason74123bd2007-02-02 11:05:29 -05003872 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04003873 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003874 /* push_leaf_left fixes the path.
3875 * make sure the path still points to our leaf
3876 * for possible call to del_ptr below
3877 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003878 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003879 extent_buffer_get(leaf);
3880
Chris Masonb9473432009-03-13 11:00:37 -04003881 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04003882 wret = push_leaf_left(trans, root, path, 1, 1,
3883 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003884 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003885 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003886
3887 if (path->nodes[0] == leaf &&
3888 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04003889 wret = push_leaf_right(trans, root, path, 1,
3890 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04003891 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003892 ret = wret;
3893 }
Chris Mason5f39d392007-10-15 16:14:19 -04003894
3895 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003896 path->slots[1] = slot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003897 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003898 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003899 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003900 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003901 /* if we're still in the path, make sure
3902 * we're dirty. Otherwise, one of the
3903 * push_leaf functions must have already
3904 * dirtied this buffer
3905 */
3906 if (path->nodes[0] == leaf)
3907 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003908 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003909 }
Chris Masond5719762007-03-23 10:01:08 -04003910 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003911 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003912 }
3913 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003914 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003915}
3916
Chris Mason97571fd2007-02-24 13:39:08 -05003917/*
Chris Mason925baed2008-06-25 16:01:30 -04003918 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003919 * returns 0 if it found something or 1 if there are no lesser leaves.
3920 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003921 *
3922 * This may release the path, and so you may lose any locks held at the
3923 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003924 */
3925int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3926{
Chris Mason925baed2008-06-25 16:01:30 -04003927 struct btrfs_key key;
3928 struct btrfs_disk_key found_key;
3929 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003930
Chris Mason925baed2008-06-25 16:01:30 -04003931 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003932
Chris Mason925baed2008-06-25 16:01:30 -04003933 if (key.offset > 0)
3934 key.offset--;
3935 else if (key.type > 0)
3936 key.type--;
3937 else if (key.objectid > 0)
3938 key.objectid--;
3939 else
3940 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003941
David Sterbab3b4aa72011-04-21 01:20:15 +02003942 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003943 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3944 if (ret < 0)
3945 return ret;
3946 btrfs_item_key(path->nodes[0], &found_key, 0);
3947 ret = comp_keys(&found_key, &key);
3948 if (ret < 0)
3949 return 0;
3950 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003951}
3952
Chris Mason3f157a22008-06-25 16:01:31 -04003953/*
3954 * A helper function to walk down the tree starting at min_key, and looking
3955 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003956 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003957 *
3958 * This does not cow, but it does stuff the starting key it finds back
3959 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3960 * key and get a writable path.
3961 *
3962 * This does lock as it descends, and path->keep_locks should be set
3963 * to 1 by the caller.
3964 *
3965 * This honors path->lowest_level to prevent descent past a given level
3966 * of the tree.
3967 *
Chris Masond352ac62008-09-29 15:18:18 -04003968 * min_trans indicates the oldest transaction that you are interested
3969 * in walking through. Any nodes or leaves older than min_trans are
3970 * skipped over (without reading them).
3971 *
Chris Mason3f157a22008-06-25 16:01:31 -04003972 * returns zero if something useful was found, < 0 on error and 1 if there
3973 * was nothing in the tree that matched the search criteria.
3974 */
3975int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003976 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003977 struct btrfs_path *path, int cache_only,
3978 u64 min_trans)
3979{
3980 struct extent_buffer *cur;
3981 struct btrfs_key found_key;
3982 int slot;
Yan96524802008-07-24 12:19:49 -04003983 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003984 u32 nritems;
3985 int level;
3986 int ret = 1;
3987
Chris Mason934d3752008-12-08 16:43:10 -05003988 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003989again:
Chris Masonbd681512011-07-16 15:23:14 -04003990 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04003991 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003992 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003993 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04003994 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04003995
3996 if (btrfs_header_generation(cur) < min_trans) {
3997 ret = 1;
3998 goto out;
3999 }
Chris Masond3977122009-01-05 21:25:51 -05004000 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04004001 nritems = btrfs_header_nritems(cur);
4002 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04004003 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004004
Chris Mason323ac952008-10-01 19:05:46 -04004005 /* at the lowest level, we're done, setup the path and exit */
4006 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04004007 if (slot >= nritems)
4008 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04004009 ret = 0;
4010 path->slots[level] = slot;
4011 btrfs_item_key_to_cpu(cur, &found_key, slot);
4012 goto out;
4013 }
Yan96524802008-07-24 12:19:49 -04004014 if (sret && slot > 0)
4015 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04004016 /*
4017 * check this node pointer against the cache_only and
4018 * min_trans parameters. If it isn't in cache or is too
4019 * old, skip to the next one.
4020 */
Chris Masond3977122009-01-05 21:25:51 -05004021 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04004022 u64 blockptr;
4023 u64 gen;
4024 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04004025 struct btrfs_disk_key disk_key;
4026
Chris Mason3f157a22008-06-25 16:01:31 -04004027 blockptr = btrfs_node_blockptr(cur, slot);
4028 gen = btrfs_node_ptr_generation(cur, slot);
4029 if (gen < min_trans) {
4030 slot++;
4031 continue;
4032 }
4033 if (!cache_only)
4034 break;
4035
Chris Masone02119d2008-09-05 16:13:11 -04004036 if (max_key) {
4037 btrfs_node_key(cur, &disk_key, slot);
4038 if (comp_keys(&disk_key, max_key) >= 0) {
4039 ret = 1;
4040 goto out;
4041 }
4042 }
4043
Chris Mason3f157a22008-06-25 16:01:31 -04004044 tmp = btrfs_find_tree_block(root, blockptr,
4045 btrfs_level_size(root, level - 1));
4046
4047 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
4048 free_extent_buffer(tmp);
4049 break;
4050 }
4051 if (tmp)
4052 free_extent_buffer(tmp);
4053 slot++;
4054 }
Chris Masone02119d2008-09-05 16:13:11 -04004055find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04004056 /*
4057 * we didn't find a candidate key in this node, walk forward
4058 * and find another one
4059 */
4060 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04004061 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004062 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04004063 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04004064 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004065 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004066 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004067 goto again;
4068 } else {
4069 goto out;
4070 }
4071 }
4072 /* save our key for returning back */
4073 btrfs_node_key_to_cpu(cur, &found_key, slot);
4074 path->slots[level] = slot;
4075 if (level == path->lowest_level) {
4076 ret = 0;
4077 unlock_up(path, level, 1);
4078 goto out;
4079 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004080 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004081 cur = read_node_slot(root, cur, slot);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00004082 BUG_ON(!cur);
Chris Mason3f157a22008-06-25 16:01:31 -04004083
Chris Masonbd681512011-07-16 15:23:14 -04004084 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004085
Chris Masonbd681512011-07-16 15:23:14 -04004086 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004087 path->nodes[level - 1] = cur;
4088 unlock_up(path, level, 1);
Chris Masonbd681512011-07-16 15:23:14 -04004089 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04004090 }
4091out:
4092 if (ret == 0)
4093 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004094 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004095 return ret;
4096}
4097
4098/*
4099 * this is similar to btrfs_next_leaf, but does not try to preserve
4100 * and fixup the path. It looks for and returns the next key in the
4101 * tree based on the current path and the cache_only and min_trans
4102 * parameters.
4103 *
4104 * 0 is returned if another key is found, < 0 if there are any errors
4105 * and 1 is returned if there are no higher keys in the tree
4106 *
4107 * path->keep_locks should be set to 1 on the search made before
4108 * calling this function.
4109 */
Chris Masone7a84562008-06-25 16:01:31 -04004110int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Yan Zheng33c66f42009-07-22 09:59:00 -04004111 struct btrfs_key *key, int level,
Chris Mason3f157a22008-06-25 16:01:31 -04004112 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004113{
Chris Masone7a84562008-06-25 16:01:31 -04004114 int slot;
4115 struct extent_buffer *c;
4116
Chris Mason934d3752008-12-08 16:43:10 -05004117 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004118 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004119 if (!path->nodes[level])
4120 return 1;
4121
4122 slot = path->slots[level] + 1;
4123 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004124next:
Chris Masone7a84562008-06-25 16:01:31 -04004125 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04004126 int ret;
4127 int orig_lowest;
4128 struct btrfs_key cur_key;
4129 if (level + 1 >= BTRFS_MAX_LEVEL ||
4130 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04004131 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04004132
4133 if (path->locks[level + 1]) {
4134 level++;
4135 continue;
4136 }
4137
4138 slot = btrfs_header_nritems(c) - 1;
4139 if (level == 0)
4140 btrfs_item_key_to_cpu(c, &cur_key, slot);
4141 else
4142 btrfs_node_key_to_cpu(c, &cur_key, slot);
4143
4144 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02004145 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04004146 path->lowest_level = level;
4147 ret = btrfs_search_slot(NULL, root, &cur_key, path,
4148 0, 0);
4149 path->lowest_level = orig_lowest;
4150 if (ret < 0)
4151 return ret;
4152
4153 c = path->nodes[level];
4154 slot = path->slots[level];
4155 if (ret == 0)
4156 slot++;
4157 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04004158 }
Yan Zheng33c66f42009-07-22 09:59:00 -04004159
Chris Masone7a84562008-06-25 16:01:31 -04004160 if (level == 0)
4161 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004162 else {
4163 u64 blockptr = btrfs_node_blockptr(c, slot);
4164 u64 gen = btrfs_node_ptr_generation(c, slot);
4165
4166 if (cache_only) {
4167 struct extent_buffer *cur;
4168 cur = btrfs_find_tree_block(root, blockptr,
4169 btrfs_level_size(root, level - 1));
4170 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4171 slot++;
4172 if (cur)
4173 free_extent_buffer(cur);
4174 goto next;
4175 }
4176 free_extent_buffer(cur);
4177 }
4178 if (gen < min_trans) {
4179 slot++;
4180 goto next;
4181 }
Chris Masone7a84562008-06-25 16:01:31 -04004182 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004183 }
Chris Masone7a84562008-06-25 16:01:31 -04004184 return 0;
4185 }
4186 return 1;
4187}
4188
Chris Mason7bb86312007-12-11 09:25:06 -05004189/*
Chris Mason925baed2008-06-25 16:01:30 -04004190 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004191 * returns 0 if it found something or 1 if there are no greater leaves.
4192 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004193 */
Chris Mason234b63a2007-03-13 10:46:10 -04004194int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004195{
4196 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04004197 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04004198 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04004199 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04004200 struct btrfs_key key;
4201 u32 nritems;
4202 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04004203 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04004204 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004205
4206 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004207 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004208 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004209
Chris Mason8e73f272009-04-03 10:14:18 -04004210 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4211again:
4212 level = 1;
4213 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04004214 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004215 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04004216
Chris Masona2135012008-06-25 16:01:30 -04004217 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04004218 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004219
Chris Mason925baed2008-06-25 16:01:30 -04004220 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4221 path->keep_locks = 0;
4222
4223 if (ret < 0)
4224 return ret;
4225
Chris Masona2135012008-06-25 16:01:30 -04004226 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004227 /*
4228 * by releasing the path above we dropped all our locks. A balance
4229 * could have added more items next to the key that used to be
4230 * at the very end of the block. So, check again here and
4231 * advance the path if there are now more items available.
4232 */
Chris Masona2135012008-06-25 16:01:30 -04004233 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04004234 if (ret == 0)
4235 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04004236 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004237 goto done;
4238 }
Chris Masond97e63b2007-02-20 16:40:44 -05004239
Chris Masond3977122009-01-05 21:25:51 -05004240 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04004241 if (!path->nodes[level]) {
4242 ret = 1;
4243 goto done;
4244 }
Chris Mason5f39d392007-10-15 16:14:19 -04004245
Chris Masond97e63b2007-02-20 16:40:44 -05004246 slot = path->slots[level] + 1;
4247 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004248 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004249 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04004250 if (level == BTRFS_MAX_LEVEL) {
4251 ret = 1;
4252 goto done;
4253 }
Chris Masond97e63b2007-02-20 16:40:44 -05004254 continue;
4255 }
Chris Mason5f39d392007-10-15 16:14:19 -04004256
Chris Mason925baed2008-06-25 16:01:30 -04004257 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04004258 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04004259 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004260 }
Chris Mason5f39d392007-10-15 16:14:19 -04004261
Chris Mason8e73f272009-04-03 10:14:18 -04004262 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04004263 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04004264 ret = read_block_for_search(NULL, root, path, &next, level,
4265 slot, &key);
4266 if (ret == -EAGAIN)
4267 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04004268
Chris Mason76a05b32009-05-14 13:24:30 -04004269 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004270 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04004271 goto done;
4272 }
4273
Chris Mason5cd57b22008-06-25 16:01:30 -04004274 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04004275 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04004276 if (!ret) {
4277 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04004278 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04004279 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04004280 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04004281 }
Chris Mason31533fb2011-07-26 16:01:59 -04004282 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04004283 }
Chris Masond97e63b2007-02-20 16:40:44 -05004284 break;
4285 }
4286 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004287 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004288 level--;
4289 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004290 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04004291 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04004292
Chris Mason5f39d392007-10-15 16:14:19 -04004293 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004294 path->nodes[level] = next;
4295 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004296 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04004297 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05004298 if (!level)
4299 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004300
Chris Mason8e73f272009-04-03 10:14:18 -04004301 ret = read_block_for_search(NULL, root, path, &next, level,
4302 0, &key);
4303 if (ret == -EAGAIN)
4304 goto again;
4305
Chris Mason76a05b32009-05-14 13:24:30 -04004306 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004307 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04004308 goto done;
4309 }
4310
Chris Mason5cd57b22008-06-25 16:01:30 -04004311 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04004312 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04004313 if (!ret) {
4314 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04004315 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04004316 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04004317 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04004318 }
Chris Mason31533fb2011-07-26 16:01:59 -04004319 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04004320 }
Chris Masond97e63b2007-02-20 16:40:44 -05004321 }
Chris Mason8e73f272009-04-03 10:14:18 -04004322 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004323done:
4324 unlock_up(path, 0, 1);
Chris Mason8e73f272009-04-03 10:14:18 -04004325 path->leave_spinning = old_spinning;
4326 if (!old_spinning)
4327 btrfs_set_path_blocking(path);
4328
4329 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05004330}
Chris Mason0b86a832008-03-24 15:01:56 -04004331
Chris Mason3f157a22008-06-25 16:01:31 -04004332/*
4333 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4334 * searching until it gets past min_objectid or finds an item of 'type'
4335 *
4336 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4337 */
Chris Mason0b86a832008-03-24 15:01:56 -04004338int btrfs_previous_item(struct btrfs_root *root,
4339 struct btrfs_path *path, u64 min_objectid,
4340 int type)
4341{
4342 struct btrfs_key found_key;
4343 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004344 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004345 int ret;
4346
Chris Masond3977122009-01-05 21:25:51 -05004347 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004348 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004349 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004350 ret = btrfs_prev_leaf(root, path);
4351 if (ret != 0)
4352 return ret;
4353 } else {
4354 path->slots[0]--;
4355 }
4356 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004357 nritems = btrfs_header_nritems(leaf);
4358 if (nritems == 0)
4359 return 1;
4360 if (path->slots[0] == nritems)
4361 path->slots[0]--;
4362
Chris Mason0b86a832008-03-24 15:01:56 -04004363 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04004364 if (found_key.objectid < min_objectid)
4365 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04004366 if (found_key.type == type)
4367 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004368 if (found_key.objectid == min_objectid &&
4369 found_key.type < type)
4370 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004371 }
4372 return 1;
4373}