blob: 35443cc4b9a976607f41866d68c202855c1bf16b [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
Chris Masond352ac62008-09-29 15:18:18 -04002 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masona6b6e752007-10-15 16:22:39 -040019#include <linux/sched.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050020#include "ctree.h"
21#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040022#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040023#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040024#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050025
Chris Masone089f052007-03-16 16:20:31 -040026static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
27 *root, struct btrfs_path *path, int level);
28static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040029 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040030 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040031static int push_node_left(struct btrfs_trans_handle *trans,
32 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040033 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040034static int balance_node_right(struct btrfs_trans_handle *trans,
35 struct btrfs_root *root,
36 struct extent_buffer *dst_buf,
37 struct extent_buffer *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040038static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
39 struct btrfs_path *path, int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050040
Chris Masondf24a2b2007-04-04 09:36:31 -040041inline void btrfs_init_path(struct btrfs_path *p)
42{
43 memset(p, 0, sizeof(*p));
44}
45
Chris Mason2c90e5d2007-04-02 10:50:19 -040046struct btrfs_path *btrfs_alloc_path(void)
47{
Chris Masondf24a2b2007-04-04 09:36:31 -040048 struct btrfs_path *path;
49 path = kmem_cache_alloc(btrfs_path_cachep, GFP_NOFS);
Chris Mason2cc58cf2007-08-27 16:49:44 -040050 if (path) {
Chris Masondf24a2b2007-04-04 09:36:31 -040051 btrfs_init_path(path);
Chris Mason2cc58cf2007-08-27 16:49:44 -040052 path->reada = 1;
53 }
Chris Masondf24a2b2007-04-04 09:36:31 -040054 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040055}
56
Chris Masonb4ce94d2009-02-04 09:25:08 -050057/*
58 * set all locked nodes in the path to blocking locks. This should
59 * be done before scheduling
60 */
61noinline void btrfs_set_path_blocking(struct btrfs_path *p)
62{
63 int i;
64 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
65 if (p->nodes[i] && p->locks[i])
66 btrfs_set_lock_blocking(p->nodes[i]);
67 }
68}
69
70/*
71 * reset all the locked nodes in the patch to spinning locks.
72 */
73noinline void btrfs_clear_path_blocking(struct btrfs_path *p)
74{
75 int i;
76 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
77 if (p->nodes[i] && p->locks[i])
78 btrfs_clear_lock_blocking(p->nodes[i]);
79 }
80}
81
Chris Masond352ac62008-09-29 15:18:18 -040082/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -040083void btrfs_free_path(struct btrfs_path *p)
84{
Chris Masondf24a2b2007-04-04 09:36:31 -040085 btrfs_release_path(NULL, p);
Chris Mason2c90e5d2007-04-02 10:50:19 -040086 kmem_cache_free(btrfs_path_cachep, p);
87}
88
Chris Masond352ac62008-09-29 15:18:18 -040089/*
90 * path release drops references on the extent buffers in the path
91 * and it drops any locks held by this path
92 *
93 * It is safe to call this on paths that no locks or extent buffers held.
94 */
Chris Masond3977122009-01-05 21:25:51 -050095noinline void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -050096{
97 int i;
Chris Masona2135012008-06-25 16:01:30 -040098
Chris Mason234b63a2007-03-13 10:46:10 -040099 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400100 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500101 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400102 continue;
103 if (p->locks[i]) {
104 btrfs_tree_unlock(p->nodes[i]);
105 p->locks[i] = 0;
106 }
Chris Mason5f39d392007-10-15 16:14:19 -0400107 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400108 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500109 }
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
113 * safely gets a reference on the root node of a tree. A lock
114 * is not taken, so a concurrent writer may put a different node
115 * at the root of the tree. See btrfs_lock_root_node for the
116 * looping required.
117 *
118 * The extent buffer returned by this has a reference taken, so
119 * it won't disappear. It may stop being the root of the tree
120 * at any time because there are no locks held.
121 */
Chris Mason925baed2008-06-25 16:01:30 -0400122struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
123{
124 struct extent_buffer *eb;
125 spin_lock(&root->node_lock);
126 eb = root->node;
127 extent_buffer_get(eb);
128 spin_unlock(&root->node_lock);
129 return eb;
130}
131
Chris Masond352ac62008-09-29 15:18:18 -0400132/* loop around taking references on and locking the root node of the
133 * tree until you end up with a lock on the root. A locked buffer
134 * is returned, with a reference held.
135 */
Chris Mason925baed2008-06-25 16:01:30 -0400136struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
137{
138 struct extent_buffer *eb;
139
Chris Masond3977122009-01-05 21:25:51 -0500140 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400141 eb = btrfs_root_node(root);
142 btrfs_tree_lock(eb);
143
144 spin_lock(&root->node_lock);
145 if (eb == root->node) {
146 spin_unlock(&root->node_lock);
147 break;
148 }
149 spin_unlock(&root->node_lock);
150
151 btrfs_tree_unlock(eb);
152 free_extent_buffer(eb);
153 }
154 return eb;
155}
156
Chris Masond352ac62008-09-29 15:18:18 -0400157/* cowonly root (everything not a reference counted cow subvolume), just get
158 * put onto a simple dirty list. transaction.c walks this to make sure they
159 * get properly updated on disk.
160 */
Chris Mason0b86a832008-03-24 15:01:56 -0400161static void add_root_to_dirty_list(struct btrfs_root *root)
162{
163 if (root->track_dirty && list_empty(&root->dirty_list)) {
164 list_add(&root->dirty_list,
165 &root->fs_info->dirty_cowonly_roots);
166 }
167}
168
Chris Masond352ac62008-09-29 15:18:18 -0400169/*
170 * used by snapshot creation to make a copy of a root for a tree with
171 * a given objectid. The buffer with the new root node is returned in
172 * cow_ret, and this func returns zero on success or a negative error code.
173 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500174int btrfs_copy_root(struct btrfs_trans_handle *trans,
175 struct btrfs_root *root,
176 struct extent_buffer *buf,
177 struct extent_buffer **cow_ret, u64 new_root_objectid)
178{
179 struct extent_buffer *cow;
180 u32 nritems;
181 int ret = 0;
182 int level;
Chris Mason4aec2b52007-12-18 16:25:45 -0500183 struct btrfs_root *new_root;
Chris Masonbe20aa92007-12-17 20:14:01 -0500184
Chris Mason4aec2b52007-12-18 16:25:45 -0500185 new_root = kmalloc(sizeof(*new_root), GFP_NOFS);
186 if (!new_root)
187 return -ENOMEM;
188
189 memcpy(new_root, root, sizeof(*new_root));
190 new_root->root_key.objectid = new_root_objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500191
192 WARN_ON(root->ref_cows && trans->transid !=
193 root->fs_info->running_transaction->transid);
194 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
195
196 level = btrfs_header_level(buf);
197 nritems = btrfs_header_nritems(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400198
199 cow = btrfs_alloc_free_block(trans, new_root, buf->len, 0,
200 new_root_objectid, trans->transid,
201 level, buf->start, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500202 if (IS_ERR(cow)) {
203 kfree(new_root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 return PTR_ERR(cow);
Chris Mason4aec2b52007-12-18 16:25:45 -0500205 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500206
207 copy_extent_buffer(cow, buf, 0, 0, cow->len);
208 btrfs_set_header_bytenr(cow, cow->start);
209 btrfs_set_header_generation(cow, trans->transid);
210 btrfs_set_header_owner(cow, new_root_objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -0400211 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonbe20aa92007-12-17 20:14:01 -0500212
Yan Zheng2b820322008-11-17 21:11:30 -0500213 write_extent_buffer(cow, root->fs_info->fsid,
214 (unsigned long)btrfs_header_fsid(cow),
215 BTRFS_FSID_SIZE);
216
Chris Masonbe20aa92007-12-17 20:14:01 -0500217 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Zheng Yan31840ae2008-09-23 13:14:14 -0400218 ret = btrfs_inc_ref(trans, new_root, buf, cow, NULL);
Chris Mason4aec2b52007-12-18 16:25:45 -0500219 kfree(new_root);
220
Chris Masonbe20aa92007-12-17 20:14:01 -0500221 if (ret)
222 return ret;
223
224 btrfs_mark_buffer_dirty(cow);
225 *cow_ret = cow;
226 return 0;
227}
228
Chris Masond352ac62008-09-29 15:18:18 -0400229/*
Chris Masond3977122009-01-05 21:25:51 -0500230 * does the dirty work in cow of a single block. The parent block (if
231 * supplied) is updated to point to the new cow copy. The new buffer is marked
232 * dirty and returned locked. If you modify the block it needs to be marked
233 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400234 *
235 * search_start -- an allocation hint for the new block
236 *
Chris Masond3977122009-01-05 21:25:51 -0500237 * empty_size -- a hint that you plan on doing more cow. This is the size in
238 * bytes the allocator should try to find free next to the block it returns.
239 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400240 *
241 * prealloc_dest -- if you have already reserved a destination for the cow,
Chris Masond3977122009-01-05 21:25:51 -0500242 * this uses that block instead of allocating a new one.
243 * btrfs_alloc_reserved_extent is used to finish the allocation.
Chris Masond352ac62008-09-29 15:18:18 -0400244 */
Chris Masond3977122009-01-05 21:25:51 -0500245static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400246 struct btrfs_root *root,
247 struct extent_buffer *buf,
248 struct extent_buffer *parent, int parent_slot,
249 struct extent_buffer **cow_ret,
Chris Mason65b51a02008-08-01 15:11:20 -0400250 u64 search_start, u64 empty_size,
251 u64 prealloc_dest)
Chris Mason6702ed42007-08-07 16:15:09 -0400252{
Zheng Yan31840ae2008-09-23 13:14:14 -0400253 u64 parent_start;
Chris Mason5f39d392007-10-15 16:14:19 -0400254 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500255 u32 nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400256 int ret = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500257 int level;
Chris Mason925baed2008-06-25 16:01:30 -0400258 int unlock_orig = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400259
Chris Mason925baed2008-06-25 16:01:30 -0400260 if (*cow_ret == buf)
261 unlock_orig = 1;
262
263 WARN_ON(!btrfs_tree_locked(buf));
264
Zheng Yan31840ae2008-09-23 13:14:14 -0400265 if (parent)
266 parent_start = parent->start;
267 else
268 parent_start = 0;
269
Chris Mason7bb86312007-12-11 09:25:06 -0500270 WARN_ON(root->ref_cows && trans->transid !=
271 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400272 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400273
Chris Mason7bb86312007-12-11 09:25:06 -0500274 level = btrfs_header_level(buf);
275 nritems = btrfs_header_nritems(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400276
Chris Mason65b51a02008-08-01 15:11:20 -0400277 if (prealloc_dest) {
278 struct btrfs_key ins;
279
280 ins.objectid = prealloc_dest;
281 ins.offset = buf->len;
282 ins.type = BTRFS_EXTENT_ITEM_KEY;
283
Zheng Yan31840ae2008-09-23 13:14:14 -0400284 ret = btrfs_alloc_reserved_extent(trans, root, parent_start,
Chris Mason65b51a02008-08-01 15:11:20 -0400285 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400286 trans->transid, level, &ins);
Chris Mason65b51a02008-08-01 15:11:20 -0400287 BUG_ON(ret);
288 cow = btrfs_init_new_buffer(trans, root, prealloc_dest,
289 buf->len);
290 } else {
291 cow = btrfs_alloc_free_block(trans, root, buf->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400292 parent_start,
Chris Mason65b51a02008-08-01 15:11:20 -0400293 root->root_key.objectid,
Zheng Yan31840ae2008-09-23 13:14:14 -0400294 trans->transid, level,
295 search_start, empty_size);
Chris Mason65b51a02008-08-01 15:11:20 -0400296 }
Chris Mason6702ed42007-08-07 16:15:09 -0400297 if (IS_ERR(cow))
298 return PTR_ERR(cow);
299
Chris Masonb4ce94d2009-02-04 09:25:08 -0500300 /* cow is set to blocking by btrfs_init_new_buffer */
301
Chris Mason5f39d392007-10-15 16:14:19 -0400302 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400303 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400304 btrfs_set_header_generation(cow, trans->transid);
305 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -0400306 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN);
Chris Mason6702ed42007-08-07 16:15:09 -0400307
Yan Zheng2b820322008-11-17 21:11:30 -0500308 write_extent_buffer(cow, root->fs_info->fsid,
309 (unsigned long)btrfs_header_fsid(cow),
310 BTRFS_FSID_SIZE);
311
Chris Mason5f39d392007-10-15 16:14:19 -0400312 WARN_ON(btrfs_header_generation(buf) > trans->transid);
313 if (btrfs_header_generation(buf) != trans->transid) {
Zheng Yan31840ae2008-09-23 13:14:14 -0400314 u32 nr_extents;
Zheng Yan31840ae2008-09-23 13:14:14 -0400315 ret = btrfs_inc_ref(trans, root, buf, cow, &nr_extents);
Chris Mason6702ed42007-08-07 16:15:09 -0400316 if (ret)
317 return ret;
Zheng Yan31840ae2008-09-23 13:14:14 -0400318
319 ret = btrfs_cache_ref(trans, root, buf, nr_extents);
320 WARN_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -0400321 } else if (btrfs_header_owner(buf) == BTRFS_TREE_RELOC_OBJECTID) {
322 /*
323 * There are only two places that can drop reference to
324 * tree blocks owned by living reloc trees, one is here,
Yan Zhengf82d02d2008-10-29 14:49:05 -0400325 * the other place is btrfs_drop_subtree. In both places,
Zheng Yan1a40e232008-09-26 10:09:34 -0400326 * we check reference count while tree block is locked.
327 * Furthermore, if reference count is one, it won't get
328 * increased by someone else.
329 */
330 u32 refs;
331 ret = btrfs_lookup_extent_ref(trans, root, buf->start,
332 buf->len, &refs);
333 BUG_ON(ret);
334 if (refs == 1) {
335 ret = btrfs_update_ref(trans, root, buf, cow,
336 0, nritems);
337 clean_tree_block(trans, root, buf);
338 } else {
339 ret = btrfs_inc_ref(trans, root, buf, cow, NULL);
340 }
341 BUG_ON(ret);
Chris Mason6702ed42007-08-07 16:15:09 -0400342 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -0400343 ret = btrfs_update_ref(trans, root, buf, cow, 0, nritems);
344 if (ret)
345 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400346 clean_tree_block(trans, root, buf);
347 }
348
Zheng Yan1a40e232008-09-26 10:09:34 -0400349 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
Zheng Yan1a40e232008-09-26 10:09:34 -0400350 ret = btrfs_reloc_tree_cache_ref(trans, root, cow, buf->start);
351 WARN_ON(ret);
352 }
353
Chris Mason6702ed42007-08-07 16:15:09 -0400354 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400355 WARN_ON(parent && parent != buf);
Chris Mason925baed2008-06-25 16:01:30 -0400356
357 spin_lock(&root->node_lock);
Chris Mason6702ed42007-08-07 16:15:09 -0400358 root->node = cow;
Chris Mason5f39d392007-10-15 16:14:19 -0400359 extent_buffer_get(cow);
Chris Mason925baed2008-06-25 16:01:30 -0400360 spin_unlock(&root->node_lock);
361
Chris Mason6702ed42007-08-07 16:15:09 -0400362 if (buf != root->commit_root) {
Chris Masondb945352007-10-15 16:15:53 -0400363 btrfs_free_extent(trans, root, buf->start,
Zheng Yan31840ae2008-09-23 13:14:14 -0400364 buf->len, buf->start,
365 root->root_key.objectid,
366 btrfs_header_generation(buf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400367 level, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400368 }
Chris Mason5f39d392007-10-15 16:14:19 -0400369 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400370 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400371 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400372 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400373 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500374 WARN_ON(trans->transid == 0);
375 btrfs_set_node_ptr_generation(parent, parent_slot,
376 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400377 btrfs_mark_buffer_dirty(parent);
Chris Mason5f39d392007-10-15 16:14:19 -0400378 WARN_ON(btrfs_header_generation(parent) != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -0500379 btrfs_free_extent(trans, root, buf->start, buf->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400380 parent_start, btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400381 btrfs_header_generation(parent), level, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400382 }
Chris Mason925baed2008-06-25 16:01:30 -0400383 if (unlock_orig)
384 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400385 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400386 btrfs_mark_buffer_dirty(cow);
387 *cow_ret = cow;
388 return 0;
389}
390
Chris Masond352ac62008-09-29 15:18:18 -0400391/*
392 * cows a single block, see __btrfs_cow_block for the real work.
393 * This version of it has extra checks so that a block isn't cow'd more than
394 * once per transaction, as long as it hasn't been written yet
395 */
Chris Masond3977122009-01-05 21:25:51 -0500396noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400397 struct btrfs_root *root, struct extent_buffer *buf,
398 struct extent_buffer *parent, int parent_slot,
Chris Mason65b51a02008-08-01 15:11:20 -0400399 struct extent_buffer **cow_ret, u64 prealloc_dest)
Chris Mason02217ed2007-03-02 16:08:05 -0500400{
Chris Mason6702ed42007-08-07 16:15:09 -0400401 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400402 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500403
Chris Masonccd467d2007-06-28 15:57:36 -0400404 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500405 printk(KERN_CRIT "trans %llu running %llu\n",
406 (unsigned long long)trans->transid,
407 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400408 root->fs_info->running_transaction->transid);
409 WARN_ON(1);
410 }
411 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500412 printk(KERN_CRIT "trans %llu running %llu\n",
413 (unsigned long long)trans->transid,
414 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400415 WARN_ON(1);
416 }
Chris Masondc17ff82008-01-08 15:46:30 -0500417
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400418 if (btrfs_header_generation(buf) == trans->transid &&
419 btrfs_header_owner(buf) == root->root_key.objectid &&
Chris Mason63b10fc2008-04-01 11:21:32 -0400420 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500421 *cow_ret = buf;
Chris Mason65b51a02008-08-01 15:11:20 -0400422 WARN_ON(prealloc_dest);
Chris Mason02217ed2007-03-02 16:08:05 -0500423 return 0;
424 }
Chris Masonc4876852009-02-04 09:24:25 -0500425
Chris Mason0b86a832008-03-24 15:01:56 -0400426 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500427
428 if (parent)
429 btrfs_set_lock_blocking(parent);
430 btrfs_set_lock_blocking(buf);
431
Chris Masonf510cfe2007-10-15 16:14:48 -0400432 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason65b51a02008-08-01 15:11:20 -0400433 parent_slot, cow_ret, search_start, 0,
434 prealloc_dest);
Chris Masonf510cfe2007-10-15 16:14:48 -0400435 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400436}
437
Chris Masond352ac62008-09-29 15:18:18 -0400438/*
439 * helper function for defrag to decide if two blocks pointed to by a
440 * node are actually close by
441 */
Chris Mason6b800532007-10-15 16:17:34 -0400442static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400443{
Chris Mason6b800532007-10-15 16:17:34 -0400444 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400445 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400446 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400447 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500448 return 0;
449}
450
Chris Mason081e9572007-11-06 10:26:24 -0500451/*
452 * compare two keys in a memcmp fashion
453 */
454static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
455{
456 struct btrfs_key k1;
457
458 btrfs_disk_key_to_cpu(&k1, disk);
459
460 if (k1.objectid > k2->objectid)
461 return 1;
462 if (k1.objectid < k2->objectid)
463 return -1;
464 if (k1.type > k2->type)
465 return 1;
466 if (k1.type < k2->type)
467 return -1;
468 if (k1.offset > k2->offset)
469 return 1;
470 if (k1.offset < k2->offset)
471 return -1;
472 return 0;
473}
474
Josef Bacikf3465ca2008-11-12 14:19:50 -0500475/*
476 * same as comp_keys only with two btrfs_key's
477 */
478static int comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
479{
480 if (k1->objectid > k2->objectid)
481 return 1;
482 if (k1->objectid < k2->objectid)
483 return -1;
484 if (k1->type > k2->type)
485 return 1;
486 if (k1->type < k2->type)
487 return -1;
488 if (k1->offset > k2->offset)
489 return 1;
490 if (k1->offset < k2->offset)
491 return -1;
492 return 0;
493}
Chris Mason081e9572007-11-06 10:26:24 -0500494
Chris Masond352ac62008-09-29 15:18:18 -0400495/*
496 * this is used by the defrag code to go through all the
497 * leaves pointed to by a node and reallocate them so that
498 * disk order is close to key order
499 */
Chris Mason6702ed42007-08-07 16:15:09 -0400500int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400501 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400502 int start_slot, int cache_only, u64 *last_ret,
503 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400504{
Chris Mason6b800532007-10-15 16:17:34 -0400505 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400506 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400507 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400508 u64 search_start = *last_ret;
509 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400510 u64 other;
511 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400512 int end_slot;
513 int i;
514 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400515 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400516 int uptodate;
517 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500518 int progress_passed = 0;
519 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400520
Chris Mason5708b952007-10-25 15:43:18 -0400521 parent_level = btrfs_header_level(parent);
522 if (cache_only && parent_level != 1)
523 return 0;
524
Chris Masond3977122009-01-05 21:25:51 -0500525 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400526 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500527 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400528 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400529
Chris Mason6b800532007-10-15 16:17:34 -0400530 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400531 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400532 end_slot = parent_nritems;
533
534 if (parent_nritems == 1)
535 return 0;
536
Chris Masonb4ce94d2009-02-04 09:25:08 -0500537 btrfs_set_lock_blocking(parent);
538
Chris Mason6702ed42007-08-07 16:15:09 -0400539 for (i = start_slot; i < end_slot; i++) {
540 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400541
Chris Mason5708b952007-10-25 15:43:18 -0400542 if (!parent->map_token) {
543 map_extent_buffer(parent,
544 btrfs_node_key_ptr_offset(i),
545 sizeof(struct btrfs_key_ptr),
546 &parent->map_token, &parent->kaddr,
547 &parent->map_start, &parent->map_len,
548 KM_USER1);
549 }
Chris Mason081e9572007-11-06 10:26:24 -0500550 btrfs_node_key(parent, &disk_key, i);
551 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
552 continue;
553
554 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400555 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400556 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400557 if (last_block == 0)
558 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400559
Chris Mason6702ed42007-08-07 16:15:09 -0400560 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400561 other = btrfs_node_blockptr(parent, i - 1);
562 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400563 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400564 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400565 other = btrfs_node_blockptr(parent, i + 1);
566 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400567 }
Chris Masone9d0b132007-08-10 14:06:19 -0400568 if (close) {
569 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400570 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400571 }
Chris Mason5708b952007-10-25 15:43:18 -0400572 if (parent->map_token) {
573 unmap_extent_buffer(parent, parent->map_token,
574 KM_USER1);
575 parent->map_token = NULL;
576 }
Chris Mason6702ed42007-08-07 16:15:09 -0400577
Chris Mason6b800532007-10-15 16:17:34 -0400578 cur = btrfs_find_tree_block(root, blocknr, blocksize);
579 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400580 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400581 else
582 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400583 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400584 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400585 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400586 continue;
587 }
Chris Mason6b800532007-10-15 16:17:34 -0400588 if (!cur) {
589 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400590 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400591 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400592 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400593 }
Chris Mason6702ed42007-08-07 16:15:09 -0400594 }
Chris Masone9d0b132007-08-10 14:06:19 -0400595 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400596 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400597
Chris Masone7a84562008-06-25 16:01:31 -0400598 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500599 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400600 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400601 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400602 min(16 * blocksize,
Chris Mason65b51a02008-08-01 15:11:20 -0400603 (end_slot - i) * blocksize), 0);
Yan252c38f2007-08-29 09:11:44 -0400604 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400605 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400606 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400607 break;
Yan252c38f2007-08-29 09:11:44 -0400608 }
Chris Masone7a84562008-06-25 16:01:31 -0400609 search_start = cur->start;
610 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400611 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400612 btrfs_tree_unlock(cur);
613 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400614 }
Chris Mason5708b952007-10-25 15:43:18 -0400615 if (parent->map_token) {
616 unmap_extent_buffer(parent, parent->map_token,
617 KM_USER1);
618 parent->map_token = NULL;
619 }
Chris Mason6702ed42007-08-07 16:15:09 -0400620 return err;
621}
622
Chris Mason74123bd2007-02-02 11:05:29 -0500623/*
624 * The leaf data grows from end-to-front in the node.
625 * this returns the address of the start of the last item,
626 * which is the stop of the leaf data stack
627 */
Chris Mason123abc82007-03-14 14:14:43 -0400628static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400629 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500630{
Chris Mason5f39d392007-10-15 16:14:19 -0400631 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500632 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400633 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400634 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500635}
636
Chris Masond352ac62008-09-29 15:18:18 -0400637/*
638 * extra debugging checks to make sure all the items in a key are
639 * well formed and in the proper order
640 */
Chris Mason123abc82007-03-14 14:14:43 -0400641static int check_node(struct btrfs_root *root, struct btrfs_path *path,
642 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500643{
Chris Mason5f39d392007-10-15 16:14:19 -0400644 struct extent_buffer *parent = NULL;
645 struct extent_buffer *node = path->nodes[level];
646 struct btrfs_disk_key parent_key;
647 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500648 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400649 int slot;
650 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400651 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500652
653 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400654 parent = path->nodes[level + 1];
Aneesha1f39632007-07-11 10:03:27 -0400655
Chris Mason8d7be552007-05-10 11:24:42 -0400656 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400657 BUG_ON(nritems == 0);
658 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400659 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400660 btrfs_node_key(parent, &parent_key, parent_slot);
661 btrfs_node_key(node, &node_key, 0);
662 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400663 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400664 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400665 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500666 }
Chris Mason123abc82007-03-14 14:14:43 -0400667 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400668 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400669 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
670 btrfs_node_key(node, &node_key, slot);
671 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400672 }
673 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400674 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
675 btrfs_node_key(node, &node_key, slot);
676 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500677 }
678 return 0;
679}
680
Chris Masond352ac62008-09-29 15:18:18 -0400681/*
682 * extra checking to make sure all the items in a leaf are
683 * well formed and in the proper order
684 */
Chris Mason123abc82007-03-14 14:14:43 -0400685static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
686 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500687{
Chris Mason5f39d392007-10-15 16:14:19 -0400688 struct extent_buffer *leaf = path->nodes[level];
689 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500690 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400691 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400692 struct btrfs_disk_key parent_key;
693 struct btrfs_disk_key leaf_key;
694 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400695
Chris Mason5f39d392007-10-15 16:14:19 -0400696 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500697
698 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400699 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400700
701 if (nritems == 0)
702 return 0;
703
704 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400705 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400706 btrfs_node_key(parent, &parent_key, parent_slot);
707 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400708
Chris Mason5f39d392007-10-15 16:14:19 -0400709 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400710 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400711 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400712 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500713 }
Chris Mason5f39d392007-10-15 16:14:19 -0400714 if (slot != 0 && slot < nritems - 1) {
715 btrfs_item_key(leaf, &leaf_key, slot);
716 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
717 if (comp_keys(&leaf_key, &cpukey) <= 0) {
718 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500719 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400720 BUG_ON(1);
721 }
722 if (btrfs_item_offset_nr(leaf, slot - 1) !=
723 btrfs_item_end_nr(leaf, slot)) {
724 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500725 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400726 BUG_ON(1);
727 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500728 }
Chris Mason8d7be552007-05-10 11:24:42 -0400729 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400730 btrfs_item_key(leaf, &leaf_key, slot);
731 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
732 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
733 if (btrfs_item_offset_nr(leaf, slot) !=
734 btrfs_item_end_nr(leaf, slot + 1)) {
735 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500736 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400737 BUG_ON(1);
738 }
Chris Mason8d7be552007-05-10 11:24:42 -0400739 }
Chris Mason5f39d392007-10-15 16:14:19 -0400740 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
741 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500742 return 0;
743}
744
Chris Masond3977122009-01-05 21:25:51 -0500745static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500746 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500747{
Chris Mason85d824c2008-04-10 10:23:19 -0400748 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500749 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400750 return check_leaf(root, path, level);
751 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500752}
753
Chris Mason74123bd2007-02-02 11:05:29 -0500754/*
Chris Mason5f39d392007-10-15 16:14:19 -0400755 * search for key in the extent_buffer. The items start at offset p,
756 * and they are item_size apart. There are 'max' items in p.
757 *
Chris Mason74123bd2007-02-02 11:05:29 -0500758 * the slot in the array is returned via slot, and it points to
759 * the place where you would insert key if it is not found in
760 * the array.
761 *
762 * slot may point to max if the key is bigger than all of the keys
763 */
Chris Masone02119d2008-09-05 16:13:11 -0400764static noinline int generic_bin_search(struct extent_buffer *eb,
765 unsigned long p,
766 int item_size, struct btrfs_key *key,
767 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500768{
769 int low = 0;
770 int high = max;
771 int mid;
772 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400773 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400774 struct btrfs_disk_key unaligned;
775 unsigned long offset;
776 char *map_token = NULL;
777 char *kaddr = NULL;
778 unsigned long map_start = 0;
779 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400780 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500781
Chris Masond3977122009-01-05 21:25:51 -0500782 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500783 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400784 offset = p + mid * item_size;
785
786 if (!map_token || offset < map_start ||
787 (offset + sizeof(struct btrfs_disk_key)) >
788 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400789 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400790 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400791 map_token = NULL;
792 }
Chris Mason934d3752008-12-08 16:43:10 -0500793
794 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400795 sizeof(struct btrfs_disk_key),
796 &map_token, &kaddr,
797 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400798
Chris Mason479965d2007-10-15 16:14:27 -0400799 if (!err) {
800 tmp = (struct btrfs_disk_key *)(kaddr + offset -
801 map_start);
802 } else {
803 read_extent_buffer(eb, &unaligned,
804 offset, sizeof(unaligned));
805 tmp = &unaligned;
806 }
807
Chris Mason5f39d392007-10-15 16:14:19 -0400808 } else {
809 tmp = (struct btrfs_disk_key *)(kaddr + offset -
810 map_start);
811 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500812 ret = comp_keys(tmp, key);
813
814 if (ret < 0)
815 low = mid + 1;
816 else if (ret > 0)
817 high = mid;
818 else {
819 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400820 if (map_token)
821 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500822 return 0;
823 }
824 }
825 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400826 if (map_token)
827 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500828 return 1;
829}
830
Chris Mason97571fd2007-02-24 13:39:08 -0500831/*
832 * simple bin_search frontend that does the right thing for
833 * leaves vs nodes
834 */
Chris Mason5f39d392007-10-15 16:14:19 -0400835static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
836 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500837{
Chris Mason5f39d392007-10-15 16:14:19 -0400838 if (level == 0) {
839 return generic_bin_search(eb,
840 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400841 sizeof(struct btrfs_item),
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 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400845 return generic_bin_search(eb,
846 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400847 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400848 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400849 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500850 }
851 return -1;
852}
853
Chris Masond352ac62008-09-29 15:18:18 -0400854/* given a node and slot number, this reads the blocks it points to. The
855 * extent buffer is returned with a reference taken (but unlocked).
856 * NULL is returned on error.
857 */
Chris Masone02119d2008-09-05 16:13:11 -0400858static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400859 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500860{
Chris Masonca7a79a2008-05-12 12:59:19 -0400861 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500862 if (slot < 0)
863 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400864 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500865 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400866
867 BUG_ON(level == 0);
868
Chris Masondb945352007-10-15 16:15:53 -0400869 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400870 btrfs_level_size(root, level - 1),
871 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500872}
873
Chris Masond352ac62008-09-29 15:18:18 -0400874/*
875 * node level balancing, used to make sure nodes are in proper order for
876 * item deletion. We balance from the top down, so we have to make sure
877 * that a deletion won't leave an node completely empty later on.
878 */
Chris Masone02119d2008-09-05 16:13:11 -0400879static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500880 struct btrfs_root *root,
881 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500882{
Chris Mason5f39d392007-10-15 16:14:19 -0400883 struct extent_buffer *right = NULL;
884 struct extent_buffer *mid;
885 struct extent_buffer *left = NULL;
886 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500887 int ret = 0;
888 int wret;
889 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500890 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -0400891 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500892 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500893
894 if (level == 0)
895 return 0;
896
Chris Mason5f39d392007-10-15 16:14:19 -0400897 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -0500898
Chris Mason925baed2008-06-25 16:01:30 -0400899 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -0500900 WARN_ON(btrfs_header_generation(mid) != trans->transid);
901
Chris Mason1d4f8a02007-03-13 09:28:32 -0400902 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500903
Chris Mason234b63a2007-03-13 10:46:10 -0400904 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -0400905 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -0500906 pslot = path->slots[level + 1];
907
Chris Mason40689472007-03-17 14:29:23 -0400908 /*
909 * deal with the case where there is only one pointer in the root
910 * by promoting the node below to a root
911 */
Chris Mason5f39d392007-10-15 16:14:19 -0400912 if (!parent) {
913 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -0500914
Chris Mason5f39d392007-10-15 16:14:19 -0400915 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500916 return 0;
917
918 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -0400919 child = read_node_slot(root, mid, 0);
Chris Mason925baed2008-06-25 16:01:30 -0400920 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500921 btrfs_set_lock_blocking(child);
Chris Masonbb803952007-03-01 12:04:21 -0500922 BUG_ON(!child);
Chris Mason65b51a02008-08-01 15:11:20 -0400923 ret = btrfs_cow_block(trans, root, child, mid, 0, &child, 0);
Yan2f375ab2008-02-01 14:58:07 -0500924 BUG_ON(ret);
925
Chris Mason925baed2008-06-25 16:01:30 -0400926 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -0500927 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -0400928 spin_unlock(&root->node_lock);
929
Zheng Yan31840ae2008-09-23 13:14:14 -0400930 ret = btrfs_update_extent_ref(trans, root, child->start,
931 mid->start, child->start,
932 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400933 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400934 BUG_ON(ret);
935
Chris Mason0b86a832008-03-24 15:01:56 -0400936 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -0400937 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500938
Chris Mason925baed2008-06-25 16:01:30 -0400939 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500940 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400941 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -0400942 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -0500943 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -0400944 free_extent_buffer(mid);
Chris Mason7bb86312007-12-11 09:25:06 -0500945 ret = btrfs_free_extent(trans, root, mid->start, mid->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400946 mid->start, root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400947 btrfs_header_generation(mid),
948 level, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500949 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -0400950 free_extent_buffer(mid);
Chris Masondb945352007-10-15 16:15:53 -0400951 return ret;
Chris Masonbb803952007-03-01 12:04:21 -0500952 }
Chris Mason5f39d392007-10-15 16:14:19 -0400953 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -0400954 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500955 return 0;
956
Chris Mason5f39d392007-10-15 16:14:19 -0400957 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -0400958 err_on_enospc = 1;
959
Chris Mason5f39d392007-10-15 16:14:19 -0400960 left = read_node_slot(root, parent, pslot - 1);
961 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -0400962 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500963 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -0400964 wret = btrfs_cow_block(trans, root, left,
Chris Mason65b51a02008-08-01 15:11:20 -0400965 parent, pslot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400966 if (wret) {
967 ret = wret;
968 goto enospc;
969 }
Chris Mason2cc58cf2007-08-27 16:49:44 -0400970 }
Chris Mason5f39d392007-10-15 16:14:19 -0400971 right = read_node_slot(root, parent, pslot + 1);
972 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -0400973 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500974 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -0400975 wret = btrfs_cow_block(trans, root, right,
Chris Mason65b51a02008-08-01 15:11:20 -0400976 parent, pslot + 1, &right, 0);
Chris Mason2cc58cf2007-08-27 16:49:44 -0400977 if (wret) {
978 ret = wret;
979 goto enospc;
980 }
981 }
982
983 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -0400984 if (left) {
985 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -0400986 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -0500987 if (wret < 0)
988 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -0400989 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -0400990 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -0500991 }
Chris Mason79f95c82007-03-01 15:16:26 -0500992
993 /*
994 * then try to empty the right most buffer into the middle
995 */
Chris Mason5f39d392007-10-15 16:14:19 -0400996 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -0400997 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400998 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -0500999 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001000 if (btrfs_header_nritems(right) == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001001 u64 bytenr = right->start;
Chris Mason7bb86312007-12-11 09:25:06 -05001002 u64 generation = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001003 u32 blocksize = right->len;
1004
Chris Mason5f39d392007-10-15 16:14:19 -04001005 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001006 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001007 free_extent_buffer(right);
Chris Masonbb803952007-03-01 12:04:21 -05001008 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001009 wret = del_ptr(trans, root, path, level + 1, pslot +
1010 1);
Chris Masonbb803952007-03-01 12:04:21 -05001011 if (wret)
1012 ret = wret;
Chris Masondb945352007-10-15 16:15:53 -04001013 wret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -04001014 blocksize, parent->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001015 btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001016 generation, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001017 if (wret)
1018 ret = wret;
1019 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001020 struct btrfs_disk_key right_key;
1021 btrfs_node_key(right, &right_key, 0);
1022 btrfs_set_node_key(parent, &right_key, pslot + 1);
1023 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001024 }
1025 }
Chris Mason5f39d392007-10-15 16:14:19 -04001026 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001027 /*
1028 * we're not allowed to leave a node with one item in the
1029 * tree during a delete. A deletion from lower in the tree
1030 * could try to delete the only pointer in this node.
1031 * So, pull some keys from the left.
1032 * There has to be a left pointer at this point because
1033 * otherwise we would have pulled some pointers from the
1034 * right
1035 */
Chris Mason5f39d392007-10-15 16:14:19 -04001036 BUG_ON(!left);
1037 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001038 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001039 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001040 goto enospc;
1041 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001042 if (wret == 1) {
1043 wret = push_node_left(trans, root, left, mid, 1);
1044 if (wret < 0)
1045 ret = wret;
1046 }
Chris Mason79f95c82007-03-01 15:16:26 -05001047 BUG_ON(wret == 1);
1048 }
Chris Mason5f39d392007-10-15 16:14:19 -04001049 if (btrfs_header_nritems(mid) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001050 /* we've managed to empty the middle node, drop it */
Chris Mason7bb86312007-12-11 09:25:06 -05001051 u64 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001052 u64 bytenr = mid->start;
1053 u32 blocksize = mid->len;
Chris Mason925baed2008-06-25 16:01:30 -04001054
Chris Mason5f39d392007-10-15 16:14:19 -04001055 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001056 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001057 free_extent_buffer(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001058 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001059 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001060 if (wret)
1061 ret = wret;
Chris Mason7bb86312007-12-11 09:25:06 -05001062 wret = btrfs_free_extent(trans, root, bytenr, blocksize,
Zheng Yan31840ae2008-09-23 13:14:14 -04001063 parent->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001064 btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001065 root_gen, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001066 if (wret)
1067 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -05001068 } else {
1069 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001070 struct btrfs_disk_key mid_key;
1071 btrfs_node_key(mid, &mid_key, 0);
1072 btrfs_set_node_key(parent, &mid_key, pslot);
1073 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001074 }
Chris Masonbb803952007-03-01 12:04:21 -05001075
Chris Mason79f95c82007-03-01 15:16:26 -05001076 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001077 if (left) {
1078 if (btrfs_header_nritems(left) > orig_slot) {
1079 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001080 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001081 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001082 path->slots[level + 1] -= 1;
1083 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001084 if (mid) {
1085 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001086 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001087 }
Chris Masonbb803952007-03-01 12:04:21 -05001088 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001089 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001090 path->slots[level] = orig_slot;
1091 }
1092 }
Chris Mason79f95c82007-03-01 15:16:26 -05001093 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001094 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001095 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001096 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001097 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001098enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001099 if (right) {
1100 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001101 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001102 }
1103 if (left) {
1104 if (path->nodes[level] != left)
1105 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001106 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001107 }
Chris Masonbb803952007-03-01 12:04:21 -05001108 return ret;
1109}
1110
Chris Masond352ac62008-09-29 15:18:18 -04001111/* Node balancing for insertion. Here we only split or push nodes around
1112 * when they are completely full. This is also done top down, so we
1113 * have to be pessimistic.
1114 */
Chris Masond3977122009-01-05 21:25:51 -05001115static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001116 struct btrfs_root *root,
1117 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001118{
Chris Mason5f39d392007-10-15 16:14:19 -04001119 struct extent_buffer *right = NULL;
1120 struct extent_buffer *mid;
1121 struct extent_buffer *left = NULL;
1122 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001123 int ret = 0;
1124 int wret;
1125 int pslot;
1126 int orig_slot = path->slots[level];
1127 u64 orig_ptr;
1128
1129 if (level == 0)
1130 return 1;
1131
Chris Mason5f39d392007-10-15 16:14:19 -04001132 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001133 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001134 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1135
1136 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001137 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001138 pslot = path->slots[level + 1];
1139
Chris Mason5f39d392007-10-15 16:14:19 -04001140 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001141 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001142
Chris Mason5f39d392007-10-15 16:14:19 -04001143 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001144
1145 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001146 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001147 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001148
1149 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001150 btrfs_set_lock_blocking(left);
1151
Chris Mason5f39d392007-10-15 16:14:19 -04001152 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001153 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1154 wret = 1;
1155 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001156 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason65b51a02008-08-01 15:11:20 -04001157 pslot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001158 if (ret)
1159 wret = 1;
1160 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001161 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001162 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001163 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001164 }
Chris Masone66f7092007-04-20 13:16:02 -04001165 if (wret < 0)
1166 ret = wret;
1167 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001168 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001169 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001170 btrfs_node_key(mid, &disk_key, 0);
1171 btrfs_set_node_key(parent, &disk_key, pslot);
1172 btrfs_mark_buffer_dirty(parent);
1173 if (btrfs_header_nritems(left) > orig_slot) {
1174 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001175 path->slots[level + 1] -= 1;
1176 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001177 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001178 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001179 } else {
1180 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001181 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001182 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001183 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001184 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001185 }
Chris Masone66f7092007-04-20 13:16:02 -04001186 return 0;
1187 }
Chris Mason925baed2008-06-25 16:01:30 -04001188 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001189 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001190 }
Chris Mason925baed2008-06-25 16:01:30 -04001191 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001192
1193 /*
1194 * then try to empty the right most buffer into the middle
1195 */
Chris Mason5f39d392007-10-15 16:14:19 -04001196 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001197 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001198
Chris Mason925baed2008-06-25 16:01:30 -04001199 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001200 btrfs_set_lock_blocking(right);
1201
Chris Mason5f39d392007-10-15 16:14:19 -04001202 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001203 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1204 wret = 1;
1205 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001206 ret = btrfs_cow_block(trans, root, right,
1207 parent, pslot + 1,
Chris Mason65b51a02008-08-01 15:11:20 -04001208 &right, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001209 if (ret)
1210 wret = 1;
1211 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001212 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001213 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001214 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001215 }
Chris Masone66f7092007-04-20 13:16:02 -04001216 if (wret < 0)
1217 ret = wret;
1218 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001219 struct btrfs_disk_key disk_key;
1220
1221 btrfs_node_key(right, &disk_key, 0);
1222 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1223 btrfs_mark_buffer_dirty(parent);
1224
1225 if (btrfs_header_nritems(mid) <= orig_slot) {
1226 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001227 path->slots[level + 1] += 1;
1228 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001229 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001230 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001231 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001232 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001233 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001234 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001235 }
Chris Masone66f7092007-04-20 13:16:02 -04001236 return 0;
1237 }
Chris Mason925baed2008-06-25 16:01:30 -04001238 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001239 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001240 }
Chris Masone66f7092007-04-20 13:16:02 -04001241 return 1;
1242}
1243
Chris Mason74123bd2007-02-02 11:05:29 -05001244/*
Chris Masond352ac62008-09-29 15:18:18 -04001245 * readahead one full node of leaves, finding things that are close
1246 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001247 */
Chris Masone02119d2008-09-05 16:13:11 -04001248static noinline void reada_for_search(struct btrfs_root *root,
1249 struct btrfs_path *path,
1250 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001251{
Chris Mason5f39d392007-10-15 16:14:19 -04001252 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001253 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001254 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001255 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001256 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001257 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001258 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001259 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001260 u32 nr;
1261 u32 blocksize;
1262 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001263
Chris Masona6b6e752007-10-15 16:22:39 -04001264 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001265 return;
1266
Chris Mason6702ed42007-08-07 16:15:09 -04001267 if (!path->nodes[level])
1268 return;
1269
Chris Mason5f39d392007-10-15 16:14:19 -04001270 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001271
Chris Mason3c69fae2007-08-07 15:52:22 -04001272 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001273 blocksize = btrfs_level_size(root, level - 1);
1274 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001275 if (eb) {
1276 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001277 return;
1278 }
1279
Chris Masona7175312009-01-22 09:23:10 -05001280 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001281
Chris Mason5f39d392007-10-15 16:14:19 -04001282 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001283 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001284 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001285 if (direction < 0) {
1286 if (nr == 0)
1287 break;
1288 nr--;
1289 } else if (direction > 0) {
1290 nr++;
1291 if (nr >= nritems)
1292 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001293 }
Chris Mason01f46652007-12-21 16:24:26 -05001294 if (path->reada < 0 && objectid) {
1295 btrfs_node_key(node, &disk_key, nr);
1296 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1297 break;
1298 }
Chris Mason6b800532007-10-15 16:17:34 -04001299 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001300 if ((search <= target && target - search <= 65536) ||
1301 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001302 readahead_tree_block(root, search, blocksize,
1303 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001304 nread += blocksize;
1305 }
1306 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001307 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001308 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001309 }
1310}
Chris Mason925baed2008-06-25 16:01:30 -04001311
Chris Masond352ac62008-09-29 15:18:18 -04001312/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001313 * returns -EAGAIN if it had to drop the path, or zero if everything was in
1314 * cache
1315 */
1316static noinline int reada_for_balance(struct btrfs_root *root,
1317 struct btrfs_path *path, int level)
1318{
1319 int slot;
1320 int nritems;
1321 struct extent_buffer *parent;
1322 struct extent_buffer *eb;
1323 u64 gen;
1324 u64 block1 = 0;
1325 u64 block2 = 0;
1326 int ret = 0;
1327 int blocksize;
1328
1329 parent = path->nodes[level - 1];
1330 if (!parent)
1331 return 0;
1332
1333 nritems = btrfs_header_nritems(parent);
1334 slot = path->slots[level];
1335 blocksize = btrfs_level_size(root, level);
1336
1337 if (slot > 0) {
1338 block1 = btrfs_node_blockptr(parent, slot - 1);
1339 gen = btrfs_node_ptr_generation(parent, slot - 1);
1340 eb = btrfs_find_tree_block(root, block1, blocksize);
1341 if (eb && btrfs_buffer_uptodate(eb, gen))
1342 block1 = 0;
1343 free_extent_buffer(eb);
1344 }
1345 if (slot < nritems) {
1346 block2 = btrfs_node_blockptr(parent, slot + 1);
1347 gen = btrfs_node_ptr_generation(parent, slot + 1);
1348 eb = btrfs_find_tree_block(root, block2, blocksize);
1349 if (eb && btrfs_buffer_uptodate(eb, gen))
1350 block2 = 0;
1351 free_extent_buffer(eb);
1352 }
1353 if (block1 || block2) {
1354 ret = -EAGAIN;
1355 btrfs_release_path(root, path);
1356 if (block1)
1357 readahead_tree_block(root, block1, blocksize, 0);
1358 if (block2)
1359 readahead_tree_block(root, block2, blocksize, 0);
1360
1361 if (block1) {
1362 eb = read_tree_block(root, block1, blocksize, 0);
1363 free_extent_buffer(eb);
1364 }
1365 if (block1) {
1366 eb = read_tree_block(root, block2, blocksize, 0);
1367 free_extent_buffer(eb);
1368 }
1369 }
1370 return ret;
1371}
1372
1373
1374/*
Chris Masond3977122009-01-05 21:25:51 -05001375 * when we walk down the tree, it is usually safe to unlock the higher layers
1376 * in the tree. The exceptions are when our path goes through slot 0, because
1377 * operations on the tree might require changing key pointers higher up in the
1378 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001379 *
Chris Masond3977122009-01-05 21:25:51 -05001380 * callers might also have set path->keep_locks, which tells this code to keep
1381 * the lock if the path points to the last slot in the block. This is part of
1382 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001383 *
Chris Masond3977122009-01-05 21:25:51 -05001384 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1385 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001386 */
Chris Masone02119d2008-09-05 16:13:11 -04001387static noinline void unlock_up(struct btrfs_path *path, int level,
1388 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001389{
1390 int i;
1391 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001392 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001393 struct extent_buffer *t;
1394
1395 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1396 if (!path->nodes[i])
1397 break;
1398 if (!path->locks[i])
1399 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001400 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001401 skip_level = i + 1;
1402 continue;
1403 }
Chris Mason051e1b92008-06-25 16:01:30 -04001404 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001405 u32 nritems;
1406 t = path->nodes[i];
1407 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001408 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001409 skip_level = i + 1;
1410 continue;
1411 }
1412 }
Chris Mason051e1b92008-06-25 16:01:30 -04001413 if (skip_level < i && i >= lowest_unlock)
1414 no_skips = 1;
1415
Chris Mason925baed2008-06-25 16:01:30 -04001416 t = path->nodes[i];
1417 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1418 btrfs_tree_unlock(t);
1419 path->locks[i] = 0;
1420 }
1421 }
1422}
1423
Chris Mason3c69fae2007-08-07 15:52:22 -04001424/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05001425 * This releases any locks held in the path starting at level and
1426 * going all the way up to the root.
1427 *
1428 * btrfs_search_slot will keep the lock held on higher nodes in a few
1429 * corner cases, such as COW of the block at slot zero in the node. This
1430 * ignores those rules, and it should only be called when there are no
1431 * more updates to be done higher up in the tree.
1432 */
1433noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
1434{
1435 int i;
1436
1437 if (path->keep_locks || path->lowest_level)
1438 return;
1439
1440 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1441 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001442 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001443 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05001444 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05001445 btrfs_tree_unlock(path->nodes[i]);
1446 path->locks[i] = 0;
1447 }
1448}
1449
1450/*
Chris Mason74123bd2007-02-02 11:05:29 -05001451 * look for key in the tree. path is filled in with nodes along the way
1452 * if key is found, we return zero and you can find the item in the leaf
1453 * level of the path (level 0)
1454 *
1455 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001456 * be inserted, and 1 is returned. If there are other errors during the
1457 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001458 *
1459 * if ins_len > 0, nodes and leaves will be split as we walk down the
1460 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1461 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001462 */
Chris Masone089f052007-03-16 16:20:31 -04001463int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1464 *root, struct btrfs_key *key, struct btrfs_path *p, int
1465 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001466{
Chris Mason5f39d392007-10-15 16:14:19 -04001467 struct extent_buffer *b;
Chris Mason051e1b92008-06-25 16:01:30 -04001468 struct extent_buffer *tmp;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001469 int slot;
1470 int ret;
1471 int level;
Chris Mason3c69fae2007-08-07 15:52:22 -04001472 int should_reada = p->reada;
Chris Mason925baed2008-06-25 16:01:30 -04001473 int lowest_unlock = 1;
Chris Mason594a24e2008-06-25 16:01:30 -04001474 int blocksize;
Chris Mason9f3a7422007-08-07 15:52:19 -04001475 u8 lowest_level = 0;
Chris Mason594a24e2008-06-25 16:01:30 -04001476 u64 blocknr;
1477 u64 gen;
Chris Mason65b51a02008-08-01 15:11:20 -04001478 struct btrfs_key prealloc_block;
Chris Mason9f3a7422007-08-07 15:52:19 -04001479
Chris Mason6702ed42007-08-07 16:15:09 -04001480 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001481 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001482 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001483
Chris Mason925baed2008-06-25 16:01:30 -04001484 if (ins_len < 0)
1485 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001486
1487 prealloc_block.objectid = 0;
1488
Chris Masonbb803952007-03-01 12:04:21 -05001489again:
Chris Mason5cd57b22008-06-25 16:01:30 -04001490 if (p->skip_locking)
1491 b = btrfs_root_node(root);
1492 else
1493 b = btrfs_lock_root_node(root);
Chris Mason925baed2008-06-25 16:01:30 -04001494
Chris Masoneb60cea2007-02-02 09:18:22 -05001495 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001496 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001497
1498 /*
1499 * setup the path here so we can release it under lock
1500 * contention with the cow code
1501 */
1502 p->nodes[level] = b;
1503 if (!p->skip_locking)
1504 p->locks[level] = 1;
1505
Chris Mason02217ed2007-03-02 16:08:05 -05001506 if (cow) {
1507 int wret;
Chris Mason65b51a02008-08-01 15:11:20 -04001508
1509 /* is a cow on this block not required */
Chris Mason65b51a02008-08-01 15:11:20 -04001510 if (btrfs_header_generation(b) == trans->transid &&
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001511 btrfs_header_owner(b) == root->root_key.objectid &&
Chris Mason65b51a02008-08-01 15:11:20 -04001512 !btrfs_header_flag(b, BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason65b51a02008-08-01 15:11:20 -04001513 goto cow_done;
1514 }
Chris Mason65b51a02008-08-01 15:11:20 -04001515
1516 /* ok, we have to cow, is our old prealloc the right
1517 * size?
1518 */
1519 if (prealloc_block.objectid &&
1520 prealloc_block.offset != b->len) {
Chris Mason7b78c172009-02-04 09:12:46 -05001521 btrfs_release_path(root, p);
Chris Mason65b51a02008-08-01 15:11:20 -04001522 btrfs_free_reserved_extent(root,
1523 prealloc_block.objectid,
1524 prealloc_block.offset);
1525 prealloc_block.objectid = 0;
Chris Mason7b78c172009-02-04 09:12:46 -05001526 goto again;
Chris Mason65b51a02008-08-01 15:11:20 -04001527 }
1528
1529 /*
1530 * for higher level blocks, try not to allocate blocks
1531 * with the block and the parent locks held.
1532 */
Chris Mason284b0662009-02-09 16:22:03 -05001533 if (level > 0 && !prealloc_block.objectid) {
Chris Mason65b51a02008-08-01 15:11:20 -04001534 u32 size = b->len;
1535 u64 hint = b->start;
1536
1537 btrfs_release_path(root, p);
1538 ret = btrfs_reserve_extent(trans, root,
1539 size, size, 0,
1540 hint, (u64)-1,
1541 &prealloc_block, 0);
1542 BUG_ON(ret);
1543 goto again;
1544 }
1545
Chris Masonb4ce94d2009-02-04 09:25:08 -05001546 btrfs_set_path_blocking(p);
1547
Chris Masone20d96d2007-03-22 12:13:20 -04001548 wret = btrfs_cow_block(trans, root, b,
1549 p->nodes[level + 1],
1550 p->slots[level + 1],
Chris Mason65b51a02008-08-01 15:11:20 -04001551 &b, prealloc_block.objectid);
1552 prealloc_block.objectid = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04001553 if (wret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001554 free_extent_buffer(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001555 ret = wret;
1556 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001557 }
Chris Mason02217ed2007-03-02 16:08:05 -05001558 }
Chris Mason65b51a02008-08-01 15:11:20 -04001559cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001560 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001561 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001562 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001563 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001564
Chris Masoneb60cea2007-02-02 09:18:22 -05001565 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001566 if (!p->skip_locking)
1567 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001568
Chris Masonb4ce94d2009-02-04 09:25:08 -05001569 btrfs_clear_path_blocking(p);
1570
1571 /*
1572 * we have a lock on b and as long as we aren't changing
1573 * the tree, there is no way to for the items in b to change.
1574 * It is safe to drop the lock on our parent before we
1575 * go through the expensive btree search on b.
1576 *
1577 * If cow is true, then we might be changing slot zero,
1578 * which may require changing the parent. So, we can't
1579 * drop the lock until after we know which slot we're
1580 * operating on.
1581 */
1582 if (!cow)
1583 btrfs_unlock_up_safe(p, level + 1);
1584
Chris Mason123abc82007-03-14 14:14:43 -04001585 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001586 if (ret) {
1587 ret = -1;
1588 goto done;
1589 }
Chris Mason925baed2008-06-25 16:01:30 -04001590
Chris Mason5f39d392007-10-15 16:14:19 -04001591 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001592
Chris Mason5f39d392007-10-15 16:14:19 -04001593 if (level != 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001594 if (ret && slot > 0)
1595 slot -= 1;
1596 p->slots[level] = slot;
Chris Mason459931e2008-12-10 09:10:46 -05001597 if ((p->search_for_split || ins_len > 0) &&
1598 btrfs_header_nritems(b) >=
Chris Mason15147942008-04-24 09:22:51 -04001599 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001600 int sret;
1601
1602 sret = reada_for_balance(root, p, level);
1603 if (sret)
1604 goto again;
1605
1606 btrfs_set_path_blocking(p);
1607 sret = split_node(trans, root, p, level);
1608 btrfs_clear_path_blocking(p);
1609
Chris Mason5c680ed2007-02-22 11:39:13 -05001610 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001611 if (sret) {
1612 ret = sret;
1613 goto done;
1614 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001615 b = p->nodes[level];
Chris Mason5c680ed2007-02-22 11:39:13 -05001616 slot = p->slots[level];
Chris Mason7b78c172009-02-04 09:12:46 -05001617 } else if (ins_len < 0 &&
1618 btrfs_header_nritems(b) <
1619 BTRFS_NODEPTRS_PER_BLOCK(root) / 4) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001620 int sret;
1621
1622 sret = reada_for_balance(root, p, level);
1623 if (sret)
1624 goto again;
1625
1626 btrfs_set_path_blocking(p);
1627 sret = balance_level(trans, root, p, level);
1628 btrfs_clear_path_blocking(p);
1629
Chris Mason65b51a02008-08-01 15:11:20 -04001630 if (sret) {
1631 ret = sret;
1632 goto done;
1633 }
Chris Masonbb803952007-03-01 12:04:21 -05001634 b = p->nodes[level];
Chris Masonf510cfe2007-10-15 16:14:48 -04001635 if (!b) {
1636 btrfs_release_path(NULL, p);
Chris Masonbb803952007-03-01 12:04:21 -05001637 goto again;
Chris Masonf510cfe2007-10-15 16:14:48 -04001638 }
Chris Masonbb803952007-03-01 12:04:21 -05001639 slot = p->slots[level];
Chris Mason5f39d392007-10-15 16:14:19 -04001640 BUG_ON(btrfs_header_nritems(b) == 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05001641 }
Chris Masonf9efa9c2008-06-25 16:14:04 -04001642 unlock_up(p, level, lowest_unlock);
1643
Chris Mason9f3a7422007-08-07 15:52:19 -04001644 /* this is only true while dropping a snapshot */
Chris Mason925baed2008-06-25 16:01:30 -04001645 if (level == lowest_level) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001646 ret = 0;
1647 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001648 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001649
Chris Mason594a24e2008-06-25 16:01:30 -04001650 blocknr = btrfs_node_blockptr(b, slot);
1651 gen = btrfs_node_ptr_generation(b, slot);
1652 blocksize = btrfs_level_size(root, level - 1);
1653
1654 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1655 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason051e1b92008-06-25 16:01:30 -04001656 b = tmp;
1657 } else {
1658 /*
1659 * reduce lock contention at high levels
1660 * of the btree by dropping locks before
1661 * we read.
1662 */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001663 if (level > 0) {
Chris Mason051e1b92008-06-25 16:01:30 -04001664 btrfs_release_path(NULL, p);
1665 if (tmp)
1666 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001667 if (should_reada)
1668 reada_for_search(root, p,
1669 level, slot,
1670 key->objectid);
1671
Chris Mason594a24e2008-06-25 16:01:30 -04001672 tmp = read_tree_block(root, blocknr,
1673 blocksize, gen);
1674 if (tmp)
1675 free_extent_buffer(tmp);
Chris Mason051e1b92008-06-25 16:01:30 -04001676 goto again;
1677 } else {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001678 btrfs_set_path_blocking(p);
Chris Masona74a4b92008-06-25 16:01:31 -04001679 if (tmp)
1680 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001681 if (should_reada)
1682 reada_for_search(root, p,
1683 level, slot,
1684 key->objectid);
Chris Mason051e1b92008-06-25 16:01:30 -04001685 b = read_node_slot(root, b, slot);
1686 }
1687 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05001688 if (!p->skip_locking) {
1689 int lret;
1690
1691 btrfs_clear_path_blocking(p);
1692 lret = btrfs_try_spin_lock(b);
1693
1694 if (!lret) {
1695 btrfs_set_path_blocking(p);
1696 btrfs_tree_lock(b);
1697 btrfs_clear_path_blocking(p);
1698 }
1699 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001700 } else {
1701 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001702 if (ins_len > 0 &&
1703 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001704 int sret;
1705
1706 btrfs_set_path_blocking(p);
1707 sret = split_leaf(trans, root, key,
Chris Masoncc0c5532007-10-25 15:42:57 -04001708 p, ins_len, ret == 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001709 btrfs_clear_path_blocking(p);
1710
Chris Mason5c680ed2007-02-22 11:39:13 -05001711 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001712 if (sret) {
1713 ret = sret;
1714 goto done;
1715 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001716 }
Chris Mason459931e2008-12-10 09:10:46 -05001717 if (!p->search_for_split)
1718 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001719 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001720 }
1721 }
Chris Mason65b51a02008-08-01 15:11:20 -04001722 ret = 1;
1723done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001724 /*
1725 * we don't really know what they plan on doing with the path
1726 * from here on, so for now just mark it as blocking
1727 */
1728 btrfs_set_path_blocking(p);
Chris Mason65b51a02008-08-01 15:11:20 -04001729 if (prealloc_block.objectid) {
1730 btrfs_free_reserved_extent(root,
1731 prealloc_block.objectid,
1732 prealloc_block.offset);
1733 }
Chris Mason65b51a02008-08-01 15:11:20 -04001734 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001735}
1736
Zheng Yan1a40e232008-09-26 10:09:34 -04001737int btrfs_merge_path(struct btrfs_trans_handle *trans,
1738 struct btrfs_root *root,
1739 struct btrfs_key *node_keys,
1740 u64 *nodes, int lowest_level)
1741{
1742 struct extent_buffer *eb;
1743 struct extent_buffer *parent;
1744 struct btrfs_key key;
1745 u64 bytenr;
1746 u64 generation;
1747 u32 blocksize;
1748 int level;
1749 int slot;
1750 int key_match;
1751 int ret;
1752
1753 eb = btrfs_lock_root_node(root);
1754 ret = btrfs_cow_block(trans, root, eb, NULL, 0, &eb, 0);
1755 BUG_ON(ret);
1756
Chris Masonb4ce94d2009-02-04 09:25:08 -05001757 btrfs_set_lock_blocking(eb);
1758
Zheng Yan1a40e232008-09-26 10:09:34 -04001759 parent = eb;
1760 while (1) {
1761 level = btrfs_header_level(parent);
1762 if (level == 0 || level <= lowest_level)
1763 break;
1764
1765 ret = bin_search(parent, &node_keys[lowest_level], level,
1766 &slot);
1767 if (ret && slot > 0)
1768 slot--;
1769
1770 bytenr = btrfs_node_blockptr(parent, slot);
1771 if (nodes[level - 1] == bytenr)
1772 break;
1773
1774 blocksize = btrfs_level_size(root, level - 1);
1775 generation = btrfs_node_ptr_generation(parent, slot);
1776 btrfs_node_key_to_cpu(eb, &key, slot);
1777 key_match = !memcmp(&key, &node_keys[level - 1], sizeof(key));
1778
Yan Zhengf82d02d2008-10-29 14:49:05 -04001779 if (generation == trans->transid) {
Zheng Yan1a40e232008-09-26 10:09:34 -04001780 eb = read_tree_block(root, bytenr, blocksize,
1781 generation);
1782 btrfs_tree_lock(eb);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001783 btrfs_set_lock_blocking(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001784 }
1785
1786 /*
1787 * if node keys match and node pointer hasn't been modified
1788 * in the running transaction, we can merge the path. for
1789 * blocks owened by reloc trees, the node pointer check is
1790 * skipped, this is because these blocks are fully controlled
1791 * by the space balance code, no one else can modify them.
1792 */
1793 if (!nodes[level - 1] || !key_match ||
1794 (generation == trans->transid &&
1795 btrfs_header_owner(eb) != BTRFS_TREE_RELOC_OBJECTID)) {
1796 if (level == 1 || level == lowest_level + 1) {
1797 if (generation == trans->transid) {
1798 btrfs_tree_unlock(eb);
1799 free_extent_buffer(eb);
1800 }
1801 break;
1802 }
1803
1804 if (generation != trans->transid) {
1805 eb = read_tree_block(root, bytenr, blocksize,
1806 generation);
1807 btrfs_tree_lock(eb);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001808 btrfs_set_lock_blocking(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001809 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001810
1811 ret = btrfs_cow_block(trans, root, eb, parent, slot,
1812 &eb, 0);
1813 BUG_ON(ret);
1814
Yan Zhengf82d02d2008-10-29 14:49:05 -04001815 if (root->root_key.objectid ==
1816 BTRFS_TREE_RELOC_OBJECTID) {
1817 if (!nodes[level - 1]) {
1818 nodes[level - 1] = eb->start;
1819 memcpy(&node_keys[level - 1], &key,
1820 sizeof(node_keys[0]));
1821 } else {
1822 WARN_ON(1);
1823 }
1824 }
1825
Zheng Yan1a40e232008-09-26 10:09:34 -04001826 btrfs_tree_unlock(parent);
1827 free_extent_buffer(parent);
1828 parent = eb;
1829 continue;
1830 }
1831
Zheng Yan1a40e232008-09-26 10:09:34 -04001832 btrfs_set_node_blockptr(parent, slot, nodes[level - 1]);
1833 btrfs_set_node_ptr_generation(parent, slot, trans->transid);
1834 btrfs_mark_buffer_dirty(parent);
1835
1836 ret = btrfs_inc_extent_ref(trans, root,
1837 nodes[level - 1],
1838 blocksize, parent->start,
1839 btrfs_header_owner(parent),
1840 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001841 level - 1);
Zheng Yan1a40e232008-09-26 10:09:34 -04001842 BUG_ON(ret);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001843
1844 /*
1845 * If the block was created in the running transaction,
1846 * it's possible this is the last reference to it, so we
1847 * should drop the subtree.
1848 */
1849 if (generation == trans->transid) {
1850 ret = btrfs_drop_subtree(trans, root, eb, parent);
1851 BUG_ON(ret);
1852 btrfs_tree_unlock(eb);
1853 free_extent_buffer(eb);
1854 } else {
1855 ret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan1a40e232008-09-26 10:09:34 -04001856 blocksize, parent->start,
1857 btrfs_header_owner(parent),
1858 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001859 level - 1, 1);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001860 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04001861 }
1862 break;
1863 }
1864 btrfs_tree_unlock(parent);
1865 free_extent_buffer(parent);
1866 return 0;
1867}
1868
Chris Mason74123bd2007-02-02 11:05:29 -05001869/*
1870 * adjust the pointers going up the tree, starting at level
1871 * making sure the right key of each node is points to 'key'.
1872 * This is used after shifting pointers to the left, so it stops
1873 * fixing up pointers when a given leaf/node is not in slot 0 of the
1874 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001875 *
1876 * If this fails to write a tree block, it returns -1, but continues
1877 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001878 */
Chris Mason5f39d392007-10-15 16:14:19 -04001879static int fixup_low_keys(struct btrfs_trans_handle *trans,
1880 struct btrfs_root *root, struct btrfs_path *path,
1881 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001882{
1883 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001884 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001885 struct extent_buffer *t;
1886
Chris Mason234b63a2007-03-13 10:46:10 -04001887 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001888 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001889 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001890 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001891 t = path->nodes[i];
1892 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001893 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001894 if (tslot != 0)
1895 break;
1896 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001897 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001898}
1899
Chris Mason74123bd2007-02-02 11:05:29 -05001900/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001901 * update item key.
1902 *
1903 * This function isn't completely safe. It's the caller's responsibility
1904 * that the new key won't break the order
1905 */
1906int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1907 struct btrfs_root *root, struct btrfs_path *path,
1908 struct btrfs_key *new_key)
1909{
1910 struct btrfs_disk_key disk_key;
1911 struct extent_buffer *eb;
1912 int slot;
1913
1914 eb = path->nodes[0];
1915 slot = path->slots[0];
1916 if (slot > 0) {
1917 btrfs_item_key(eb, &disk_key, slot - 1);
1918 if (comp_keys(&disk_key, new_key) >= 0)
1919 return -1;
1920 }
1921 if (slot < btrfs_header_nritems(eb) - 1) {
1922 btrfs_item_key(eb, &disk_key, slot + 1);
1923 if (comp_keys(&disk_key, new_key) <= 0)
1924 return -1;
1925 }
1926
1927 btrfs_cpu_key_to_disk(&disk_key, new_key);
1928 btrfs_set_item_key(eb, &disk_key, slot);
1929 btrfs_mark_buffer_dirty(eb);
1930 if (slot == 0)
1931 fixup_low_keys(trans, root, path, &disk_key, 1);
1932 return 0;
1933}
1934
1935/*
Chris Mason74123bd2007-02-02 11:05:29 -05001936 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001937 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001938 *
1939 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1940 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001941 */
Chris Mason98ed5172008-01-03 10:01:48 -05001942static int push_node_left(struct btrfs_trans_handle *trans,
1943 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001944 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001945{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001946 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001947 int src_nritems;
1948 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001949 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001950
Chris Mason5f39d392007-10-15 16:14:19 -04001951 src_nritems = btrfs_header_nritems(src);
1952 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001953 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001954 WARN_ON(btrfs_header_generation(src) != trans->transid);
1955 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001956
Chris Masonbce4eae2008-04-24 14:42:46 -04001957 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001958 return 1;
1959
Chris Masond3977122009-01-05 21:25:51 -05001960 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001961 return 1;
1962
Chris Masonbce4eae2008-04-24 14:42:46 -04001963 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001964 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001965 if (push_items < src_nritems) {
1966 /* leave at least 8 pointers in the node if
1967 * we aren't going to empty it
1968 */
1969 if (src_nritems - push_items < 8) {
1970 if (push_items <= 8)
1971 return 1;
1972 push_items -= 8;
1973 }
1974 }
1975 } else
1976 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001977
Chris Mason5f39d392007-10-15 16:14:19 -04001978 copy_extent_buffer(dst, src,
1979 btrfs_node_key_ptr_offset(dst_nritems),
1980 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001981 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001982
Chris Masonbb803952007-03-01 12:04:21 -05001983 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001984 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1985 btrfs_node_key_ptr_offset(push_items),
1986 (src_nritems - push_items) *
1987 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001988 }
Chris Mason5f39d392007-10-15 16:14:19 -04001989 btrfs_set_header_nritems(src, src_nritems - push_items);
1990 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1991 btrfs_mark_buffer_dirty(src);
1992 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001993
1994 ret = btrfs_update_ref(trans, root, src, dst, dst_nritems, push_items);
1995 BUG_ON(ret);
1996
Chris Masonbb803952007-03-01 12:04:21 -05001997 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001998}
1999
Chris Mason97571fd2007-02-24 13:39:08 -05002000/*
Chris Mason79f95c82007-03-01 15:16:26 -05002001 * try to push data from one node into the next node right in the
2002 * tree.
2003 *
2004 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2005 * error, and > 0 if there was no room in the right hand block.
2006 *
2007 * this will only push up to 1/2 the contents of the left node over
2008 */
Chris Mason5f39d392007-10-15 16:14:19 -04002009static int balance_node_right(struct btrfs_trans_handle *trans,
2010 struct btrfs_root *root,
2011 struct extent_buffer *dst,
2012 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002013{
Chris Mason79f95c82007-03-01 15:16:26 -05002014 int push_items = 0;
2015 int max_push;
2016 int src_nritems;
2017 int dst_nritems;
2018 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002019
Chris Mason7bb86312007-12-11 09:25:06 -05002020 WARN_ON(btrfs_header_generation(src) != trans->transid);
2021 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2022
Chris Mason5f39d392007-10-15 16:14:19 -04002023 src_nritems = btrfs_header_nritems(src);
2024 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002025 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002026 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002027 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002028
Chris Masond3977122009-01-05 21:25:51 -05002029 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002030 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002031
2032 max_push = src_nritems / 2 + 1;
2033 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002034 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002035 return 1;
Yan252c38f2007-08-29 09:11:44 -04002036
Chris Mason79f95c82007-03-01 15:16:26 -05002037 if (max_push < push_items)
2038 push_items = max_push;
2039
Chris Mason5f39d392007-10-15 16:14:19 -04002040 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2041 btrfs_node_key_ptr_offset(0),
2042 (dst_nritems) *
2043 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002044
Chris Mason5f39d392007-10-15 16:14:19 -04002045 copy_extent_buffer(dst, src,
2046 btrfs_node_key_ptr_offset(0),
2047 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002048 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002049
Chris Mason5f39d392007-10-15 16:14:19 -04002050 btrfs_set_header_nritems(src, src_nritems - push_items);
2051 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002052
Chris Mason5f39d392007-10-15 16:14:19 -04002053 btrfs_mark_buffer_dirty(src);
2054 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002055
2056 ret = btrfs_update_ref(trans, root, src, dst, 0, push_items);
2057 BUG_ON(ret);
2058
Chris Mason79f95c82007-03-01 15:16:26 -05002059 return ret;
2060}
2061
2062/*
Chris Mason97571fd2007-02-24 13:39:08 -05002063 * helper function to insert a new root level in the tree.
2064 * A new node is allocated, and a single item is inserted to
2065 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002066 *
2067 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002068 */
Chris Masond3977122009-01-05 21:25:51 -05002069static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002070 struct btrfs_root *root,
2071 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002072{
Chris Mason7bb86312007-12-11 09:25:06 -05002073 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002074 struct extent_buffer *lower;
2075 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002076 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002077 struct btrfs_disk_key lower_key;
Zheng Yan31840ae2008-09-23 13:14:14 -04002078 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05002079
2080 BUG_ON(path->nodes[level]);
2081 BUG_ON(path->nodes[level-1] != root->node);
2082
Chris Mason7bb86312007-12-11 09:25:06 -05002083 lower = path->nodes[level-1];
2084 if (level == 1)
2085 btrfs_item_key(lower, &lower_key, 0);
2086 else
2087 btrfs_node_key(lower, &lower_key, 0);
2088
Zheng Yan31840ae2008-09-23 13:14:14 -04002089 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
2090 root->root_key.objectid, trans->transid,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002091 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002092 if (IS_ERR(c))
2093 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002094
Chris Mason5f39d392007-10-15 16:14:19 -04002095 memset_extent_buffer(c, 0, 0, root->nodesize);
2096 btrfs_set_header_nritems(c, 1);
2097 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002098 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002099 btrfs_set_header_generation(c, trans->transid);
2100 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002101
Chris Mason5f39d392007-10-15 16:14:19 -04002102 write_extent_buffer(c, root->fs_info->fsid,
2103 (unsigned long)btrfs_header_fsid(c),
2104 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002105
2106 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2107 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2108 BTRFS_UUID_SIZE);
2109
Chris Mason5f39d392007-10-15 16:14:19 -04002110 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002111 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002112 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002113 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002114
2115 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002116
2117 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002118
Chris Mason925baed2008-06-25 16:01:30 -04002119 spin_lock(&root->node_lock);
2120 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002121 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002122 spin_unlock(&root->node_lock);
2123
Zheng Yan31840ae2008-09-23 13:14:14 -04002124 ret = btrfs_update_extent_ref(trans, root, lower->start,
2125 lower->start, c->start,
2126 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002127 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04002128 BUG_ON(ret);
2129
Chris Mason925baed2008-06-25 16:01:30 -04002130 /* the super has an extra ref to root->node */
2131 free_extent_buffer(old);
2132
Chris Mason0b86a832008-03-24 15:01:56 -04002133 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002134 extent_buffer_get(c);
2135 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002136 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002137 path->slots[level] = 0;
2138 return 0;
2139}
2140
Chris Mason74123bd2007-02-02 11:05:29 -05002141/*
2142 * worker function to insert a single pointer in a node.
2143 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002144 *
Chris Mason74123bd2007-02-02 11:05:29 -05002145 * slot and level indicate where you want the key to go, and
2146 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002147 *
2148 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002149 */
Chris Masone089f052007-03-16 16:20:31 -04002150static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2151 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002152 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002153{
Chris Mason5f39d392007-10-15 16:14:19 -04002154 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002155 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002156
2157 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002158 lower = path->nodes[level];
2159 nritems = btrfs_header_nritems(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002160 if (slot > nritems)
2161 BUG();
Chris Mason123abc82007-03-14 14:14:43 -04002162 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002163 BUG();
2164 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002165 memmove_extent_buffer(lower,
2166 btrfs_node_key_ptr_offset(slot + 1),
2167 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002168 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002169 }
Chris Mason5f39d392007-10-15 16:14:19 -04002170 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002171 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002172 WARN_ON(trans->transid == 0);
2173 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002174 btrfs_set_header_nritems(lower, nritems + 1);
2175 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002176 return 0;
2177}
2178
Chris Mason97571fd2007-02-24 13:39:08 -05002179/*
2180 * split the node at the specified level in path in two.
2181 * The path is corrected to point to the appropriate node after the split
2182 *
2183 * Before splitting this tries to make some room in the node by pushing
2184 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002185 *
2186 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002187 */
Chris Masone02119d2008-09-05 16:13:11 -04002188static noinline int split_node(struct btrfs_trans_handle *trans,
2189 struct btrfs_root *root,
2190 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002191{
Chris Mason5f39d392007-10-15 16:14:19 -04002192 struct extent_buffer *c;
2193 struct extent_buffer *split;
2194 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002195 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002196 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002197 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002198 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002199
Chris Mason5f39d392007-10-15 16:14:19 -04002200 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002201 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002202 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002203 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002204 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002205 if (ret)
2206 return ret;
Chris Masone66f7092007-04-20 13:16:02 -04002207 } else {
2208 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002209 c = path->nodes[level];
2210 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002211 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002212 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002213 if (ret < 0)
2214 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002215 }
Chris Masone66f7092007-04-20 13:16:02 -04002216
Chris Mason5f39d392007-10-15 16:14:19 -04002217 c_nritems = btrfs_header_nritems(c);
Chris Mason7bb86312007-12-11 09:25:06 -05002218
Chris Mason925baed2008-06-25 16:01:30 -04002219 split = btrfs_alloc_free_block(trans, root, root->nodesize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002220 path->nodes[level + 1]->start,
2221 root->root_key.objectid,
2222 trans->transid, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002223 if (IS_ERR(split))
2224 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002225
Chris Mason5f39d392007-10-15 16:14:19 -04002226 btrfs_set_header_flags(split, btrfs_header_flags(c));
2227 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002228 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002229 btrfs_set_header_generation(split, trans->transid);
2230 btrfs_set_header_owner(split, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -04002231 btrfs_set_header_flags(split, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002232 write_extent_buffer(split, root->fs_info->fsid,
2233 (unsigned long)btrfs_header_fsid(split),
2234 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002235 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2236 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2237 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002238
Chris Mason7518a232007-03-12 12:01:18 -04002239 mid = (c_nritems + 1) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04002240
2241 copy_extent_buffer(split, c,
2242 btrfs_node_key_ptr_offset(0),
2243 btrfs_node_key_ptr_offset(mid),
2244 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2245 btrfs_set_header_nritems(split, c_nritems - mid);
2246 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002247 ret = 0;
2248
Chris Mason5f39d392007-10-15 16:14:19 -04002249 btrfs_mark_buffer_dirty(c);
2250 btrfs_mark_buffer_dirty(split);
2251
2252 btrfs_node_key(split, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002253 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002254 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002255 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002256 if (wret)
2257 ret = wret;
2258
Zheng Yan31840ae2008-09-23 13:14:14 -04002259 ret = btrfs_update_ref(trans, root, c, split, 0, c_nritems - mid);
2260 BUG_ON(ret);
2261
Chris Mason5de08d72007-02-24 06:24:44 -05002262 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002263 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002264 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002265 free_extent_buffer(c);
2266 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002267 path->slots[level + 1] += 1;
2268 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002269 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002270 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002271 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002272 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002273}
2274
Chris Mason74123bd2007-02-02 11:05:29 -05002275/*
2276 * how many bytes are required to store the items in a leaf. start
2277 * and nr indicate which items in the leaf to check. This totals up the
2278 * space used both by the item structs and the item data
2279 */
Chris Mason5f39d392007-10-15 16:14:19 -04002280static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002281{
2282 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002283 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002284 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002285
2286 if (!nr)
2287 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002288 data_len = btrfs_item_end_nr(l, start);
2289 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002290 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002291 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002292 return data_len;
2293}
2294
Chris Mason74123bd2007-02-02 11:05:29 -05002295/*
Chris Masond4dbff92007-04-04 14:08:15 -04002296 * The space between the end of the leaf items and
2297 * the start of the leaf data. IOW, how much room
2298 * the leaf has left for both items and data
2299 */
Chris Masond3977122009-01-05 21:25:51 -05002300noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002301 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002302{
Chris Mason5f39d392007-10-15 16:14:19 -04002303 int nritems = btrfs_header_nritems(leaf);
2304 int ret;
2305 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2306 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002307 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2308 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002309 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002310 leaf_space_used(leaf, 0, nritems), nritems);
2311 }
2312 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002313}
2314
2315/*
Chris Mason00ec4c52007-02-24 12:47:20 -05002316 * push some data in the path leaf to the right, trying to free up at
2317 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Masonaa5d6be2007-02-28 16:35:06 -05002318 *
2319 * returns 1 if the push failed because the other node didn't have enough
2320 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason00ec4c52007-02-24 12:47:20 -05002321 */
Chris Masone089f052007-03-16 16:20:31 -04002322static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason34a38212007-11-07 13:31:03 -05002323 *root, struct btrfs_path *path, int data_size,
2324 int empty)
Chris Mason00ec4c52007-02-24 12:47:20 -05002325{
Chris Mason5f39d392007-10-15 16:14:19 -04002326 struct extent_buffer *left = path->nodes[0];
2327 struct extent_buffer *right;
2328 struct extent_buffer *upper;
2329 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002330 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002331 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002332 int free_space;
2333 int push_space = 0;
2334 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002335 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002336 u32 left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002337 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002338 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002339 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002340 u32 this_item_size;
Chris Mason54aa1f42007-06-22 14:16:25 -04002341 int ret;
Chris Mason00ec4c52007-02-24 12:47:20 -05002342
2343 slot = path->slots[1];
Chris Masond3977122009-01-05 21:25:51 -05002344 if (!path->nodes[1])
Chris Mason00ec4c52007-02-24 12:47:20 -05002345 return 1;
Chris Masond3977122009-01-05 21:25:51 -05002346
Chris Mason00ec4c52007-02-24 12:47:20 -05002347 upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002348 if (slot >= btrfs_header_nritems(upper) - 1)
Chris Mason00ec4c52007-02-24 12:47:20 -05002349 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002350
Chris Masona2135012008-06-25 16:01:30 -04002351 WARN_ON(!btrfs_tree_locked(path->nodes[1]));
2352
Chris Masonca7a79a2008-05-12 12:59:19 -04002353 right = read_node_slot(root, upper, slot + 1);
Chris Mason925baed2008-06-25 16:01:30 -04002354 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002355 btrfs_set_lock_blocking(right);
2356
Chris Mason123abc82007-03-14 14:14:43 -04002357 free_space = btrfs_leaf_free_space(root, right);
Yan Zheng87b29b22008-12-17 10:21:48 -05002358 if (free_space < data_size)
Chris Mason925baed2008-06-25 16:01:30 -04002359 goto out_unlock;
Chris Mason02217ed2007-03-02 16:08:05 -05002360
Chris Mason5f39d392007-10-15 16:14:19 -04002361 /* cow and double check */
2362 ret = btrfs_cow_block(trans, root, right, upper,
Chris Mason65b51a02008-08-01 15:11:20 -04002363 slot + 1, &right, 0);
Chris Mason925baed2008-06-25 16:01:30 -04002364 if (ret)
2365 goto out_unlock;
2366
Chris Mason5f39d392007-10-15 16:14:19 -04002367 free_space = btrfs_leaf_free_space(root, right);
Yan Zheng87b29b22008-12-17 10:21:48 -05002368 if (free_space < data_size)
Chris Mason925baed2008-06-25 16:01:30 -04002369 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002370
2371 left_nritems = btrfs_header_nritems(left);
Chris Mason925baed2008-06-25 16:01:30 -04002372 if (left_nritems == 0)
2373 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002374
Chris Mason34a38212007-11-07 13:31:03 -05002375 if (empty)
2376 nr = 0;
2377 else
2378 nr = 1;
2379
Zheng Yan31840ae2008-09-23 13:14:14 -04002380 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002381 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002382
Chris Mason34a38212007-11-07 13:31:03 -05002383 i = left_nritems - 1;
2384 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002385 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002386
Zheng Yan31840ae2008-09-23 13:14:14 -04002387 if (!empty && push_items > 0) {
2388 if (path->slots[0] > i)
2389 break;
2390 if (path->slots[0] == i) {
2391 int space = btrfs_leaf_free_space(root, left);
2392 if (space + push_space * 2 > free_space)
2393 break;
2394 }
2395 }
2396
Chris Mason00ec4c52007-02-24 12:47:20 -05002397 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002398 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002399
2400 if (!left->map_token) {
2401 map_extent_buffer(left, (unsigned long)item,
2402 sizeof(struct btrfs_item),
2403 &left->map_token, &left->kaddr,
2404 &left->map_start, &left->map_len,
2405 KM_USER1);
2406 }
2407
2408 this_item_size = btrfs_item_size(left, item);
2409 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002410 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002411
Chris Mason00ec4c52007-02-24 12:47:20 -05002412 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002413 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002414 if (i == 0)
2415 break;
2416 i--;
Chris Masondb945352007-10-15 16:15:53 -04002417 }
2418 if (left->map_token) {
2419 unmap_extent_buffer(left, left->map_token, KM_USER1);
2420 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002421 }
Chris Mason5f39d392007-10-15 16:14:19 -04002422
Chris Mason925baed2008-06-25 16:01:30 -04002423 if (push_items == 0)
2424 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002425
Chris Mason34a38212007-11-07 13:31:03 -05002426 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002427 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002428
Chris Mason00ec4c52007-02-24 12:47:20 -05002429 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002430 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002431
Chris Mason5f39d392007-10-15 16:14:19 -04002432 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002433 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002434
Chris Mason00ec4c52007-02-24 12:47:20 -05002435 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002436 data_end = leaf_data_end(root, right);
2437 memmove_extent_buffer(right,
2438 btrfs_leaf_data(right) + data_end - push_space,
2439 btrfs_leaf_data(right) + data_end,
2440 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2441
Chris Mason00ec4c52007-02-24 12:47:20 -05002442 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002443 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002444 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2445 btrfs_leaf_data(left) + leaf_data_end(root, left),
2446 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002447
2448 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2449 btrfs_item_nr_offset(0),
2450 right_nritems * sizeof(struct btrfs_item));
2451
Chris Mason00ec4c52007-02-24 12:47:20 -05002452 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002453 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2454 btrfs_item_nr_offset(left_nritems - push_items),
2455 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002456
2457 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002458 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002459 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002460 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002461 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002462 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002463 if (!right->map_token) {
2464 map_extent_buffer(right, (unsigned long)item,
2465 sizeof(struct btrfs_item),
2466 &right->map_token, &right->kaddr,
2467 &right->map_start, &right->map_len,
2468 KM_USER1);
2469 }
2470 push_space -= btrfs_item_size(right, item);
2471 btrfs_set_item_offset(right, item, push_space);
2472 }
2473
2474 if (right->map_token) {
2475 unmap_extent_buffer(right, right->map_token, KM_USER1);
2476 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002477 }
Chris Mason7518a232007-03-12 12:01:18 -04002478 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002479 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002480
Chris Mason34a38212007-11-07 13:31:03 -05002481 if (left_nritems)
2482 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002483 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002484
Zheng Yan31840ae2008-09-23 13:14:14 -04002485 ret = btrfs_update_ref(trans, root, left, right, 0, push_items);
2486 BUG_ON(ret);
2487
Chris Mason5f39d392007-10-15 16:14:19 -04002488 btrfs_item_key(right, &disk_key, 0);
2489 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002490 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002491
Chris Mason00ec4c52007-02-24 12:47:20 -05002492 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002493 if (path->slots[0] >= left_nritems) {
2494 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002495 if (btrfs_header_nritems(path->nodes[0]) == 0)
2496 clean_tree_block(trans, root, path->nodes[0]);
2497 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002498 free_extent_buffer(path->nodes[0]);
2499 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002500 path->slots[1] += 1;
2501 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002502 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002503 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002504 }
2505 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002506
2507out_unlock:
2508 btrfs_tree_unlock(right);
2509 free_extent_buffer(right);
2510 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002511}
Chris Mason925baed2008-06-25 16:01:30 -04002512
Chris Mason00ec4c52007-02-24 12:47:20 -05002513/*
Chris Mason74123bd2007-02-02 11:05:29 -05002514 * push some data in the path leaf to the left, trying to free up at
2515 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2516 */
Chris Masone089f052007-03-16 16:20:31 -04002517static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason34a38212007-11-07 13:31:03 -05002518 *root, struct btrfs_path *path, int data_size,
2519 int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002520{
Chris Mason5f39d392007-10-15 16:14:19 -04002521 struct btrfs_disk_key disk_key;
2522 struct extent_buffer *right = path->nodes[0];
2523 struct extent_buffer *left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002524 int slot;
2525 int i;
2526 int free_space;
2527 int push_space = 0;
2528 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002529 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002530 u32 old_left_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002531 u32 right_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002532 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002533 int ret = 0;
2534 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002535 u32 this_item_size;
2536 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002537
2538 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002539 if (slot == 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002540 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002541 if (!path->nodes[1])
Chris Masonbe0e5c02007-01-26 15:51:26 -05002542 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002543
Chris Mason3685f792007-10-19 09:23:27 -04002544 right_nritems = btrfs_header_nritems(right);
Chris Masond3977122009-01-05 21:25:51 -05002545 if (right_nritems == 0)
Chris Mason3685f792007-10-19 09:23:27 -04002546 return 1;
Chris Mason3685f792007-10-19 09:23:27 -04002547
Chris Masona2135012008-06-25 16:01:30 -04002548 WARN_ON(!btrfs_tree_locked(path->nodes[1]));
2549
Chris Masonca7a79a2008-05-12 12:59:19 -04002550 left = read_node_slot(root, path->nodes[1], slot - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002551 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002552 btrfs_set_lock_blocking(left);
2553
Chris Mason123abc82007-03-14 14:14:43 -04002554 free_space = btrfs_leaf_free_space(root, left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002555 if (free_space < data_size) {
Chris Mason925baed2008-06-25 16:01:30 -04002556 ret = 1;
2557 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002558 }
Chris Mason02217ed2007-03-02 16:08:05 -05002559
2560 /* cow and double check */
Chris Mason5f39d392007-10-15 16:14:19 -04002561 ret = btrfs_cow_block(trans, root, left,
Chris Mason65b51a02008-08-01 15:11:20 -04002562 path->nodes[1], slot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002563 if (ret) {
2564 /* we hit -ENOSPC, but it isn't fatal here */
Chris Mason925baed2008-06-25 16:01:30 -04002565 ret = 1;
2566 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002567 }
Chris Mason3685f792007-10-19 09:23:27 -04002568
Chris Mason123abc82007-03-14 14:14:43 -04002569 free_space = btrfs_leaf_free_space(root, left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002570 if (free_space < data_size) {
Chris Mason925baed2008-06-25 16:01:30 -04002571 ret = 1;
2572 goto out;
Chris Mason02217ed2007-03-02 16:08:05 -05002573 }
2574
Chris Mason34a38212007-11-07 13:31:03 -05002575 if (empty)
2576 nr = right_nritems;
2577 else
2578 nr = right_nritems - 1;
2579
2580 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002581 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002582 if (!right->map_token) {
2583 map_extent_buffer(right, (unsigned long)item,
2584 sizeof(struct btrfs_item),
2585 &right->map_token, &right->kaddr,
2586 &right->map_start, &right->map_len,
2587 KM_USER1);
2588 }
2589
Zheng Yan31840ae2008-09-23 13:14:14 -04002590 if (!empty && push_items > 0) {
2591 if (path->slots[0] < i)
2592 break;
2593 if (path->slots[0] == i) {
2594 int space = btrfs_leaf_free_space(root, right);
2595 if (space + push_space * 2 > free_space)
2596 break;
2597 }
2598 }
2599
Chris Masonbe0e5c02007-01-26 15:51:26 -05002600 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002601 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002602
2603 this_item_size = btrfs_item_size(right, item);
2604 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002605 break;
Chris Masondb945352007-10-15 16:15:53 -04002606
Chris Masonbe0e5c02007-01-26 15:51:26 -05002607 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002608 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002609 }
Chris Masondb945352007-10-15 16:15:53 -04002610
2611 if (right->map_token) {
2612 unmap_extent_buffer(right, right->map_token, KM_USER1);
2613 right->map_token = NULL;
2614 }
2615
Chris Masonbe0e5c02007-01-26 15:51:26 -05002616 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002617 ret = 1;
2618 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002619 }
Chris Mason34a38212007-11-07 13:31:03 -05002620 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002621 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002622
Chris Masonbe0e5c02007-01-26 15:51:26 -05002623 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002624 copy_extent_buffer(left, right,
2625 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2626 btrfs_item_nr_offset(0),
2627 push_items * sizeof(struct btrfs_item));
2628
Chris Mason123abc82007-03-14 14:14:43 -04002629 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002630 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002631
2632 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002633 leaf_data_end(root, left) - push_space,
2634 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002635 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002636 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002637 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002638 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002639
Chris Masondb945352007-10-15 16:15:53 -04002640 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002641 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002642 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002643
Chris Mason5f39d392007-10-15 16:14:19 -04002644 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002645 if (!left->map_token) {
2646 map_extent_buffer(left, (unsigned long)item,
2647 sizeof(struct btrfs_item),
2648 &left->map_token, &left->kaddr,
2649 &left->map_start, &left->map_len,
2650 KM_USER1);
2651 }
2652
Chris Mason5f39d392007-10-15 16:14:19 -04002653 ioff = btrfs_item_offset(left, item);
2654 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002655 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002656 }
Chris Mason5f39d392007-10-15 16:14:19 -04002657 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002658 if (left->map_token) {
2659 unmap_extent_buffer(left, left->map_token, KM_USER1);
2660 left->map_token = NULL;
2661 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002662
2663 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002664 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002665 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2666 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002667 WARN_ON(1);
2668 }
Chris Mason5f39d392007-10-15 16:14:19 -04002669
Chris Mason34a38212007-11-07 13:31:03 -05002670 if (push_items < right_nritems) {
2671 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2672 leaf_data_end(root, right);
2673 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2674 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2675 btrfs_leaf_data(right) +
2676 leaf_data_end(root, right), push_space);
2677
2678 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002679 btrfs_item_nr_offset(push_items),
2680 (btrfs_header_nritems(right) - push_items) *
2681 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002682 }
Yaneef1c492007-11-26 10:58:13 -05002683 right_nritems -= push_items;
2684 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002685 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002686 for (i = 0; i < right_nritems; i++) {
2687 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002688
2689 if (!right->map_token) {
2690 map_extent_buffer(right, (unsigned long)item,
2691 sizeof(struct btrfs_item),
2692 &right->map_token, &right->kaddr,
2693 &right->map_start, &right->map_len,
2694 KM_USER1);
2695 }
2696
2697 push_space = push_space - btrfs_item_size(right, item);
2698 btrfs_set_item_offset(right, item, push_space);
2699 }
2700 if (right->map_token) {
2701 unmap_extent_buffer(right, right->map_token, KM_USER1);
2702 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002703 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002704
Chris Mason5f39d392007-10-15 16:14:19 -04002705 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002706 if (right_nritems)
2707 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002708
Zheng Yan31840ae2008-09-23 13:14:14 -04002709 ret = btrfs_update_ref(trans, root, right, left,
2710 old_left_nritems, push_items);
2711 BUG_ON(ret);
2712
Chris Mason5f39d392007-10-15 16:14:19 -04002713 btrfs_item_key(right, &disk_key, 0);
2714 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002715 if (wret)
2716 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002717
2718 /* then fixup the leaf pointer in the path */
2719 if (path->slots[0] < push_items) {
2720 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002721 if (btrfs_header_nritems(path->nodes[0]) == 0)
2722 clean_tree_block(trans, root, path->nodes[0]);
2723 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002724 free_extent_buffer(path->nodes[0]);
2725 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002726 path->slots[1] -= 1;
2727 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002728 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002729 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002730 path->slots[0] -= push_items;
2731 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002732 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002733 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002734out:
2735 btrfs_tree_unlock(left);
2736 free_extent_buffer(left);
2737 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002738}
2739
Chris Mason74123bd2007-02-02 11:05:29 -05002740/*
2741 * split the path's leaf in two, making sure there is at least data_size
2742 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002743 *
2744 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002745 */
Chris Masone02119d2008-09-05 16:13:11 -04002746static noinline int split_leaf(struct btrfs_trans_handle *trans,
2747 struct btrfs_root *root,
2748 struct btrfs_key *ins_key,
2749 struct btrfs_path *path, int data_size,
2750 int extend)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002751{
Chris Mason5f39d392007-10-15 16:14:19 -04002752 struct extent_buffer *l;
Chris Mason7518a232007-03-12 12:01:18 -04002753 u32 nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -05002754 int mid;
2755 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04002756 struct extent_buffer *right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002757 int data_copy_size;
2758 int rt_data_off;
2759 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002760 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002761 int wret;
Chris Masoncc0c5532007-10-25 15:42:57 -04002762 int double_split;
2763 int num_doubles = 0;
Chris Masond4dbff92007-04-04 14:08:15 -04002764 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002765
Chris Mason40689472007-03-17 14:29:23 -04002766 /* first try to make some room by pushing left and right */
Chris Mason459931e2008-12-10 09:10:46 -05002767 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
Chris Mason34a38212007-11-07 13:31:03 -05002768 wret = push_leaf_right(trans, root, path, data_size, 0);
Chris Masond3977122009-01-05 21:25:51 -05002769 if (wret < 0)
Chris Masoneaee50e2007-03-13 11:17:52 -04002770 return wret;
Chris Mason3685f792007-10-19 09:23:27 -04002771 if (wret) {
Chris Mason34a38212007-11-07 13:31:03 -05002772 wret = push_leaf_left(trans, root, path, data_size, 0);
Chris Mason3685f792007-10-19 09:23:27 -04002773 if (wret < 0)
2774 return wret;
2775 }
2776 l = path->nodes[0];
Chris Masonaa5d6be2007-02-28 16:35:06 -05002777
Chris Mason3685f792007-10-19 09:23:27 -04002778 /* did the pushes work? */
Yan Zheng87b29b22008-12-17 10:21:48 -05002779 if (btrfs_leaf_free_space(root, l) >= data_size)
Chris Mason3685f792007-10-19 09:23:27 -04002780 return 0;
Chris Mason3326d1b2007-10-15 16:18:25 -04002781 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002782
Chris Mason5c680ed2007-02-22 11:39:13 -05002783 if (!path->nodes[1]) {
Chris Masone089f052007-03-16 16:20:31 -04002784 ret = insert_new_root(trans, root, path, 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002785 if (ret)
2786 return ret;
2787 }
Chris Masoncc0c5532007-10-25 15:42:57 -04002788again:
2789 double_split = 0;
2790 l = path->nodes[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05002791 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04002792 nritems = btrfs_header_nritems(l);
Chris Masond3977122009-01-05 21:25:51 -05002793 mid = (nritems + 1) / 2;
Chris Mason54aa1f42007-06-22 14:16:25 -04002794
Chris Mason925baed2008-06-25 16:01:30 -04002795 right = btrfs_alloc_free_block(trans, root, root->leafsize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002796 path->nodes[1]->start,
2797 root->root_key.objectid,
2798 trans->transid, 0, l->start, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002799 if (IS_ERR(right)) {
2800 BUG_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002801 return PTR_ERR(right);
Chris Masoncea9e442008-04-09 16:28:12 -04002802 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002803
Chris Mason5f39d392007-10-15 16:14:19 -04002804 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
Chris Masondb945352007-10-15 16:15:53 -04002805 btrfs_set_header_bytenr(right, right->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002806 btrfs_set_header_generation(right, trans->transid);
2807 btrfs_set_header_owner(right, root->root_key.objectid);
2808 btrfs_set_header_level(right, 0);
2809 write_extent_buffer(right, root->fs_info->fsid,
2810 (unsigned long)btrfs_header_fsid(right),
2811 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002812
2813 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2814 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2815 BTRFS_UUID_SIZE);
Chris Masond4dbff92007-04-04 14:08:15 -04002816 if (mid <= slot) {
2817 if (nritems == 1 ||
Yan Zheng87b29b22008-12-17 10:21:48 -05002818 leaf_space_used(l, mid, nritems - mid) + data_size >
Chris Masond4dbff92007-04-04 14:08:15 -04002819 BTRFS_LEAF_DATA_SIZE(root)) {
2820 if (slot >= nritems) {
2821 btrfs_cpu_key_to_disk(&disk_key, ins_key);
Chris Mason5f39d392007-10-15 16:14:19 -04002822 btrfs_set_header_nritems(right, 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002823 wret = insert_ptr(trans, root, path,
Chris Masondb945352007-10-15 16:15:53 -04002824 &disk_key, right->start,
Chris Masond4dbff92007-04-04 14:08:15 -04002825 path->slots[1] + 1, 1);
2826 if (wret)
2827 ret = wret;
Chris Mason925baed2008-06-25 16:01:30 -04002828
2829 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002830 free_extent_buffer(path->nodes[0]);
2831 path->nodes[0] = right;
Chris Masond4dbff92007-04-04 14:08:15 -04002832 path->slots[0] = 0;
2833 path->slots[1] += 1;
Chris Mason0ef8b242008-04-03 16:29:02 -04002834 btrfs_mark_buffer_dirty(right);
Chris Masond4dbff92007-04-04 14:08:15 -04002835 return ret;
2836 }
2837 mid = slot;
Chris Mason3326d1b2007-10-15 16:18:25 -04002838 if (mid != nritems &&
2839 leaf_space_used(l, mid, nritems - mid) +
Yan Zheng87b29b22008-12-17 10:21:48 -05002840 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason3326d1b2007-10-15 16:18:25 -04002841 double_split = 1;
2842 }
Chris Masond4dbff92007-04-04 14:08:15 -04002843 }
2844 } else {
Yan Zheng87b29b22008-12-17 10:21:48 -05002845 if (leaf_space_used(l, 0, mid) + data_size >
Chris Masond4dbff92007-04-04 14:08:15 -04002846 BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason459931e2008-12-10 09:10:46 -05002847 if (!extend && data_size && slot == 0) {
Chris Masond4dbff92007-04-04 14:08:15 -04002848 btrfs_cpu_key_to_disk(&disk_key, ins_key);
Chris Mason5f39d392007-10-15 16:14:19 -04002849 btrfs_set_header_nritems(right, 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002850 wret = insert_ptr(trans, root, path,
2851 &disk_key,
Chris Masondb945352007-10-15 16:15:53 -04002852 right->start,
Chris Mason098f59c2007-05-11 11:33:21 -04002853 path->slots[1], 1);
Chris Masond4dbff92007-04-04 14:08:15 -04002854 if (wret)
2855 ret = wret;
Chris Mason925baed2008-06-25 16:01:30 -04002856 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002857 free_extent_buffer(path->nodes[0]);
2858 path->nodes[0] = right;
Chris Masond4dbff92007-04-04 14:08:15 -04002859 path->slots[0] = 0;
Chris Masona429e512007-04-18 16:15:28 -04002860 if (path->slots[1] == 0) {
2861 wret = fixup_low_keys(trans, root,
Chris Masond3977122009-01-05 21:25:51 -05002862 path, &disk_key, 1);
Chris Masona429e512007-04-18 16:15:28 -04002863 if (wret)
2864 ret = wret;
2865 }
Chris Mason0ef8b242008-04-03 16:29:02 -04002866 btrfs_mark_buffer_dirty(right);
Chris Masond4dbff92007-04-04 14:08:15 -04002867 return ret;
Chris Mason459931e2008-12-10 09:10:46 -05002868 } else if ((extend || !data_size) && slot == 0) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002869 mid = 1;
2870 } else {
2871 mid = slot;
2872 if (mid != nritems &&
2873 leaf_space_used(l, mid, nritems - mid) +
Yan Zheng87b29b22008-12-17 10:21:48 -05002874 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002875 double_split = 1;
2876 }
Chris Mason5ee78ac2007-10-19 14:01:21 -04002877 }
Chris Masond4dbff92007-04-04 14:08:15 -04002878 }
2879 }
Chris Mason5f39d392007-10-15 16:14:19 -04002880 nritems = nritems - mid;
2881 btrfs_set_header_nritems(right, nritems);
2882 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2883
2884 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2885 btrfs_item_nr_offset(mid),
2886 nritems * sizeof(struct btrfs_item));
2887
2888 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002889 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2890 data_copy_size, btrfs_leaf_data(l) +
2891 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002892
Chris Mason5f39d392007-10-15 16:14:19 -04002893 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2894 btrfs_item_end_nr(l, mid);
2895
2896 for (i = 0; i < nritems; i++) {
2897 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002898 u32 ioff;
2899
2900 if (!right->map_token) {
2901 map_extent_buffer(right, (unsigned long)item,
2902 sizeof(struct btrfs_item),
2903 &right->map_token, &right->kaddr,
2904 &right->map_start, &right->map_len,
2905 KM_USER1);
2906 }
2907
2908 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002909 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002910 }
Chris Mason74123bd2007-02-02 11:05:29 -05002911
Chris Masondb945352007-10-15 16:15:53 -04002912 if (right->map_token) {
2913 unmap_extent_buffer(right, right->map_token, KM_USER1);
2914 right->map_token = NULL;
2915 }
2916
Chris Mason5f39d392007-10-15 16:14:19 -04002917 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002918 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002919 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002920 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2921 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002922 if (wret)
2923 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002924
2925 btrfs_mark_buffer_dirty(right);
2926 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002927 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002928
Zheng Yan31840ae2008-09-23 13:14:14 -04002929 ret = btrfs_update_ref(trans, root, l, right, 0, nritems);
2930 BUG_ON(ret);
2931
Chris Masonbe0e5c02007-01-26 15:51:26 -05002932 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002933 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002934 free_extent_buffer(path->nodes[0]);
2935 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002936 path->slots[0] -= mid;
2937 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002938 } else {
2939 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002940 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002941 }
Chris Mason5f39d392007-10-15 16:14:19 -04002942
Chris Masoneb60cea2007-02-02 09:18:22 -05002943 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002944
Chris Masoncc0c5532007-10-25 15:42:57 -04002945 if (double_split) {
2946 BUG_ON(num_doubles != 0);
2947 num_doubles++;
2948 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04002949 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002950 return ret;
2951}
2952
Chris Masond352ac62008-09-29 15:18:18 -04002953/*
Chris Mason459931e2008-12-10 09:10:46 -05002954 * This function splits a single item into two items,
2955 * giving 'new_key' to the new item and splitting the
2956 * old one at split_offset (from the start of the item).
2957 *
2958 * The path may be released by this operation. After
2959 * the split, the path is pointing to the old item. The
2960 * new item is going to be in the same node as the old one.
2961 *
2962 * Note, the item being split must be smaller enough to live alone on
2963 * a tree block with room for one extra struct btrfs_item
2964 *
2965 * This allows us to split the item in place, keeping a lock on the
2966 * leaf the entire time.
2967 */
2968int btrfs_split_item(struct btrfs_trans_handle *trans,
2969 struct btrfs_root *root,
2970 struct btrfs_path *path,
2971 struct btrfs_key *new_key,
2972 unsigned long split_offset)
2973{
2974 u32 item_size;
2975 struct extent_buffer *leaf;
2976 struct btrfs_key orig_key;
2977 struct btrfs_item *item;
2978 struct btrfs_item *new_item;
2979 int ret = 0;
2980 int slot;
2981 u32 nritems;
2982 u32 orig_offset;
2983 struct btrfs_disk_key disk_key;
2984 char *buf;
2985
2986 leaf = path->nodes[0];
2987 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
2988 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
2989 goto split;
2990
2991 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2992 btrfs_release_path(root, path);
2993
2994 path->search_for_split = 1;
2995 path->keep_locks = 1;
2996
2997 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
2998 path->search_for_split = 0;
2999
3000 /* if our item isn't there or got smaller, return now */
3001 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
3002 path->slots[0])) {
3003 path->keep_locks = 0;
3004 return -EAGAIN;
3005 }
3006
Yan Zheng87b29b22008-12-17 10:21:48 -05003007 ret = split_leaf(trans, root, &orig_key, path,
3008 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05003009 path->keep_locks = 0;
3010 BUG_ON(ret);
3011
Chris Masonb4ce94d2009-02-04 09:25:08 -05003012 /*
3013 * make sure any changes to the path from split_leaf leave it
3014 * in a blocking state
3015 */
3016 btrfs_set_path_blocking(path);
3017
Chris Mason459931e2008-12-10 09:10:46 -05003018 leaf = path->nodes[0];
Chris Mason42dc7ba2008-12-15 11:44:56 -05003019 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05003020
3021split:
3022 item = btrfs_item_nr(leaf, path->slots[0]);
3023 orig_offset = btrfs_item_offset(leaf, item);
3024 item_size = btrfs_item_size(leaf, item);
3025
3026
3027 buf = kmalloc(item_size, GFP_NOFS);
3028 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3029 path->slots[0]), item_size);
3030 slot = path->slots[0] + 1;
3031 leaf = path->nodes[0];
3032
3033 nritems = btrfs_header_nritems(leaf);
3034
3035 if (slot != nritems) {
3036 /* shift the items */
3037 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
3038 btrfs_item_nr_offset(slot),
3039 (nritems - slot) * sizeof(struct btrfs_item));
3040
3041 }
3042
3043 btrfs_cpu_key_to_disk(&disk_key, new_key);
3044 btrfs_set_item_key(leaf, &disk_key, slot);
3045
3046 new_item = btrfs_item_nr(leaf, slot);
3047
3048 btrfs_set_item_offset(leaf, new_item, orig_offset);
3049 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3050
3051 btrfs_set_item_offset(leaf, item,
3052 orig_offset + item_size - split_offset);
3053 btrfs_set_item_size(leaf, item, split_offset);
3054
3055 btrfs_set_header_nritems(leaf, nritems + 1);
3056
3057 /* write the data for the start of the original item */
3058 write_extent_buffer(leaf, buf,
3059 btrfs_item_ptr_offset(leaf, path->slots[0]),
3060 split_offset);
3061
3062 /* write the data for the new item */
3063 write_extent_buffer(leaf, buf + split_offset,
3064 btrfs_item_ptr_offset(leaf, slot),
3065 item_size - split_offset);
3066 btrfs_mark_buffer_dirty(leaf);
3067
3068 ret = 0;
3069 if (btrfs_leaf_free_space(root, leaf) < 0) {
3070 btrfs_print_leaf(root, leaf);
3071 BUG();
3072 }
3073 kfree(buf);
3074 return ret;
3075}
3076
3077/*
Chris Masond352ac62008-09-29 15:18:18 -04003078 * make the item pointed to by the path smaller. new_size indicates
3079 * how small to make it, and from_end tells us if we just chop bytes
3080 * off the end of the item or if we shift the item to chop bytes off
3081 * the front.
3082 */
Chris Masonb18c6682007-04-17 13:26:50 -04003083int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3084 struct btrfs_root *root,
3085 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003086 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003087{
3088 int ret = 0;
3089 int slot;
3090 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003091 struct extent_buffer *leaf;
3092 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003093 u32 nritems;
3094 unsigned int data_end;
3095 unsigned int old_data_start;
3096 unsigned int old_size;
3097 unsigned int size_diff;
3098 int i;
3099
3100 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003101 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003102 slot = path->slots[0];
3103
3104 old_size = btrfs_item_size_nr(leaf, slot);
3105 if (old_size == new_size)
3106 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003107
Chris Mason5f39d392007-10-15 16:14:19 -04003108 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003109 data_end = leaf_data_end(root, leaf);
3110
Chris Mason5f39d392007-10-15 16:14:19 -04003111 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003112
Chris Masonb18c6682007-04-17 13:26:50 -04003113 size_diff = old_size - new_size;
3114
3115 BUG_ON(slot < 0);
3116 BUG_ON(slot >= nritems);
3117
3118 /*
3119 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3120 */
3121 /* first correct the data pointers */
3122 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003123 u32 ioff;
3124 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003125
3126 if (!leaf->map_token) {
3127 map_extent_buffer(leaf, (unsigned long)item,
3128 sizeof(struct btrfs_item),
3129 &leaf->map_token, &leaf->kaddr,
3130 &leaf->map_start, &leaf->map_len,
3131 KM_USER1);
3132 }
3133
Chris Mason5f39d392007-10-15 16:14:19 -04003134 ioff = btrfs_item_offset(leaf, item);
3135 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003136 }
Chris Masondb945352007-10-15 16:15:53 -04003137
3138 if (leaf->map_token) {
3139 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3140 leaf->map_token = NULL;
3141 }
3142
Chris Masonb18c6682007-04-17 13:26:50 -04003143 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003144 if (from_end) {
3145 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3146 data_end + size_diff, btrfs_leaf_data(leaf) +
3147 data_end, old_data_start + new_size - data_end);
3148 } else {
3149 struct btrfs_disk_key disk_key;
3150 u64 offset;
3151
3152 btrfs_item_key(leaf, &disk_key, slot);
3153
3154 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3155 unsigned long ptr;
3156 struct btrfs_file_extent_item *fi;
3157
3158 fi = btrfs_item_ptr(leaf, slot,
3159 struct btrfs_file_extent_item);
3160 fi = (struct btrfs_file_extent_item *)(
3161 (unsigned long)fi - size_diff);
3162
3163 if (btrfs_file_extent_type(leaf, fi) ==
3164 BTRFS_FILE_EXTENT_INLINE) {
3165 ptr = btrfs_item_ptr_offset(leaf, slot);
3166 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003167 (unsigned long)fi,
3168 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003169 disk_bytenr));
3170 }
3171 }
3172
3173 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3174 data_end + size_diff, btrfs_leaf_data(leaf) +
3175 data_end, old_data_start - data_end);
3176
3177 offset = btrfs_disk_key_offset(&disk_key);
3178 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3179 btrfs_set_item_key(leaf, &disk_key, slot);
3180 if (slot == 0)
3181 fixup_low_keys(trans, root, path, &disk_key, 1);
3182 }
Chris Mason5f39d392007-10-15 16:14:19 -04003183
3184 item = btrfs_item_nr(leaf, slot);
3185 btrfs_set_item_size(leaf, item, new_size);
3186 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003187
3188 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003189 if (btrfs_leaf_free_space(root, leaf) < 0) {
3190 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003191 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003192 }
Chris Masonb18c6682007-04-17 13:26:50 -04003193 return ret;
3194}
3195
Chris Masond352ac62008-09-29 15:18:18 -04003196/*
3197 * make the item pointed to by the path bigger, data_size is the new size.
3198 */
Chris Mason5f39d392007-10-15 16:14:19 -04003199int btrfs_extend_item(struct btrfs_trans_handle *trans,
3200 struct btrfs_root *root, struct btrfs_path *path,
3201 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003202{
3203 int ret = 0;
3204 int slot;
3205 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003206 struct extent_buffer *leaf;
3207 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003208 u32 nritems;
3209 unsigned int data_end;
3210 unsigned int old_data;
3211 unsigned int old_size;
3212 int i;
3213
3214 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003215 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003216
Chris Mason5f39d392007-10-15 16:14:19 -04003217 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003218 data_end = leaf_data_end(root, leaf);
3219
Chris Mason5f39d392007-10-15 16:14:19 -04003220 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3221 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003222 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003223 }
Chris Mason6567e832007-04-16 09:22:45 -04003224 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003225 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003226
3227 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003228 if (slot >= nritems) {
3229 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003230 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3231 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003232 BUG_ON(1);
3233 }
Chris Mason6567e832007-04-16 09:22:45 -04003234
3235 /*
3236 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3237 */
3238 /* first correct the data pointers */
3239 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003240 u32 ioff;
3241 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003242
3243 if (!leaf->map_token) {
3244 map_extent_buffer(leaf, (unsigned long)item,
3245 sizeof(struct btrfs_item),
3246 &leaf->map_token, &leaf->kaddr,
3247 &leaf->map_start, &leaf->map_len,
3248 KM_USER1);
3249 }
Chris Mason5f39d392007-10-15 16:14:19 -04003250 ioff = btrfs_item_offset(leaf, item);
3251 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003252 }
Chris Mason5f39d392007-10-15 16:14:19 -04003253
Chris Masondb945352007-10-15 16:15:53 -04003254 if (leaf->map_token) {
3255 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3256 leaf->map_token = NULL;
3257 }
3258
Chris Mason6567e832007-04-16 09:22:45 -04003259 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003260 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003261 data_end - data_size, btrfs_leaf_data(leaf) +
3262 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003263
Chris Mason6567e832007-04-16 09:22:45 -04003264 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003265 old_size = btrfs_item_size_nr(leaf, slot);
3266 item = btrfs_item_nr(leaf, slot);
3267 btrfs_set_item_size(leaf, item, old_size + data_size);
3268 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003269
3270 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003271 if (btrfs_leaf_free_space(root, leaf) < 0) {
3272 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003273 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003274 }
Chris Mason6567e832007-04-16 09:22:45 -04003275 return ret;
3276}
3277
Chris Mason74123bd2007-02-02 11:05:29 -05003278/*
Chris Masond352ac62008-09-29 15:18:18 -04003279 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003280 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003281 * Returns the number of keys that were inserted.
3282 */
3283int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3284 struct btrfs_root *root,
3285 struct btrfs_path *path,
3286 struct btrfs_key *cpu_key, u32 *data_size,
3287 int nr)
3288{
3289 struct extent_buffer *leaf;
3290 struct btrfs_item *item;
3291 int ret = 0;
3292 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003293 int i;
3294 u32 nritems;
3295 u32 total_data = 0;
3296 u32 total_size = 0;
3297 unsigned int data_end;
3298 struct btrfs_disk_key disk_key;
3299 struct btrfs_key found_key;
3300
Yan Zheng87b29b22008-12-17 10:21:48 -05003301 for (i = 0; i < nr; i++) {
3302 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3303 BTRFS_LEAF_DATA_SIZE(root)) {
3304 break;
3305 nr = i;
3306 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003307 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003308 total_size += data_size[i] + sizeof(struct btrfs_item);
3309 }
3310 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003311
Josef Bacikf3465ca2008-11-12 14:19:50 -05003312 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3313 if (ret == 0)
3314 return -EEXIST;
3315 if (ret < 0)
3316 goto out;
3317
Josef Bacikf3465ca2008-11-12 14:19:50 -05003318 leaf = path->nodes[0];
3319
3320 nritems = btrfs_header_nritems(leaf);
3321 data_end = leaf_data_end(root, leaf);
3322
3323 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3324 for (i = nr; i >= 0; i--) {
3325 total_data -= data_size[i];
3326 total_size -= data_size[i] + sizeof(struct btrfs_item);
3327 if (total_size < btrfs_leaf_free_space(root, leaf))
3328 break;
3329 }
3330 nr = i;
3331 }
3332
3333 slot = path->slots[0];
3334 BUG_ON(slot < 0);
3335
3336 if (slot != nritems) {
3337 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3338
3339 item = btrfs_item_nr(leaf, slot);
3340 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3341
3342 /* figure out how many keys we can insert in here */
3343 total_data = data_size[0];
3344 for (i = 1; i < nr; i++) {
3345 if (comp_cpu_keys(&found_key, cpu_key + i) <= 0)
3346 break;
3347 total_data += data_size[i];
3348 }
3349 nr = i;
3350
3351 if (old_data < data_end) {
3352 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003353 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003354 slot, old_data, data_end);
3355 BUG_ON(1);
3356 }
3357 /*
3358 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3359 */
3360 /* first correct the data pointers */
3361 WARN_ON(leaf->map_token);
3362 for (i = slot; i < nritems; i++) {
3363 u32 ioff;
3364
3365 item = btrfs_item_nr(leaf, i);
3366 if (!leaf->map_token) {
3367 map_extent_buffer(leaf, (unsigned long)item,
3368 sizeof(struct btrfs_item),
3369 &leaf->map_token, &leaf->kaddr,
3370 &leaf->map_start, &leaf->map_len,
3371 KM_USER1);
3372 }
3373
3374 ioff = btrfs_item_offset(leaf, item);
3375 btrfs_set_item_offset(leaf, item, ioff - total_data);
3376 }
3377 if (leaf->map_token) {
3378 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3379 leaf->map_token = NULL;
3380 }
3381
3382 /* shift the items */
3383 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3384 btrfs_item_nr_offset(slot),
3385 (nritems - slot) * sizeof(struct btrfs_item));
3386
3387 /* shift the data */
3388 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3389 data_end - total_data, btrfs_leaf_data(leaf) +
3390 data_end, old_data - data_end);
3391 data_end = old_data;
3392 } else {
3393 /*
3394 * this sucks but it has to be done, if we are inserting at
3395 * the end of the leaf only insert 1 of the items, since we
3396 * have no way of knowing whats on the next leaf and we'd have
3397 * to drop our current locks to figure it out
3398 */
3399 nr = 1;
3400 }
3401
3402 /* setup the item for the new data */
3403 for (i = 0; i < nr; i++) {
3404 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3405 btrfs_set_item_key(leaf, &disk_key, slot + i);
3406 item = btrfs_item_nr(leaf, slot + i);
3407 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3408 data_end -= data_size[i];
3409 btrfs_set_item_size(leaf, item, data_size[i]);
3410 }
3411 btrfs_set_header_nritems(leaf, nritems + nr);
3412 btrfs_mark_buffer_dirty(leaf);
3413
3414 ret = 0;
3415 if (slot == 0) {
3416 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3417 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3418 }
3419
3420 if (btrfs_leaf_free_space(root, leaf) < 0) {
3421 btrfs_print_leaf(root, leaf);
3422 BUG();
3423 }
3424out:
3425 if (!ret)
3426 ret = nr;
3427 return ret;
3428}
3429
3430/*
3431 * Given a key and some data, insert items into the tree.
3432 * This does all the path init required, making room in the tree if needed.
Chris Mason74123bd2007-02-02 11:05:29 -05003433 */
Chris Mason9c583092008-01-29 15:15:18 -05003434int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003435 struct btrfs_root *root,
3436 struct btrfs_path *path,
Chris Mason9c583092008-01-29 15:15:18 -05003437 struct btrfs_key *cpu_key, u32 *data_size,
3438 int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003439{
Chris Mason5f39d392007-10-15 16:14:19 -04003440 struct extent_buffer *leaf;
3441 struct btrfs_item *item;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003442 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003443 int slot;
Chris Masoneb60cea2007-02-02 09:18:22 -05003444 int slot_orig;
Chris Mason9c583092008-01-29 15:15:18 -05003445 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003446 u32 nritems;
Chris Mason9c583092008-01-29 15:15:18 -05003447 u32 total_size = 0;
3448 u32 total_data = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003449 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003450 struct btrfs_disk_key disk_key;
3451
Chris Masond3977122009-01-05 21:25:51 -05003452 for (i = 0; i < nr; i++)
Chris Mason9c583092008-01-29 15:15:18 -05003453 total_data += data_size[i];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003454
Josef Bacik7b128762008-07-24 12:17:14 -04003455 total_size = total_data + (nr * sizeof(struct btrfs_item));
Chris Mason9c583092008-01-29 15:15:18 -05003456 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003457 if (ret == 0)
Chris Masonf0930a32007-03-02 09:47:58 -05003458 return -EEXIST;
Chris Masoned2ff2c2007-03-01 18:59:40 -05003459 if (ret < 0)
3460 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003461
Chris Mason62e27492007-03-15 12:56:47 -04003462 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003463 leaf = path->nodes[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003464
Chris Mason5f39d392007-10-15 16:14:19 -04003465 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003466 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003467
Chris Masonf25956c2008-09-12 15:32:53 -04003468 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003469 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003470 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003471 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003472 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003473 }
Chris Mason5f39d392007-10-15 16:14:19 -04003474
Chris Mason62e27492007-03-15 12:56:47 -04003475 slot = path->slots[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05003476 BUG_ON(slot < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003477
Chris Masonbe0e5c02007-01-26 15:51:26 -05003478 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003479 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003480
Chris Mason5f39d392007-10-15 16:14:19 -04003481 if (old_data < data_end) {
3482 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003483 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003484 slot, old_data, data_end);
3485 BUG_ON(1);
3486 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003487 /*
3488 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3489 */
3490 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003491 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003492 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003493 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003494
Chris Mason5f39d392007-10-15 16:14:19 -04003495 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003496 if (!leaf->map_token) {
3497 map_extent_buffer(leaf, (unsigned long)item,
3498 sizeof(struct btrfs_item),
3499 &leaf->map_token, &leaf->kaddr,
3500 &leaf->map_start, &leaf->map_len,
3501 KM_USER1);
3502 }
3503
Chris Mason5f39d392007-10-15 16:14:19 -04003504 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003505 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003506 }
Chris Masondb945352007-10-15 16:15:53 -04003507 if (leaf->map_token) {
3508 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3509 leaf->map_token = NULL;
3510 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003511
3512 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003513 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003514 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003515 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003516
3517 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003518 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003519 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003520 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003521 data_end = old_data;
3522 }
Chris Mason5f39d392007-10-15 16:14:19 -04003523
Chris Mason62e27492007-03-15 12:56:47 -04003524 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003525 for (i = 0; i < nr; i++) {
3526 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3527 btrfs_set_item_key(leaf, &disk_key, slot + i);
3528 item = btrfs_item_nr(leaf, slot + i);
3529 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3530 data_end -= data_size[i];
3531 btrfs_set_item_size(leaf, item, data_size[i]);
3532 }
3533 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Mason5f39d392007-10-15 16:14:19 -04003534 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003535
3536 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003537 if (slot == 0) {
3538 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003539 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003540 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003541
Chris Mason5f39d392007-10-15 16:14:19 -04003542 if (btrfs_leaf_free_space(root, leaf) < 0) {
3543 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003544 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003545 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05003546out:
Chris Masonb4ce94d2009-02-04 09:25:08 -05003547 btrfs_unlock_up_safe(path, 1);
Chris Mason62e27492007-03-15 12:56:47 -04003548 return ret;
3549}
3550
3551/*
3552 * Given a key and some data, insert an item into the tree.
3553 * This does all the path init required, making room in the tree if needed.
3554 */
Chris Masone089f052007-03-16 16:20:31 -04003555int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3556 *root, struct btrfs_key *cpu_key, void *data, u32
3557 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003558{
3559 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003560 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003561 struct extent_buffer *leaf;
3562 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003563
Chris Mason2c90e5d2007-04-02 10:50:19 -04003564 path = btrfs_alloc_path();
3565 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003566 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003567 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003568 leaf = path->nodes[0];
3569 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3570 write_extent_buffer(leaf, data, ptr, data_size);
3571 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003572 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003573 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003574 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003575}
3576
Chris Mason74123bd2007-02-02 11:05:29 -05003577/*
Chris Mason5de08d72007-02-24 06:24:44 -05003578 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003579 *
Chris Masond352ac62008-09-29 15:18:18 -04003580 * the tree should have been previously balanced so the deletion does not
3581 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003582 */
Chris Masone089f052007-03-16 16:20:31 -04003583static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3584 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003585{
Chris Mason5f39d392007-10-15 16:14:19 -04003586 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003587 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003588 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003589 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003590
Chris Mason5f39d392007-10-15 16:14:19 -04003591 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003592 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003593 memmove_extent_buffer(parent,
3594 btrfs_node_key_ptr_offset(slot),
3595 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003596 sizeof(struct btrfs_key_ptr) *
3597 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003598 }
Chris Mason7518a232007-03-12 12:01:18 -04003599 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003600 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003601 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003602 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003603 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003604 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003605 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003606 struct btrfs_disk_key disk_key;
3607
3608 btrfs_node_key(parent, &disk_key, 0);
3609 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003610 if (wret)
3611 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003612 }
Chris Masond6025572007-03-30 14:27:56 -04003613 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003614 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003615}
3616
Chris Mason74123bd2007-02-02 11:05:29 -05003617/*
Chris Mason323ac952008-10-01 19:05:46 -04003618 * a helper function to delete the leaf pointed to by path->slots[1] and
3619 * path->nodes[1]. bytenr is the node block pointer, but since the callers
3620 * already know it, it is faster to have them pass it down than to
3621 * read it out of the node again.
3622 *
3623 * This deletes the pointer in path->nodes[1] and frees the leaf
3624 * block extent. zero is returned if it all worked out, < 0 otherwise.
3625 *
3626 * The path must have already been setup for deleting the leaf, including
3627 * all the proper balancing. path->nodes[1] must be locked.
3628 */
3629noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3630 struct btrfs_root *root,
3631 struct btrfs_path *path, u64 bytenr)
3632{
3633 int ret;
3634 u64 root_gen = btrfs_header_generation(path->nodes[1]);
Chris Mason4d081c42009-02-04 09:31:28 -05003635 u64 parent_start = path->nodes[1]->start;
3636 u64 parent_owner = btrfs_header_owner(path->nodes[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003637
3638 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3639 if (ret)
3640 return ret;
3641
Chris Mason4d081c42009-02-04 09:31:28 -05003642 /*
3643 * btrfs_free_extent is expensive, we want to make sure we
3644 * aren't holding any locks when we call it
3645 */
3646 btrfs_unlock_up_safe(path, 0);
3647
Chris Mason323ac952008-10-01 19:05:46 -04003648 ret = btrfs_free_extent(trans, root, bytenr,
3649 btrfs_level_size(root, 0),
Chris Mason4d081c42009-02-04 09:31:28 -05003650 parent_start, parent_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04003651 root_gen, 0, 1);
Chris Mason323ac952008-10-01 19:05:46 -04003652 return ret;
3653}
3654/*
Chris Mason74123bd2007-02-02 11:05:29 -05003655 * delete the item at the leaf level in path. If that empties
3656 * the leaf, remove it from the tree
3657 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003658int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3659 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003660{
Chris Mason5f39d392007-10-15 16:14:19 -04003661 struct extent_buffer *leaf;
3662 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003663 int last_off;
3664 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003665 int ret = 0;
3666 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003667 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003668 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003669
Chris Mason5f39d392007-10-15 16:14:19 -04003670 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003671 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3672
3673 for (i = 0; i < nr; i++)
3674 dsize += btrfs_item_size_nr(leaf, slot + i);
3675
Chris Mason5f39d392007-10-15 16:14:19 -04003676 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003677
Chris Mason85e21ba2008-01-29 15:11:36 -05003678 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003679 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003680
3681 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003682 data_end + dsize,
3683 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003684 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003685
Chris Mason85e21ba2008-01-29 15:11:36 -05003686 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003687 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003688
Chris Mason5f39d392007-10-15 16:14:19 -04003689 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003690 if (!leaf->map_token) {
3691 map_extent_buffer(leaf, (unsigned long)item,
3692 sizeof(struct btrfs_item),
3693 &leaf->map_token, &leaf->kaddr,
3694 &leaf->map_start, &leaf->map_len,
3695 KM_USER1);
3696 }
Chris Mason5f39d392007-10-15 16:14:19 -04003697 ioff = btrfs_item_offset(leaf, item);
3698 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003699 }
Chris Masondb945352007-10-15 16:15:53 -04003700
3701 if (leaf->map_token) {
3702 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3703 leaf->map_token = NULL;
3704 }
3705
Chris Mason5f39d392007-10-15 16:14:19 -04003706 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003707 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003708 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003709 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003710 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003711 btrfs_set_header_nritems(leaf, nritems - nr);
3712 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003713
Chris Mason74123bd2007-02-02 11:05:29 -05003714 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003715 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003716 if (leaf == root->node) {
3717 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003718 } else {
Chris Mason323ac952008-10-01 19:05:46 -04003719 ret = btrfs_del_leaf(trans, root, path, leaf->start);
3720 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003721 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003722 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003723 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003724 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003725 struct btrfs_disk_key disk_key;
3726
3727 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003728 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003729 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003730 if (wret)
3731 ret = wret;
3732 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003733
Chris Mason74123bd2007-02-02 11:05:29 -05003734 /* delete the leaf if it is mostly empty */
Chris Mason85e21ba2008-01-29 15:11:36 -05003735 if (used < BTRFS_LEAF_DATA_SIZE(root) / 4) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003736 /* push_leaf_left fixes the path.
3737 * make sure the path still points to our leaf
3738 * for possible call to del_ptr below
3739 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003740 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003741 extent_buffer_get(leaf);
3742
Chris Mason85e21ba2008-01-29 15:11:36 -05003743 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003744 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003745 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003746
3747 if (path->nodes[0] == leaf &&
3748 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003749 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003750 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003751 ret = wret;
3752 }
Chris Mason5f39d392007-10-15 16:14:19 -04003753
3754 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003755 path->slots[1] = slot;
Chris Masond3977122009-01-05 21:25:51 -05003756 ret = btrfs_del_leaf(trans, root, path,
3757 leaf->start);
Chris Mason323ac952008-10-01 19:05:46 -04003758 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003759 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003760 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003761 /* if we're still in the path, make sure
3762 * we're dirty. Otherwise, one of the
3763 * push_leaf functions must have already
3764 * dirtied this buffer
3765 */
3766 if (path->nodes[0] == leaf)
3767 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003768 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003769 }
Chris Masond5719762007-03-23 10:01:08 -04003770 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003771 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003772 }
3773 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003774 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003775}
3776
Chris Mason97571fd2007-02-24 13:39:08 -05003777/*
Chris Mason925baed2008-06-25 16:01:30 -04003778 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003779 * returns 0 if it found something or 1 if there are no lesser leaves.
3780 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003781 *
3782 * This may release the path, and so you may lose any locks held at the
3783 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003784 */
3785int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3786{
Chris Mason925baed2008-06-25 16:01:30 -04003787 struct btrfs_key key;
3788 struct btrfs_disk_key found_key;
3789 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003790
Chris Mason925baed2008-06-25 16:01:30 -04003791 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003792
Chris Mason925baed2008-06-25 16:01:30 -04003793 if (key.offset > 0)
3794 key.offset--;
3795 else if (key.type > 0)
3796 key.type--;
3797 else if (key.objectid > 0)
3798 key.objectid--;
3799 else
3800 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003801
Chris Mason925baed2008-06-25 16:01:30 -04003802 btrfs_release_path(root, path);
3803 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3804 if (ret < 0)
3805 return ret;
3806 btrfs_item_key(path->nodes[0], &found_key, 0);
3807 ret = comp_keys(&found_key, &key);
3808 if (ret < 0)
3809 return 0;
3810 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003811}
3812
Chris Mason3f157a22008-06-25 16:01:31 -04003813/*
3814 * A helper function to walk down the tree starting at min_key, and looking
3815 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003816 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003817 *
3818 * This does not cow, but it does stuff the starting key it finds back
3819 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3820 * key and get a writable path.
3821 *
3822 * This does lock as it descends, and path->keep_locks should be set
3823 * to 1 by the caller.
3824 *
3825 * This honors path->lowest_level to prevent descent past a given level
3826 * of the tree.
3827 *
Chris Masond352ac62008-09-29 15:18:18 -04003828 * min_trans indicates the oldest transaction that you are interested
3829 * in walking through. Any nodes or leaves older than min_trans are
3830 * skipped over (without reading them).
3831 *
Chris Mason3f157a22008-06-25 16:01:31 -04003832 * returns zero if something useful was found, < 0 on error and 1 if there
3833 * was nothing in the tree that matched the search criteria.
3834 */
3835int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003836 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003837 struct btrfs_path *path, int cache_only,
3838 u64 min_trans)
3839{
3840 struct extent_buffer *cur;
3841 struct btrfs_key found_key;
3842 int slot;
Yan96524802008-07-24 12:19:49 -04003843 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003844 u32 nritems;
3845 int level;
3846 int ret = 1;
3847
Chris Mason934d3752008-12-08 16:43:10 -05003848 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003849again:
3850 cur = btrfs_lock_root_node(root);
3851 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003852 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003853 path->nodes[level] = cur;
3854 path->locks[level] = 1;
3855
3856 if (btrfs_header_generation(cur) < min_trans) {
3857 ret = 1;
3858 goto out;
3859 }
Chris Masond3977122009-01-05 21:25:51 -05003860 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003861 nritems = btrfs_header_nritems(cur);
3862 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003863 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003864
Chris Mason323ac952008-10-01 19:05:46 -04003865 /* at the lowest level, we're done, setup the path and exit */
3866 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003867 if (slot >= nritems)
3868 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003869 ret = 0;
3870 path->slots[level] = slot;
3871 btrfs_item_key_to_cpu(cur, &found_key, slot);
3872 goto out;
3873 }
Yan96524802008-07-24 12:19:49 -04003874 if (sret && slot > 0)
3875 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003876 /*
3877 * check this node pointer against the cache_only and
3878 * min_trans parameters. If it isn't in cache or is too
3879 * old, skip to the next one.
3880 */
Chris Masond3977122009-01-05 21:25:51 -05003881 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003882 u64 blockptr;
3883 u64 gen;
3884 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003885 struct btrfs_disk_key disk_key;
3886
Chris Mason3f157a22008-06-25 16:01:31 -04003887 blockptr = btrfs_node_blockptr(cur, slot);
3888 gen = btrfs_node_ptr_generation(cur, slot);
3889 if (gen < min_trans) {
3890 slot++;
3891 continue;
3892 }
3893 if (!cache_only)
3894 break;
3895
Chris Masone02119d2008-09-05 16:13:11 -04003896 if (max_key) {
3897 btrfs_node_key(cur, &disk_key, slot);
3898 if (comp_keys(&disk_key, max_key) >= 0) {
3899 ret = 1;
3900 goto out;
3901 }
3902 }
3903
Chris Mason3f157a22008-06-25 16:01:31 -04003904 tmp = btrfs_find_tree_block(root, blockptr,
3905 btrfs_level_size(root, level - 1));
3906
3907 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3908 free_extent_buffer(tmp);
3909 break;
3910 }
3911 if (tmp)
3912 free_extent_buffer(tmp);
3913 slot++;
3914 }
Chris Masone02119d2008-09-05 16:13:11 -04003915find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003916 /*
3917 * we didn't find a candidate key in this node, walk forward
3918 * and find another one
3919 */
3920 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003921 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003922 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04003923 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04003924 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04003925 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04003926 btrfs_release_path(root, path);
3927 goto again;
3928 } else {
Chris Masonb4ce94d2009-02-04 09:25:08 -05003929 btrfs_clear_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003930 goto out;
3931 }
3932 }
3933 /* save our key for returning back */
3934 btrfs_node_key_to_cpu(cur, &found_key, slot);
3935 path->slots[level] = slot;
3936 if (level == path->lowest_level) {
3937 ret = 0;
3938 unlock_up(path, level, 1);
3939 goto out;
3940 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05003941 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003942 cur = read_node_slot(root, cur, slot);
3943
3944 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003945
Chris Mason3f157a22008-06-25 16:01:31 -04003946 path->locks[level - 1] = 1;
3947 path->nodes[level - 1] = cur;
3948 unlock_up(path, level, 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003949 btrfs_clear_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003950 }
3951out:
3952 if (ret == 0)
3953 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05003954 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003955 return ret;
3956}
3957
3958/*
3959 * this is similar to btrfs_next_leaf, but does not try to preserve
3960 * and fixup the path. It looks for and returns the next key in the
3961 * tree based on the current path and the cache_only and min_trans
3962 * parameters.
3963 *
3964 * 0 is returned if another key is found, < 0 if there are any errors
3965 * and 1 is returned if there are no higher keys in the tree
3966 *
3967 * path->keep_locks should be set to 1 on the search made before
3968 * calling this function.
3969 */
Chris Masone7a84562008-06-25 16:01:31 -04003970int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04003971 struct btrfs_key *key, int lowest_level,
3972 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04003973{
3974 int level = lowest_level;
3975 int slot;
3976 struct extent_buffer *c;
3977
Chris Mason934d3752008-12-08 16:43:10 -05003978 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05003979 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04003980 if (!path->nodes[level])
3981 return 1;
3982
3983 slot = path->slots[level] + 1;
3984 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04003985next:
Chris Masone7a84562008-06-25 16:01:31 -04003986 if (slot >= btrfs_header_nritems(c)) {
3987 level++;
Chris Masond3977122009-01-05 21:25:51 -05003988 if (level == BTRFS_MAX_LEVEL)
Chris Masone7a84562008-06-25 16:01:31 -04003989 return 1;
Chris Masone7a84562008-06-25 16:01:31 -04003990 continue;
3991 }
3992 if (level == 0)
3993 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003994 else {
3995 u64 blockptr = btrfs_node_blockptr(c, slot);
3996 u64 gen = btrfs_node_ptr_generation(c, slot);
3997
3998 if (cache_only) {
3999 struct extent_buffer *cur;
4000 cur = btrfs_find_tree_block(root, blockptr,
4001 btrfs_level_size(root, level - 1));
4002 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4003 slot++;
4004 if (cur)
4005 free_extent_buffer(cur);
4006 goto next;
4007 }
4008 free_extent_buffer(cur);
4009 }
4010 if (gen < min_trans) {
4011 slot++;
4012 goto next;
4013 }
Chris Masone7a84562008-06-25 16:01:31 -04004014 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004015 }
Chris Masone7a84562008-06-25 16:01:31 -04004016 return 0;
4017 }
4018 return 1;
4019}
4020
Chris Mason7bb86312007-12-11 09:25:06 -05004021/*
Chris Mason925baed2008-06-25 16:01:30 -04004022 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004023 * returns 0 if it found something or 1 if there are no greater leaves.
4024 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004025 */
Chris Mason234b63a2007-03-13 10:46:10 -04004026int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004027{
4028 int slot;
4029 int level = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004030 struct extent_buffer *c;
4031 struct extent_buffer *next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004032 struct btrfs_key key;
4033 u32 nritems;
4034 int ret;
4035
4036 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004037 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004038 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004039
4040 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4041
Chris Mason925baed2008-06-25 16:01:30 -04004042 btrfs_release_path(root, path);
Chris Masona2135012008-06-25 16:01:30 -04004043 path->keep_locks = 1;
Chris Mason925baed2008-06-25 16:01:30 -04004044 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4045 path->keep_locks = 0;
4046
4047 if (ret < 0)
4048 return ret;
4049
Chris Masonb4ce94d2009-02-04 09:25:08 -05004050 btrfs_set_path_blocking(path);
Chris Masona2135012008-06-25 16:01:30 -04004051 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004052 /*
4053 * by releasing the path above we dropped all our locks. A balance
4054 * could have added more items next to the key that used to be
4055 * at the very end of the block. So, check again here and
4056 * advance the path if there are now more items available.
4057 */
Chris Masona2135012008-06-25 16:01:30 -04004058 if (nritems > 0 && path->slots[0] < nritems - 1) {
Chris Mason168fd7d2008-06-25 16:01:30 -04004059 path->slots[0]++;
Chris Mason925baed2008-06-25 16:01:30 -04004060 goto done;
4061 }
Chris Masond97e63b2007-02-20 16:40:44 -05004062
Chris Masond3977122009-01-05 21:25:51 -05004063 while (level < BTRFS_MAX_LEVEL) {
Chris Masond97e63b2007-02-20 16:40:44 -05004064 if (!path->nodes[level])
Chris Mason0f70abe2007-02-28 16:46:22 -05004065 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004066
Chris Masond97e63b2007-02-20 16:40:44 -05004067 slot = path->slots[level] + 1;
4068 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004069 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004070 level++;
Chris Masond3977122009-01-05 21:25:51 -05004071 if (level == BTRFS_MAX_LEVEL)
Chris Mason7bb86312007-12-11 09:25:06 -05004072 return 1;
Chris Masond97e63b2007-02-20 16:40:44 -05004073 continue;
4074 }
Chris Mason5f39d392007-10-15 16:14:19 -04004075
Chris Mason925baed2008-06-25 16:01:30 -04004076 if (next) {
4077 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004078 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004079 }
Chris Mason5f39d392007-10-15 16:14:19 -04004080
Chris Masonb4ce94d2009-02-04 09:25:08 -05004081 /* the path was set to blocking above */
Chris Mason0bd40a72008-07-17 12:54:43 -04004082 if (level == 1 && (path->locks[1] || path->skip_locking) &&
4083 path->reada)
Chris Mason01f46652007-12-21 16:24:26 -05004084 reada_for_search(root, path, level, slot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04004085
Chris Masonca7a79a2008-05-12 12:59:19 -04004086 next = read_node_slot(root, c, slot);
Chris Mason5cd57b22008-06-25 16:01:30 -04004087 if (!path->skip_locking) {
4088 WARN_ON(!btrfs_tree_locked(c));
4089 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004090 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004091 }
Chris Masond97e63b2007-02-20 16:40:44 -05004092 break;
4093 }
4094 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004095 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004096 level--;
4097 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004098 if (path->locks[level])
4099 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04004100 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004101 path->nodes[level] = next;
4102 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004103 if (!path->skip_locking)
4104 path->locks[level] = 1;
Chris Masond97e63b2007-02-20 16:40:44 -05004105 if (!level)
4106 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004107
4108 btrfs_set_path_blocking(path);
Chris Mason925baed2008-06-25 16:01:30 -04004109 if (level == 1 && path->locks[1] && path->reada)
4110 reada_for_search(root, path, level, slot, 0);
Chris Masonca7a79a2008-05-12 12:59:19 -04004111 next = read_node_slot(root, next, 0);
Chris Mason5cd57b22008-06-25 16:01:30 -04004112 if (!path->skip_locking) {
4113 WARN_ON(!btrfs_tree_locked(path->nodes[level]));
4114 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004115 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004116 }
Chris Masond97e63b2007-02-20 16:40:44 -05004117 }
Chris Mason925baed2008-06-25 16:01:30 -04004118done:
4119 unlock_up(path, 0, 1);
Chris Masond97e63b2007-02-20 16:40:44 -05004120 return 0;
4121}
Chris Mason0b86a832008-03-24 15:01:56 -04004122
Chris Mason3f157a22008-06-25 16:01:31 -04004123/*
4124 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4125 * searching until it gets past min_objectid or finds an item of 'type'
4126 *
4127 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4128 */
Chris Mason0b86a832008-03-24 15:01:56 -04004129int btrfs_previous_item(struct btrfs_root *root,
4130 struct btrfs_path *path, u64 min_objectid,
4131 int type)
4132{
4133 struct btrfs_key found_key;
4134 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004135 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004136 int ret;
4137
Chris Masond3977122009-01-05 21:25:51 -05004138 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004139 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004140 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004141 ret = btrfs_prev_leaf(root, path);
4142 if (ret != 0)
4143 return ret;
4144 } else {
4145 path->slots[0]--;
4146 }
4147 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004148 nritems = btrfs_header_nritems(leaf);
4149 if (nritems == 0)
4150 return 1;
4151 if (path->slots[0] == nritems)
4152 path->slots[0]--;
4153
Chris Mason0b86a832008-03-24 15:01:56 -04004154 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4155 if (found_key.type == type)
4156 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004157 if (found_key.objectid < min_objectid)
4158 break;
4159 if (found_key.objectid == min_objectid &&
4160 found_key.type < type)
4161 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004162 }
4163 return 1;
4164}