blob: 0639a555e16ed1975702ed5509dc9bc1c4dbf490 [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
159 rcu_read_lock();
160 eb = rcu_dereference(root->node);
Chris Mason925baed2008-06-25 16:01:30 -0400161 extent_buffer_get(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400162 rcu_read_unlock();
Chris Mason925baed2008-06-25 16:01:30 -0400163 return eb;
164}
165
Chris Masond352ac62008-09-29 15:18:18 -0400166/* loop around taking references on and locking the root node of the
167 * tree until you end up with a lock on the root. A locked buffer
168 * is returned, with a reference held.
169 */
Chris Mason925baed2008-06-25 16:01:30 -0400170struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
171{
172 struct extent_buffer *eb;
173
Chris Masond3977122009-01-05 21:25:51 -0500174 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400175 eb = btrfs_root_node(root);
176 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400177 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400178 break;
Chris Mason925baed2008-06-25 16:01:30 -0400179 btrfs_tree_unlock(eb);
180 free_extent_buffer(eb);
181 }
182 return eb;
183}
184
Chris Masonbd681512011-07-16 15:23:14 -0400185/* loop around taking references on and locking the root node of the
186 * tree until you end up with a lock on the root. A locked buffer
187 * is returned, with a reference held.
188 */
189struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
190{
191 struct extent_buffer *eb;
192
193 while (1) {
194 eb = btrfs_root_node(root);
195 btrfs_tree_read_lock(eb);
196 if (eb == root->node)
197 break;
198 btrfs_tree_read_unlock(eb);
199 free_extent_buffer(eb);
200 }
201 return eb;
202}
203
Chris Masond352ac62008-09-29 15:18:18 -0400204/* cowonly root (everything not a reference counted cow subvolume), just get
205 * put onto a simple dirty list. transaction.c walks this to make sure they
206 * get properly updated on disk.
207 */
Chris Mason0b86a832008-03-24 15:01:56 -0400208static void add_root_to_dirty_list(struct btrfs_root *root)
209{
210 if (root->track_dirty && list_empty(&root->dirty_list)) {
211 list_add(&root->dirty_list,
212 &root->fs_info->dirty_cowonly_roots);
213 }
214}
215
Chris Masond352ac62008-09-29 15:18:18 -0400216/*
217 * used by snapshot creation to make a copy of a root for a tree with
218 * a given objectid. The buffer with the new root node is returned in
219 * cow_ret, and this func returns zero on success or a negative error code.
220 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500221int btrfs_copy_root(struct btrfs_trans_handle *trans,
222 struct btrfs_root *root,
223 struct extent_buffer *buf,
224 struct extent_buffer **cow_ret, u64 new_root_objectid)
225{
226 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500227 int ret = 0;
228 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400229 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500230
231 WARN_ON(root->ref_cows && trans->transid !=
232 root->fs_info->running_transaction->transid);
233 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
234
235 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400236 if (level == 0)
237 btrfs_item_key(buf, &disk_key, 0);
238 else
239 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400240
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400241 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
242 new_root_objectid, &disk_key, level,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200243 buf->start, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400244 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500245 return PTR_ERR(cow);
246
247 copy_extent_buffer(cow, buf, 0, 0, cow->len);
248 btrfs_set_header_bytenr(cow, cow->start);
249 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400250 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
251 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
252 BTRFS_HEADER_FLAG_RELOC);
253 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
254 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
255 else
256 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500257
Yan Zheng2b820322008-11-17 21:11:30 -0500258 write_extent_buffer(cow, root->fs_info->fsid,
259 (unsigned long)btrfs_header_fsid(cow),
260 BTRFS_FSID_SIZE);
261
Chris Masonbe20aa92007-12-17 20:14:01 -0500262 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400263 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200264 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400265 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200266 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Chris Mason4aec2b52007-12-18 16:25:45 -0500267
Chris Masonbe20aa92007-12-17 20:14:01 -0500268 if (ret)
269 return ret;
270
271 btrfs_mark_buffer_dirty(cow);
272 *cow_ret = cow;
273 return 0;
274}
275
Chris Masond352ac62008-09-29 15:18:18 -0400276/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400277 * check if the tree block can be shared by multiple trees
278 */
279int btrfs_block_can_be_shared(struct btrfs_root *root,
280 struct extent_buffer *buf)
281{
282 /*
283 * Tree blocks not in refernece counted trees and tree roots
284 * are never shared. If a block was allocated after the last
285 * snapshot and the block was not allocated by tree relocation,
286 * we know the block is not shared.
287 */
288 if (root->ref_cows &&
289 buf != root->node && buf != root->commit_root &&
290 (btrfs_header_generation(buf) <=
291 btrfs_root_last_snapshot(&root->root_item) ||
292 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
293 return 1;
294#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
295 if (root->ref_cows &&
296 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
297 return 1;
298#endif
299 return 0;
300}
301
302static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
303 struct btrfs_root *root,
304 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400305 struct extent_buffer *cow,
306 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400307{
308 u64 refs;
309 u64 owner;
310 u64 flags;
311 u64 new_flags = 0;
312 int ret;
313
314 /*
315 * Backrefs update rules:
316 *
317 * Always use full backrefs for extent pointers in tree block
318 * allocated by tree relocation.
319 *
320 * If a shared tree block is no longer referenced by its owner
321 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
322 * use full backrefs for extent pointers in tree block.
323 *
324 * If a tree block is been relocating
325 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
326 * use full backrefs for extent pointers in tree block.
327 * The reason for this is some operations (such as drop tree)
328 * are only allowed for blocks use full backrefs.
329 */
330
331 if (btrfs_block_can_be_shared(root, buf)) {
332 ret = btrfs_lookup_extent_info(trans, root, buf->start,
333 buf->len, &refs, &flags);
334 BUG_ON(ret);
335 BUG_ON(refs == 0);
336 } else {
337 refs = 1;
338 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
339 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
340 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
341 else
342 flags = 0;
343 }
344
345 owner = btrfs_header_owner(buf);
346 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
347 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
348
349 if (refs > 1) {
350 if ((owner == root->root_key.objectid ||
351 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
352 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200353 ret = btrfs_inc_ref(trans, root, buf, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400354 BUG_ON(ret);
355
356 if (root->root_key.objectid ==
357 BTRFS_TREE_RELOC_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200358 ret = btrfs_dec_ref(trans, root, buf, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400359 BUG_ON(ret);
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200360 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400361 BUG_ON(ret);
362 }
363 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
364 } else {
365
366 if (root->root_key.objectid ==
367 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200368 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400369 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200370 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400371 BUG_ON(ret);
372 }
373 if (new_flags != 0) {
374 ret = btrfs_set_disk_extent_flags(trans, root,
375 buf->start,
376 buf->len,
377 new_flags, 0);
378 BUG_ON(ret);
379 }
380 } else {
381 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
382 if (root->root_key.objectid ==
383 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200384 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400385 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200386 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400387 BUG_ON(ret);
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200388 ret = btrfs_dec_ref(trans, root, buf, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400389 BUG_ON(ret);
390 }
391 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400392 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400393 }
394 return 0;
395}
396
397/*
Chris Masond3977122009-01-05 21:25:51 -0500398 * does the dirty work in cow of a single block. The parent block (if
399 * supplied) is updated to point to the new cow copy. The new buffer is marked
400 * dirty and returned locked. If you modify the block it needs to be marked
401 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400402 *
403 * search_start -- an allocation hint for the new block
404 *
Chris Masond3977122009-01-05 21:25:51 -0500405 * empty_size -- a hint that you plan on doing more cow. This is the size in
406 * bytes the allocator should try to find free next to the block it returns.
407 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400408 */
Chris Masond3977122009-01-05 21:25:51 -0500409static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400410 struct btrfs_root *root,
411 struct extent_buffer *buf,
412 struct extent_buffer *parent, int parent_slot,
413 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400414 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400415{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400416 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400417 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500418 int level;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400419 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400420 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400421 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400422
Chris Mason925baed2008-06-25 16:01:30 -0400423 if (*cow_ret == buf)
424 unlock_orig = 1;
425
Chris Masonb9447ef2009-03-09 11:45:38 -0400426 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400427
Chris Mason7bb86312007-12-11 09:25:06 -0500428 WARN_ON(root->ref_cows && trans->transid !=
429 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400430 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400431
Chris Mason7bb86312007-12-11 09:25:06 -0500432 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400433
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400434 if (level == 0)
435 btrfs_item_key(buf, &disk_key, 0);
436 else
437 btrfs_node_key(buf, &disk_key, 0);
438
439 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
440 if (parent)
441 parent_start = parent->start;
442 else
443 parent_start = 0;
444 } else
445 parent_start = 0;
446
447 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
448 root->root_key.objectid, &disk_key,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200449 level, search_start, empty_size, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400450 if (IS_ERR(cow))
451 return PTR_ERR(cow);
452
Chris Masonb4ce94d2009-02-04 09:25:08 -0500453 /* cow is set to blocking by btrfs_init_new_buffer */
454
Chris Mason5f39d392007-10-15 16:14:19 -0400455 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400456 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400457 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400458 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
459 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
460 BTRFS_HEADER_FLAG_RELOC);
461 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
462 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
463 else
464 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -0400465
Yan Zheng2b820322008-11-17 21:11:30 -0500466 write_extent_buffer(cow, root->fs_info->fsid,
467 (unsigned long)btrfs_header_fsid(cow),
468 BTRFS_FSID_SIZE);
469
Yan, Zhengf0486c62010-05-16 10:46:25 -0400470 update_ref_for_cow(trans, root, buf, cow, &last_ref);
Zheng Yan1a40e232008-09-26 10:09:34 -0400471
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400472 if (root->ref_cows)
473 btrfs_reloc_cow_block(trans, root, buf, cow);
474
Chris Mason6702ed42007-08-07 16:15:09 -0400475 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400476 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400477 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
478 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
479 parent_start = buf->start;
480 else
481 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400482
Chris Mason5f39d392007-10-15 16:14:19 -0400483 extent_buffer_get(cow);
Chris Mason240f62c2011-03-23 14:54:42 -0400484 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -0400485
Yan, Zhengf0486c62010-05-16 10:46:25 -0400486 btrfs_free_tree_block(trans, root, buf, parent_start,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200487 last_ref, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400488 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400489 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400490 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400491 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
492 parent_start = parent->start;
493 else
494 parent_start = 0;
495
496 WARN_ON(trans->transid != btrfs_header_generation(parent));
Chris Mason5f39d392007-10-15 16:14:19 -0400497 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400498 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500499 btrfs_set_node_ptr_generation(parent, parent_slot,
500 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400501 btrfs_mark_buffer_dirty(parent);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400502 btrfs_free_tree_block(trans, root, buf, parent_start,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200503 last_ref, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400504 }
Chris Mason925baed2008-06-25 16:01:30 -0400505 if (unlock_orig)
506 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400507 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400508 btrfs_mark_buffer_dirty(cow);
509 *cow_ret = cow;
510 return 0;
511}
512
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400513static inline int should_cow_block(struct btrfs_trans_handle *trans,
514 struct btrfs_root *root,
515 struct extent_buffer *buf)
516{
Liu Bof1ebcc72011-11-14 20:48:06 -0500517 /* ensure we can see the force_cow */
518 smp_rmb();
519
520 /*
521 * We do not need to cow a block if
522 * 1) this block is not created or changed in this transaction;
523 * 2) this block does not belong to TREE_RELOC tree;
524 * 3) the root is not forced COW.
525 *
526 * What is forced COW:
527 * when we create snapshot during commiting the transaction,
528 * after we've finished coping src root, we must COW the shared
529 * block to ensure the metadata consistency.
530 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400531 if (btrfs_header_generation(buf) == trans->transid &&
532 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
533 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -0500534 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
535 !root->force_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400536 return 0;
537 return 1;
538}
539
Chris Masond352ac62008-09-29 15:18:18 -0400540/*
541 * cows a single block, see __btrfs_cow_block for the real work.
542 * This version of it has extra checks so that a block isn't cow'd more than
543 * once per transaction, as long as it hasn't been written yet
544 */
Chris Masond3977122009-01-05 21:25:51 -0500545noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400546 struct btrfs_root *root, struct extent_buffer *buf,
547 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400548 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -0500549{
Chris Mason6702ed42007-08-07 16:15:09 -0400550 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400551 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500552
Chris Masonccd467d2007-06-28 15:57:36 -0400553 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500554 printk(KERN_CRIT "trans %llu running %llu\n",
555 (unsigned long long)trans->transid,
556 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400557 root->fs_info->running_transaction->transid);
558 WARN_ON(1);
559 }
560 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500561 printk(KERN_CRIT "trans %llu running %llu\n",
562 (unsigned long long)trans->transid,
563 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400564 WARN_ON(1);
565 }
Chris Masondc17ff82008-01-08 15:46:30 -0500566
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400567 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500568 *cow_ret = buf;
569 return 0;
570 }
Chris Masonc4876852009-02-04 09:24:25 -0500571
Chris Mason0b86a832008-03-24 15:01:56 -0400572 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500573
574 if (parent)
575 btrfs_set_lock_blocking(parent);
576 btrfs_set_lock_blocking(buf);
577
Chris Masonf510cfe2007-10-15 16:14:48 -0400578 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400579 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +0000580
581 trace_btrfs_cow_block(root, buf, *cow_ret);
582
Chris Masonf510cfe2007-10-15 16:14:48 -0400583 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400584}
585
Chris Masond352ac62008-09-29 15:18:18 -0400586/*
587 * helper function for defrag to decide if two blocks pointed to by a
588 * node are actually close by
589 */
Chris Mason6b800532007-10-15 16:17:34 -0400590static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400591{
Chris Mason6b800532007-10-15 16:17:34 -0400592 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400593 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400594 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400595 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500596 return 0;
597}
598
Chris Mason081e9572007-11-06 10:26:24 -0500599/*
600 * compare two keys in a memcmp fashion
601 */
602static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
603{
604 struct btrfs_key k1;
605
606 btrfs_disk_key_to_cpu(&k1, disk);
607
Diego Calleja20736ab2009-07-24 11:06:52 -0400608 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -0500609}
610
Josef Bacikf3465ca2008-11-12 14:19:50 -0500611/*
612 * same as comp_keys only with two btrfs_key's
613 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400614int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -0500615{
616 if (k1->objectid > k2->objectid)
617 return 1;
618 if (k1->objectid < k2->objectid)
619 return -1;
620 if (k1->type > k2->type)
621 return 1;
622 if (k1->type < k2->type)
623 return -1;
624 if (k1->offset > k2->offset)
625 return 1;
626 if (k1->offset < k2->offset)
627 return -1;
628 return 0;
629}
Chris Mason081e9572007-11-06 10:26:24 -0500630
Chris Masond352ac62008-09-29 15:18:18 -0400631/*
632 * this is used by the defrag code to go through all the
633 * leaves pointed to by a node and reallocate them so that
634 * disk order is close to key order
635 */
Chris Mason6702ed42007-08-07 16:15:09 -0400636int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400637 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400638 int start_slot, int cache_only, u64 *last_ret,
639 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400640{
Chris Mason6b800532007-10-15 16:17:34 -0400641 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400642 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400643 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400644 u64 search_start = *last_ret;
645 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400646 u64 other;
647 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400648 int end_slot;
649 int i;
650 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400651 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400652 int uptodate;
653 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500654 int progress_passed = 0;
655 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400656
Chris Mason5708b952007-10-25 15:43:18 -0400657 parent_level = btrfs_header_level(parent);
658 if (cache_only && parent_level != 1)
659 return 0;
660
Chris Masond3977122009-01-05 21:25:51 -0500661 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400662 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500663 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400664 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400665
Chris Mason6b800532007-10-15 16:17:34 -0400666 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400667 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400668 end_slot = parent_nritems;
669
670 if (parent_nritems == 1)
671 return 0;
672
Chris Masonb4ce94d2009-02-04 09:25:08 -0500673 btrfs_set_lock_blocking(parent);
674
Chris Mason6702ed42007-08-07 16:15:09 -0400675 for (i = start_slot; i < end_slot; i++) {
676 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400677
Chris Mason081e9572007-11-06 10:26:24 -0500678 btrfs_node_key(parent, &disk_key, i);
679 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
680 continue;
681
682 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400683 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400684 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400685 if (last_block == 0)
686 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400687
Chris Mason6702ed42007-08-07 16:15:09 -0400688 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400689 other = btrfs_node_blockptr(parent, i - 1);
690 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400691 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400692 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400693 other = btrfs_node_blockptr(parent, i + 1);
694 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400695 }
Chris Masone9d0b132007-08-10 14:06:19 -0400696 if (close) {
697 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400698 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400699 }
Chris Mason6702ed42007-08-07 16:15:09 -0400700
Chris Mason6b800532007-10-15 16:17:34 -0400701 cur = btrfs_find_tree_block(root, blocknr, blocksize);
702 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400703 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400704 else
705 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400706 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400707 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400708 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400709 continue;
710 }
Chris Mason6b800532007-10-15 16:17:34 -0400711 if (!cur) {
712 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400713 blocksize, gen);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +0000714 if (!cur)
715 return -EIO;
Chris Mason6b800532007-10-15 16:17:34 -0400716 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400717 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400718 }
Chris Mason6702ed42007-08-07 16:15:09 -0400719 }
Chris Masone9d0b132007-08-10 14:06:19 -0400720 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400721 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400722
Chris Masone7a84562008-06-25 16:01:31 -0400723 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500724 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400725 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400726 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400727 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400728 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -0400729 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400730 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400731 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400732 break;
Yan252c38f2007-08-29 09:11:44 -0400733 }
Chris Masone7a84562008-06-25 16:01:31 -0400734 search_start = cur->start;
735 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400736 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400737 btrfs_tree_unlock(cur);
738 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400739 }
740 return err;
741}
742
Chris Mason74123bd2007-02-02 11:05:29 -0500743/*
744 * The leaf data grows from end-to-front in the node.
745 * this returns the address of the start of the last item,
746 * which is the stop of the leaf data stack
747 */
Chris Mason123abc82007-03-14 14:14:43 -0400748static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400749 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500750{
Chris Mason5f39d392007-10-15 16:14:19 -0400751 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500752 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400753 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400754 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500755}
756
Chris Masonaa5d6be2007-02-28 16:35:06 -0500757
Chris Mason74123bd2007-02-02 11:05:29 -0500758/*
Chris Mason5f39d392007-10-15 16:14:19 -0400759 * search for key in the extent_buffer. The items start at offset p,
760 * and they are item_size apart. There are 'max' items in p.
761 *
Chris Mason74123bd2007-02-02 11:05:29 -0500762 * the slot in the array is returned via slot, and it points to
763 * the place where you would insert key if it is not found in
764 * the array.
765 *
766 * slot may point to max if the key is bigger than all of the keys
767 */
Chris Masone02119d2008-09-05 16:13:11 -0400768static noinline int generic_bin_search(struct extent_buffer *eb,
769 unsigned long p,
770 int item_size, struct btrfs_key *key,
771 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500772{
773 int low = 0;
774 int high = max;
775 int mid;
776 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400777 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400778 struct btrfs_disk_key unaligned;
779 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -0400780 char *kaddr = NULL;
781 unsigned long map_start = 0;
782 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400783 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500784
Chris Masond3977122009-01-05 21:25:51 -0500785 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500786 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400787 offset = p + mid * item_size;
788
Chris Masona6591712011-07-19 12:04:14 -0400789 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -0400790 (offset + sizeof(struct btrfs_disk_key)) >
791 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -0500792
793 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400794 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -0400795 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -0400796
Chris Mason479965d2007-10-15 16:14:27 -0400797 if (!err) {
798 tmp = (struct btrfs_disk_key *)(kaddr + offset -
799 map_start);
800 } else {
801 read_extent_buffer(eb, &unaligned,
802 offset, sizeof(unaligned));
803 tmp = &unaligned;
804 }
805
Chris Mason5f39d392007-10-15 16:14:19 -0400806 } else {
807 tmp = (struct btrfs_disk_key *)(kaddr + offset -
808 map_start);
809 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500810 ret = comp_keys(tmp, key);
811
812 if (ret < 0)
813 low = mid + 1;
814 else if (ret > 0)
815 high = mid;
816 else {
817 *slot = mid;
818 return 0;
819 }
820 }
821 *slot = low;
822 return 1;
823}
824
Chris Mason97571fd2007-02-24 13:39:08 -0500825/*
826 * simple bin_search frontend that does the right thing for
827 * leaves vs nodes
828 */
Chris Mason5f39d392007-10-15 16:14:19 -0400829static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
830 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500831{
Chris Mason5f39d392007-10-15 16:14:19 -0400832 if (level == 0) {
833 return generic_bin_search(eb,
834 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400835 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400836 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400837 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500838 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400839 return generic_bin_search(eb,
840 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400841 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400842 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400843 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500844 }
845 return -1;
846}
847
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400848int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
849 int level, int *slot)
850{
851 return bin_search(eb, key, level, slot);
852}
853
Yan, Zhengf0486c62010-05-16 10:46:25 -0400854static void root_add_used(struct btrfs_root *root, u32 size)
855{
856 spin_lock(&root->accounting_lock);
857 btrfs_set_root_used(&root->root_item,
858 btrfs_root_used(&root->root_item) + size);
859 spin_unlock(&root->accounting_lock);
860}
861
862static void root_sub_used(struct btrfs_root *root, u32 size)
863{
864 spin_lock(&root->accounting_lock);
865 btrfs_set_root_used(&root->root_item,
866 btrfs_root_used(&root->root_item) - size);
867 spin_unlock(&root->accounting_lock);
868}
869
Chris Masond352ac62008-09-29 15:18:18 -0400870/* given a node and slot number, this reads the blocks it points to. The
871 * extent buffer is returned with a reference taken (but unlocked).
872 * NULL is returned on error.
873 */
Chris Masone02119d2008-09-05 16:13:11 -0400874static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400875 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500876{
Chris Masonca7a79a2008-05-12 12:59:19 -0400877 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500878 if (slot < 0)
879 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400880 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500881 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400882
883 BUG_ON(level == 0);
884
Chris Masondb945352007-10-15 16:15:53 -0400885 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400886 btrfs_level_size(root, level - 1),
887 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500888}
889
Chris Masond352ac62008-09-29 15:18:18 -0400890/*
891 * node level balancing, used to make sure nodes are in proper order for
892 * item deletion. We balance from the top down, so we have to make sure
893 * that a deletion won't leave an node completely empty later on.
894 */
Chris Masone02119d2008-09-05 16:13:11 -0400895static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500896 struct btrfs_root *root,
897 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500898{
Chris Mason5f39d392007-10-15 16:14:19 -0400899 struct extent_buffer *right = NULL;
900 struct extent_buffer *mid;
901 struct extent_buffer *left = NULL;
902 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500903 int ret = 0;
904 int wret;
905 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500906 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -0500907 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500908
909 if (level == 0)
910 return 0;
911
Chris Mason5f39d392007-10-15 16:14:19 -0400912 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -0500913
Chris Masonbd681512011-07-16 15:23:14 -0400914 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
915 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -0500916 WARN_ON(btrfs_header_generation(mid) != trans->transid);
917
Chris Mason1d4f8a02007-03-13 09:28:32 -0400918 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500919
Li Zefana05a9bb2011-09-06 16:55:34 +0800920 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400921 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +0800922 pslot = path->slots[level + 1];
923 }
Chris Masonbb803952007-03-01 12:04:21 -0500924
Chris Mason40689472007-03-17 14:29:23 -0400925 /*
926 * deal with the case where there is only one pointer in the root
927 * by promoting the node below to a root
928 */
Chris Mason5f39d392007-10-15 16:14:19 -0400929 if (!parent) {
930 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -0500931
Chris Mason5f39d392007-10-15 16:14:19 -0400932 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500933 return 0;
934
935 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -0400936 child = read_node_slot(root, mid, 0);
Jeff Mahoney7951f3c2009-02-12 10:06:15 -0500937 BUG_ON(!child);
Chris Mason925baed2008-06-25 16:01:30 -0400938 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500939 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400940 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400941 if (ret) {
942 btrfs_tree_unlock(child);
943 free_extent_buffer(child);
944 goto enospc;
945 }
Yan2f375ab2008-02-01 14:58:07 -0500946
Chris Mason240f62c2011-03-23 14:54:42 -0400947 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -0400948
Chris Mason0b86a832008-03-24 15:01:56 -0400949 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -0400950 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500951
Chris Mason925baed2008-06-25 16:01:30 -0400952 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500953 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400954 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -0400955 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -0500956 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -0400957 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400958
959 root_sub_used(root, mid->len);
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200960 btrfs_free_tree_block(trans, root, mid, 0, 1, 0);
Chris Masonbb803952007-03-01 12:04:21 -0500961 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -0400962 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400963 return 0;
Chris Masonbb803952007-03-01 12:04:21 -0500964 }
Chris Mason5f39d392007-10-15 16:14:19 -0400965 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -0400966 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500967 return 0;
968
Andi Kleen559af822010-10-29 15:14:37 -0400969 btrfs_header_nritems(mid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400970
Chris Mason5f39d392007-10-15 16:14:19 -0400971 left = read_node_slot(root, parent, pslot - 1);
972 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -0400973 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500974 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -0400975 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400976 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -0400977 if (wret) {
978 ret = wret;
979 goto enospc;
980 }
Chris Mason2cc58cf2007-08-27 16:49:44 -0400981 }
Chris Mason5f39d392007-10-15 16:14:19 -0400982 right = read_node_slot(root, parent, pslot + 1);
983 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -0400984 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500985 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -0400986 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400987 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -0400988 if (wret) {
989 ret = wret;
990 goto enospc;
991 }
992 }
993
994 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -0400995 if (left) {
996 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -0400997 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -0500998 if (wret < 0)
999 ret = wret;
Andi Kleen559af822010-10-29 15:14:37 -04001000 btrfs_header_nritems(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001001 }
Chris Mason79f95c82007-03-01 15:16:26 -05001002
1003 /*
1004 * then try to empty the right most buffer into the middle
1005 */
Chris Mason5f39d392007-10-15 16:14:19 -04001006 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001007 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001008 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001009 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001010 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001011 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001012 btrfs_tree_unlock(right);
Chris Masone089f052007-03-16 16:20:31 -04001013 wret = del_ptr(trans, root, path, level + 1, pslot +
1014 1);
Chris Masonbb803952007-03-01 12:04:21 -05001015 if (wret)
1016 ret = wret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001017 root_sub_used(root, right->len);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001018 btrfs_free_tree_block(trans, root, right, 0, 1, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001019 free_extent_buffer(right);
1020 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001021 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001022 struct btrfs_disk_key right_key;
1023 btrfs_node_key(right, &right_key, 0);
1024 btrfs_set_node_key(parent, &right_key, pslot + 1);
1025 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001026 }
1027 }
Chris Mason5f39d392007-10-15 16:14:19 -04001028 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001029 /*
1030 * we're not allowed to leave a node with one item in the
1031 * tree during a delete. A deletion from lower in the tree
1032 * could try to delete the only pointer in this node.
1033 * So, pull some keys from the left.
1034 * There has to be a left pointer at this point because
1035 * otherwise we would have pulled some pointers from the
1036 * right
1037 */
Chris Mason5f39d392007-10-15 16:14:19 -04001038 BUG_ON(!left);
1039 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001040 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001041 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001042 goto enospc;
1043 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001044 if (wret == 1) {
1045 wret = push_node_left(trans, root, left, mid, 1);
1046 if (wret < 0)
1047 ret = wret;
1048 }
Chris Mason79f95c82007-03-01 15:16:26 -05001049 BUG_ON(wret == 1);
1050 }
Chris Mason5f39d392007-10-15 16:14:19 -04001051 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001052 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001053 btrfs_tree_unlock(mid);
Chris Masone089f052007-03-16 16:20:31 -04001054 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001055 if (wret)
1056 ret = wret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001057 root_sub_used(root, mid->len);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001058 btrfs_free_tree_block(trans, root, mid, 0, 1, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001059 free_extent_buffer(mid);
1060 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001061 } else {
1062 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001063 struct btrfs_disk_key mid_key;
1064 btrfs_node_key(mid, &mid_key, 0);
1065 btrfs_set_node_key(parent, &mid_key, pslot);
1066 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001067 }
Chris Masonbb803952007-03-01 12:04:21 -05001068
Chris Mason79f95c82007-03-01 15:16:26 -05001069 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001070 if (left) {
1071 if (btrfs_header_nritems(left) > orig_slot) {
1072 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001073 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001074 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001075 path->slots[level + 1] -= 1;
1076 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001077 if (mid) {
1078 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001079 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001080 }
Chris Masonbb803952007-03-01 12:04:21 -05001081 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001082 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001083 path->slots[level] = orig_slot;
1084 }
1085 }
Chris Mason79f95c82007-03-01 15:16:26 -05001086 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04001087 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001088 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001089 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001090enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001091 if (right) {
1092 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001093 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001094 }
1095 if (left) {
1096 if (path->nodes[level] != left)
1097 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001098 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001099 }
Chris Masonbb803952007-03-01 12:04:21 -05001100 return ret;
1101}
1102
Chris Masond352ac62008-09-29 15:18:18 -04001103/* Node balancing for insertion. Here we only split or push nodes around
1104 * when they are completely full. This is also done top down, so we
1105 * have to be pessimistic.
1106 */
Chris Masond3977122009-01-05 21:25:51 -05001107static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001108 struct btrfs_root *root,
1109 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001110{
Chris Mason5f39d392007-10-15 16:14:19 -04001111 struct extent_buffer *right = NULL;
1112 struct extent_buffer *mid;
1113 struct extent_buffer *left = NULL;
1114 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001115 int ret = 0;
1116 int wret;
1117 int pslot;
1118 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04001119
1120 if (level == 0)
1121 return 1;
1122
Chris Mason5f39d392007-10-15 16:14:19 -04001123 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001124 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001125
Li Zefana05a9bb2011-09-06 16:55:34 +08001126 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001127 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001128 pslot = path->slots[level + 1];
1129 }
Chris Masone66f7092007-04-20 13:16:02 -04001130
Chris Mason5f39d392007-10-15 16:14:19 -04001131 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001132 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001133
Chris Mason5f39d392007-10-15 16:14:19 -04001134 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001135
1136 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001137 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001138 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001139
1140 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001141 btrfs_set_lock_blocking(left);
1142
Chris Mason5f39d392007-10-15 16:14:19 -04001143 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001144 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1145 wret = 1;
1146 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001147 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001148 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001149 if (ret)
1150 wret = 1;
1151 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001152 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001153 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001154 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001155 }
Chris Masone66f7092007-04-20 13:16:02 -04001156 if (wret < 0)
1157 ret = wret;
1158 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001159 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001160 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001161 btrfs_node_key(mid, &disk_key, 0);
1162 btrfs_set_node_key(parent, &disk_key, pslot);
1163 btrfs_mark_buffer_dirty(parent);
1164 if (btrfs_header_nritems(left) > orig_slot) {
1165 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001166 path->slots[level + 1] -= 1;
1167 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001168 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001169 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001170 } else {
1171 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001172 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001173 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001174 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001175 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001176 }
Chris Masone66f7092007-04-20 13:16:02 -04001177 return 0;
1178 }
Chris Mason925baed2008-06-25 16:01:30 -04001179 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001180 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001181 }
Chris Mason925baed2008-06-25 16:01:30 -04001182 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001183
1184 /*
1185 * then try to empty the right most buffer into the middle
1186 */
Chris Mason5f39d392007-10-15 16:14:19 -04001187 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001188 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001189
Chris Mason925baed2008-06-25 16:01:30 -04001190 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001191 btrfs_set_lock_blocking(right);
1192
Chris Mason5f39d392007-10-15 16:14:19 -04001193 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001194 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1195 wret = 1;
1196 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001197 ret = btrfs_cow_block(trans, root, right,
1198 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001199 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04001200 if (ret)
1201 wret = 1;
1202 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001203 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001204 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001205 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001206 }
Chris Masone66f7092007-04-20 13:16:02 -04001207 if (wret < 0)
1208 ret = wret;
1209 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001210 struct btrfs_disk_key disk_key;
1211
1212 btrfs_node_key(right, &disk_key, 0);
1213 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1214 btrfs_mark_buffer_dirty(parent);
1215
1216 if (btrfs_header_nritems(mid) <= orig_slot) {
1217 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001218 path->slots[level + 1] += 1;
1219 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001220 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001221 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001222 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001223 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001224 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001225 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001226 }
Chris Masone66f7092007-04-20 13:16:02 -04001227 return 0;
1228 }
Chris Mason925baed2008-06-25 16:01:30 -04001229 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001230 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001231 }
Chris Masone66f7092007-04-20 13:16:02 -04001232 return 1;
1233}
1234
Chris Mason74123bd2007-02-02 11:05:29 -05001235/*
Chris Masond352ac62008-09-29 15:18:18 -04001236 * readahead one full node of leaves, finding things that are close
1237 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001238 */
Chris Masonc8c42862009-04-03 10:14:18 -04001239static void reada_for_search(struct btrfs_root *root,
1240 struct btrfs_path *path,
1241 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001242{
Chris Mason5f39d392007-10-15 16:14:19 -04001243 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001244 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001245 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001246 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001247 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001248 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04001249 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04001250 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001251 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001252 u32 nr;
1253 u32 blocksize;
1254 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001255
Chris Masona6b6e752007-10-15 16:22:39 -04001256 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001257 return;
1258
Chris Mason6702ed42007-08-07 16:15:09 -04001259 if (!path->nodes[level])
1260 return;
1261
Chris Mason5f39d392007-10-15 16:14:19 -04001262 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001263
Chris Mason3c69fae2007-08-07 15:52:22 -04001264 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001265 blocksize = btrfs_level_size(root, level - 1);
1266 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001267 if (eb) {
1268 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001269 return;
1270 }
1271
Chris Masona7175312009-01-22 09:23:10 -05001272 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001273
Chris Mason5f39d392007-10-15 16:14:19 -04001274 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001275 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04001276
Chris Masond3977122009-01-05 21:25:51 -05001277 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001278 if (direction < 0) {
1279 if (nr == 0)
1280 break;
1281 nr--;
1282 } else if (direction > 0) {
1283 nr++;
1284 if (nr >= nritems)
1285 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001286 }
Chris Mason01f46652007-12-21 16:24:26 -05001287 if (path->reada < 0 && objectid) {
1288 btrfs_node_key(node, &disk_key, nr);
1289 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1290 break;
1291 }
Chris Mason6b800532007-10-15 16:17:34 -04001292 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001293 if ((search <= target && target - search <= 65536) ||
1294 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04001295 gen = btrfs_node_ptr_generation(node, nr);
Josef Bacikcb25c2e2011-05-11 12:17:34 -04001296 readahead_tree_block(root, search, blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -04001297 nread += blocksize;
1298 }
1299 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001300 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001301 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001302 }
1303}
Chris Mason925baed2008-06-25 16:01:30 -04001304
Chris Masond352ac62008-09-29 15:18:18 -04001305/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001306 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1307 * cache
1308 */
1309static noinline int reada_for_balance(struct btrfs_root *root,
1310 struct btrfs_path *path, int level)
1311{
1312 int slot;
1313 int nritems;
1314 struct extent_buffer *parent;
1315 struct extent_buffer *eb;
1316 u64 gen;
1317 u64 block1 = 0;
1318 u64 block2 = 0;
1319 int ret = 0;
1320 int blocksize;
1321
Chris Mason8c594ea2009-04-20 15:50:10 -04001322 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001323 if (!parent)
1324 return 0;
1325
1326 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04001327 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001328 blocksize = btrfs_level_size(root, level);
1329
1330 if (slot > 0) {
1331 block1 = btrfs_node_blockptr(parent, slot - 1);
1332 gen = btrfs_node_ptr_generation(parent, slot - 1);
1333 eb = btrfs_find_tree_block(root, block1, blocksize);
1334 if (eb && btrfs_buffer_uptodate(eb, gen))
1335 block1 = 0;
1336 free_extent_buffer(eb);
1337 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001338 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001339 block2 = btrfs_node_blockptr(parent, slot + 1);
1340 gen = btrfs_node_ptr_generation(parent, slot + 1);
1341 eb = btrfs_find_tree_block(root, block2, blocksize);
1342 if (eb && btrfs_buffer_uptodate(eb, gen))
1343 block2 = 0;
1344 free_extent_buffer(eb);
1345 }
1346 if (block1 || block2) {
1347 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04001348
1349 /* release the whole path */
David Sterbab3b4aa72011-04-21 01:20:15 +02001350 btrfs_release_path(path);
Chris Mason8c594ea2009-04-20 15:50:10 -04001351
1352 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001353 if (block1)
1354 readahead_tree_block(root, block1, blocksize, 0);
1355 if (block2)
1356 readahead_tree_block(root, block2, blocksize, 0);
1357
1358 if (block1) {
1359 eb = read_tree_block(root, block1, blocksize, 0);
1360 free_extent_buffer(eb);
1361 }
Chris Mason8c594ea2009-04-20 15:50:10 -04001362 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001363 eb = read_tree_block(root, block2, blocksize, 0);
1364 free_extent_buffer(eb);
1365 }
1366 }
1367 return ret;
1368}
1369
1370
1371/*
Chris Masond3977122009-01-05 21:25:51 -05001372 * when we walk down the tree, it is usually safe to unlock the higher layers
1373 * in the tree. The exceptions are when our path goes through slot 0, because
1374 * operations on the tree might require changing key pointers higher up in the
1375 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001376 *
Chris Masond3977122009-01-05 21:25:51 -05001377 * callers might also have set path->keep_locks, which tells this code to keep
1378 * the lock if the path points to the last slot in the block. This is part of
1379 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001380 *
Chris Masond3977122009-01-05 21:25:51 -05001381 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1382 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001383 */
Chris Masone02119d2008-09-05 16:13:11 -04001384static noinline void unlock_up(struct btrfs_path *path, int level,
1385 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001386{
1387 int i;
1388 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001389 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001390 struct extent_buffer *t;
1391
1392 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1393 if (!path->nodes[i])
1394 break;
1395 if (!path->locks[i])
1396 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001397 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001398 skip_level = i + 1;
1399 continue;
1400 }
Chris Mason051e1b92008-06-25 16:01:30 -04001401 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001402 u32 nritems;
1403 t = path->nodes[i];
1404 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001405 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001406 skip_level = i + 1;
1407 continue;
1408 }
1409 }
Chris Mason051e1b92008-06-25 16:01:30 -04001410 if (skip_level < i && i >= lowest_unlock)
1411 no_skips = 1;
1412
Chris Mason925baed2008-06-25 16:01:30 -04001413 t = path->nodes[i];
1414 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04001415 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04001416 path->locks[i] = 0;
1417 }
1418 }
1419}
1420
Chris Mason3c69fae2007-08-07 15:52:22 -04001421/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001422 * This releases any locks held in the path starting at level and
1423 * going all the way up to the root.
1424 *
1425 * btrfs_search_slot will keep the lock held on higher nodes in a few
1426 * corner cases, such as COW of the block at slot zero in the node. This
1427 * ignores those rules, and it should only be called when there are no
1428 * more updates to be done higher up in the tree.
1429 */
1430noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1431{
1432 int i;
1433
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001434 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05001435 return;
1436
1437 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1438 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001439 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001440 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001441 continue;
Chris Masonbd681512011-07-16 15:23:14 -04001442 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001443 path->locks[i] = 0;
1444 }
1445}
1446
1447/*
Chris Masonc8c42862009-04-03 10:14:18 -04001448 * helper function for btrfs_search_slot. The goal is to find a block
1449 * in cache without setting the path to blocking. If we find the block
1450 * we return zero and the path is unchanged.
1451 *
1452 * If we can't find the block, we set the path blocking and do some
1453 * reada. -EAGAIN is returned and the search must be repeated.
1454 */
1455static int
1456read_block_for_search(struct btrfs_trans_handle *trans,
1457 struct btrfs_root *root, struct btrfs_path *p,
1458 struct extent_buffer **eb_ret, int level, int slot,
1459 struct btrfs_key *key)
1460{
1461 u64 blocknr;
1462 u64 gen;
1463 u32 blocksize;
1464 struct extent_buffer *b = *eb_ret;
1465 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04001466 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001467
1468 blocknr = btrfs_node_blockptr(b, slot);
1469 gen = btrfs_node_ptr_generation(b, slot);
1470 blocksize = btrfs_level_size(root, level - 1);
1471
1472 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
Chris Masoncb449212010-10-24 11:01:27 -04001473 if (tmp) {
1474 if (btrfs_buffer_uptodate(tmp, 0)) {
1475 if (btrfs_buffer_uptodate(tmp, gen)) {
1476 /*
1477 * we found an up to date block without
1478 * sleeping, return
1479 * right away
1480 */
1481 *eb_ret = tmp;
1482 return 0;
1483 }
1484 /* the pages were up to date, but we failed
1485 * the generation number check. Do a full
1486 * read for the generation number that is correct.
1487 * We must do this without dropping locks so
1488 * we can trust our generation number
1489 */
1490 free_extent_buffer(tmp);
Chris Masonbd681512011-07-16 15:23:14 -04001491 btrfs_set_path_blocking(p);
1492
Chris Masoncb449212010-10-24 11:01:27 -04001493 tmp = read_tree_block(root, blocknr, blocksize, gen);
1494 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
1495 *eb_ret = tmp;
1496 return 0;
1497 }
1498 free_extent_buffer(tmp);
David Sterbab3b4aa72011-04-21 01:20:15 +02001499 btrfs_release_path(p);
Chris Masoncb449212010-10-24 11:01:27 -04001500 return -EIO;
1501 }
Chris Masonc8c42862009-04-03 10:14:18 -04001502 }
1503
1504 /*
1505 * reduce lock contention at high levels
1506 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04001507 * we read. Don't release the lock on the current
1508 * level because we need to walk this node to figure
1509 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04001510 */
Chris Mason8c594ea2009-04-20 15:50:10 -04001511 btrfs_unlock_up_safe(p, level + 1);
1512 btrfs_set_path_blocking(p);
1513
Chris Masoncb449212010-10-24 11:01:27 -04001514 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04001515 if (p->reada)
1516 reada_for_search(root, p, level, slot, key->objectid);
1517
David Sterbab3b4aa72011-04-21 01:20:15 +02001518 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001519
1520 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04001521 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04001522 if (tmp) {
1523 /*
1524 * If the read above didn't mark this buffer up to date,
1525 * it will never end up being up to date. Set ret to EIO now
1526 * and give up so that our caller doesn't loop forever
1527 * on our EAGAINs.
1528 */
1529 if (!btrfs_buffer_uptodate(tmp, 0))
1530 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04001531 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04001532 }
1533 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04001534}
1535
1536/*
1537 * helper function for btrfs_search_slot. This does all of the checks
1538 * for node-level blocks and does any balancing required based on
1539 * the ins_len.
1540 *
1541 * If no extra work was required, zero is returned. If we had to
1542 * drop the path, -EAGAIN is returned and btrfs_search_slot must
1543 * start over
1544 */
1545static int
1546setup_nodes_for_search(struct btrfs_trans_handle *trans,
1547 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04001548 struct extent_buffer *b, int level, int ins_len,
1549 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04001550{
1551 int ret;
1552 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
1553 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
1554 int sret;
1555
Chris Masonbd681512011-07-16 15:23:14 -04001556 if (*write_lock_level < level + 1) {
1557 *write_lock_level = level + 1;
1558 btrfs_release_path(p);
1559 goto again;
1560 }
1561
Chris Masonc8c42862009-04-03 10:14:18 -04001562 sret = reada_for_balance(root, p, level);
1563 if (sret)
1564 goto again;
1565
1566 btrfs_set_path_blocking(p);
1567 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04001568 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04001569
1570 BUG_ON(sret > 0);
1571 if (sret) {
1572 ret = sret;
1573 goto done;
1574 }
1575 b = p->nodes[level];
1576 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04001577 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04001578 int sret;
1579
Chris Masonbd681512011-07-16 15:23:14 -04001580 if (*write_lock_level < level + 1) {
1581 *write_lock_level = level + 1;
1582 btrfs_release_path(p);
1583 goto again;
1584 }
1585
Chris Masonc8c42862009-04-03 10:14:18 -04001586 sret = reada_for_balance(root, p, level);
1587 if (sret)
1588 goto again;
1589
1590 btrfs_set_path_blocking(p);
1591 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04001592 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04001593
1594 if (sret) {
1595 ret = sret;
1596 goto done;
1597 }
1598 b = p->nodes[level];
1599 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001600 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04001601 goto again;
1602 }
1603 BUG_ON(btrfs_header_nritems(b) == 1);
1604 }
1605 return 0;
1606
1607again:
1608 ret = -EAGAIN;
1609done:
1610 return ret;
1611}
1612
1613/*
Chris Mason74123bd2007-02-02 11:05:29 -05001614 * look for key in the tree. path is filled in with nodes along the way
1615 * if key is found, we return zero and you can find the item in the leaf
1616 * level of the path (level 0)
1617 *
1618 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001619 * be inserted, and 1 is returned. If there are other errors during the
1620 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001621 *
1622 * if ins_len > 0, nodes and leaves will be split as we walk down the
1623 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1624 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001625 */
Chris Masone089f052007-03-16 16:20:31 -04001626int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1627 *root, struct btrfs_key *key, struct btrfs_path *p, int
1628 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001629{
Chris Mason5f39d392007-10-15 16:14:19 -04001630 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001631 int slot;
1632 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04001633 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001634 int level;
Chris Mason925baed2008-06-25 16:01:30 -04001635 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04001636 int root_lock;
1637 /* everything at write_lock_level or lower must be write locked */
1638 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04001639 u8 lowest_level = 0;
1640
Chris Mason6702ed42007-08-07 16:15:09 -04001641 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001642 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001643 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001644
Chris Masonbd681512011-07-16 15:23:14 -04001645 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001646 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001647
Chris Masonbd681512011-07-16 15:23:14 -04001648 /* when we are removing items, we might have to go up to level
1649 * two as we update tree pointers Make sure we keep write
1650 * for those levels as well
1651 */
1652 write_lock_level = 2;
1653 } else if (ins_len > 0) {
1654 /*
1655 * for inserting items, make sure we have a write lock on
1656 * level 1 so we can update keys
1657 */
1658 write_lock_level = 1;
1659 }
1660
1661 if (!cow)
1662 write_lock_level = -1;
1663
1664 if (cow && (p->keep_locks || p->lowest_level))
1665 write_lock_level = BTRFS_MAX_LEVEL;
1666
Chris Masonbb803952007-03-01 12:04:21 -05001667again:
Chris Masonbd681512011-07-16 15:23:14 -04001668 /*
1669 * we try very hard to do read locks on the root
1670 */
1671 root_lock = BTRFS_READ_LOCK;
1672 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001673 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04001674 /*
1675 * the commit roots are read only
1676 * so we always do read locks
1677 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001678 b = root->commit_root;
1679 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04001680 level = btrfs_header_level(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001681 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04001682 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001683 } else {
Chris Masonbd681512011-07-16 15:23:14 -04001684 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001685 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04001686 level = btrfs_header_level(b);
1687 } else {
1688 /* we don't know the level of the root node
1689 * until we actually have it read locked
1690 */
1691 b = btrfs_read_lock_root_node(root);
1692 level = btrfs_header_level(b);
1693 if (level <= write_lock_level) {
1694 /* whoops, must trade for write lock */
1695 btrfs_tree_read_unlock(b);
1696 free_extent_buffer(b);
1697 b = btrfs_lock_root_node(root);
1698 root_lock = BTRFS_WRITE_LOCK;
1699
1700 /* the level might have changed, check again */
1701 level = btrfs_header_level(b);
1702 }
1703 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001704 }
Chris Masonbd681512011-07-16 15:23:14 -04001705 p->nodes[level] = b;
1706 if (!p->skip_locking)
1707 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04001708
Chris Masoneb60cea2007-02-02 09:18:22 -05001709 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001710 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001711
1712 /*
1713 * setup the path here so we can release it under lock
1714 * contention with the cow code
1715 */
Chris Mason02217ed2007-03-02 16:08:05 -05001716 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04001717 /*
1718 * if we don't really need to cow this block
1719 * then we don't want to set the path blocking,
1720 * so we test it here
1721 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001722 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04001723 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001724
Chris Masonb4ce94d2009-02-04 09:25:08 -05001725 btrfs_set_path_blocking(p);
1726
Chris Masonbd681512011-07-16 15:23:14 -04001727 /*
1728 * must have write locks on this node and the
1729 * parent
1730 */
1731 if (level + 1 > write_lock_level) {
1732 write_lock_level = level + 1;
1733 btrfs_release_path(p);
1734 goto again;
1735 }
1736
Yan Zheng33c66f42009-07-22 09:59:00 -04001737 err = btrfs_cow_block(trans, root, b,
1738 p->nodes[level + 1],
1739 p->slots[level + 1], &b);
1740 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001741 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001742 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001743 }
Chris Mason02217ed2007-03-02 16:08:05 -05001744 }
Chris Mason65b51a02008-08-01 15:11:20 -04001745cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001746 BUG_ON(!cow && ins_len);
Chris Mason65b51a02008-08-01 15:11:20 -04001747
Chris Masoneb60cea2007-02-02 09:18:22 -05001748 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04001749 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001750
1751 /*
1752 * we have a lock on b and as long as we aren't changing
1753 * the tree, there is no way to for the items in b to change.
1754 * It is safe to drop the lock on our parent before we
1755 * go through the expensive btree search on b.
1756 *
1757 * If cow is true, then we might be changing slot zero,
1758 * which may require changing the parent. So, we can't
1759 * drop the lock until after we know which slot we're
1760 * operating on.
1761 */
1762 if (!cow)
1763 btrfs_unlock_up_safe(p, level + 1);
1764
Chris Mason5f39d392007-10-15 16:14:19 -04001765 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001766
Chris Mason5f39d392007-10-15 16:14:19 -04001767 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001768 int dec = 0;
1769 if (ret && slot > 0) {
1770 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001771 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04001772 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001773 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04001774 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04001775 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04001776 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001777 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001778 if (err) {
1779 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04001780 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001781 }
Chris Masonc8c42862009-04-03 10:14:18 -04001782 b = p->nodes[level];
1783 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001784
Chris Masonbd681512011-07-16 15:23:14 -04001785 /*
1786 * slot 0 is special, if we change the key
1787 * we have to update the parent pointer
1788 * which means we must have a write lock
1789 * on the parent
1790 */
1791 if (slot == 0 && cow &&
1792 write_lock_level < level + 1) {
1793 write_lock_level = level + 1;
1794 btrfs_release_path(p);
1795 goto again;
1796 }
1797
Chris Masonf9efa9c2008-06-25 16:14:04 -04001798 unlock_up(p, level, lowest_unlock);
1799
Chris Mason925baed2008-06-25 16:01:30 -04001800 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04001801 if (dec)
1802 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001803 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001804 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001805
Yan Zheng33c66f42009-07-22 09:59:00 -04001806 err = read_block_for_search(trans, root, p,
Chris Masonc8c42862009-04-03 10:14:18 -04001807 &b, level, slot, key);
Yan Zheng33c66f42009-07-22 09:59:00 -04001808 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04001809 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04001810 if (err) {
1811 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04001812 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04001813 }
Chris Mason76a05b32009-05-14 13:24:30 -04001814
Chris Masonb4ce94d2009-02-04 09:25:08 -05001815 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04001816 level = btrfs_header_level(b);
1817 if (level <= write_lock_level) {
1818 err = btrfs_try_tree_write_lock(b);
1819 if (!err) {
1820 btrfs_set_path_blocking(p);
1821 btrfs_tree_lock(b);
1822 btrfs_clear_path_blocking(p, b,
1823 BTRFS_WRITE_LOCK);
1824 }
1825 p->locks[level] = BTRFS_WRITE_LOCK;
1826 } else {
1827 err = btrfs_try_tree_read_lock(b);
1828 if (!err) {
1829 btrfs_set_path_blocking(p);
1830 btrfs_tree_read_lock(b);
1831 btrfs_clear_path_blocking(p, b,
1832 BTRFS_READ_LOCK);
1833 }
1834 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001835 }
Chris Masonbd681512011-07-16 15:23:14 -04001836 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001837 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001838 } else {
1839 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001840 if (ins_len > 0 &&
1841 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04001842 if (write_lock_level < 1) {
1843 write_lock_level = 1;
1844 btrfs_release_path(p);
1845 goto again;
1846 }
1847
Chris Masonb4ce94d2009-02-04 09:25:08 -05001848 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04001849 err = split_leaf(trans, root, key,
1850 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04001851 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001852
Yan Zheng33c66f42009-07-22 09:59:00 -04001853 BUG_ON(err > 0);
1854 if (err) {
1855 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04001856 goto done;
1857 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001858 }
Chris Mason459931e2008-12-10 09:10:46 -05001859 if (!p->search_for_split)
1860 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001861 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001862 }
1863 }
Chris Mason65b51a02008-08-01 15:11:20 -04001864 ret = 1;
1865done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001866 /*
1867 * we don't really know what they plan on doing with the path
1868 * from here on, so for now just mark it as blocking
1869 */
Chris Masonb9473432009-03-13 11:00:37 -04001870 if (!p->leave_spinning)
1871 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04001872 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02001873 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04001874 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001875}
1876
Chris Mason74123bd2007-02-02 11:05:29 -05001877/*
1878 * adjust the pointers going up the tree, starting at level
1879 * making sure the right key of each node is points to 'key'.
1880 * This is used after shifting pointers to the left, so it stops
1881 * fixing up pointers when a given leaf/node is not in slot 0 of the
1882 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001883 *
1884 * If this fails to write a tree block, it returns -1, but continues
1885 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001886 */
Chris Mason5f39d392007-10-15 16:14:19 -04001887static int fixup_low_keys(struct btrfs_trans_handle *trans,
1888 struct btrfs_root *root, struct btrfs_path *path,
1889 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001890{
1891 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001892 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001893 struct extent_buffer *t;
1894
Chris Mason234b63a2007-03-13 10:46:10 -04001895 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001896 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001897 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001898 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001899 t = path->nodes[i];
1900 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001901 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001902 if (tslot != 0)
1903 break;
1904 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001905 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001906}
1907
Chris Mason74123bd2007-02-02 11:05:29 -05001908/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001909 * update item key.
1910 *
1911 * This function isn't completely safe. It's the caller's responsibility
1912 * that the new key won't break the order
1913 */
1914int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1915 struct btrfs_root *root, struct btrfs_path *path,
1916 struct btrfs_key *new_key)
1917{
1918 struct btrfs_disk_key disk_key;
1919 struct extent_buffer *eb;
1920 int slot;
1921
1922 eb = path->nodes[0];
1923 slot = path->slots[0];
1924 if (slot > 0) {
1925 btrfs_item_key(eb, &disk_key, slot - 1);
1926 if (comp_keys(&disk_key, new_key) >= 0)
1927 return -1;
1928 }
1929 if (slot < btrfs_header_nritems(eb) - 1) {
1930 btrfs_item_key(eb, &disk_key, slot + 1);
1931 if (comp_keys(&disk_key, new_key) <= 0)
1932 return -1;
1933 }
1934
1935 btrfs_cpu_key_to_disk(&disk_key, new_key);
1936 btrfs_set_item_key(eb, &disk_key, slot);
1937 btrfs_mark_buffer_dirty(eb);
1938 if (slot == 0)
1939 fixup_low_keys(trans, root, path, &disk_key, 1);
1940 return 0;
1941}
1942
1943/*
Chris Mason74123bd2007-02-02 11:05:29 -05001944 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001945 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001946 *
1947 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1948 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001949 */
Chris Mason98ed5172008-01-03 10:01:48 -05001950static int push_node_left(struct btrfs_trans_handle *trans,
1951 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001952 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001953{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001954 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001955 int src_nritems;
1956 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001957 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001958
Chris Mason5f39d392007-10-15 16:14:19 -04001959 src_nritems = btrfs_header_nritems(src);
1960 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001961 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001962 WARN_ON(btrfs_header_generation(src) != trans->transid);
1963 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001964
Chris Masonbce4eae2008-04-24 14:42:46 -04001965 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001966 return 1;
1967
Chris Masond3977122009-01-05 21:25:51 -05001968 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001969 return 1;
1970
Chris Masonbce4eae2008-04-24 14:42:46 -04001971 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001972 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001973 if (push_items < src_nritems) {
1974 /* leave at least 8 pointers in the node if
1975 * we aren't going to empty it
1976 */
1977 if (src_nritems - push_items < 8) {
1978 if (push_items <= 8)
1979 return 1;
1980 push_items -= 8;
1981 }
1982 }
1983 } else
1984 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001985
Chris Mason5f39d392007-10-15 16:14:19 -04001986 copy_extent_buffer(dst, src,
1987 btrfs_node_key_ptr_offset(dst_nritems),
1988 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001989 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001990
Chris Masonbb803952007-03-01 12:04:21 -05001991 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001992 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1993 btrfs_node_key_ptr_offset(push_items),
1994 (src_nritems - push_items) *
1995 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001996 }
Chris Mason5f39d392007-10-15 16:14:19 -04001997 btrfs_set_header_nritems(src, src_nritems - push_items);
1998 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1999 btrfs_mark_buffer_dirty(src);
2000 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002001
Chris Masonbb803952007-03-01 12:04:21 -05002002 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002003}
2004
Chris Mason97571fd2007-02-24 13:39:08 -05002005/*
Chris Mason79f95c82007-03-01 15:16:26 -05002006 * try to push data from one node into the next node right in the
2007 * tree.
2008 *
2009 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2010 * error, and > 0 if there was no room in the right hand block.
2011 *
2012 * this will only push up to 1/2 the contents of the left node over
2013 */
Chris Mason5f39d392007-10-15 16:14:19 -04002014static int balance_node_right(struct btrfs_trans_handle *trans,
2015 struct btrfs_root *root,
2016 struct extent_buffer *dst,
2017 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002018{
Chris Mason79f95c82007-03-01 15:16:26 -05002019 int push_items = 0;
2020 int max_push;
2021 int src_nritems;
2022 int dst_nritems;
2023 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002024
Chris Mason7bb86312007-12-11 09:25:06 -05002025 WARN_ON(btrfs_header_generation(src) != trans->transid);
2026 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2027
Chris Mason5f39d392007-10-15 16:14:19 -04002028 src_nritems = btrfs_header_nritems(src);
2029 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002030 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002031 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002032 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002033
Chris Masond3977122009-01-05 21:25:51 -05002034 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002035 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002036
2037 max_push = src_nritems / 2 + 1;
2038 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002039 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002040 return 1;
Yan252c38f2007-08-29 09:11:44 -04002041
Chris Mason79f95c82007-03-01 15:16:26 -05002042 if (max_push < push_items)
2043 push_items = max_push;
2044
Chris Mason5f39d392007-10-15 16:14:19 -04002045 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2046 btrfs_node_key_ptr_offset(0),
2047 (dst_nritems) *
2048 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002049
Chris Mason5f39d392007-10-15 16:14:19 -04002050 copy_extent_buffer(dst, src,
2051 btrfs_node_key_ptr_offset(0),
2052 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002053 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002054
Chris Mason5f39d392007-10-15 16:14:19 -04002055 btrfs_set_header_nritems(src, src_nritems - push_items);
2056 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002057
Chris Mason5f39d392007-10-15 16:14:19 -04002058 btrfs_mark_buffer_dirty(src);
2059 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002060
Chris Mason79f95c82007-03-01 15:16:26 -05002061 return ret;
2062}
2063
2064/*
Chris Mason97571fd2007-02-24 13:39:08 -05002065 * helper function to insert a new root level in the tree.
2066 * A new node is allocated, and a single item is inserted to
2067 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002068 *
2069 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002070 */
Chris Masond3977122009-01-05 21:25:51 -05002071static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002072 struct btrfs_root *root,
2073 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002074{
Chris Mason7bb86312007-12-11 09:25:06 -05002075 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002076 struct extent_buffer *lower;
2077 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002078 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002079 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05002080
2081 BUG_ON(path->nodes[level]);
2082 BUG_ON(path->nodes[level-1] != root->node);
2083
Chris Mason7bb86312007-12-11 09:25:06 -05002084 lower = path->nodes[level-1];
2085 if (level == 1)
2086 btrfs_item_key(lower, &lower_key, 0);
2087 else
2088 btrfs_node_key(lower, &lower_key, 0);
2089
Zheng Yan31840ae2008-09-23 13:14:14 -04002090 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002091 root->root_key.objectid, &lower_key,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002092 level, root->node->start, 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002093 if (IS_ERR(c))
2094 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002095
Yan, Zhengf0486c62010-05-16 10:46:25 -04002096 root_add_used(root, root->nodesize);
2097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002098 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002099 btrfs_set_header_nritems(c, 1);
2100 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002101 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002102 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002103 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002104 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002105
Chris Mason5f39d392007-10-15 16:14:19 -04002106 write_extent_buffer(c, root->fs_info->fsid,
2107 (unsigned long)btrfs_header_fsid(c),
2108 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002109
2110 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2111 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2112 BTRFS_UUID_SIZE);
2113
Chris Mason5f39d392007-10-15 16:14:19 -04002114 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002115 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002116 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002117 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002118
2119 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002120
2121 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002122
Chris Mason925baed2008-06-25 16:01:30 -04002123 old = root->node;
Chris Mason240f62c2011-03-23 14:54:42 -04002124 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04002125
2126 /* the super has an extra ref to root->node */
2127 free_extent_buffer(old);
2128
Chris Mason0b86a832008-03-24 15:01:56 -04002129 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002130 extent_buffer_get(c);
2131 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04002132 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05002133 path->slots[level] = 0;
2134 return 0;
2135}
2136
Chris Mason74123bd2007-02-02 11:05:29 -05002137/*
2138 * worker function to insert a single pointer in a node.
2139 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002140 *
Chris Mason74123bd2007-02-02 11:05:29 -05002141 * slot and level indicate where you want the key to go, and
2142 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002143 *
2144 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002145 */
Chris Masone089f052007-03-16 16:20:31 -04002146static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2147 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002148 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002149{
Chris Mason5f39d392007-10-15 16:14:19 -04002150 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002151 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002152
2153 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002154 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002155 lower = path->nodes[level];
2156 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04002157 BUG_ON(slot > nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002158 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002159 BUG();
2160 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002161 memmove_extent_buffer(lower,
2162 btrfs_node_key_ptr_offset(slot + 1),
2163 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002164 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002165 }
Chris Mason5f39d392007-10-15 16:14:19 -04002166 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002167 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002168 WARN_ON(trans->transid == 0);
2169 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002170 btrfs_set_header_nritems(lower, nritems + 1);
2171 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002172 return 0;
2173}
2174
Chris Mason97571fd2007-02-24 13:39:08 -05002175/*
2176 * split the node at the specified level in path in two.
2177 * The path is corrected to point to the appropriate node after the split
2178 *
2179 * Before splitting this tries to make some room in the node by pushing
2180 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002181 *
2182 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002183 */
Chris Masone02119d2008-09-05 16:13:11 -04002184static noinline int split_node(struct btrfs_trans_handle *trans,
2185 struct btrfs_root *root,
2186 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002187{
Chris Mason5f39d392007-10-15 16:14:19 -04002188 struct extent_buffer *c;
2189 struct extent_buffer *split;
2190 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002191 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002192 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002193 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002194 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002195
Chris Mason5f39d392007-10-15 16:14:19 -04002196 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002197 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002198 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002199 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002200 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002201 if (ret)
2202 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04002203 } else {
Chris Masone66f7092007-04-20 13:16:02 -04002204 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002205 c = path->nodes[level];
2206 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002207 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002208 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002209 if (ret < 0)
2210 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002211 }
Chris Masone66f7092007-04-20 13:16:02 -04002212
Chris Mason5f39d392007-10-15 16:14:19 -04002213 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002214 mid = (c_nritems + 1) / 2;
2215 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05002216
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002217 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04002218 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002219 &disk_key, level, c->start, 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002220 if (IS_ERR(split))
2221 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002222
Yan, Zhengf0486c62010-05-16 10:46:25 -04002223 root_add_used(root, root->nodesize);
2224
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002225 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04002226 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002227 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002228 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002229 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04002230 btrfs_set_header_owner(split, root->root_key.objectid);
2231 write_extent_buffer(split, root->fs_info->fsid,
2232 (unsigned long)btrfs_header_fsid(split),
2233 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002234 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2235 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2236 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002237
Chris Mason5f39d392007-10-15 16:14:19 -04002238
2239 copy_extent_buffer(split, c,
2240 btrfs_node_key_ptr_offset(0),
2241 btrfs_node_key_ptr_offset(mid),
2242 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2243 btrfs_set_header_nritems(split, c_nritems - mid);
2244 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002245 ret = 0;
2246
Chris Mason5f39d392007-10-15 16:14:19 -04002247 btrfs_mark_buffer_dirty(c);
2248 btrfs_mark_buffer_dirty(split);
2249
Chris Masondb945352007-10-15 16:15:53 -04002250 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002251 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002252 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002253 if (wret)
2254 ret = wret;
2255
Chris Mason5de08d72007-02-24 06:24:44 -05002256 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002257 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002258 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002259 free_extent_buffer(c);
2260 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002261 path->slots[level + 1] += 1;
2262 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002263 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002264 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002265 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002266 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002267}
2268
Chris Mason74123bd2007-02-02 11:05:29 -05002269/*
2270 * how many bytes are required to store the items in a leaf. start
2271 * and nr indicate which items in the leaf to check. This totals up the
2272 * space used both by the item structs and the item data
2273 */
Chris Mason5f39d392007-10-15 16:14:19 -04002274static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002275{
2276 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002277 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002278 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002279
2280 if (!nr)
2281 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002282 data_len = btrfs_item_end_nr(l, start);
2283 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002284 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002285 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002286 return data_len;
2287}
2288
Chris Mason74123bd2007-02-02 11:05:29 -05002289/*
Chris Masond4dbff92007-04-04 14:08:15 -04002290 * The space between the end of the leaf items and
2291 * the start of the leaf data. IOW, how much room
2292 * the leaf has left for both items and data
2293 */
Chris Masond3977122009-01-05 21:25:51 -05002294noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002295 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002296{
Chris Mason5f39d392007-10-15 16:14:19 -04002297 int nritems = btrfs_header_nritems(leaf);
2298 int ret;
2299 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2300 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002301 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2302 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002303 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002304 leaf_space_used(leaf, 0, nritems), nritems);
2305 }
2306 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002307}
2308
Chris Mason99d8f832010-07-07 10:51:48 -04002309/*
2310 * min slot controls the lowest index we're willing to push to the
2311 * right. We'll push up to and including min_slot, but no lower
2312 */
Chris Mason44871b12009-03-13 10:04:31 -04002313static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
2314 struct btrfs_root *root,
2315 struct btrfs_path *path,
2316 int data_size, int empty,
2317 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04002318 int free_space, u32 left_nritems,
2319 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05002320{
Chris Mason5f39d392007-10-15 16:14:19 -04002321 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04002322 struct extent_buffer *upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002323 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002324 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002325 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002326 int push_space = 0;
2327 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002328 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05002329 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002330 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002331 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002332 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05002333
Chris Mason34a38212007-11-07 13:31:03 -05002334 if (empty)
2335 nr = 0;
2336 else
Chris Mason99d8f832010-07-07 10:51:48 -04002337 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05002338
Zheng Yan31840ae2008-09-23 13:14:14 -04002339 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002340 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002341
Chris Mason44871b12009-03-13 10:04:31 -04002342 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05002343 i = left_nritems - 1;
2344 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002345 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002346
Zheng Yan31840ae2008-09-23 13:14:14 -04002347 if (!empty && push_items > 0) {
2348 if (path->slots[0] > i)
2349 break;
2350 if (path->slots[0] == i) {
2351 int space = btrfs_leaf_free_space(root, left);
2352 if (space + push_space * 2 > free_space)
2353 break;
2354 }
2355 }
2356
Chris Mason00ec4c52007-02-24 12:47:20 -05002357 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002358 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002359
Chris Masondb945352007-10-15 16:15:53 -04002360 this_item_size = btrfs_item_size(left, item);
2361 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002362 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002363
Chris Mason00ec4c52007-02-24 12:47:20 -05002364 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002365 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002366 if (i == 0)
2367 break;
2368 i--;
Chris Masondb945352007-10-15 16:15:53 -04002369 }
Chris Mason5f39d392007-10-15 16:14:19 -04002370
Chris Mason925baed2008-06-25 16:01:30 -04002371 if (push_items == 0)
2372 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002373
Chris Mason34a38212007-11-07 13:31:03 -05002374 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002375 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002376
Chris Mason00ec4c52007-02-24 12:47:20 -05002377 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002378 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002379
Chris Mason5f39d392007-10-15 16:14:19 -04002380 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002381 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002382
Chris Mason00ec4c52007-02-24 12:47:20 -05002383 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002384 data_end = leaf_data_end(root, right);
2385 memmove_extent_buffer(right,
2386 btrfs_leaf_data(right) + data_end - push_space,
2387 btrfs_leaf_data(right) + data_end,
2388 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2389
Chris Mason00ec4c52007-02-24 12:47:20 -05002390 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002391 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002392 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2393 btrfs_leaf_data(left) + leaf_data_end(root, left),
2394 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002395
2396 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2397 btrfs_item_nr_offset(0),
2398 right_nritems * sizeof(struct btrfs_item));
2399
Chris Mason00ec4c52007-02-24 12:47:20 -05002400 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002401 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2402 btrfs_item_nr_offset(left_nritems - push_items),
2403 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002404
2405 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002406 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002407 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002408 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002409 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002410 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002411 push_space -= btrfs_item_size(right, item);
2412 btrfs_set_item_offset(right, item, push_space);
2413 }
2414
Chris Mason7518a232007-03-12 12:01:18 -04002415 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002416 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002417
Chris Mason34a38212007-11-07 13:31:03 -05002418 if (left_nritems)
2419 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002420 else
2421 clean_tree_block(trans, root, left);
2422
Chris Mason5f39d392007-10-15 16:14:19 -04002423 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002424
Chris Mason5f39d392007-10-15 16:14:19 -04002425 btrfs_item_key(right, &disk_key, 0);
2426 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002427 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002428
Chris Mason00ec4c52007-02-24 12:47:20 -05002429 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002430 if (path->slots[0] >= left_nritems) {
2431 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002432 if (btrfs_header_nritems(path->nodes[0]) == 0)
2433 clean_tree_block(trans, root, path->nodes[0]);
2434 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002435 free_extent_buffer(path->nodes[0]);
2436 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002437 path->slots[1] += 1;
2438 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002439 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002440 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002441 }
2442 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002443
2444out_unlock:
2445 btrfs_tree_unlock(right);
2446 free_extent_buffer(right);
2447 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002448}
Chris Mason925baed2008-06-25 16:01:30 -04002449
Chris Mason00ec4c52007-02-24 12:47:20 -05002450/*
Chris Mason44871b12009-03-13 10:04:31 -04002451 * push some data in the path leaf to the right, trying to free up at
2452 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2453 *
2454 * returns 1 if the push failed because the other node didn't have enough
2455 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04002456 *
2457 * this will push starting from min_slot to the end of the leaf. It won't
2458 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04002459 */
2460static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04002461 *root, struct btrfs_path *path,
2462 int min_data_size, int data_size,
2463 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04002464{
2465 struct extent_buffer *left = path->nodes[0];
2466 struct extent_buffer *right;
2467 struct extent_buffer *upper;
2468 int slot;
2469 int free_space;
2470 u32 left_nritems;
2471 int ret;
2472
2473 if (!path->nodes[1])
2474 return 1;
2475
2476 slot = path->slots[1];
2477 upper = path->nodes[1];
2478 if (slot >= btrfs_header_nritems(upper) - 1)
2479 return 1;
2480
2481 btrfs_assert_tree_locked(path->nodes[1]);
2482
2483 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00002484 if (right == NULL)
2485 return 1;
2486
Chris Mason44871b12009-03-13 10:04:31 -04002487 btrfs_tree_lock(right);
2488 btrfs_set_lock_blocking(right);
2489
2490 free_space = btrfs_leaf_free_space(root, right);
2491 if (free_space < data_size)
2492 goto out_unlock;
2493
2494 /* cow and double check */
2495 ret = btrfs_cow_block(trans, root, right, upper,
2496 slot + 1, &right);
2497 if (ret)
2498 goto out_unlock;
2499
2500 free_space = btrfs_leaf_free_space(root, right);
2501 if (free_space < data_size)
2502 goto out_unlock;
2503
2504 left_nritems = btrfs_header_nritems(left);
2505 if (left_nritems == 0)
2506 goto out_unlock;
2507
Chris Mason99d8f832010-07-07 10:51:48 -04002508 return __push_leaf_right(trans, root, path, min_data_size, empty,
2509 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04002510out_unlock:
2511 btrfs_tree_unlock(right);
2512 free_extent_buffer(right);
2513 return 1;
2514}
2515
2516/*
Chris Mason74123bd2007-02-02 11:05:29 -05002517 * push some data in the path leaf to the left, trying to free up at
2518 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04002519 *
2520 * max_slot can put a limit on how far into the leaf we'll push items. The
2521 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
2522 * items
Chris Mason74123bd2007-02-02 11:05:29 -05002523 */
Chris Mason44871b12009-03-13 10:04:31 -04002524static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
2525 struct btrfs_root *root,
2526 struct btrfs_path *path, int data_size,
2527 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04002528 int free_space, u32 right_nritems,
2529 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002530{
Chris Mason5f39d392007-10-15 16:14:19 -04002531 struct btrfs_disk_key disk_key;
2532 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05002533 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002534 int push_space = 0;
2535 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002536 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002537 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002538 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002539 int ret = 0;
2540 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002541 u32 this_item_size;
2542 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002543
Chris Mason34a38212007-11-07 13:31:03 -05002544 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04002545 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05002546 else
Chris Mason99d8f832010-07-07 10:51:48 -04002547 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05002548
2549 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002550 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002551
Zheng Yan31840ae2008-09-23 13:14:14 -04002552 if (!empty && push_items > 0) {
2553 if (path->slots[0] < i)
2554 break;
2555 if (path->slots[0] == i) {
2556 int space = btrfs_leaf_free_space(root, right);
2557 if (space + push_space * 2 > free_space)
2558 break;
2559 }
2560 }
2561
Chris Masonbe0e5c02007-01-26 15:51:26 -05002562 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002563 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002564
2565 this_item_size = btrfs_item_size(right, item);
2566 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002567 break;
Chris Masondb945352007-10-15 16:15:53 -04002568
Chris Masonbe0e5c02007-01-26 15:51:26 -05002569 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002570 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002571 }
Chris Masondb945352007-10-15 16:15:53 -04002572
Chris Masonbe0e5c02007-01-26 15:51:26 -05002573 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002574 ret = 1;
2575 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002576 }
Chris Mason34a38212007-11-07 13:31:03 -05002577 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002578 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002579
Chris Masonbe0e5c02007-01-26 15:51:26 -05002580 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002581 copy_extent_buffer(left, right,
2582 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2583 btrfs_item_nr_offset(0),
2584 push_items * sizeof(struct btrfs_item));
2585
Chris Mason123abc82007-03-14 14:14:43 -04002586 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002587 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002588
2589 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002590 leaf_data_end(root, left) - push_space,
2591 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002592 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002593 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002594 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002595 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002596
Chris Masondb945352007-10-15 16:15:53 -04002597 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002598 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002599 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002600
Chris Mason5f39d392007-10-15 16:14:19 -04002601 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002602
Chris Mason5f39d392007-10-15 16:14:19 -04002603 ioff = btrfs_item_offset(left, item);
2604 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002605 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002606 }
Chris Mason5f39d392007-10-15 16:14:19 -04002607 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002608
2609 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002610 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002611 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2612 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002613 WARN_ON(1);
2614 }
Chris Mason5f39d392007-10-15 16:14:19 -04002615
Chris Mason34a38212007-11-07 13:31:03 -05002616 if (push_items < right_nritems) {
2617 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2618 leaf_data_end(root, right);
2619 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2620 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2621 btrfs_leaf_data(right) +
2622 leaf_data_end(root, right), push_space);
2623
2624 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002625 btrfs_item_nr_offset(push_items),
2626 (btrfs_header_nritems(right) - push_items) *
2627 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002628 }
Yaneef1c492007-11-26 10:58:13 -05002629 right_nritems -= push_items;
2630 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002631 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002632 for (i = 0; i < right_nritems; i++) {
2633 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002634
Chris Masondb945352007-10-15 16:15:53 -04002635 push_space = push_space - btrfs_item_size(right, item);
2636 btrfs_set_item_offset(right, item, push_space);
2637 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002638
Chris Mason5f39d392007-10-15 16:14:19 -04002639 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002640 if (right_nritems)
2641 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002642 else
2643 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04002644
Chris Mason5f39d392007-10-15 16:14:19 -04002645 btrfs_item_key(right, &disk_key, 0);
2646 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002647 if (wret)
2648 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002649
2650 /* then fixup the leaf pointer in the path */
2651 if (path->slots[0] < push_items) {
2652 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002653 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002654 free_extent_buffer(path->nodes[0]);
2655 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002656 path->slots[1] -= 1;
2657 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002658 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002659 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002660 path->slots[0] -= push_items;
2661 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002662 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002663 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002664out:
2665 btrfs_tree_unlock(left);
2666 free_extent_buffer(left);
2667 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002668}
2669
Chris Mason74123bd2007-02-02 11:05:29 -05002670/*
Chris Mason44871b12009-03-13 10:04:31 -04002671 * push some data in the path leaf to the left, trying to free up at
2672 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04002673 *
2674 * max_slot can put a limit on how far into the leaf we'll push items. The
2675 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
2676 * items
Chris Mason44871b12009-03-13 10:04:31 -04002677 */
2678static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04002679 *root, struct btrfs_path *path, int min_data_size,
2680 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04002681{
2682 struct extent_buffer *right = path->nodes[0];
2683 struct extent_buffer *left;
2684 int slot;
2685 int free_space;
2686 u32 right_nritems;
2687 int ret = 0;
2688
2689 slot = path->slots[1];
2690 if (slot == 0)
2691 return 1;
2692 if (!path->nodes[1])
2693 return 1;
2694
2695 right_nritems = btrfs_header_nritems(right);
2696 if (right_nritems == 0)
2697 return 1;
2698
2699 btrfs_assert_tree_locked(path->nodes[1]);
2700
2701 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00002702 if (left == NULL)
2703 return 1;
2704
Chris Mason44871b12009-03-13 10:04:31 -04002705 btrfs_tree_lock(left);
2706 btrfs_set_lock_blocking(left);
2707
2708 free_space = btrfs_leaf_free_space(root, left);
2709 if (free_space < data_size) {
2710 ret = 1;
2711 goto out;
2712 }
2713
2714 /* cow and double check */
2715 ret = btrfs_cow_block(trans, root, left,
2716 path->nodes[1], slot - 1, &left);
2717 if (ret) {
2718 /* we hit -ENOSPC, but it isn't fatal here */
2719 ret = 1;
2720 goto out;
2721 }
2722
2723 free_space = btrfs_leaf_free_space(root, left);
2724 if (free_space < data_size) {
2725 ret = 1;
2726 goto out;
2727 }
2728
Chris Mason99d8f832010-07-07 10:51:48 -04002729 return __push_leaf_left(trans, root, path, min_data_size,
2730 empty, left, free_space, right_nritems,
2731 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04002732out:
2733 btrfs_tree_unlock(left);
2734 free_extent_buffer(left);
2735 return ret;
2736}
2737
2738/*
Chris Mason74123bd2007-02-02 11:05:29 -05002739 * split the path's leaf in two, making sure there is at least data_size
2740 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002741 *
2742 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002743 */
Chris Mason44871b12009-03-13 10:04:31 -04002744static noinline int copy_for_split(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002745 struct btrfs_root *root,
Chris Mason44871b12009-03-13 10:04:31 -04002746 struct btrfs_path *path,
2747 struct extent_buffer *l,
2748 struct extent_buffer *right,
2749 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002750{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002751 int data_copy_size;
2752 int rt_data_off;
2753 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002754 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002755 int wret;
Chris Masond4dbff92007-04-04 14:08:15 -04002756 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002757
Chris Mason5f39d392007-10-15 16:14:19 -04002758 nritems = nritems - mid;
2759 btrfs_set_header_nritems(right, nritems);
2760 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2761
2762 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2763 btrfs_item_nr_offset(mid),
2764 nritems * sizeof(struct btrfs_item));
2765
2766 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002767 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2768 data_copy_size, btrfs_leaf_data(l) +
2769 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002770
Chris Mason5f39d392007-10-15 16:14:19 -04002771 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2772 btrfs_item_end_nr(l, mid);
2773
2774 for (i = 0; i < nritems; i++) {
2775 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002776 u32 ioff;
2777
Chris Masondb945352007-10-15 16:15:53 -04002778 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002779 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002780 }
Chris Mason74123bd2007-02-02 11:05:29 -05002781
Chris Mason5f39d392007-10-15 16:14:19 -04002782 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002783 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002784 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002785 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2786 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002787 if (wret)
2788 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002789
2790 btrfs_mark_buffer_dirty(right);
2791 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002792 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002793
Chris Masonbe0e5c02007-01-26 15:51:26 -05002794 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002795 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002796 free_extent_buffer(path->nodes[0]);
2797 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002798 path->slots[0] -= mid;
2799 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002800 } else {
2801 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002802 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002803 }
Chris Mason5f39d392007-10-15 16:14:19 -04002804
Chris Masoneb60cea2007-02-02 09:18:22 -05002805 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002806
Chris Mason44871b12009-03-13 10:04:31 -04002807 return ret;
2808}
2809
2810/*
Chris Mason99d8f832010-07-07 10:51:48 -04002811 * double splits happen when we need to insert a big item in the middle
2812 * of a leaf. A double split can leave us with 3 mostly empty leaves:
2813 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
2814 * A B C
2815 *
2816 * We avoid this by trying to push the items on either side of our target
2817 * into the adjacent leaves. If all goes well we can avoid the double split
2818 * completely.
2819 */
2820static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
2821 struct btrfs_root *root,
2822 struct btrfs_path *path,
2823 int data_size)
2824{
2825 int ret;
2826 int progress = 0;
2827 int slot;
2828 u32 nritems;
2829
2830 slot = path->slots[0];
2831
2832 /*
2833 * try to push all the items after our slot into the
2834 * right leaf
2835 */
2836 ret = push_leaf_right(trans, root, path, 1, data_size, 0, slot);
2837 if (ret < 0)
2838 return ret;
2839
2840 if (ret == 0)
2841 progress++;
2842
2843 nritems = btrfs_header_nritems(path->nodes[0]);
2844 /*
2845 * our goal is to get our slot at the start or end of a leaf. If
2846 * we've done so we're done
2847 */
2848 if (path->slots[0] == 0 || path->slots[0] == nritems)
2849 return 0;
2850
2851 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
2852 return 0;
2853
2854 /* try to push all the items before our slot into the next leaf */
2855 slot = path->slots[0];
2856 ret = push_leaf_left(trans, root, path, 1, data_size, 0, slot);
2857 if (ret < 0)
2858 return ret;
2859
2860 if (ret == 0)
2861 progress++;
2862
2863 if (progress)
2864 return 0;
2865 return 1;
2866}
2867
2868/*
Chris Mason44871b12009-03-13 10:04:31 -04002869 * split the path's leaf in two, making sure there is at least data_size
2870 * available for the resulting leaf level of the path.
2871 *
2872 * returns 0 if all went well and < 0 on failure.
2873 */
2874static noinline int split_leaf(struct btrfs_trans_handle *trans,
2875 struct btrfs_root *root,
2876 struct btrfs_key *ins_key,
2877 struct btrfs_path *path, int data_size,
2878 int extend)
2879{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002880 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04002881 struct extent_buffer *l;
2882 u32 nritems;
2883 int mid;
2884 int slot;
2885 struct extent_buffer *right;
2886 int ret = 0;
2887 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002888 int split;
Chris Mason44871b12009-03-13 10:04:31 -04002889 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04002890 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04002891
Yan, Zhenga5719522009-09-24 09:17:31 -04002892 l = path->nodes[0];
2893 slot = path->slots[0];
2894 if (extend && data_size + btrfs_item_size_nr(l, slot) +
2895 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
2896 return -EOVERFLOW;
2897
Chris Mason44871b12009-03-13 10:04:31 -04002898 /* first try to make some room by pushing left and right */
Chris Mason99d8f832010-07-07 10:51:48 -04002899 if (data_size) {
2900 wret = push_leaf_right(trans, root, path, data_size,
2901 data_size, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04002902 if (wret < 0)
2903 return wret;
2904 if (wret) {
Chris Mason99d8f832010-07-07 10:51:48 -04002905 wret = push_leaf_left(trans, root, path, data_size,
2906 data_size, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04002907 if (wret < 0)
2908 return wret;
2909 }
2910 l = path->nodes[0];
2911
2912 /* did the pushes work? */
2913 if (btrfs_leaf_free_space(root, l) >= data_size)
2914 return 0;
2915 }
2916
2917 if (!path->nodes[1]) {
2918 ret = insert_new_root(trans, root, path, 1);
2919 if (ret)
2920 return ret;
2921 }
2922again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002923 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04002924 l = path->nodes[0];
2925 slot = path->slots[0];
2926 nritems = btrfs_header_nritems(l);
2927 mid = (nritems + 1) / 2;
2928
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002929 if (mid <= slot) {
2930 if (nritems == 1 ||
2931 leaf_space_used(l, mid, nritems - mid) + data_size >
2932 BTRFS_LEAF_DATA_SIZE(root)) {
2933 if (slot >= nritems) {
2934 split = 0;
2935 } else {
2936 mid = slot;
2937 if (mid != nritems &&
2938 leaf_space_used(l, mid, nritems - mid) +
2939 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04002940 if (data_size && !tried_avoid_double)
2941 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002942 split = 2;
2943 }
2944 }
2945 }
2946 } else {
2947 if (leaf_space_used(l, 0, mid) + data_size >
2948 BTRFS_LEAF_DATA_SIZE(root)) {
2949 if (!extend && data_size && slot == 0) {
2950 split = 0;
2951 } else if ((extend || !data_size) && slot == 0) {
2952 mid = 1;
2953 } else {
2954 mid = slot;
2955 if (mid != nritems &&
2956 leaf_space_used(l, mid, nritems - mid) +
2957 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04002958 if (data_size && !tried_avoid_double)
2959 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002960 split = 2 ;
2961 }
2962 }
2963 }
2964 }
2965
2966 if (split == 0)
2967 btrfs_cpu_key_to_disk(&disk_key, ins_key);
2968 else
2969 btrfs_item_key(l, &disk_key, mid);
2970
2971 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04002972 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002973 &disk_key, 0, l->start, 0, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002974 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04002975 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002976
2977 root_add_used(root, root->leafsize);
Chris Mason44871b12009-03-13 10:04:31 -04002978
2979 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
2980 btrfs_set_header_bytenr(right, right->start);
2981 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002982 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04002983 btrfs_set_header_owner(right, root->root_key.objectid);
2984 btrfs_set_header_level(right, 0);
2985 write_extent_buffer(right, root->fs_info->fsid,
2986 (unsigned long)btrfs_header_fsid(right),
2987 BTRFS_FSID_SIZE);
2988
2989 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2990 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2991 BTRFS_UUID_SIZE);
2992
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002993 if (split == 0) {
2994 if (mid <= slot) {
2995 btrfs_set_header_nritems(right, 0);
2996 wret = insert_ptr(trans, root, path,
2997 &disk_key, right->start,
2998 path->slots[1] + 1, 1);
2999 if (wret)
3000 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04003001
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003002 btrfs_tree_unlock(path->nodes[0]);
3003 free_extent_buffer(path->nodes[0]);
3004 path->nodes[0] = right;
3005 path->slots[0] = 0;
3006 path->slots[1] += 1;
3007 } else {
3008 btrfs_set_header_nritems(right, 0);
3009 wret = insert_ptr(trans, root, path,
3010 &disk_key,
3011 right->start,
3012 path->slots[1], 1);
3013 if (wret)
3014 ret = wret;
3015 btrfs_tree_unlock(path->nodes[0]);
3016 free_extent_buffer(path->nodes[0]);
3017 path->nodes[0] = right;
3018 path->slots[0] = 0;
3019 if (path->slots[1] == 0) {
3020 wret = fixup_low_keys(trans, root,
3021 path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04003022 if (wret)
3023 ret = wret;
Chris Mason44871b12009-03-13 10:04:31 -04003024 }
3025 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003026 btrfs_mark_buffer_dirty(right);
3027 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04003028 }
3029
3030 ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
3031 BUG_ON(ret);
3032
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003033 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04003034 BUG_ON(num_doubles != 0);
3035 num_doubles++;
3036 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04003037 }
Chris Mason44871b12009-03-13 10:04:31 -04003038
Chris Masonbe0e5c02007-01-26 15:51:26 -05003039 return ret;
Chris Mason99d8f832010-07-07 10:51:48 -04003040
3041push_for_double:
3042 push_for_double_split(trans, root, path, data_size);
3043 tried_avoid_double = 1;
3044 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
3045 return 0;
3046 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003047}
3048
Yan, Zhengad48fd752009-11-12 09:33:58 +00003049static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
3050 struct btrfs_root *root,
3051 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05003052{
Yan, Zhengad48fd752009-11-12 09:33:58 +00003053 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05003054 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003055 struct btrfs_file_extent_item *fi;
3056 u64 extent_len = 0;
3057 u32 item_size;
3058 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05003059
3060 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00003061 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3062
3063 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
3064 key.type != BTRFS_EXTENT_CSUM_KEY);
3065
3066 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
3067 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05003068
3069 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003070 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3071 fi = btrfs_item_ptr(leaf, path->slots[0],
3072 struct btrfs_file_extent_item);
3073 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
3074 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003075 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05003076
Chris Mason459931e2008-12-10 09:10:46 -05003077 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003078 path->search_for_split = 1;
3079 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05003080 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00003081 if (ret < 0)
3082 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003083
Yan, Zhengad48fd752009-11-12 09:33:58 +00003084 ret = -EAGAIN;
3085 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05003086 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00003087 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
3088 goto err;
3089
Chris Mason109f6ae2010-04-02 09:20:18 -04003090 /* the leaf has changed, it now has room. return now */
3091 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
3092 goto err;
3093
Yan, Zhengad48fd752009-11-12 09:33:58 +00003094 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3095 fi = btrfs_item_ptr(leaf, path->slots[0],
3096 struct btrfs_file_extent_item);
3097 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
3098 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003099 }
3100
Chris Masonb9473432009-03-13 11:00:37 -04003101 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003102 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003103 if (ret)
3104 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05003105
Yan, Zhengad48fd752009-11-12 09:33:58 +00003106 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04003107 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003108 return 0;
3109err:
3110 path->keep_locks = 0;
3111 return ret;
3112}
3113
3114static noinline int split_item(struct btrfs_trans_handle *trans,
3115 struct btrfs_root *root,
3116 struct btrfs_path *path,
3117 struct btrfs_key *new_key,
3118 unsigned long split_offset)
3119{
3120 struct extent_buffer *leaf;
3121 struct btrfs_item *item;
3122 struct btrfs_item *new_item;
3123 int slot;
3124 char *buf;
3125 u32 nritems;
3126 u32 item_size;
3127 u32 orig_offset;
3128 struct btrfs_disk_key disk_key;
3129
Chris Masonb9473432009-03-13 11:00:37 -04003130 leaf = path->nodes[0];
3131 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
3132
Chris Masonb4ce94d2009-02-04 09:25:08 -05003133 btrfs_set_path_blocking(path);
3134
Chris Mason459931e2008-12-10 09:10:46 -05003135 item = btrfs_item_nr(leaf, path->slots[0]);
3136 orig_offset = btrfs_item_offset(leaf, item);
3137 item_size = btrfs_item_size(leaf, item);
3138
Chris Mason459931e2008-12-10 09:10:46 -05003139 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003140 if (!buf)
3141 return -ENOMEM;
3142
Chris Mason459931e2008-12-10 09:10:46 -05003143 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3144 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003145
Chris Mason459931e2008-12-10 09:10:46 -05003146 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05003147 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05003148 if (slot != nritems) {
3149 /* shift the items */
3150 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00003151 btrfs_item_nr_offset(slot),
3152 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05003153 }
3154
3155 btrfs_cpu_key_to_disk(&disk_key, new_key);
3156 btrfs_set_item_key(leaf, &disk_key, slot);
3157
3158 new_item = btrfs_item_nr(leaf, slot);
3159
3160 btrfs_set_item_offset(leaf, new_item, orig_offset);
3161 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3162
3163 btrfs_set_item_offset(leaf, item,
3164 orig_offset + item_size - split_offset);
3165 btrfs_set_item_size(leaf, item, split_offset);
3166
3167 btrfs_set_header_nritems(leaf, nritems + 1);
3168
3169 /* write the data for the start of the original item */
3170 write_extent_buffer(leaf, buf,
3171 btrfs_item_ptr_offset(leaf, path->slots[0]),
3172 split_offset);
3173
3174 /* write the data for the new item */
3175 write_extent_buffer(leaf, buf + split_offset,
3176 btrfs_item_ptr_offset(leaf, slot),
3177 item_size - split_offset);
3178 btrfs_mark_buffer_dirty(leaf);
3179
Yan, Zhengad48fd752009-11-12 09:33:58 +00003180 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05003181 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00003182 return 0;
3183}
3184
3185/*
3186 * This function splits a single item into two items,
3187 * giving 'new_key' to the new item and splitting the
3188 * old one at split_offset (from the start of the item).
3189 *
3190 * The path may be released by this operation. After
3191 * the split, the path is pointing to the old item. The
3192 * new item is going to be in the same node as the old one.
3193 *
3194 * Note, the item being split must be smaller enough to live alone on
3195 * a tree block with room for one extra struct btrfs_item
3196 *
3197 * This allows us to split the item in place, keeping a lock on the
3198 * leaf the entire time.
3199 */
3200int btrfs_split_item(struct btrfs_trans_handle *trans,
3201 struct btrfs_root *root,
3202 struct btrfs_path *path,
3203 struct btrfs_key *new_key,
3204 unsigned long split_offset)
3205{
3206 int ret;
3207 ret = setup_leaf_for_split(trans, root, path,
3208 sizeof(struct btrfs_item));
3209 if (ret)
3210 return ret;
3211
3212 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05003213 return ret;
3214}
3215
3216/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00003217 * This function duplicate a item, giving 'new_key' to the new item.
3218 * It guarantees both items live in the same tree leaf and the new item
3219 * is contiguous with the original item.
3220 *
3221 * This allows us to split file extent in place, keeping a lock on the
3222 * leaf the entire time.
3223 */
3224int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
3225 struct btrfs_root *root,
3226 struct btrfs_path *path,
3227 struct btrfs_key *new_key)
3228{
3229 struct extent_buffer *leaf;
3230 int ret;
3231 u32 item_size;
3232
3233 leaf = path->nodes[0];
3234 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3235 ret = setup_leaf_for_split(trans, root, path,
3236 item_size + sizeof(struct btrfs_item));
3237 if (ret)
3238 return ret;
3239
3240 path->slots[0]++;
3241 ret = setup_items_for_insert(trans, root, path, new_key, &item_size,
3242 item_size, item_size +
3243 sizeof(struct btrfs_item), 1);
3244 BUG_ON(ret);
3245
3246 leaf = path->nodes[0];
3247 memcpy_extent_buffer(leaf,
3248 btrfs_item_ptr_offset(leaf, path->slots[0]),
3249 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
3250 item_size);
3251 return 0;
3252}
3253
3254/*
Chris Masond352ac62008-09-29 15:18:18 -04003255 * make the item pointed to by the path smaller. new_size indicates
3256 * how small to make it, and from_end tells us if we just chop bytes
3257 * off the end of the item or if we shift the item to chop bytes off
3258 * the front.
3259 */
Chris Masonb18c6682007-04-17 13:26:50 -04003260int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3261 struct btrfs_root *root,
3262 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003263 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003264{
Chris Masonb18c6682007-04-17 13:26:50 -04003265 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04003266 struct extent_buffer *leaf;
3267 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003268 u32 nritems;
3269 unsigned int data_end;
3270 unsigned int old_data_start;
3271 unsigned int old_size;
3272 unsigned int size_diff;
3273 int i;
3274
Chris Mason5f39d392007-10-15 16:14:19 -04003275 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003276 slot = path->slots[0];
3277
3278 old_size = btrfs_item_size_nr(leaf, slot);
3279 if (old_size == new_size)
3280 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003281
Chris Mason5f39d392007-10-15 16:14:19 -04003282 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003283 data_end = leaf_data_end(root, leaf);
3284
Chris Mason5f39d392007-10-15 16:14:19 -04003285 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003286
Chris Masonb18c6682007-04-17 13:26:50 -04003287 size_diff = old_size - new_size;
3288
3289 BUG_ON(slot < 0);
3290 BUG_ON(slot >= nritems);
3291
3292 /*
3293 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3294 */
3295 /* first correct the data pointers */
3296 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003297 u32 ioff;
3298 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003299
Chris Mason5f39d392007-10-15 16:14:19 -04003300 ioff = btrfs_item_offset(leaf, item);
3301 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003302 }
Chris Masondb945352007-10-15 16:15:53 -04003303
Chris Masonb18c6682007-04-17 13:26:50 -04003304 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003305 if (from_end) {
3306 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3307 data_end + size_diff, btrfs_leaf_data(leaf) +
3308 data_end, old_data_start + new_size - data_end);
3309 } else {
3310 struct btrfs_disk_key disk_key;
3311 u64 offset;
3312
3313 btrfs_item_key(leaf, &disk_key, slot);
3314
3315 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3316 unsigned long ptr;
3317 struct btrfs_file_extent_item *fi;
3318
3319 fi = btrfs_item_ptr(leaf, slot,
3320 struct btrfs_file_extent_item);
3321 fi = (struct btrfs_file_extent_item *)(
3322 (unsigned long)fi - size_diff);
3323
3324 if (btrfs_file_extent_type(leaf, fi) ==
3325 BTRFS_FILE_EXTENT_INLINE) {
3326 ptr = btrfs_item_ptr_offset(leaf, slot);
3327 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003328 (unsigned long)fi,
3329 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003330 disk_bytenr));
3331 }
3332 }
3333
3334 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3335 data_end + size_diff, btrfs_leaf_data(leaf) +
3336 data_end, old_data_start - data_end);
3337
3338 offset = btrfs_disk_key_offset(&disk_key);
3339 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3340 btrfs_set_item_key(leaf, &disk_key, slot);
3341 if (slot == 0)
3342 fixup_low_keys(trans, root, path, &disk_key, 1);
3343 }
Chris Mason5f39d392007-10-15 16:14:19 -04003344
3345 item = btrfs_item_nr(leaf, slot);
3346 btrfs_set_item_size(leaf, item, new_size);
3347 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003348
Chris Mason5f39d392007-10-15 16:14:19 -04003349 if (btrfs_leaf_free_space(root, leaf) < 0) {
3350 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003351 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003352 }
Tsutomu Itoh1cd30792011-05-19 05:19:08 +00003353 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003354}
3355
Chris Masond352ac62008-09-29 15:18:18 -04003356/*
3357 * make the item pointed to by the path bigger, data_size is the new size.
3358 */
Chris Mason5f39d392007-10-15 16:14:19 -04003359int btrfs_extend_item(struct btrfs_trans_handle *trans,
3360 struct btrfs_root *root, struct btrfs_path *path,
3361 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003362{
Chris Mason6567e832007-04-16 09:22:45 -04003363 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04003364 struct extent_buffer *leaf;
3365 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003366 u32 nritems;
3367 unsigned int data_end;
3368 unsigned int old_data;
3369 unsigned int old_size;
3370 int i;
3371
Chris Mason5f39d392007-10-15 16:14:19 -04003372 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003373
Chris Mason5f39d392007-10-15 16:14:19 -04003374 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003375 data_end = leaf_data_end(root, leaf);
3376
Chris Mason5f39d392007-10-15 16:14:19 -04003377 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3378 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003379 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003380 }
Chris Mason6567e832007-04-16 09:22:45 -04003381 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003382 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003383
3384 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003385 if (slot >= nritems) {
3386 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003387 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3388 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003389 BUG_ON(1);
3390 }
Chris Mason6567e832007-04-16 09:22:45 -04003391
3392 /*
3393 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3394 */
3395 /* first correct the data pointers */
3396 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003397 u32 ioff;
3398 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003399
Chris Mason5f39d392007-10-15 16:14:19 -04003400 ioff = btrfs_item_offset(leaf, item);
3401 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003402 }
Chris Mason5f39d392007-10-15 16:14:19 -04003403
Chris Mason6567e832007-04-16 09:22:45 -04003404 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003405 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003406 data_end - data_size, btrfs_leaf_data(leaf) +
3407 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003408
Chris Mason6567e832007-04-16 09:22:45 -04003409 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003410 old_size = btrfs_item_size_nr(leaf, slot);
3411 item = btrfs_item_nr(leaf, slot);
3412 btrfs_set_item_size(leaf, item, old_size + data_size);
3413 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003414
Chris Mason5f39d392007-10-15 16:14:19 -04003415 if (btrfs_leaf_free_space(root, leaf) < 0) {
3416 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003417 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003418 }
Tsutomu Itoh1cd30792011-05-19 05:19:08 +00003419 return 0;
Chris Mason6567e832007-04-16 09:22:45 -04003420}
3421
Chris Mason74123bd2007-02-02 11:05:29 -05003422/*
Chris Masond352ac62008-09-29 15:18:18 -04003423 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003424 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003425 * Returns the number of keys that were inserted.
3426 */
3427int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3428 struct btrfs_root *root,
3429 struct btrfs_path *path,
3430 struct btrfs_key *cpu_key, u32 *data_size,
3431 int nr)
3432{
3433 struct extent_buffer *leaf;
3434 struct btrfs_item *item;
3435 int ret = 0;
3436 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003437 int i;
3438 u32 nritems;
3439 u32 total_data = 0;
3440 u32 total_size = 0;
3441 unsigned int data_end;
3442 struct btrfs_disk_key disk_key;
3443 struct btrfs_key found_key;
3444
Yan Zheng87b29b22008-12-17 10:21:48 -05003445 for (i = 0; i < nr; i++) {
3446 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3447 BTRFS_LEAF_DATA_SIZE(root)) {
3448 break;
3449 nr = i;
3450 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003451 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003452 total_size += data_size[i] + sizeof(struct btrfs_item);
3453 }
3454 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003455
Josef Bacikf3465ca2008-11-12 14:19:50 -05003456 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3457 if (ret == 0)
3458 return -EEXIST;
3459 if (ret < 0)
3460 goto out;
3461
Josef Bacikf3465ca2008-11-12 14:19:50 -05003462 leaf = path->nodes[0];
3463
3464 nritems = btrfs_header_nritems(leaf);
3465 data_end = leaf_data_end(root, leaf);
3466
3467 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3468 for (i = nr; i >= 0; i--) {
3469 total_data -= data_size[i];
3470 total_size -= data_size[i] + sizeof(struct btrfs_item);
3471 if (total_size < btrfs_leaf_free_space(root, leaf))
3472 break;
3473 }
3474 nr = i;
3475 }
3476
3477 slot = path->slots[0];
3478 BUG_ON(slot < 0);
3479
3480 if (slot != nritems) {
3481 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3482
3483 item = btrfs_item_nr(leaf, slot);
3484 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3485
3486 /* figure out how many keys we can insert in here */
3487 total_data = data_size[0];
3488 for (i = 1; i < nr; i++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003489 if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0)
Josef Bacikf3465ca2008-11-12 14:19:50 -05003490 break;
3491 total_data += data_size[i];
3492 }
3493 nr = i;
3494
3495 if (old_data < data_end) {
3496 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003497 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003498 slot, old_data, data_end);
3499 BUG_ON(1);
3500 }
3501 /*
3502 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3503 */
3504 /* first correct the data pointers */
Josef Bacikf3465ca2008-11-12 14:19:50 -05003505 for (i = slot; i < nritems; i++) {
3506 u32 ioff;
3507
3508 item = btrfs_item_nr(leaf, i);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003509 ioff = btrfs_item_offset(leaf, item);
3510 btrfs_set_item_offset(leaf, item, ioff - total_data);
3511 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003512 /* shift the items */
3513 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3514 btrfs_item_nr_offset(slot),
3515 (nritems - slot) * sizeof(struct btrfs_item));
3516
3517 /* shift the data */
3518 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3519 data_end - total_data, btrfs_leaf_data(leaf) +
3520 data_end, old_data - data_end);
3521 data_end = old_data;
3522 } else {
3523 /*
3524 * this sucks but it has to be done, if we are inserting at
3525 * the end of the leaf only insert 1 of the items, since we
3526 * have no way of knowing whats on the next leaf and we'd have
3527 * to drop our current locks to figure it out
3528 */
3529 nr = 1;
3530 }
3531
3532 /* setup the item for the new data */
3533 for (i = 0; i < nr; i++) {
3534 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3535 btrfs_set_item_key(leaf, &disk_key, slot + i);
3536 item = btrfs_item_nr(leaf, slot + i);
3537 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3538 data_end -= data_size[i];
3539 btrfs_set_item_size(leaf, item, data_size[i]);
3540 }
3541 btrfs_set_header_nritems(leaf, nritems + nr);
3542 btrfs_mark_buffer_dirty(leaf);
3543
3544 ret = 0;
3545 if (slot == 0) {
3546 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3547 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3548 }
3549
3550 if (btrfs_leaf_free_space(root, leaf) < 0) {
3551 btrfs_print_leaf(root, leaf);
3552 BUG();
3553 }
3554out:
3555 if (!ret)
3556 ret = nr;
3557 return ret;
3558}
3559
3560/*
Chris Mason44871b12009-03-13 10:04:31 -04003561 * this is a helper for btrfs_insert_empty_items, the main goal here is
3562 * to save stack depth by doing the bulk of the work in a function
3563 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05003564 */
Miao Xie16cdcec2011-04-22 18:12:22 +08003565int setup_items_for_insert(struct btrfs_trans_handle *trans,
3566 struct btrfs_root *root, struct btrfs_path *path,
3567 struct btrfs_key *cpu_key, u32 *data_size,
3568 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003569{
Chris Mason5f39d392007-10-15 16:14:19 -04003570 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05003571 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003572 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003573 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003574 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003575 int ret;
3576 struct extent_buffer *leaf;
3577 int slot;
Chris Masone2fa7222007-03-12 16:22:34 -04003578
Chris Mason5f39d392007-10-15 16:14:19 -04003579 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003580 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003581
Chris Mason5f39d392007-10-15 16:14:19 -04003582 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003583 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003584
Chris Masonf25956c2008-09-12 15:32:53 -04003585 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003586 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003587 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003588 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003589 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003590 }
Chris Mason5f39d392007-10-15 16:14:19 -04003591
Chris Masonbe0e5c02007-01-26 15:51:26 -05003592 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003593 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003594
Chris Mason5f39d392007-10-15 16:14:19 -04003595 if (old_data < data_end) {
3596 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003597 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003598 slot, old_data, data_end);
3599 BUG_ON(1);
3600 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003601 /*
3602 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3603 */
3604 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04003605 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003606 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003607
Chris Mason5f39d392007-10-15 16:14:19 -04003608 item = btrfs_item_nr(leaf, i);
3609 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003610 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003611 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003612 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003613 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003614 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003615 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003616
3617 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003618 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003619 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003620 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003621 data_end = old_data;
3622 }
Chris Mason5f39d392007-10-15 16:14:19 -04003623
Chris Mason62e27492007-03-15 12:56:47 -04003624 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003625 for (i = 0; i < nr; i++) {
3626 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3627 btrfs_set_item_key(leaf, &disk_key, slot + i);
3628 item = btrfs_item_nr(leaf, slot + i);
3629 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3630 data_end -= data_size[i];
3631 btrfs_set_item_size(leaf, item, data_size[i]);
3632 }
Chris Mason44871b12009-03-13 10:04:31 -04003633
Chris Mason9c583092008-01-29 15:15:18 -05003634 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003635
3636 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003637 if (slot == 0) {
3638 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003639 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003640 }
Chris Masonb9473432009-03-13 11:00:37 -04003641 btrfs_unlock_up_safe(path, 1);
3642 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003643
Chris Mason5f39d392007-10-15 16:14:19 -04003644 if (btrfs_leaf_free_space(root, leaf) < 0) {
3645 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003646 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003647 }
Chris Mason44871b12009-03-13 10:04:31 -04003648 return ret;
3649}
3650
3651/*
3652 * Given a key and some data, insert items into the tree.
3653 * This does all the path init required, making room in the tree if needed.
3654 */
3655int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
3656 struct btrfs_root *root,
3657 struct btrfs_path *path,
3658 struct btrfs_key *cpu_key, u32 *data_size,
3659 int nr)
3660{
Chris Mason44871b12009-03-13 10:04:31 -04003661 int ret = 0;
3662 int slot;
3663 int i;
3664 u32 total_size = 0;
3665 u32 total_data = 0;
3666
3667 for (i = 0; i < nr; i++)
3668 total_data += data_size[i];
3669
3670 total_size = total_data + (nr * sizeof(struct btrfs_item));
3671 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3672 if (ret == 0)
3673 return -EEXIST;
3674 if (ret < 0)
3675 goto out;
3676
Chris Mason44871b12009-03-13 10:04:31 -04003677 slot = path->slots[0];
3678 BUG_ON(slot < 0);
3679
3680 ret = setup_items_for_insert(trans, root, path, cpu_key, data_size,
3681 total_data, total_size, nr);
3682
Chris Masoned2ff2c2007-03-01 18:59:40 -05003683out:
Chris Mason62e27492007-03-15 12:56:47 -04003684 return ret;
3685}
3686
3687/*
3688 * Given a key and some data, insert an item into the tree.
3689 * This does all the path init required, making room in the tree if needed.
3690 */
Chris Masone089f052007-03-16 16:20:31 -04003691int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3692 *root, struct btrfs_key *cpu_key, void *data, u32
3693 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003694{
3695 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003696 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003697 struct extent_buffer *leaf;
3698 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003699
Chris Mason2c90e5d2007-04-02 10:50:19 -04003700 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003701 if (!path)
3702 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003703 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003704 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003705 leaf = path->nodes[0];
3706 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3707 write_extent_buffer(leaf, data, ptr, data_size);
3708 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003709 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003710 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003711 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003712}
3713
Chris Mason74123bd2007-02-02 11:05:29 -05003714/*
Chris Mason5de08d72007-02-24 06:24:44 -05003715 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003716 *
Chris Masond352ac62008-09-29 15:18:18 -04003717 * the tree should have been previously balanced so the deletion does not
3718 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003719 */
Chris Masone089f052007-03-16 16:20:31 -04003720static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3721 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003722{
Chris Mason5f39d392007-10-15 16:14:19 -04003723 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003724 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003725 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003726 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003727
Chris Mason5f39d392007-10-15 16:14:19 -04003728 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003729 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003730 memmove_extent_buffer(parent,
3731 btrfs_node_key_ptr_offset(slot),
3732 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003733 sizeof(struct btrfs_key_ptr) *
3734 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003735 }
Chris Mason7518a232007-03-12 12:01:18 -04003736 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003737 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003738 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003739 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003740 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003741 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003742 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003743 struct btrfs_disk_key disk_key;
3744
3745 btrfs_node_key(parent, &disk_key, 0);
3746 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003747 if (wret)
3748 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003749 }
Chris Masond6025572007-03-30 14:27:56 -04003750 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003751 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003752}
3753
Chris Mason74123bd2007-02-02 11:05:29 -05003754/*
Chris Mason323ac952008-10-01 19:05:46 -04003755 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003756 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04003757 *
3758 * This deletes the pointer in path->nodes[1] and frees the leaf
3759 * block extent. zero is returned if it all worked out, < 0 otherwise.
3760 *
3761 * The path must have already been setup for deleting the leaf, including
3762 * all the proper balancing. path->nodes[1] must be locked.
3763 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003764static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3765 struct btrfs_root *root,
3766 struct btrfs_path *path,
3767 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04003768{
3769 int ret;
Chris Mason323ac952008-10-01 19:05:46 -04003770
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003771 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Chris Mason323ac952008-10-01 19:05:46 -04003772 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3773 if (ret)
3774 return ret;
3775
Chris Mason4d081c42009-02-04 09:31:28 -05003776 /*
3777 * btrfs_free_extent is expensive, we want to make sure we
3778 * aren't holding any locks when we call it
3779 */
3780 btrfs_unlock_up_safe(path, 0);
3781
Yan, Zhengf0486c62010-05-16 10:46:25 -04003782 root_sub_used(root, leaf->len);
3783
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003784 btrfs_free_tree_block(trans, root, leaf, 0, 1, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003785 return 0;
Chris Mason323ac952008-10-01 19:05:46 -04003786}
3787/*
Chris Mason74123bd2007-02-02 11:05:29 -05003788 * delete the item at the leaf level in path. If that empties
3789 * the leaf, remove it from the tree
3790 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003791int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3792 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003793{
Chris Mason5f39d392007-10-15 16:14:19 -04003794 struct extent_buffer *leaf;
3795 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003796 int last_off;
3797 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003798 int ret = 0;
3799 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003800 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003801 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003802
Chris Mason5f39d392007-10-15 16:14:19 -04003803 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003804 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3805
3806 for (i = 0; i < nr; i++)
3807 dsize += btrfs_item_size_nr(leaf, slot + i);
3808
Chris Mason5f39d392007-10-15 16:14:19 -04003809 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003810
Chris Mason85e21ba2008-01-29 15:11:36 -05003811 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003812 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003813
3814 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003815 data_end + dsize,
3816 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003817 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003818
Chris Mason85e21ba2008-01-29 15:11:36 -05003819 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003820 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003821
Chris Mason5f39d392007-10-15 16:14:19 -04003822 item = btrfs_item_nr(leaf, i);
3823 ioff = btrfs_item_offset(leaf, item);
3824 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003825 }
Chris Masondb945352007-10-15 16:15:53 -04003826
Chris Mason5f39d392007-10-15 16:14:19 -04003827 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003828 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003829 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003830 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003831 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003832 btrfs_set_header_nritems(leaf, nritems - nr);
3833 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003834
Chris Mason74123bd2007-02-02 11:05:29 -05003835 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003836 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003837 if (leaf == root->node) {
3838 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003839 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003840 btrfs_set_path_blocking(path);
3841 clean_tree_block(trans, root, leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003842 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003843 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003844 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003845 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003846 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003847 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003848 struct btrfs_disk_key disk_key;
3849
3850 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003851 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003852 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003853 if (wret)
3854 ret = wret;
3855 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003856
Chris Mason74123bd2007-02-02 11:05:29 -05003857 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04003858 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003859 /* push_leaf_left fixes the path.
3860 * make sure the path still points to our leaf
3861 * for possible call to del_ptr below
3862 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003863 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003864 extent_buffer_get(leaf);
3865
Chris Masonb9473432009-03-13 11:00:37 -04003866 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04003867 wret = push_leaf_left(trans, root, path, 1, 1,
3868 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003869 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003870 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003871
3872 if (path->nodes[0] == leaf &&
3873 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04003874 wret = push_leaf_right(trans, root, path, 1,
3875 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04003876 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003877 ret = wret;
3878 }
Chris Mason5f39d392007-10-15 16:14:19 -04003879
3880 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003881 path->slots[1] = slot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003882 ret = btrfs_del_leaf(trans, root, path, leaf);
Chris Mason323ac952008-10-01 19:05:46 -04003883 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003884 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003885 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003886 /* if we're still in the path, make sure
3887 * we're dirty. Otherwise, one of the
3888 * push_leaf functions must have already
3889 * dirtied this buffer
3890 */
3891 if (path->nodes[0] == leaf)
3892 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003893 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003894 }
Chris Masond5719762007-03-23 10:01:08 -04003895 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003896 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003897 }
3898 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003899 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003900}
3901
Chris Mason97571fd2007-02-24 13:39:08 -05003902/*
Chris Mason925baed2008-06-25 16:01:30 -04003903 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003904 * returns 0 if it found something or 1 if there are no lesser leaves.
3905 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003906 *
3907 * This may release the path, and so you may lose any locks held at the
3908 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003909 */
3910int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3911{
Chris Mason925baed2008-06-25 16:01:30 -04003912 struct btrfs_key key;
3913 struct btrfs_disk_key found_key;
3914 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003915
Chris Mason925baed2008-06-25 16:01:30 -04003916 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003917
Chris Mason925baed2008-06-25 16:01:30 -04003918 if (key.offset > 0)
3919 key.offset--;
3920 else if (key.type > 0)
3921 key.type--;
3922 else if (key.objectid > 0)
3923 key.objectid--;
3924 else
3925 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003926
David Sterbab3b4aa72011-04-21 01:20:15 +02003927 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04003928 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3929 if (ret < 0)
3930 return ret;
3931 btrfs_item_key(path->nodes[0], &found_key, 0);
3932 ret = comp_keys(&found_key, &key);
3933 if (ret < 0)
3934 return 0;
3935 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003936}
3937
Chris Mason3f157a22008-06-25 16:01:31 -04003938/*
3939 * A helper function to walk down the tree starting at min_key, and looking
3940 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003941 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003942 *
3943 * This does not cow, but it does stuff the starting key it finds back
3944 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3945 * key and get a writable path.
3946 *
3947 * This does lock as it descends, and path->keep_locks should be set
3948 * to 1 by the caller.
3949 *
3950 * This honors path->lowest_level to prevent descent past a given level
3951 * of the tree.
3952 *
Chris Masond352ac62008-09-29 15:18:18 -04003953 * min_trans indicates the oldest transaction that you are interested
3954 * in walking through. Any nodes or leaves older than min_trans are
3955 * skipped over (without reading them).
3956 *
Chris Mason3f157a22008-06-25 16:01:31 -04003957 * returns zero if something useful was found, < 0 on error and 1 if there
3958 * was nothing in the tree that matched the search criteria.
3959 */
3960int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003961 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003962 struct btrfs_path *path, int cache_only,
3963 u64 min_trans)
3964{
3965 struct extent_buffer *cur;
3966 struct btrfs_key found_key;
3967 int slot;
Yan96524802008-07-24 12:19:49 -04003968 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003969 u32 nritems;
3970 int level;
3971 int ret = 1;
3972
Chris Mason934d3752008-12-08 16:43:10 -05003973 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003974again:
Chris Masonbd681512011-07-16 15:23:14 -04003975 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04003976 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003977 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003978 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04003979 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04003980
3981 if (btrfs_header_generation(cur) < min_trans) {
3982 ret = 1;
3983 goto out;
3984 }
Chris Masond3977122009-01-05 21:25:51 -05003985 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003986 nritems = btrfs_header_nritems(cur);
3987 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003988 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003989
Chris Mason323ac952008-10-01 19:05:46 -04003990 /* at the lowest level, we're done, setup the path and exit */
3991 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003992 if (slot >= nritems)
3993 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003994 ret = 0;
3995 path->slots[level] = slot;
3996 btrfs_item_key_to_cpu(cur, &found_key, slot);
3997 goto out;
3998 }
Yan96524802008-07-24 12:19:49 -04003999 if (sret && slot > 0)
4000 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04004001 /*
4002 * check this node pointer against the cache_only and
4003 * min_trans parameters. If it isn't in cache or is too
4004 * old, skip to the next one.
4005 */
Chris Masond3977122009-01-05 21:25:51 -05004006 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04004007 u64 blockptr;
4008 u64 gen;
4009 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04004010 struct btrfs_disk_key disk_key;
4011
Chris Mason3f157a22008-06-25 16:01:31 -04004012 blockptr = btrfs_node_blockptr(cur, slot);
4013 gen = btrfs_node_ptr_generation(cur, slot);
4014 if (gen < min_trans) {
4015 slot++;
4016 continue;
4017 }
4018 if (!cache_only)
4019 break;
4020
Chris Masone02119d2008-09-05 16:13:11 -04004021 if (max_key) {
4022 btrfs_node_key(cur, &disk_key, slot);
4023 if (comp_keys(&disk_key, max_key) >= 0) {
4024 ret = 1;
4025 goto out;
4026 }
4027 }
4028
Chris Mason3f157a22008-06-25 16:01:31 -04004029 tmp = btrfs_find_tree_block(root, blockptr,
4030 btrfs_level_size(root, level - 1));
4031
4032 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
4033 free_extent_buffer(tmp);
4034 break;
4035 }
4036 if (tmp)
4037 free_extent_buffer(tmp);
4038 slot++;
4039 }
Chris Masone02119d2008-09-05 16:13:11 -04004040find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04004041 /*
4042 * we didn't find a candidate key in this node, walk forward
4043 * and find another one
4044 */
4045 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04004046 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004047 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04004048 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04004049 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004050 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004051 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004052 goto again;
4053 } else {
4054 goto out;
4055 }
4056 }
4057 /* save our key for returning back */
4058 btrfs_node_key_to_cpu(cur, &found_key, slot);
4059 path->slots[level] = slot;
4060 if (level == path->lowest_level) {
4061 ret = 0;
4062 unlock_up(path, level, 1);
4063 goto out;
4064 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004065 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004066 cur = read_node_slot(root, cur, slot);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00004067 BUG_ON(!cur);
Chris Mason3f157a22008-06-25 16:01:31 -04004068
Chris Masonbd681512011-07-16 15:23:14 -04004069 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004070
Chris Masonbd681512011-07-16 15:23:14 -04004071 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004072 path->nodes[level - 1] = cur;
4073 unlock_up(path, level, 1);
Chris Masonbd681512011-07-16 15:23:14 -04004074 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04004075 }
4076out:
4077 if (ret == 0)
4078 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004079 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004080 return ret;
4081}
4082
4083/*
4084 * this is similar to btrfs_next_leaf, but does not try to preserve
4085 * and fixup the path. It looks for and returns the next key in the
4086 * tree based on the current path and the cache_only and min_trans
4087 * parameters.
4088 *
4089 * 0 is returned if another key is found, < 0 if there are any errors
4090 * and 1 is returned if there are no higher keys in the tree
4091 *
4092 * path->keep_locks should be set to 1 on the search made before
4093 * calling this function.
4094 */
Chris Masone7a84562008-06-25 16:01:31 -04004095int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Yan Zheng33c66f42009-07-22 09:59:00 -04004096 struct btrfs_key *key, int level,
Chris Mason3f157a22008-06-25 16:01:31 -04004097 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04004098{
Chris Masone7a84562008-06-25 16:01:31 -04004099 int slot;
4100 struct extent_buffer *c;
4101
Chris Mason934d3752008-12-08 16:43:10 -05004102 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05004103 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04004104 if (!path->nodes[level])
4105 return 1;
4106
4107 slot = path->slots[level] + 1;
4108 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04004109next:
Chris Masone7a84562008-06-25 16:01:31 -04004110 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04004111 int ret;
4112 int orig_lowest;
4113 struct btrfs_key cur_key;
4114 if (level + 1 >= BTRFS_MAX_LEVEL ||
4115 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04004116 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04004117
4118 if (path->locks[level + 1]) {
4119 level++;
4120 continue;
4121 }
4122
4123 slot = btrfs_header_nritems(c) - 1;
4124 if (level == 0)
4125 btrfs_item_key_to_cpu(c, &cur_key, slot);
4126 else
4127 btrfs_node_key_to_cpu(c, &cur_key, slot);
4128
4129 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02004130 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04004131 path->lowest_level = level;
4132 ret = btrfs_search_slot(NULL, root, &cur_key, path,
4133 0, 0);
4134 path->lowest_level = orig_lowest;
4135 if (ret < 0)
4136 return ret;
4137
4138 c = path->nodes[level];
4139 slot = path->slots[level];
4140 if (ret == 0)
4141 slot++;
4142 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04004143 }
Yan Zheng33c66f42009-07-22 09:59:00 -04004144
Chris Masone7a84562008-06-25 16:01:31 -04004145 if (level == 0)
4146 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004147 else {
4148 u64 blockptr = btrfs_node_blockptr(c, slot);
4149 u64 gen = btrfs_node_ptr_generation(c, slot);
4150
4151 if (cache_only) {
4152 struct extent_buffer *cur;
4153 cur = btrfs_find_tree_block(root, blockptr,
4154 btrfs_level_size(root, level - 1));
4155 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4156 slot++;
4157 if (cur)
4158 free_extent_buffer(cur);
4159 goto next;
4160 }
4161 free_extent_buffer(cur);
4162 }
4163 if (gen < min_trans) {
4164 slot++;
4165 goto next;
4166 }
Chris Masone7a84562008-06-25 16:01:31 -04004167 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004168 }
Chris Masone7a84562008-06-25 16:01:31 -04004169 return 0;
4170 }
4171 return 1;
4172}
4173
Chris Mason7bb86312007-12-11 09:25:06 -05004174/*
Chris Mason925baed2008-06-25 16:01:30 -04004175 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004176 * returns 0 if it found something or 1 if there are no greater leaves.
4177 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004178 */
Chris Mason234b63a2007-03-13 10:46:10 -04004179int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004180{
4181 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04004182 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04004183 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04004184 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04004185 struct btrfs_key key;
4186 u32 nritems;
4187 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04004188 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04004189 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004190
4191 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004192 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004193 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004194
Chris Mason8e73f272009-04-03 10:14:18 -04004195 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4196again:
4197 level = 1;
4198 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04004199 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02004200 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04004201
Chris Masona2135012008-06-25 16:01:30 -04004202 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04004203 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04004204
Chris Mason925baed2008-06-25 16:01:30 -04004205 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4206 path->keep_locks = 0;
4207
4208 if (ret < 0)
4209 return ret;
4210
Chris Masona2135012008-06-25 16:01:30 -04004211 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004212 /*
4213 * by releasing the path above we dropped all our locks. A balance
4214 * could have added more items next to the key that used to be
4215 * at the very end of the block. So, check again here and
4216 * advance the path if there are now more items available.
4217 */
Chris Masona2135012008-06-25 16:01:30 -04004218 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04004219 if (ret == 0)
4220 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04004221 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004222 goto done;
4223 }
Chris Masond97e63b2007-02-20 16:40:44 -05004224
Chris Masond3977122009-01-05 21:25:51 -05004225 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04004226 if (!path->nodes[level]) {
4227 ret = 1;
4228 goto done;
4229 }
Chris Mason5f39d392007-10-15 16:14:19 -04004230
Chris Masond97e63b2007-02-20 16:40:44 -05004231 slot = path->slots[level] + 1;
4232 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004233 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004234 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04004235 if (level == BTRFS_MAX_LEVEL) {
4236 ret = 1;
4237 goto done;
4238 }
Chris Masond97e63b2007-02-20 16:40:44 -05004239 continue;
4240 }
Chris Mason5f39d392007-10-15 16:14:19 -04004241
Chris Mason925baed2008-06-25 16:01:30 -04004242 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04004243 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04004244 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004245 }
Chris Mason5f39d392007-10-15 16:14:19 -04004246
Chris Mason8e73f272009-04-03 10:14:18 -04004247 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04004248 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04004249 ret = read_block_for_search(NULL, root, path, &next, level,
4250 slot, &key);
4251 if (ret == -EAGAIN)
4252 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04004253
Chris Mason76a05b32009-05-14 13:24:30 -04004254 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004255 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04004256 goto done;
4257 }
4258
Chris Mason5cd57b22008-06-25 16:01:30 -04004259 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04004260 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04004261 if (!ret) {
4262 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04004263 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04004264 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04004265 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04004266 }
Chris Mason31533fb2011-07-26 16:01:59 -04004267 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04004268 }
Chris Masond97e63b2007-02-20 16:40:44 -05004269 break;
4270 }
4271 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004272 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004273 level--;
4274 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004275 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04004276 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04004277
Chris Mason5f39d392007-10-15 16:14:19 -04004278 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004279 path->nodes[level] = next;
4280 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004281 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04004282 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05004283 if (!level)
4284 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004285
Chris Mason8e73f272009-04-03 10:14:18 -04004286 ret = read_block_for_search(NULL, root, path, &next, level,
4287 0, &key);
4288 if (ret == -EAGAIN)
4289 goto again;
4290
Chris Mason76a05b32009-05-14 13:24:30 -04004291 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004292 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04004293 goto done;
4294 }
4295
Chris Mason5cd57b22008-06-25 16:01:30 -04004296 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04004297 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04004298 if (!ret) {
4299 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04004300 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04004301 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04004302 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04004303 }
Chris Mason31533fb2011-07-26 16:01:59 -04004304 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04004305 }
Chris Masond97e63b2007-02-20 16:40:44 -05004306 }
Chris Mason8e73f272009-04-03 10:14:18 -04004307 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004308done:
4309 unlock_up(path, 0, 1);
Chris Mason8e73f272009-04-03 10:14:18 -04004310 path->leave_spinning = old_spinning;
4311 if (!old_spinning)
4312 btrfs_set_path_blocking(path);
4313
4314 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05004315}
Chris Mason0b86a832008-03-24 15:01:56 -04004316
Chris Mason3f157a22008-06-25 16:01:31 -04004317/*
4318 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4319 * searching until it gets past min_objectid or finds an item of 'type'
4320 *
4321 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4322 */
Chris Mason0b86a832008-03-24 15:01:56 -04004323int btrfs_previous_item(struct btrfs_root *root,
4324 struct btrfs_path *path, u64 min_objectid,
4325 int type)
4326{
4327 struct btrfs_key found_key;
4328 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004329 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004330 int ret;
4331
Chris Masond3977122009-01-05 21:25:51 -05004332 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004333 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004334 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004335 ret = btrfs_prev_leaf(root, path);
4336 if (ret != 0)
4337 return ret;
4338 } else {
4339 path->slots[0]--;
4340 }
4341 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004342 nritems = btrfs_header_nritems(leaf);
4343 if (nritems == 0)
4344 return 1;
4345 if (path->slots[0] == nritems)
4346 path->slots[0]--;
4347
Chris Mason0b86a832008-03-24 15:01:56 -04004348 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04004349 if (found_key.objectid < min_objectid)
4350 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04004351 if (found_key.type == type)
4352 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004353 if (found_key.objectid == min_objectid &&
4354 found_key.type < type)
4355 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004356 }
4357 return 1;
4358}