blob: 0d1e3b91e7bd35e8531001e24c5f536081febd70 [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];
Aneesha1f396302007-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) {
Aneesha1f396302007-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) {
Aneesha1f396302007-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 Masonb4ce94d2009-02-04 09:25:08 -05001521 btrfs_set_path_blocking(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;
1526 }
1527
1528 /*
1529 * for higher level blocks, try not to allocate blocks
1530 * with the block and the parent locks held.
1531 */
1532 if (level > 1 && !prealloc_block.objectid &&
1533 btrfs_path_lock_waiting(p, level)) {
1534 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 Masonbb803952007-03-01 12:04:21 -05001617 } else if (ins_len < 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001618 int sret;
1619
1620 sret = reada_for_balance(root, p, level);
1621 if (sret)
1622 goto again;
1623
1624 btrfs_set_path_blocking(p);
1625 sret = balance_level(trans, root, p, level);
1626 btrfs_clear_path_blocking(p);
1627
Chris Mason65b51a02008-08-01 15:11:20 -04001628 if (sret) {
1629 ret = sret;
1630 goto done;
1631 }
Chris Masonbb803952007-03-01 12:04:21 -05001632 b = p->nodes[level];
Chris Masonf510cfe2007-10-15 16:14:48 -04001633 if (!b) {
1634 btrfs_release_path(NULL, p);
Chris Masonbb803952007-03-01 12:04:21 -05001635 goto again;
Chris Masonf510cfe2007-10-15 16:14:48 -04001636 }
Chris Masonbb803952007-03-01 12:04:21 -05001637 slot = p->slots[level];
Chris Mason5f39d392007-10-15 16:14:19 -04001638 BUG_ON(btrfs_header_nritems(b) == 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05001639 }
Chris Masonf9efa9c2008-06-25 16:14:04 -04001640 unlock_up(p, level, lowest_unlock);
1641
Chris Mason9f3a7422007-08-07 15:52:19 -04001642 /* this is only true while dropping a snapshot */
Chris Mason925baed2008-06-25 16:01:30 -04001643 if (level == lowest_level) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001644 ret = 0;
1645 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001646 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001647
Chris Mason594a24e2008-06-25 16:01:30 -04001648 blocknr = btrfs_node_blockptr(b, slot);
1649 gen = btrfs_node_ptr_generation(b, slot);
1650 blocksize = btrfs_level_size(root, level - 1);
1651
1652 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1653 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason051e1b92008-06-25 16:01:30 -04001654 b = tmp;
1655 } else {
1656 /*
1657 * reduce lock contention at high levels
1658 * of the btree by dropping locks before
1659 * we read.
1660 */
Chris Masonb4ce94d2009-02-04 09:25:08 -05001661 if (level > 0) {
Chris Mason051e1b92008-06-25 16:01:30 -04001662 btrfs_release_path(NULL, p);
1663 if (tmp)
1664 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001665 if (should_reada)
1666 reada_for_search(root, p,
1667 level, slot,
1668 key->objectid);
1669
Chris Mason594a24e2008-06-25 16:01:30 -04001670 tmp = read_tree_block(root, blocknr,
1671 blocksize, gen);
1672 if (tmp)
1673 free_extent_buffer(tmp);
Chris Mason051e1b92008-06-25 16:01:30 -04001674 goto again;
1675 } else {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001676 btrfs_set_path_blocking(p);
Chris Masona74a4b92008-06-25 16:01:31 -04001677 if (tmp)
1678 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001679 if (should_reada)
1680 reada_for_search(root, p,
1681 level, slot,
1682 key->objectid);
Chris Mason051e1b92008-06-25 16:01:30 -04001683 b = read_node_slot(root, b, slot);
1684 }
1685 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05001686 if (!p->skip_locking) {
1687 int lret;
1688
1689 btrfs_clear_path_blocking(p);
1690 lret = btrfs_try_spin_lock(b);
1691
1692 if (!lret) {
1693 btrfs_set_path_blocking(p);
1694 btrfs_tree_lock(b);
1695 btrfs_clear_path_blocking(p);
1696 }
1697 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001698 } else {
1699 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001700 if (ins_len > 0 &&
1701 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05001702 int sret;
1703
1704 btrfs_set_path_blocking(p);
1705 sret = split_leaf(trans, root, key,
Chris Masoncc0c5532007-10-25 15:42:57 -04001706 p, ins_len, ret == 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001707 btrfs_clear_path_blocking(p);
1708
Chris Mason5c680ed2007-02-22 11:39:13 -05001709 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001710 if (sret) {
1711 ret = sret;
1712 goto done;
1713 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001714 }
Chris Mason459931e2008-12-10 09:10:46 -05001715 if (!p->search_for_split)
1716 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001717 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001718 }
1719 }
Chris Mason65b51a02008-08-01 15:11:20 -04001720 ret = 1;
1721done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05001722 /*
1723 * we don't really know what they plan on doing with the path
1724 * from here on, so for now just mark it as blocking
1725 */
1726 btrfs_set_path_blocking(p);
Chris Mason65b51a02008-08-01 15:11:20 -04001727 if (prealloc_block.objectid) {
1728 btrfs_free_reserved_extent(root,
1729 prealloc_block.objectid,
1730 prealloc_block.offset);
1731 }
Chris Mason65b51a02008-08-01 15:11:20 -04001732 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001733}
1734
Zheng Yan1a40e232008-09-26 10:09:34 -04001735int btrfs_merge_path(struct btrfs_trans_handle *trans,
1736 struct btrfs_root *root,
1737 struct btrfs_key *node_keys,
1738 u64 *nodes, int lowest_level)
1739{
1740 struct extent_buffer *eb;
1741 struct extent_buffer *parent;
1742 struct btrfs_key key;
1743 u64 bytenr;
1744 u64 generation;
1745 u32 blocksize;
1746 int level;
1747 int slot;
1748 int key_match;
1749 int ret;
1750
1751 eb = btrfs_lock_root_node(root);
1752 ret = btrfs_cow_block(trans, root, eb, NULL, 0, &eb, 0);
1753 BUG_ON(ret);
1754
Chris Masonb4ce94d2009-02-04 09:25:08 -05001755 btrfs_set_lock_blocking(eb);
1756
Zheng Yan1a40e232008-09-26 10:09:34 -04001757 parent = eb;
1758 while (1) {
1759 level = btrfs_header_level(parent);
1760 if (level == 0 || level <= lowest_level)
1761 break;
1762
1763 ret = bin_search(parent, &node_keys[lowest_level], level,
1764 &slot);
1765 if (ret && slot > 0)
1766 slot--;
1767
1768 bytenr = btrfs_node_blockptr(parent, slot);
1769 if (nodes[level - 1] == bytenr)
1770 break;
1771
1772 blocksize = btrfs_level_size(root, level - 1);
1773 generation = btrfs_node_ptr_generation(parent, slot);
1774 btrfs_node_key_to_cpu(eb, &key, slot);
1775 key_match = !memcmp(&key, &node_keys[level - 1], sizeof(key));
1776
Yan Zhengf82d02d2008-10-29 14:49:05 -04001777 if (generation == trans->transid) {
Zheng Yan1a40e232008-09-26 10:09:34 -04001778 eb = read_tree_block(root, bytenr, blocksize,
1779 generation);
1780 btrfs_tree_lock(eb);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001781 btrfs_set_lock_blocking(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001782 }
1783
1784 /*
1785 * if node keys match and node pointer hasn't been modified
1786 * in the running transaction, we can merge the path. for
1787 * blocks owened by reloc trees, the node pointer check is
1788 * skipped, this is because these blocks are fully controlled
1789 * by the space balance code, no one else can modify them.
1790 */
1791 if (!nodes[level - 1] || !key_match ||
1792 (generation == trans->transid &&
1793 btrfs_header_owner(eb) != BTRFS_TREE_RELOC_OBJECTID)) {
1794 if (level == 1 || level == lowest_level + 1) {
1795 if (generation == trans->transid) {
1796 btrfs_tree_unlock(eb);
1797 free_extent_buffer(eb);
1798 }
1799 break;
1800 }
1801
1802 if (generation != trans->transid) {
1803 eb = read_tree_block(root, bytenr, blocksize,
1804 generation);
1805 btrfs_tree_lock(eb);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001806 btrfs_set_lock_blocking(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001807 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001808
1809 ret = btrfs_cow_block(trans, root, eb, parent, slot,
1810 &eb, 0);
1811 BUG_ON(ret);
1812
Yan Zhengf82d02d2008-10-29 14:49:05 -04001813 if (root->root_key.objectid ==
1814 BTRFS_TREE_RELOC_OBJECTID) {
1815 if (!nodes[level - 1]) {
1816 nodes[level - 1] = eb->start;
1817 memcpy(&node_keys[level - 1], &key,
1818 sizeof(node_keys[0]));
1819 } else {
1820 WARN_ON(1);
1821 }
1822 }
1823
Zheng Yan1a40e232008-09-26 10:09:34 -04001824 btrfs_tree_unlock(parent);
1825 free_extent_buffer(parent);
1826 parent = eb;
1827 continue;
1828 }
1829
Zheng Yan1a40e232008-09-26 10:09:34 -04001830 btrfs_set_node_blockptr(parent, slot, nodes[level - 1]);
1831 btrfs_set_node_ptr_generation(parent, slot, trans->transid);
1832 btrfs_mark_buffer_dirty(parent);
1833
1834 ret = btrfs_inc_extent_ref(trans, root,
1835 nodes[level - 1],
1836 blocksize, parent->start,
1837 btrfs_header_owner(parent),
1838 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001839 level - 1);
Zheng Yan1a40e232008-09-26 10:09:34 -04001840 BUG_ON(ret);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001841
1842 /*
1843 * If the block was created in the running transaction,
1844 * it's possible this is the last reference to it, so we
1845 * should drop the subtree.
1846 */
1847 if (generation == trans->transid) {
1848 ret = btrfs_drop_subtree(trans, root, eb, parent);
1849 BUG_ON(ret);
1850 btrfs_tree_unlock(eb);
1851 free_extent_buffer(eb);
1852 } else {
1853 ret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan1a40e232008-09-26 10:09:34 -04001854 blocksize, parent->start,
1855 btrfs_header_owner(parent),
1856 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001857 level - 1, 1);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001858 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04001859 }
1860 break;
1861 }
1862 btrfs_tree_unlock(parent);
1863 free_extent_buffer(parent);
1864 return 0;
1865}
1866
Chris Mason74123bd2007-02-02 11:05:29 -05001867/*
1868 * adjust the pointers going up the tree, starting at level
1869 * making sure the right key of each node is points to 'key'.
1870 * This is used after shifting pointers to the left, so it stops
1871 * fixing up pointers when a given leaf/node is not in slot 0 of the
1872 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001873 *
1874 * If this fails to write a tree block, it returns -1, but continues
1875 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001876 */
Chris Mason5f39d392007-10-15 16:14:19 -04001877static int fixup_low_keys(struct btrfs_trans_handle *trans,
1878 struct btrfs_root *root, struct btrfs_path *path,
1879 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001880{
1881 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001882 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001883 struct extent_buffer *t;
1884
Chris Mason234b63a2007-03-13 10:46:10 -04001885 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001886 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001887 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001888 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001889 t = path->nodes[i];
1890 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001891 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001892 if (tslot != 0)
1893 break;
1894 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001895 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001896}
1897
Chris Mason74123bd2007-02-02 11:05:29 -05001898/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001899 * update item key.
1900 *
1901 * This function isn't completely safe. It's the caller's responsibility
1902 * that the new key won't break the order
1903 */
1904int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1905 struct btrfs_root *root, struct btrfs_path *path,
1906 struct btrfs_key *new_key)
1907{
1908 struct btrfs_disk_key disk_key;
1909 struct extent_buffer *eb;
1910 int slot;
1911
1912 eb = path->nodes[0];
1913 slot = path->slots[0];
1914 if (slot > 0) {
1915 btrfs_item_key(eb, &disk_key, slot - 1);
1916 if (comp_keys(&disk_key, new_key) >= 0)
1917 return -1;
1918 }
1919 if (slot < btrfs_header_nritems(eb) - 1) {
1920 btrfs_item_key(eb, &disk_key, slot + 1);
1921 if (comp_keys(&disk_key, new_key) <= 0)
1922 return -1;
1923 }
1924
1925 btrfs_cpu_key_to_disk(&disk_key, new_key);
1926 btrfs_set_item_key(eb, &disk_key, slot);
1927 btrfs_mark_buffer_dirty(eb);
1928 if (slot == 0)
1929 fixup_low_keys(trans, root, path, &disk_key, 1);
1930 return 0;
1931}
1932
1933/*
Chris Mason74123bd2007-02-02 11:05:29 -05001934 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001935 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001936 *
1937 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1938 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001939 */
Chris Mason98ed5172008-01-03 10:01:48 -05001940static int push_node_left(struct btrfs_trans_handle *trans,
1941 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001942 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001943{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001944 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001945 int src_nritems;
1946 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001947 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001948
Chris Mason5f39d392007-10-15 16:14:19 -04001949 src_nritems = btrfs_header_nritems(src);
1950 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001951 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001952 WARN_ON(btrfs_header_generation(src) != trans->transid);
1953 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001954
Chris Masonbce4eae2008-04-24 14:42:46 -04001955 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001956 return 1;
1957
Chris Masond3977122009-01-05 21:25:51 -05001958 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001959 return 1;
1960
Chris Masonbce4eae2008-04-24 14:42:46 -04001961 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001962 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001963 if (push_items < src_nritems) {
1964 /* leave at least 8 pointers in the node if
1965 * we aren't going to empty it
1966 */
1967 if (src_nritems - push_items < 8) {
1968 if (push_items <= 8)
1969 return 1;
1970 push_items -= 8;
1971 }
1972 }
1973 } else
1974 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001975
Chris Mason5f39d392007-10-15 16:14:19 -04001976 copy_extent_buffer(dst, src,
1977 btrfs_node_key_ptr_offset(dst_nritems),
1978 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001979 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001980
Chris Masonbb803952007-03-01 12:04:21 -05001981 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001982 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1983 btrfs_node_key_ptr_offset(push_items),
1984 (src_nritems - push_items) *
1985 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001986 }
Chris Mason5f39d392007-10-15 16:14:19 -04001987 btrfs_set_header_nritems(src, src_nritems - push_items);
1988 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1989 btrfs_mark_buffer_dirty(src);
1990 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001991
1992 ret = btrfs_update_ref(trans, root, src, dst, dst_nritems, push_items);
1993 BUG_ON(ret);
1994
Chris Masonbb803952007-03-01 12:04:21 -05001995 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001996}
1997
Chris Mason97571fd2007-02-24 13:39:08 -05001998/*
Chris Mason79f95c82007-03-01 15:16:26 -05001999 * try to push data from one node into the next node right in the
2000 * tree.
2001 *
2002 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
2003 * error, and > 0 if there was no room in the right hand block.
2004 *
2005 * this will only push up to 1/2 the contents of the left node over
2006 */
Chris Mason5f39d392007-10-15 16:14:19 -04002007static int balance_node_right(struct btrfs_trans_handle *trans,
2008 struct btrfs_root *root,
2009 struct extent_buffer *dst,
2010 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05002011{
Chris Mason79f95c82007-03-01 15:16:26 -05002012 int push_items = 0;
2013 int max_push;
2014 int src_nritems;
2015 int dst_nritems;
2016 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05002017
Chris Mason7bb86312007-12-11 09:25:06 -05002018 WARN_ON(btrfs_header_generation(src) != trans->transid);
2019 WARN_ON(btrfs_header_generation(dst) != trans->transid);
2020
Chris Mason5f39d392007-10-15 16:14:19 -04002021 src_nritems = btrfs_header_nritems(src);
2022 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002023 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05002024 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05002025 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04002026
Chris Masond3977122009-01-05 21:25:51 -05002027 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04002028 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05002029
2030 max_push = src_nritems / 2 + 1;
2031 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05002032 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05002033 return 1;
Yan252c38f2007-08-29 09:11:44 -04002034
Chris Mason79f95c82007-03-01 15:16:26 -05002035 if (max_push < push_items)
2036 push_items = max_push;
2037
Chris Mason5f39d392007-10-15 16:14:19 -04002038 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
2039 btrfs_node_key_ptr_offset(0),
2040 (dst_nritems) *
2041 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04002042
Chris Mason5f39d392007-10-15 16:14:19 -04002043 copy_extent_buffer(dst, src,
2044 btrfs_node_key_ptr_offset(0),
2045 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05002046 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05002047
Chris Mason5f39d392007-10-15 16:14:19 -04002048 btrfs_set_header_nritems(src, src_nritems - push_items);
2049 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05002050
Chris Mason5f39d392007-10-15 16:14:19 -04002051 btrfs_mark_buffer_dirty(src);
2052 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04002053
2054 ret = btrfs_update_ref(trans, root, src, dst, 0, push_items);
2055 BUG_ON(ret);
2056
Chris Mason79f95c82007-03-01 15:16:26 -05002057 return ret;
2058}
2059
2060/*
Chris Mason97571fd2007-02-24 13:39:08 -05002061 * helper function to insert a new root level in the tree.
2062 * A new node is allocated, and a single item is inserted to
2063 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05002064 *
2065 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05002066 */
Chris Masond3977122009-01-05 21:25:51 -05002067static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04002068 struct btrfs_root *root,
2069 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05002070{
Chris Mason7bb86312007-12-11 09:25:06 -05002071 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04002072 struct extent_buffer *lower;
2073 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04002074 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04002075 struct btrfs_disk_key lower_key;
Zheng Yan31840ae2008-09-23 13:14:14 -04002076 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05002077
2078 BUG_ON(path->nodes[level]);
2079 BUG_ON(path->nodes[level-1] != root->node);
2080
Chris Mason7bb86312007-12-11 09:25:06 -05002081 lower = path->nodes[level-1];
2082 if (level == 1)
2083 btrfs_item_key(lower, &lower_key, 0);
2084 else
2085 btrfs_node_key(lower, &lower_key, 0);
2086
Zheng Yan31840ae2008-09-23 13:14:14 -04002087 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
2088 root->root_key.objectid, trans->transid,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04002089 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002090 if (IS_ERR(c))
2091 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04002092
Chris Mason5f39d392007-10-15 16:14:19 -04002093 memset_extent_buffer(c, 0, 0, root->nodesize);
2094 btrfs_set_header_nritems(c, 1);
2095 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04002096 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002097 btrfs_set_header_generation(c, trans->transid);
2098 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04002099
Chris Mason5f39d392007-10-15 16:14:19 -04002100 write_extent_buffer(c, root->fs_info->fsid,
2101 (unsigned long)btrfs_header_fsid(c),
2102 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002103
2104 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
2105 (unsigned long)btrfs_header_chunk_tree_uuid(c),
2106 BTRFS_UUID_SIZE);
2107
Chris Mason5f39d392007-10-15 16:14:19 -04002108 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002109 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05002110 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04002111 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002112
2113 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04002114
2115 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04002116
Chris Mason925baed2008-06-25 16:01:30 -04002117 spin_lock(&root->node_lock);
2118 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04002119 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04002120 spin_unlock(&root->node_lock);
2121
Zheng Yan31840ae2008-09-23 13:14:14 -04002122 ret = btrfs_update_extent_ref(trans, root, lower->start,
2123 lower->start, c->start,
2124 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04002125 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04002126 BUG_ON(ret);
2127
Chris Mason925baed2008-06-25 16:01:30 -04002128 /* the super has an extra ref to root->node */
2129 free_extent_buffer(old);
2130
Chris Mason0b86a832008-03-24 15:01:56 -04002131 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002132 extent_buffer_get(c);
2133 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04002134 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05002135 path->slots[level] = 0;
2136 return 0;
2137}
2138
Chris Mason74123bd2007-02-02 11:05:29 -05002139/*
2140 * worker function to insert a single pointer in a node.
2141 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05002142 *
Chris Mason74123bd2007-02-02 11:05:29 -05002143 * slot and level indicate where you want the key to go, and
2144 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002145 *
2146 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05002147 */
Chris Masone089f052007-03-16 16:20:31 -04002148static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
2149 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04002150 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05002151{
Chris Mason5f39d392007-10-15 16:14:19 -04002152 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05002153 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05002154
2155 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04002156 lower = path->nodes[level];
2157 nritems = btrfs_header_nritems(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002158 if (slot > nritems)
2159 BUG();
Chris Mason123abc82007-03-14 14:14:43 -04002160 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05002161 BUG();
2162 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04002163 memmove_extent_buffer(lower,
2164 btrfs_node_key_ptr_offset(slot + 1),
2165 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04002166 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05002167 }
Chris Mason5f39d392007-10-15 16:14:19 -04002168 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04002169 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05002170 WARN_ON(trans->transid == 0);
2171 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002172 btrfs_set_header_nritems(lower, nritems + 1);
2173 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05002174 return 0;
2175}
2176
Chris Mason97571fd2007-02-24 13:39:08 -05002177/*
2178 * split the node at the specified level in path in two.
2179 * The path is corrected to point to the appropriate node after the split
2180 *
2181 * Before splitting this tries to make some room in the node by pushing
2182 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002183 *
2184 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05002185 */
Chris Masone02119d2008-09-05 16:13:11 -04002186static noinline int split_node(struct btrfs_trans_handle *trans,
2187 struct btrfs_root *root,
2188 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002189{
Chris Mason5f39d392007-10-15 16:14:19 -04002190 struct extent_buffer *c;
2191 struct extent_buffer *split;
2192 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002193 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002194 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002195 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002196 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002197
Chris Mason5f39d392007-10-15 16:14:19 -04002198 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002199 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002200 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002201 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002202 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002203 if (ret)
2204 return ret;
Chris Masone66f7092007-04-20 13:16:02 -04002205 } else {
2206 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002207 c = path->nodes[level];
2208 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002209 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002210 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002211 if (ret < 0)
2212 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002213 }
Chris Masone66f7092007-04-20 13:16:02 -04002214
Chris Mason5f39d392007-10-15 16:14:19 -04002215 c_nritems = btrfs_header_nritems(c);
Chris Mason7bb86312007-12-11 09:25:06 -05002216
Chris Mason925baed2008-06-25 16:01:30 -04002217 split = btrfs_alloc_free_block(trans, root, root->nodesize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002218 path->nodes[level + 1]->start,
2219 root->root_key.objectid,
2220 trans->transid, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002221 if (IS_ERR(split))
2222 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002223
Chris Mason5f39d392007-10-15 16:14:19 -04002224 btrfs_set_header_flags(split, btrfs_header_flags(c));
2225 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002226 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002227 btrfs_set_header_generation(split, trans->transid);
2228 btrfs_set_header_owner(split, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -04002229 btrfs_set_header_flags(split, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002230 write_extent_buffer(split, root->fs_info->fsid,
2231 (unsigned long)btrfs_header_fsid(split),
2232 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002233 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2234 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2235 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002236
Chris Mason7518a232007-03-12 12:01:18 -04002237 mid = (c_nritems + 1) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04002238
2239 copy_extent_buffer(split, c,
2240 btrfs_node_key_ptr_offset(0),
2241 btrfs_node_key_ptr_offset(mid),
2242 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2243 btrfs_set_header_nritems(split, c_nritems - mid);
2244 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002245 ret = 0;
2246
Chris Mason5f39d392007-10-15 16:14:19 -04002247 btrfs_mark_buffer_dirty(c);
2248 btrfs_mark_buffer_dirty(split);
2249
2250 btrfs_node_key(split, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002251 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002252 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002253 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002254 if (wret)
2255 ret = wret;
2256
Zheng Yan31840ae2008-09-23 13:14:14 -04002257 ret = btrfs_update_ref(trans, root, c, split, 0, c_nritems - mid);
2258 BUG_ON(ret);
2259
Chris Mason5de08d72007-02-24 06:24:44 -05002260 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002261 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002262 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002263 free_extent_buffer(c);
2264 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002265 path->slots[level + 1] += 1;
2266 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002267 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002268 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002269 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002270 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002271}
2272
Chris Mason74123bd2007-02-02 11:05:29 -05002273/*
2274 * how many bytes are required to store the items in a leaf. start
2275 * and nr indicate which items in the leaf to check. This totals up the
2276 * space used both by the item structs and the item data
2277 */
Chris Mason5f39d392007-10-15 16:14:19 -04002278static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002279{
2280 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002281 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002282 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002283
2284 if (!nr)
2285 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002286 data_len = btrfs_item_end_nr(l, start);
2287 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002288 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002289 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002290 return data_len;
2291}
2292
Chris Mason74123bd2007-02-02 11:05:29 -05002293/*
Chris Masond4dbff92007-04-04 14:08:15 -04002294 * The space between the end of the leaf items and
2295 * the start of the leaf data. IOW, how much room
2296 * the leaf has left for both items and data
2297 */
Chris Masond3977122009-01-05 21:25:51 -05002298noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002299 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002300{
Chris Mason5f39d392007-10-15 16:14:19 -04002301 int nritems = btrfs_header_nritems(leaf);
2302 int ret;
2303 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2304 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002305 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2306 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002307 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002308 leaf_space_used(leaf, 0, nritems), nritems);
2309 }
2310 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002311}
2312
2313/*
Chris Mason00ec4c52007-02-24 12:47:20 -05002314 * push some data in the path leaf to the right, trying to free up at
2315 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Masonaa5d6be2007-02-28 16:35:06 -05002316 *
2317 * returns 1 if the push failed because the other node didn't have enough
2318 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason00ec4c52007-02-24 12:47:20 -05002319 */
Chris Masone089f052007-03-16 16:20:31 -04002320static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason34a38212007-11-07 13:31:03 -05002321 *root, struct btrfs_path *path, int data_size,
2322 int empty)
Chris Mason00ec4c52007-02-24 12:47:20 -05002323{
Chris Mason5f39d392007-10-15 16:14:19 -04002324 struct extent_buffer *left = path->nodes[0];
2325 struct extent_buffer *right;
2326 struct extent_buffer *upper;
2327 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002328 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002329 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002330 int free_space;
2331 int push_space = 0;
2332 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002333 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002334 u32 left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002335 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002336 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002337 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002338 u32 this_item_size;
Chris Mason54aa1f42007-06-22 14:16:25 -04002339 int ret;
Chris Mason00ec4c52007-02-24 12:47:20 -05002340
2341 slot = path->slots[1];
Chris Masond3977122009-01-05 21:25:51 -05002342 if (!path->nodes[1])
Chris Mason00ec4c52007-02-24 12:47:20 -05002343 return 1;
Chris Masond3977122009-01-05 21:25:51 -05002344
Chris Mason00ec4c52007-02-24 12:47:20 -05002345 upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002346 if (slot >= btrfs_header_nritems(upper) - 1)
Chris Mason00ec4c52007-02-24 12:47:20 -05002347 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002348
Chris Masona2135012008-06-25 16:01:30 -04002349 WARN_ON(!btrfs_tree_locked(path->nodes[1]));
2350
Chris Masonca7a79a2008-05-12 12:59:19 -04002351 right = read_node_slot(root, upper, slot + 1);
Chris Mason925baed2008-06-25 16:01:30 -04002352 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002353 btrfs_set_lock_blocking(right);
2354
Chris Mason123abc82007-03-14 14:14:43 -04002355 free_space = btrfs_leaf_free_space(root, right);
Yan Zheng87b29b22008-12-17 10:21:48 -05002356 if (free_space < data_size)
Chris Mason925baed2008-06-25 16:01:30 -04002357 goto out_unlock;
Chris Mason02217ed2007-03-02 16:08:05 -05002358
Chris Mason5f39d392007-10-15 16:14:19 -04002359 /* cow and double check */
2360 ret = btrfs_cow_block(trans, root, right, upper,
Chris Mason65b51a02008-08-01 15:11:20 -04002361 slot + 1, &right, 0);
Chris Mason925baed2008-06-25 16:01:30 -04002362 if (ret)
2363 goto out_unlock;
2364
Chris Mason5f39d392007-10-15 16:14:19 -04002365 free_space = btrfs_leaf_free_space(root, right);
Yan Zheng87b29b22008-12-17 10:21:48 -05002366 if (free_space < data_size)
Chris Mason925baed2008-06-25 16:01:30 -04002367 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002368
2369 left_nritems = btrfs_header_nritems(left);
Chris Mason925baed2008-06-25 16:01:30 -04002370 if (left_nritems == 0)
2371 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002372
Chris Mason34a38212007-11-07 13:31:03 -05002373 if (empty)
2374 nr = 0;
2375 else
2376 nr = 1;
2377
Zheng Yan31840ae2008-09-23 13:14:14 -04002378 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002379 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002380
Chris Mason34a38212007-11-07 13:31:03 -05002381 i = left_nritems - 1;
2382 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002383 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002384
Zheng Yan31840ae2008-09-23 13:14:14 -04002385 if (!empty && push_items > 0) {
2386 if (path->slots[0] > i)
2387 break;
2388 if (path->slots[0] == i) {
2389 int space = btrfs_leaf_free_space(root, left);
2390 if (space + push_space * 2 > free_space)
2391 break;
2392 }
2393 }
2394
Chris Mason00ec4c52007-02-24 12:47:20 -05002395 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002396 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002397
2398 if (!left->map_token) {
2399 map_extent_buffer(left, (unsigned long)item,
2400 sizeof(struct btrfs_item),
2401 &left->map_token, &left->kaddr,
2402 &left->map_start, &left->map_len,
2403 KM_USER1);
2404 }
2405
2406 this_item_size = btrfs_item_size(left, item);
2407 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002408 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002409
Chris Mason00ec4c52007-02-24 12:47:20 -05002410 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002411 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002412 if (i == 0)
2413 break;
2414 i--;
Chris Masondb945352007-10-15 16:15:53 -04002415 }
2416 if (left->map_token) {
2417 unmap_extent_buffer(left, left->map_token, KM_USER1);
2418 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002419 }
Chris Mason5f39d392007-10-15 16:14:19 -04002420
Chris Mason925baed2008-06-25 16:01:30 -04002421 if (push_items == 0)
2422 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002423
Chris Mason34a38212007-11-07 13:31:03 -05002424 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002425 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002426
Chris Mason00ec4c52007-02-24 12:47:20 -05002427 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002428 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002429
Chris Mason5f39d392007-10-15 16:14:19 -04002430 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002431 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002432
Chris Mason00ec4c52007-02-24 12:47:20 -05002433 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002434 data_end = leaf_data_end(root, right);
2435 memmove_extent_buffer(right,
2436 btrfs_leaf_data(right) + data_end - push_space,
2437 btrfs_leaf_data(right) + data_end,
2438 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2439
Chris Mason00ec4c52007-02-24 12:47:20 -05002440 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002441 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002442 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2443 btrfs_leaf_data(left) + leaf_data_end(root, left),
2444 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002445
2446 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2447 btrfs_item_nr_offset(0),
2448 right_nritems * sizeof(struct btrfs_item));
2449
Chris Mason00ec4c52007-02-24 12:47:20 -05002450 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002451 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2452 btrfs_item_nr_offset(left_nritems - push_items),
2453 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002454
2455 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002456 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002457 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002458 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002459 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002460 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002461 if (!right->map_token) {
2462 map_extent_buffer(right, (unsigned long)item,
2463 sizeof(struct btrfs_item),
2464 &right->map_token, &right->kaddr,
2465 &right->map_start, &right->map_len,
2466 KM_USER1);
2467 }
2468 push_space -= btrfs_item_size(right, item);
2469 btrfs_set_item_offset(right, item, push_space);
2470 }
2471
2472 if (right->map_token) {
2473 unmap_extent_buffer(right, right->map_token, KM_USER1);
2474 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002475 }
Chris Mason7518a232007-03-12 12:01:18 -04002476 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002477 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002478
Chris Mason34a38212007-11-07 13:31:03 -05002479 if (left_nritems)
2480 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002481 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002482
Zheng Yan31840ae2008-09-23 13:14:14 -04002483 ret = btrfs_update_ref(trans, root, left, right, 0, push_items);
2484 BUG_ON(ret);
2485
Chris Mason5f39d392007-10-15 16:14:19 -04002486 btrfs_item_key(right, &disk_key, 0);
2487 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002488 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002489
Chris Mason00ec4c52007-02-24 12:47:20 -05002490 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002491 if (path->slots[0] >= left_nritems) {
2492 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002493 if (btrfs_header_nritems(path->nodes[0]) == 0)
2494 clean_tree_block(trans, root, path->nodes[0]);
2495 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002496 free_extent_buffer(path->nodes[0]);
2497 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002498 path->slots[1] += 1;
2499 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002500 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002501 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002502 }
2503 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002504
2505out_unlock:
2506 btrfs_tree_unlock(right);
2507 free_extent_buffer(right);
2508 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002509}
Chris Mason925baed2008-06-25 16:01:30 -04002510
Chris Mason00ec4c52007-02-24 12:47:20 -05002511/*
Chris Mason74123bd2007-02-02 11:05:29 -05002512 * push some data in the path leaf to the left, trying to free up at
2513 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2514 */
Chris Masone089f052007-03-16 16:20:31 -04002515static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason34a38212007-11-07 13:31:03 -05002516 *root, struct btrfs_path *path, int data_size,
2517 int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002518{
Chris Mason5f39d392007-10-15 16:14:19 -04002519 struct btrfs_disk_key disk_key;
2520 struct extent_buffer *right = path->nodes[0];
2521 struct extent_buffer *left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002522 int slot;
2523 int i;
2524 int free_space;
2525 int push_space = 0;
2526 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002527 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002528 u32 old_left_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002529 u32 right_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002530 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002531 int ret = 0;
2532 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002533 u32 this_item_size;
2534 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002535
2536 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002537 if (slot == 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002538 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002539 if (!path->nodes[1])
Chris Masonbe0e5c02007-01-26 15:51:26 -05002540 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002541
Chris Mason3685f792007-10-19 09:23:27 -04002542 right_nritems = btrfs_header_nritems(right);
Chris Masond3977122009-01-05 21:25:51 -05002543 if (right_nritems == 0)
Chris Mason3685f792007-10-19 09:23:27 -04002544 return 1;
Chris Mason3685f792007-10-19 09:23:27 -04002545
Chris Masona2135012008-06-25 16:01:30 -04002546 WARN_ON(!btrfs_tree_locked(path->nodes[1]));
2547
Chris Masonca7a79a2008-05-12 12:59:19 -04002548 left = read_node_slot(root, path->nodes[1], slot - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002549 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002550 btrfs_set_lock_blocking(left);
2551
Chris Mason123abc82007-03-14 14:14:43 -04002552 free_space = btrfs_leaf_free_space(root, left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002553 if (free_space < data_size) {
Chris Mason925baed2008-06-25 16:01:30 -04002554 ret = 1;
2555 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002556 }
Chris Mason02217ed2007-03-02 16:08:05 -05002557
2558 /* cow and double check */
Chris Mason5f39d392007-10-15 16:14:19 -04002559 ret = btrfs_cow_block(trans, root, left,
Chris Mason65b51a02008-08-01 15:11:20 -04002560 path->nodes[1], slot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002561 if (ret) {
2562 /* we hit -ENOSPC, but it isn't fatal here */
Chris Mason925baed2008-06-25 16:01:30 -04002563 ret = 1;
2564 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002565 }
Chris Mason3685f792007-10-19 09:23:27 -04002566
Chris Mason123abc82007-03-14 14:14:43 -04002567 free_space = btrfs_leaf_free_space(root, left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002568 if (free_space < data_size) {
Chris Mason925baed2008-06-25 16:01:30 -04002569 ret = 1;
2570 goto out;
Chris Mason02217ed2007-03-02 16:08:05 -05002571 }
2572
Chris Mason34a38212007-11-07 13:31:03 -05002573 if (empty)
2574 nr = right_nritems;
2575 else
2576 nr = right_nritems - 1;
2577
2578 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002579 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002580 if (!right->map_token) {
2581 map_extent_buffer(right, (unsigned long)item,
2582 sizeof(struct btrfs_item),
2583 &right->map_token, &right->kaddr,
2584 &right->map_start, &right->map_len,
2585 KM_USER1);
2586 }
2587
Zheng Yan31840ae2008-09-23 13:14:14 -04002588 if (!empty && push_items > 0) {
2589 if (path->slots[0] < i)
2590 break;
2591 if (path->slots[0] == i) {
2592 int space = btrfs_leaf_free_space(root, right);
2593 if (space + push_space * 2 > free_space)
2594 break;
2595 }
2596 }
2597
Chris Masonbe0e5c02007-01-26 15:51:26 -05002598 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002599 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002600
2601 this_item_size = btrfs_item_size(right, item);
2602 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002603 break;
Chris Masondb945352007-10-15 16:15:53 -04002604
Chris Masonbe0e5c02007-01-26 15:51:26 -05002605 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002606 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002607 }
Chris Masondb945352007-10-15 16:15:53 -04002608
2609 if (right->map_token) {
2610 unmap_extent_buffer(right, right->map_token, KM_USER1);
2611 right->map_token = NULL;
2612 }
2613
Chris Masonbe0e5c02007-01-26 15:51:26 -05002614 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002615 ret = 1;
2616 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002617 }
Chris Mason34a38212007-11-07 13:31:03 -05002618 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002619 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002620
Chris Masonbe0e5c02007-01-26 15:51:26 -05002621 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002622 copy_extent_buffer(left, right,
2623 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2624 btrfs_item_nr_offset(0),
2625 push_items * sizeof(struct btrfs_item));
2626
Chris Mason123abc82007-03-14 14:14:43 -04002627 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002628 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002629
2630 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002631 leaf_data_end(root, left) - push_space,
2632 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002633 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002634 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002635 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002636 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002637
Chris Masondb945352007-10-15 16:15:53 -04002638 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002639 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002640 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002641
Chris Mason5f39d392007-10-15 16:14:19 -04002642 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002643 if (!left->map_token) {
2644 map_extent_buffer(left, (unsigned long)item,
2645 sizeof(struct btrfs_item),
2646 &left->map_token, &left->kaddr,
2647 &left->map_start, &left->map_len,
2648 KM_USER1);
2649 }
2650
Chris Mason5f39d392007-10-15 16:14:19 -04002651 ioff = btrfs_item_offset(left, item);
2652 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002653 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002654 }
Chris Mason5f39d392007-10-15 16:14:19 -04002655 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002656 if (left->map_token) {
2657 unmap_extent_buffer(left, left->map_token, KM_USER1);
2658 left->map_token = NULL;
2659 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002660
2661 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002662 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002663 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2664 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002665 WARN_ON(1);
2666 }
Chris Mason5f39d392007-10-15 16:14:19 -04002667
Chris Mason34a38212007-11-07 13:31:03 -05002668 if (push_items < right_nritems) {
2669 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2670 leaf_data_end(root, right);
2671 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2672 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2673 btrfs_leaf_data(right) +
2674 leaf_data_end(root, right), push_space);
2675
2676 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002677 btrfs_item_nr_offset(push_items),
2678 (btrfs_header_nritems(right) - push_items) *
2679 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002680 }
Yaneef1c492007-11-26 10:58:13 -05002681 right_nritems -= push_items;
2682 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002683 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002684 for (i = 0; i < right_nritems; i++) {
2685 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002686
2687 if (!right->map_token) {
2688 map_extent_buffer(right, (unsigned long)item,
2689 sizeof(struct btrfs_item),
2690 &right->map_token, &right->kaddr,
2691 &right->map_start, &right->map_len,
2692 KM_USER1);
2693 }
2694
2695 push_space = push_space - btrfs_item_size(right, item);
2696 btrfs_set_item_offset(right, item, push_space);
2697 }
2698 if (right->map_token) {
2699 unmap_extent_buffer(right, right->map_token, KM_USER1);
2700 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002701 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002702
Chris Mason5f39d392007-10-15 16:14:19 -04002703 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002704 if (right_nritems)
2705 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002706
Zheng Yan31840ae2008-09-23 13:14:14 -04002707 ret = btrfs_update_ref(trans, root, right, left,
2708 old_left_nritems, push_items);
2709 BUG_ON(ret);
2710
Chris Mason5f39d392007-10-15 16:14:19 -04002711 btrfs_item_key(right, &disk_key, 0);
2712 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002713 if (wret)
2714 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002715
2716 /* then fixup the leaf pointer in the path */
2717 if (path->slots[0] < push_items) {
2718 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002719 if (btrfs_header_nritems(path->nodes[0]) == 0)
2720 clean_tree_block(trans, root, path->nodes[0]);
2721 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002722 free_extent_buffer(path->nodes[0]);
2723 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002724 path->slots[1] -= 1;
2725 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002726 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002727 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002728 path->slots[0] -= push_items;
2729 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002730 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002731 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002732out:
2733 btrfs_tree_unlock(left);
2734 free_extent_buffer(left);
2735 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002736}
2737
Chris Mason74123bd2007-02-02 11:05:29 -05002738/*
2739 * split the path's leaf in two, making sure there is at least data_size
2740 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002741 *
2742 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002743 */
Chris Masone02119d2008-09-05 16:13:11 -04002744static noinline int split_leaf(struct btrfs_trans_handle *trans,
2745 struct btrfs_root *root,
2746 struct btrfs_key *ins_key,
2747 struct btrfs_path *path, int data_size,
2748 int extend)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002749{
Chris Mason5f39d392007-10-15 16:14:19 -04002750 struct extent_buffer *l;
Chris Mason7518a232007-03-12 12:01:18 -04002751 u32 nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -05002752 int mid;
2753 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04002754 struct extent_buffer *right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002755 int data_copy_size;
2756 int rt_data_off;
2757 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002758 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002759 int wret;
Chris Masoncc0c5532007-10-25 15:42:57 -04002760 int double_split;
2761 int num_doubles = 0;
Chris Masond4dbff92007-04-04 14:08:15 -04002762 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002763
Chris Mason40689472007-03-17 14:29:23 -04002764 /* first try to make some room by pushing left and right */
Chris Mason459931e2008-12-10 09:10:46 -05002765 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
Chris Mason34a38212007-11-07 13:31:03 -05002766 wret = push_leaf_right(trans, root, path, data_size, 0);
Chris Masond3977122009-01-05 21:25:51 -05002767 if (wret < 0)
Chris Masoneaee50e2007-03-13 11:17:52 -04002768 return wret;
Chris Mason3685f792007-10-19 09:23:27 -04002769 if (wret) {
Chris Mason34a38212007-11-07 13:31:03 -05002770 wret = push_leaf_left(trans, root, path, data_size, 0);
Chris Mason3685f792007-10-19 09:23:27 -04002771 if (wret < 0)
2772 return wret;
2773 }
2774 l = path->nodes[0];
Chris Masonaa5d6be2007-02-28 16:35:06 -05002775
Chris Mason3685f792007-10-19 09:23:27 -04002776 /* did the pushes work? */
Yan Zheng87b29b22008-12-17 10:21:48 -05002777 if (btrfs_leaf_free_space(root, l) >= data_size)
Chris Mason3685f792007-10-19 09:23:27 -04002778 return 0;
Chris Mason3326d1b2007-10-15 16:18:25 -04002779 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002780
Chris Mason5c680ed2007-02-22 11:39:13 -05002781 if (!path->nodes[1]) {
Chris Masone089f052007-03-16 16:20:31 -04002782 ret = insert_new_root(trans, root, path, 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002783 if (ret)
2784 return ret;
2785 }
Chris Masoncc0c5532007-10-25 15:42:57 -04002786again:
2787 double_split = 0;
2788 l = path->nodes[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05002789 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04002790 nritems = btrfs_header_nritems(l);
Chris Masond3977122009-01-05 21:25:51 -05002791 mid = (nritems + 1) / 2;
Chris Mason54aa1f42007-06-22 14:16:25 -04002792
Chris Mason925baed2008-06-25 16:01:30 -04002793 right = btrfs_alloc_free_block(trans, root, root->leafsize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002794 path->nodes[1]->start,
2795 root->root_key.objectid,
2796 trans->transid, 0, l->start, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002797 if (IS_ERR(right)) {
2798 BUG_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002799 return PTR_ERR(right);
Chris Masoncea9e442008-04-09 16:28:12 -04002800 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002801
Chris Mason5f39d392007-10-15 16:14:19 -04002802 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
Chris Masondb945352007-10-15 16:15:53 -04002803 btrfs_set_header_bytenr(right, right->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002804 btrfs_set_header_generation(right, trans->transid);
2805 btrfs_set_header_owner(right, root->root_key.objectid);
2806 btrfs_set_header_level(right, 0);
2807 write_extent_buffer(right, root->fs_info->fsid,
2808 (unsigned long)btrfs_header_fsid(right),
2809 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002810
2811 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2812 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2813 BTRFS_UUID_SIZE);
Chris Masond4dbff92007-04-04 14:08:15 -04002814 if (mid <= slot) {
2815 if (nritems == 1 ||
Yan Zheng87b29b22008-12-17 10:21:48 -05002816 leaf_space_used(l, mid, nritems - mid) + data_size >
Chris Masond4dbff92007-04-04 14:08:15 -04002817 BTRFS_LEAF_DATA_SIZE(root)) {
2818 if (slot >= nritems) {
2819 btrfs_cpu_key_to_disk(&disk_key, ins_key);
Chris Mason5f39d392007-10-15 16:14:19 -04002820 btrfs_set_header_nritems(right, 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002821 wret = insert_ptr(trans, root, path,
Chris Masondb945352007-10-15 16:15:53 -04002822 &disk_key, right->start,
Chris Masond4dbff92007-04-04 14:08:15 -04002823 path->slots[1] + 1, 1);
2824 if (wret)
2825 ret = wret;
Chris Mason925baed2008-06-25 16:01:30 -04002826
2827 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002828 free_extent_buffer(path->nodes[0]);
2829 path->nodes[0] = right;
Chris Masond4dbff92007-04-04 14:08:15 -04002830 path->slots[0] = 0;
2831 path->slots[1] += 1;
Chris Mason0ef8b242008-04-03 16:29:02 -04002832 btrfs_mark_buffer_dirty(right);
Chris Masond4dbff92007-04-04 14:08:15 -04002833 return ret;
2834 }
2835 mid = slot;
Chris Mason3326d1b2007-10-15 16:18:25 -04002836 if (mid != nritems &&
2837 leaf_space_used(l, mid, nritems - mid) +
Yan Zheng87b29b22008-12-17 10:21:48 -05002838 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason3326d1b2007-10-15 16:18:25 -04002839 double_split = 1;
2840 }
Chris Masond4dbff92007-04-04 14:08:15 -04002841 }
2842 } else {
Yan Zheng87b29b22008-12-17 10:21:48 -05002843 if (leaf_space_used(l, 0, mid) + data_size >
Chris Masond4dbff92007-04-04 14:08:15 -04002844 BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason459931e2008-12-10 09:10:46 -05002845 if (!extend && data_size && slot == 0) {
Chris Masond4dbff92007-04-04 14:08:15 -04002846 btrfs_cpu_key_to_disk(&disk_key, ins_key);
Chris Mason5f39d392007-10-15 16:14:19 -04002847 btrfs_set_header_nritems(right, 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002848 wret = insert_ptr(trans, root, path,
2849 &disk_key,
Chris Masondb945352007-10-15 16:15:53 -04002850 right->start,
Chris Mason098f59c2007-05-11 11:33:21 -04002851 path->slots[1], 1);
Chris Masond4dbff92007-04-04 14:08:15 -04002852 if (wret)
2853 ret = wret;
Chris Mason925baed2008-06-25 16:01:30 -04002854 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002855 free_extent_buffer(path->nodes[0]);
2856 path->nodes[0] = right;
Chris Masond4dbff92007-04-04 14:08:15 -04002857 path->slots[0] = 0;
Chris Masona429e512007-04-18 16:15:28 -04002858 if (path->slots[1] == 0) {
2859 wret = fixup_low_keys(trans, root,
Chris Masond3977122009-01-05 21:25:51 -05002860 path, &disk_key, 1);
Chris Masona429e512007-04-18 16:15:28 -04002861 if (wret)
2862 ret = wret;
2863 }
Chris Mason0ef8b242008-04-03 16:29:02 -04002864 btrfs_mark_buffer_dirty(right);
Chris Masond4dbff92007-04-04 14:08:15 -04002865 return ret;
Chris Mason459931e2008-12-10 09:10:46 -05002866 } else if ((extend || !data_size) && slot == 0) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002867 mid = 1;
2868 } else {
2869 mid = slot;
2870 if (mid != nritems &&
2871 leaf_space_used(l, mid, nritems - mid) +
Yan Zheng87b29b22008-12-17 10:21:48 -05002872 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002873 double_split = 1;
2874 }
Chris Mason5ee78ac2007-10-19 14:01:21 -04002875 }
Chris Masond4dbff92007-04-04 14:08:15 -04002876 }
2877 }
Chris Mason5f39d392007-10-15 16:14:19 -04002878 nritems = nritems - mid;
2879 btrfs_set_header_nritems(right, nritems);
2880 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2881
2882 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2883 btrfs_item_nr_offset(mid),
2884 nritems * sizeof(struct btrfs_item));
2885
2886 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002887 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2888 data_copy_size, btrfs_leaf_data(l) +
2889 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002890
Chris Mason5f39d392007-10-15 16:14:19 -04002891 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2892 btrfs_item_end_nr(l, mid);
2893
2894 for (i = 0; i < nritems; i++) {
2895 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002896 u32 ioff;
2897
2898 if (!right->map_token) {
2899 map_extent_buffer(right, (unsigned long)item,
2900 sizeof(struct btrfs_item),
2901 &right->map_token, &right->kaddr,
2902 &right->map_start, &right->map_len,
2903 KM_USER1);
2904 }
2905
2906 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002907 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002908 }
Chris Mason74123bd2007-02-02 11:05:29 -05002909
Chris Masondb945352007-10-15 16:15:53 -04002910 if (right->map_token) {
2911 unmap_extent_buffer(right, right->map_token, KM_USER1);
2912 right->map_token = NULL;
2913 }
2914
Chris Mason5f39d392007-10-15 16:14:19 -04002915 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002916 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002917 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002918 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2919 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002920 if (wret)
2921 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002922
2923 btrfs_mark_buffer_dirty(right);
2924 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002925 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002926
Zheng Yan31840ae2008-09-23 13:14:14 -04002927 ret = btrfs_update_ref(trans, root, l, right, 0, nritems);
2928 BUG_ON(ret);
2929
Chris Masonbe0e5c02007-01-26 15:51:26 -05002930 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002931 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002932 free_extent_buffer(path->nodes[0]);
2933 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002934 path->slots[0] -= mid;
2935 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002936 } else {
2937 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002938 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002939 }
Chris Mason5f39d392007-10-15 16:14:19 -04002940
Chris Masoneb60cea2007-02-02 09:18:22 -05002941 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002942
Chris Masoncc0c5532007-10-25 15:42:57 -04002943 if (double_split) {
2944 BUG_ON(num_doubles != 0);
2945 num_doubles++;
2946 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04002947 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002948 return ret;
2949}
2950
Chris Masond352ac62008-09-29 15:18:18 -04002951/*
Chris Mason459931e2008-12-10 09:10:46 -05002952 * This function splits a single item into two items,
2953 * giving 'new_key' to the new item and splitting the
2954 * old one at split_offset (from the start of the item).
2955 *
2956 * The path may be released by this operation. After
2957 * the split, the path is pointing to the old item. The
2958 * new item is going to be in the same node as the old one.
2959 *
2960 * Note, the item being split must be smaller enough to live alone on
2961 * a tree block with room for one extra struct btrfs_item
2962 *
2963 * This allows us to split the item in place, keeping a lock on the
2964 * leaf the entire time.
2965 */
2966int btrfs_split_item(struct btrfs_trans_handle *trans,
2967 struct btrfs_root *root,
2968 struct btrfs_path *path,
2969 struct btrfs_key *new_key,
2970 unsigned long split_offset)
2971{
2972 u32 item_size;
2973 struct extent_buffer *leaf;
2974 struct btrfs_key orig_key;
2975 struct btrfs_item *item;
2976 struct btrfs_item *new_item;
2977 int ret = 0;
2978 int slot;
2979 u32 nritems;
2980 u32 orig_offset;
2981 struct btrfs_disk_key disk_key;
2982 char *buf;
2983
2984 leaf = path->nodes[0];
2985 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
2986 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
2987 goto split;
2988
2989 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2990 btrfs_release_path(root, path);
2991
2992 path->search_for_split = 1;
2993 path->keep_locks = 1;
2994
2995 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
2996 path->search_for_split = 0;
2997
2998 /* if our item isn't there or got smaller, return now */
2999 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
3000 path->slots[0])) {
3001 path->keep_locks = 0;
3002 return -EAGAIN;
3003 }
3004
Yan Zheng87b29b22008-12-17 10:21:48 -05003005 ret = split_leaf(trans, root, &orig_key, path,
3006 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05003007 path->keep_locks = 0;
3008 BUG_ON(ret);
3009
Chris Masonb4ce94d2009-02-04 09:25:08 -05003010 /*
3011 * make sure any changes to the path from split_leaf leave it
3012 * in a blocking state
3013 */
3014 btrfs_set_path_blocking(path);
3015
Chris Mason459931e2008-12-10 09:10:46 -05003016 leaf = path->nodes[0];
Chris Mason42dc7ba2008-12-15 11:44:56 -05003017 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05003018
3019split:
3020 item = btrfs_item_nr(leaf, path->slots[0]);
3021 orig_offset = btrfs_item_offset(leaf, item);
3022 item_size = btrfs_item_size(leaf, item);
3023
3024
3025 buf = kmalloc(item_size, GFP_NOFS);
3026 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
3027 path->slots[0]), item_size);
3028 slot = path->slots[0] + 1;
3029 leaf = path->nodes[0];
3030
3031 nritems = btrfs_header_nritems(leaf);
3032
3033 if (slot != nritems) {
3034 /* shift the items */
3035 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
3036 btrfs_item_nr_offset(slot),
3037 (nritems - slot) * sizeof(struct btrfs_item));
3038
3039 }
3040
3041 btrfs_cpu_key_to_disk(&disk_key, new_key);
3042 btrfs_set_item_key(leaf, &disk_key, slot);
3043
3044 new_item = btrfs_item_nr(leaf, slot);
3045
3046 btrfs_set_item_offset(leaf, new_item, orig_offset);
3047 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
3048
3049 btrfs_set_item_offset(leaf, item,
3050 orig_offset + item_size - split_offset);
3051 btrfs_set_item_size(leaf, item, split_offset);
3052
3053 btrfs_set_header_nritems(leaf, nritems + 1);
3054
3055 /* write the data for the start of the original item */
3056 write_extent_buffer(leaf, buf,
3057 btrfs_item_ptr_offset(leaf, path->slots[0]),
3058 split_offset);
3059
3060 /* write the data for the new item */
3061 write_extent_buffer(leaf, buf + split_offset,
3062 btrfs_item_ptr_offset(leaf, slot),
3063 item_size - split_offset);
3064 btrfs_mark_buffer_dirty(leaf);
3065
3066 ret = 0;
3067 if (btrfs_leaf_free_space(root, leaf) < 0) {
3068 btrfs_print_leaf(root, leaf);
3069 BUG();
3070 }
3071 kfree(buf);
3072 return ret;
3073}
3074
3075/*
Chris Masond352ac62008-09-29 15:18:18 -04003076 * make the item pointed to by the path smaller. new_size indicates
3077 * how small to make it, and from_end tells us if we just chop bytes
3078 * off the end of the item or if we shift the item to chop bytes off
3079 * the front.
3080 */
Chris Masonb18c6682007-04-17 13:26:50 -04003081int btrfs_truncate_item(struct btrfs_trans_handle *trans,
3082 struct btrfs_root *root,
3083 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04003084 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04003085{
3086 int ret = 0;
3087 int slot;
3088 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003089 struct extent_buffer *leaf;
3090 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04003091 u32 nritems;
3092 unsigned int data_end;
3093 unsigned int old_data_start;
3094 unsigned int old_size;
3095 unsigned int size_diff;
3096 int i;
3097
3098 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003099 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04003100 slot = path->slots[0];
3101
3102 old_size = btrfs_item_size_nr(leaf, slot);
3103 if (old_size == new_size)
3104 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04003105
Chris Mason5f39d392007-10-15 16:14:19 -04003106 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003107 data_end = leaf_data_end(root, leaf);
3108
Chris Mason5f39d392007-10-15 16:14:19 -04003109 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04003110
Chris Masonb18c6682007-04-17 13:26:50 -04003111 size_diff = old_size - new_size;
3112
3113 BUG_ON(slot < 0);
3114 BUG_ON(slot >= nritems);
3115
3116 /*
3117 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3118 */
3119 /* first correct the data pointers */
3120 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003121 u32 ioff;
3122 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003123
3124 if (!leaf->map_token) {
3125 map_extent_buffer(leaf, (unsigned long)item,
3126 sizeof(struct btrfs_item),
3127 &leaf->map_token, &leaf->kaddr,
3128 &leaf->map_start, &leaf->map_len,
3129 KM_USER1);
3130 }
3131
Chris Mason5f39d392007-10-15 16:14:19 -04003132 ioff = btrfs_item_offset(leaf, item);
3133 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04003134 }
Chris Masondb945352007-10-15 16:15:53 -04003135
3136 if (leaf->map_token) {
3137 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3138 leaf->map_token = NULL;
3139 }
3140
Chris Masonb18c6682007-04-17 13:26:50 -04003141 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04003142 if (from_end) {
3143 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3144 data_end + size_diff, btrfs_leaf_data(leaf) +
3145 data_end, old_data_start + new_size - data_end);
3146 } else {
3147 struct btrfs_disk_key disk_key;
3148 u64 offset;
3149
3150 btrfs_item_key(leaf, &disk_key, slot);
3151
3152 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
3153 unsigned long ptr;
3154 struct btrfs_file_extent_item *fi;
3155
3156 fi = btrfs_item_ptr(leaf, slot,
3157 struct btrfs_file_extent_item);
3158 fi = (struct btrfs_file_extent_item *)(
3159 (unsigned long)fi - size_diff);
3160
3161 if (btrfs_file_extent_type(leaf, fi) ==
3162 BTRFS_FILE_EXTENT_INLINE) {
3163 ptr = btrfs_item_ptr_offset(leaf, slot);
3164 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05003165 (unsigned long)fi,
3166 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04003167 disk_bytenr));
3168 }
3169 }
3170
3171 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3172 data_end + size_diff, btrfs_leaf_data(leaf) +
3173 data_end, old_data_start - data_end);
3174
3175 offset = btrfs_disk_key_offset(&disk_key);
3176 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
3177 btrfs_set_item_key(leaf, &disk_key, slot);
3178 if (slot == 0)
3179 fixup_low_keys(trans, root, path, &disk_key, 1);
3180 }
Chris Mason5f39d392007-10-15 16:14:19 -04003181
3182 item = btrfs_item_nr(leaf, slot);
3183 btrfs_set_item_size(leaf, item, new_size);
3184 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003185
3186 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003187 if (btrfs_leaf_free_space(root, leaf) < 0) {
3188 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04003189 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003190 }
Chris Masonb18c6682007-04-17 13:26:50 -04003191 return ret;
3192}
3193
Chris Masond352ac62008-09-29 15:18:18 -04003194/*
3195 * make the item pointed to by the path bigger, data_size is the new size.
3196 */
Chris Mason5f39d392007-10-15 16:14:19 -04003197int btrfs_extend_item(struct btrfs_trans_handle *trans,
3198 struct btrfs_root *root, struct btrfs_path *path,
3199 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003200{
3201 int ret = 0;
3202 int slot;
3203 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003204 struct extent_buffer *leaf;
3205 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003206 u32 nritems;
3207 unsigned int data_end;
3208 unsigned int old_data;
3209 unsigned int old_size;
3210 int i;
3211
3212 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003213 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003214
Chris Mason5f39d392007-10-15 16:14:19 -04003215 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003216 data_end = leaf_data_end(root, leaf);
3217
Chris Mason5f39d392007-10-15 16:14:19 -04003218 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3219 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003220 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003221 }
Chris Mason6567e832007-04-16 09:22:45 -04003222 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003223 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003224
3225 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003226 if (slot >= nritems) {
3227 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003228 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3229 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003230 BUG_ON(1);
3231 }
Chris Mason6567e832007-04-16 09:22:45 -04003232
3233 /*
3234 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3235 */
3236 /* first correct the data pointers */
3237 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003238 u32 ioff;
3239 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003240
3241 if (!leaf->map_token) {
3242 map_extent_buffer(leaf, (unsigned long)item,
3243 sizeof(struct btrfs_item),
3244 &leaf->map_token, &leaf->kaddr,
3245 &leaf->map_start, &leaf->map_len,
3246 KM_USER1);
3247 }
Chris Mason5f39d392007-10-15 16:14:19 -04003248 ioff = btrfs_item_offset(leaf, item);
3249 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003250 }
Chris Mason5f39d392007-10-15 16:14:19 -04003251
Chris Masondb945352007-10-15 16:15:53 -04003252 if (leaf->map_token) {
3253 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3254 leaf->map_token = NULL;
3255 }
3256
Chris Mason6567e832007-04-16 09:22:45 -04003257 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003258 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003259 data_end - data_size, btrfs_leaf_data(leaf) +
3260 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003261
Chris Mason6567e832007-04-16 09:22:45 -04003262 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003263 old_size = btrfs_item_size_nr(leaf, slot);
3264 item = btrfs_item_nr(leaf, slot);
3265 btrfs_set_item_size(leaf, item, old_size + data_size);
3266 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003267
3268 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003269 if (btrfs_leaf_free_space(root, leaf) < 0) {
3270 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003271 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003272 }
Chris Mason6567e832007-04-16 09:22:45 -04003273 return ret;
3274}
3275
Chris Mason74123bd2007-02-02 11:05:29 -05003276/*
Chris Masond352ac62008-09-29 15:18:18 -04003277 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003278 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003279 * Returns the number of keys that were inserted.
3280 */
3281int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3282 struct btrfs_root *root,
3283 struct btrfs_path *path,
3284 struct btrfs_key *cpu_key, u32 *data_size,
3285 int nr)
3286{
3287 struct extent_buffer *leaf;
3288 struct btrfs_item *item;
3289 int ret = 0;
3290 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003291 int i;
3292 u32 nritems;
3293 u32 total_data = 0;
3294 u32 total_size = 0;
3295 unsigned int data_end;
3296 struct btrfs_disk_key disk_key;
3297 struct btrfs_key found_key;
3298
Yan Zheng87b29b22008-12-17 10:21:48 -05003299 for (i = 0; i < nr; i++) {
3300 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3301 BTRFS_LEAF_DATA_SIZE(root)) {
3302 break;
3303 nr = i;
3304 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003305 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003306 total_size += data_size[i] + sizeof(struct btrfs_item);
3307 }
3308 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003309
Josef Bacikf3465ca2008-11-12 14:19:50 -05003310 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3311 if (ret == 0)
3312 return -EEXIST;
3313 if (ret < 0)
3314 goto out;
3315
Josef Bacikf3465ca2008-11-12 14:19:50 -05003316 leaf = path->nodes[0];
3317
3318 nritems = btrfs_header_nritems(leaf);
3319 data_end = leaf_data_end(root, leaf);
3320
3321 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3322 for (i = nr; i >= 0; i--) {
3323 total_data -= data_size[i];
3324 total_size -= data_size[i] + sizeof(struct btrfs_item);
3325 if (total_size < btrfs_leaf_free_space(root, leaf))
3326 break;
3327 }
3328 nr = i;
3329 }
3330
3331 slot = path->slots[0];
3332 BUG_ON(slot < 0);
3333
3334 if (slot != nritems) {
3335 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3336
3337 item = btrfs_item_nr(leaf, slot);
3338 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3339
3340 /* figure out how many keys we can insert in here */
3341 total_data = data_size[0];
3342 for (i = 1; i < nr; i++) {
3343 if (comp_cpu_keys(&found_key, cpu_key + i) <= 0)
3344 break;
3345 total_data += data_size[i];
3346 }
3347 nr = i;
3348
3349 if (old_data < data_end) {
3350 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003351 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003352 slot, old_data, data_end);
3353 BUG_ON(1);
3354 }
3355 /*
3356 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3357 */
3358 /* first correct the data pointers */
3359 WARN_ON(leaf->map_token);
3360 for (i = slot; i < nritems; i++) {
3361 u32 ioff;
3362
3363 item = btrfs_item_nr(leaf, i);
3364 if (!leaf->map_token) {
3365 map_extent_buffer(leaf, (unsigned long)item,
3366 sizeof(struct btrfs_item),
3367 &leaf->map_token, &leaf->kaddr,
3368 &leaf->map_start, &leaf->map_len,
3369 KM_USER1);
3370 }
3371
3372 ioff = btrfs_item_offset(leaf, item);
3373 btrfs_set_item_offset(leaf, item, ioff - total_data);
3374 }
3375 if (leaf->map_token) {
3376 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3377 leaf->map_token = NULL;
3378 }
3379
3380 /* shift the items */
3381 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3382 btrfs_item_nr_offset(slot),
3383 (nritems - slot) * sizeof(struct btrfs_item));
3384
3385 /* shift the data */
3386 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3387 data_end - total_data, btrfs_leaf_data(leaf) +
3388 data_end, old_data - data_end);
3389 data_end = old_data;
3390 } else {
3391 /*
3392 * this sucks but it has to be done, if we are inserting at
3393 * the end of the leaf only insert 1 of the items, since we
3394 * have no way of knowing whats on the next leaf and we'd have
3395 * to drop our current locks to figure it out
3396 */
3397 nr = 1;
3398 }
3399
3400 /* setup the item for the new data */
3401 for (i = 0; i < nr; i++) {
3402 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3403 btrfs_set_item_key(leaf, &disk_key, slot + i);
3404 item = btrfs_item_nr(leaf, slot + i);
3405 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3406 data_end -= data_size[i];
3407 btrfs_set_item_size(leaf, item, data_size[i]);
3408 }
3409 btrfs_set_header_nritems(leaf, nritems + nr);
3410 btrfs_mark_buffer_dirty(leaf);
3411
3412 ret = 0;
3413 if (slot == 0) {
3414 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3415 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3416 }
3417
3418 if (btrfs_leaf_free_space(root, leaf) < 0) {
3419 btrfs_print_leaf(root, leaf);
3420 BUG();
3421 }
3422out:
3423 if (!ret)
3424 ret = nr;
3425 return ret;
3426}
3427
3428/*
3429 * Given a key and some data, insert items into the tree.
3430 * This does all the path init required, making room in the tree if needed.
Chris Mason74123bd2007-02-02 11:05:29 -05003431 */
Chris Mason9c583092008-01-29 15:15:18 -05003432int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003433 struct btrfs_root *root,
3434 struct btrfs_path *path,
Chris Mason9c583092008-01-29 15:15:18 -05003435 struct btrfs_key *cpu_key, u32 *data_size,
3436 int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003437{
Chris Mason5f39d392007-10-15 16:14:19 -04003438 struct extent_buffer *leaf;
3439 struct btrfs_item *item;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003440 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003441 int slot;
Chris Masoneb60cea2007-02-02 09:18:22 -05003442 int slot_orig;
Chris Mason9c583092008-01-29 15:15:18 -05003443 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003444 u32 nritems;
Chris Mason9c583092008-01-29 15:15:18 -05003445 u32 total_size = 0;
3446 u32 total_data = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003447 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003448 struct btrfs_disk_key disk_key;
3449
Chris Masond3977122009-01-05 21:25:51 -05003450 for (i = 0; i < nr; i++)
Chris Mason9c583092008-01-29 15:15:18 -05003451 total_data += data_size[i];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003452
Josef Bacik7b128762008-07-24 12:17:14 -04003453 total_size = total_data + (nr * sizeof(struct btrfs_item));
Chris Mason9c583092008-01-29 15:15:18 -05003454 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003455 if (ret == 0)
Chris Masonf0930a32007-03-02 09:47:58 -05003456 return -EEXIST;
Chris Masoned2ff2c2007-03-01 18:59:40 -05003457 if (ret < 0)
3458 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003459
Chris Mason62e27492007-03-15 12:56:47 -04003460 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003461 leaf = path->nodes[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003462
Chris Mason5f39d392007-10-15 16:14:19 -04003463 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003464 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003465
Chris Masonf25956c2008-09-12 15:32:53 -04003466 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003467 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003468 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003469 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003470 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003471 }
Chris Mason5f39d392007-10-15 16:14:19 -04003472
Chris Mason62e27492007-03-15 12:56:47 -04003473 slot = path->slots[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05003474 BUG_ON(slot < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003475
Chris Masonbe0e5c02007-01-26 15:51:26 -05003476 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003477 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003478
Chris Mason5f39d392007-10-15 16:14:19 -04003479 if (old_data < data_end) {
3480 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003481 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003482 slot, old_data, data_end);
3483 BUG_ON(1);
3484 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003485 /*
3486 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3487 */
3488 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003489 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003490 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003491 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003492
Chris Mason5f39d392007-10-15 16:14:19 -04003493 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003494 if (!leaf->map_token) {
3495 map_extent_buffer(leaf, (unsigned long)item,
3496 sizeof(struct btrfs_item),
3497 &leaf->map_token, &leaf->kaddr,
3498 &leaf->map_start, &leaf->map_len,
3499 KM_USER1);
3500 }
3501
Chris Mason5f39d392007-10-15 16:14:19 -04003502 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003503 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003504 }
Chris Masondb945352007-10-15 16:15:53 -04003505 if (leaf->map_token) {
3506 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3507 leaf->map_token = NULL;
3508 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003509
3510 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003511 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003512 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003513 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003514
3515 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003516 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003517 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003518 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003519 data_end = old_data;
3520 }
Chris Mason5f39d392007-10-15 16:14:19 -04003521
Chris Mason62e27492007-03-15 12:56:47 -04003522 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003523 for (i = 0; i < nr; i++) {
3524 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3525 btrfs_set_item_key(leaf, &disk_key, slot + i);
3526 item = btrfs_item_nr(leaf, slot + i);
3527 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3528 data_end -= data_size[i];
3529 btrfs_set_item_size(leaf, item, data_size[i]);
3530 }
3531 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Mason5f39d392007-10-15 16:14:19 -04003532 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003533
3534 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003535 if (slot == 0) {
3536 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003537 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003538 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003539
Chris Mason5f39d392007-10-15 16:14:19 -04003540 if (btrfs_leaf_free_space(root, leaf) < 0) {
3541 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003542 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003543 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05003544out:
Chris Masonb4ce94d2009-02-04 09:25:08 -05003545 btrfs_unlock_up_safe(path, 1);
Chris Mason62e27492007-03-15 12:56:47 -04003546 return ret;
3547}
3548
3549/*
3550 * Given a key and some data, insert an item into the tree.
3551 * This does all the path init required, making room in the tree if needed.
3552 */
Chris Masone089f052007-03-16 16:20:31 -04003553int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3554 *root, struct btrfs_key *cpu_key, void *data, u32
3555 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003556{
3557 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003558 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003559 struct extent_buffer *leaf;
3560 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003561
Chris Mason2c90e5d2007-04-02 10:50:19 -04003562 path = btrfs_alloc_path();
3563 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003564 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003565 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003566 leaf = path->nodes[0];
3567 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3568 write_extent_buffer(leaf, data, ptr, data_size);
3569 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003570 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003571 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003572 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003573}
3574
Chris Mason74123bd2007-02-02 11:05:29 -05003575/*
Chris Mason5de08d72007-02-24 06:24:44 -05003576 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003577 *
Chris Masond352ac62008-09-29 15:18:18 -04003578 * the tree should have been previously balanced so the deletion does not
3579 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003580 */
Chris Masone089f052007-03-16 16:20:31 -04003581static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3582 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003583{
Chris Mason5f39d392007-10-15 16:14:19 -04003584 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003585 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003586 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003587 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003588
Chris Mason5f39d392007-10-15 16:14:19 -04003589 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003590 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003591 memmove_extent_buffer(parent,
3592 btrfs_node_key_ptr_offset(slot),
3593 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003594 sizeof(struct btrfs_key_ptr) *
3595 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003596 }
Chris Mason7518a232007-03-12 12:01:18 -04003597 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003598 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003599 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003600 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003601 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003602 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003603 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003604 struct btrfs_disk_key disk_key;
3605
3606 btrfs_node_key(parent, &disk_key, 0);
3607 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003608 if (wret)
3609 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003610 }
Chris Masond6025572007-03-30 14:27:56 -04003611 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003612 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003613}
3614
Chris Mason74123bd2007-02-02 11:05:29 -05003615/*
Chris Mason323ac952008-10-01 19:05:46 -04003616 * a helper function to delete the leaf pointed to by path->slots[1] and
3617 * path->nodes[1]. bytenr is the node block pointer, but since the callers
3618 * already know it, it is faster to have them pass it down than to
3619 * read it out of the node again.
3620 *
3621 * This deletes the pointer in path->nodes[1] and frees the leaf
3622 * block extent. zero is returned if it all worked out, < 0 otherwise.
3623 *
3624 * The path must have already been setup for deleting the leaf, including
3625 * all the proper balancing. path->nodes[1] must be locked.
3626 */
3627noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3628 struct btrfs_root *root,
3629 struct btrfs_path *path, u64 bytenr)
3630{
3631 int ret;
3632 u64 root_gen = btrfs_header_generation(path->nodes[1]);
Chris Mason4d081c42009-02-04 09:31:28 -05003633 u64 parent_start = path->nodes[1]->start;
3634 u64 parent_owner = btrfs_header_owner(path->nodes[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003635
3636 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3637 if (ret)
3638 return ret;
3639
Chris Mason4d081c42009-02-04 09:31:28 -05003640 /*
3641 * btrfs_free_extent is expensive, we want to make sure we
3642 * aren't holding any locks when we call it
3643 */
3644 btrfs_unlock_up_safe(path, 0);
3645
Chris Mason323ac952008-10-01 19:05:46 -04003646 ret = btrfs_free_extent(trans, root, bytenr,
3647 btrfs_level_size(root, 0),
Chris Mason4d081c42009-02-04 09:31:28 -05003648 parent_start, parent_owner,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04003649 root_gen, 0, 1);
Chris Mason323ac952008-10-01 19:05:46 -04003650 return ret;
3651}
3652/*
Chris Mason74123bd2007-02-02 11:05:29 -05003653 * delete the item at the leaf level in path. If that empties
3654 * the leaf, remove it from the tree
3655 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003656int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3657 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003658{
Chris Mason5f39d392007-10-15 16:14:19 -04003659 struct extent_buffer *leaf;
3660 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003661 int last_off;
3662 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003663 int ret = 0;
3664 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003665 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003666 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003667
Chris Mason5f39d392007-10-15 16:14:19 -04003668 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003669 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3670
3671 for (i = 0; i < nr; i++)
3672 dsize += btrfs_item_size_nr(leaf, slot + i);
3673
Chris Mason5f39d392007-10-15 16:14:19 -04003674 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003675
Chris Mason85e21ba2008-01-29 15:11:36 -05003676 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003677 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003678
3679 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003680 data_end + dsize,
3681 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003682 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003683
Chris Mason85e21ba2008-01-29 15:11:36 -05003684 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003685 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003686
Chris Mason5f39d392007-10-15 16:14:19 -04003687 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003688 if (!leaf->map_token) {
3689 map_extent_buffer(leaf, (unsigned long)item,
3690 sizeof(struct btrfs_item),
3691 &leaf->map_token, &leaf->kaddr,
3692 &leaf->map_start, &leaf->map_len,
3693 KM_USER1);
3694 }
Chris Mason5f39d392007-10-15 16:14:19 -04003695 ioff = btrfs_item_offset(leaf, item);
3696 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003697 }
Chris Masondb945352007-10-15 16:15:53 -04003698
3699 if (leaf->map_token) {
3700 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3701 leaf->map_token = NULL;
3702 }
3703
Chris Mason5f39d392007-10-15 16:14:19 -04003704 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003705 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003706 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003707 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003708 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003709 btrfs_set_header_nritems(leaf, nritems - nr);
3710 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003711
Chris Mason74123bd2007-02-02 11:05:29 -05003712 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003713 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003714 if (leaf == root->node) {
3715 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003716 } else {
Chris Mason323ac952008-10-01 19:05:46 -04003717 ret = btrfs_del_leaf(trans, root, path, leaf->start);
3718 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003719 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003720 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003721 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003722 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003723 struct btrfs_disk_key disk_key;
3724
3725 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003726 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003727 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003728 if (wret)
3729 ret = wret;
3730 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003731
Chris Mason74123bd2007-02-02 11:05:29 -05003732 /* delete the leaf if it is mostly empty */
Chris Mason85e21ba2008-01-29 15:11:36 -05003733 if (used < BTRFS_LEAF_DATA_SIZE(root) / 4) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003734 /* push_leaf_left fixes the path.
3735 * make sure the path still points to our leaf
3736 * for possible call to del_ptr below
3737 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003738 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003739 extent_buffer_get(leaf);
3740
Chris Mason85e21ba2008-01-29 15:11:36 -05003741 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003742 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003743 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003744
3745 if (path->nodes[0] == leaf &&
3746 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003747 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003748 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003749 ret = wret;
3750 }
Chris Mason5f39d392007-10-15 16:14:19 -04003751
3752 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003753 path->slots[1] = slot;
Chris Masond3977122009-01-05 21:25:51 -05003754 ret = btrfs_del_leaf(trans, root, path,
3755 leaf->start);
Chris Mason323ac952008-10-01 19:05:46 -04003756 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003757 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003758 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003759 /* if we're still in the path, make sure
3760 * we're dirty. Otherwise, one of the
3761 * push_leaf functions must have already
3762 * dirtied this buffer
3763 */
3764 if (path->nodes[0] == leaf)
3765 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003766 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003767 }
Chris Masond5719762007-03-23 10:01:08 -04003768 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003769 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003770 }
3771 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003772 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003773}
3774
Chris Mason97571fd2007-02-24 13:39:08 -05003775/*
Chris Mason925baed2008-06-25 16:01:30 -04003776 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003777 * returns 0 if it found something or 1 if there are no lesser leaves.
3778 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003779 *
3780 * This may release the path, and so you may lose any locks held at the
3781 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003782 */
3783int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3784{
Chris Mason925baed2008-06-25 16:01:30 -04003785 struct btrfs_key key;
3786 struct btrfs_disk_key found_key;
3787 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003788
Chris Mason925baed2008-06-25 16:01:30 -04003789 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003790
Chris Mason925baed2008-06-25 16:01:30 -04003791 if (key.offset > 0)
3792 key.offset--;
3793 else if (key.type > 0)
3794 key.type--;
3795 else if (key.objectid > 0)
3796 key.objectid--;
3797 else
3798 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003799
Chris Mason925baed2008-06-25 16:01:30 -04003800 btrfs_release_path(root, path);
3801 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3802 if (ret < 0)
3803 return ret;
3804 btrfs_item_key(path->nodes[0], &found_key, 0);
3805 ret = comp_keys(&found_key, &key);
3806 if (ret < 0)
3807 return 0;
3808 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003809}
3810
Chris Mason3f157a22008-06-25 16:01:31 -04003811/*
3812 * A helper function to walk down the tree starting at min_key, and looking
3813 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003814 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003815 *
3816 * This does not cow, but it does stuff the starting key it finds back
3817 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3818 * key and get a writable path.
3819 *
3820 * This does lock as it descends, and path->keep_locks should be set
3821 * to 1 by the caller.
3822 *
3823 * This honors path->lowest_level to prevent descent past a given level
3824 * of the tree.
3825 *
Chris Masond352ac62008-09-29 15:18:18 -04003826 * min_trans indicates the oldest transaction that you are interested
3827 * in walking through. Any nodes or leaves older than min_trans are
3828 * skipped over (without reading them).
3829 *
Chris Mason3f157a22008-06-25 16:01:31 -04003830 * returns zero if something useful was found, < 0 on error and 1 if there
3831 * was nothing in the tree that matched the search criteria.
3832 */
3833int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003834 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003835 struct btrfs_path *path, int cache_only,
3836 u64 min_trans)
3837{
3838 struct extent_buffer *cur;
3839 struct btrfs_key found_key;
3840 int slot;
Yan96524802008-07-24 12:19:49 -04003841 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003842 u32 nritems;
3843 int level;
3844 int ret = 1;
3845
Chris Mason934d3752008-12-08 16:43:10 -05003846 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003847again:
3848 cur = btrfs_lock_root_node(root);
3849 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003850 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003851 path->nodes[level] = cur;
3852 path->locks[level] = 1;
3853
3854 if (btrfs_header_generation(cur) < min_trans) {
3855 ret = 1;
3856 goto out;
3857 }
Chris Masond3977122009-01-05 21:25:51 -05003858 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003859 nritems = btrfs_header_nritems(cur);
3860 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003861 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003862
Chris Mason323ac952008-10-01 19:05:46 -04003863 /* at the lowest level, we're done, setup the path and exit */
3864 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003865 if (slot >= nritems)
3866 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003867 ret = 0;
3868 path->slots[level] = slot;
3869 btrfs_item_key_to_cpu(cur, &found_key, slot);
3870 goto out;
3871 }
Yan96524802008-07-24 12:19:49 -04003872 if (sret && slot > 0)
3873 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003874 /*
3875 * check this node pointer against the cache_only and
3876 * min_trans parameters. If it isn't in cache or is too
3877 * old, skip to the next one.
3878 */
Chris Masond3977122009-01-05 21:25:51 -05003879 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003880 u64 blockptr;
3881 u64 gen;
3882 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003883 struct btrfs_disk_key disk_key;
3884
Chris Mason3f157a22008-06-25 16:01:31 -04003885 blockptr = btrfs_node_blockptr(cur, slot);
3886 gen = btrfs_node_ptr_generation(cur, slot);
3887 if (gen < min_trans) {
3888 slot++;
3889 continue;
3890 }
3891 if (!cache_only)
3892 break;
3893
Chris Masone02119d2008-09-05 16:13:11 -04003894 if (max_key) {
3895 btrfs_node_key(cur, &disk_key, slot);
3896 if (comp_keys(&disk_key, max_key) >= 0) {
3897 ret = 1;
3898 goto out;
3899 }
3900 }
3901
Chris Mason3f157a22008-06-25 16:01:31 -04003902 tmp = btrfs_find_tree_block(root, blockptr,
3903 btrfs_level_size(root, level - 1));
3904
3905 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3906 free_extent_buffer(tmp);
3907 break;
3908 }
3909 if (tmp)
3910 free_extent_buffer(tmp);
3911 slot++;
3912 }
Chris Masone02119d2008-09-05 16:13:11 -04003913find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003914 /*
3915 * we didn't find a candidate key in this node, walk forward
3916 * and find another one
3917 */
3918 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003919 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003920 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04003921 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04003922 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04003923 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04003924 btrfs_release_path(root, path);
3925 goto again;
3926 } else {
Chris Masonb4ce94d2009-02-04 09:25:08 -05003927 btrfs_clear_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003928 goto out;
3929 }
3930 }
3931 /* save our key for returning back */
3932 btrfs_node_key_to_cpu(cur, &found_key, slot);
3933 path->slots[level] = slot;
3934 if (level == path->lowest_level) {
3935 ret = 0;
3936 unlock_up(path, level, 1);
3937 goto out;
3938 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05003939 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003940 cur = read_node_slot(root, cur, slot);
3941
3942 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003943
Chris Mason3f157a22008-06-25 16:01:31 -04003944 path->locks[level - 1] = 1;
3945 path->nodes[level - 1] = cur;
3946 unlock_up(path, level, 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003947 btrfs_clear_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003948 }
3949out:
3950 if (ret == 0)
3951 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05003952 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04003953 return ret;
3954}
3955
3956/*
3957 * this is similar to btrfs_next_leaf, but does not try to preserve
3958 * and fixup the path. It looks for and returns the next key in the
3959 * tree based on the current path and the cache_only and min_trans
3960 * parameters.
3961 *
3962 * 0 is returned if another key is found, < 0 if there are any errors
3963 * and 1 is returned if there are no higher keys in the tree
3964 *
3965 * path->keep_locks should be set to 1 on the search made before
3966 * calling this function.
3967 */
Chris Masone7a84562008-06-25 16:01:31 -04003968int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04003969 struct btrfs_key *key, int lowest_level,
3970 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04003971{
3972 int level = lowest_level;
3973 int slot;
3974 struct extent_buffer *c;
3975
Chris Mason934d3752008-12-08 16:43:10 -05003976 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05003977 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04003978 if (!path->nodes[level])
3979 return 1;
3980
3981 slot = path->slots[level] + 1;
3982 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04003983next:
Chris Masone7a84562008-06-25 16:01:31 -04003984 if (slot >= btrfs_header_nritems(c)) {
3985 level++;
Chris Masond3977122009-01-05 21:25:51 -05003986 if (level == BTRFS_MAX_LEVEL)
Chris Masone7a84562008-06-25 16:01:31 -04003987 return 1;
Chris Masone7a84562008-06-25 16:01:31 -04003988 continue;
3989 }
3990 if (level == 0)
3991 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003992 else {
3993 u64 blockptr = btrfs_node_blockptr(c, slot);
3994 u64 gen = btrfs_node_ptr_generation(c, slot);
3995
3996 if (cache_only) {
3997 struct extent_buffer *cur;
3998 cur = btrfs_find_tree_block(root, blockptr,
3999 btrfs_level_size(root, level - 1));
4000 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
4001 slot++;
4002 if (cur)
4003 free_extent_buffer(cur);
4004 goto next;
4005 }
4006 free_extent_buffer(cur);
4007 }
4008 if (gen < min_trans) {
4009 slot++;
4010 goto next;
4011 }
Chris Masone7a84562008-06-25 16:01:31 -04004012 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004013 }
Chris Masone7a84562008-06-25 16:01:31 -04004014 return 0;
4015 }
4016 return 1;
4017}
4018
Chris Mason7bb86312007-12-11 09:25:06 -05004019/*
Chris Mason925baed2008-06-25 16:01:30 -04004020 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05004021 * returns 0 if it found something or 1 if there are no greater leaves.
4022 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05004023 */
Chris Mason234b63a2007-03-13 10:46:10 -04004024int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05004025{
4026 int slot;
4027 int level = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004028 struct extent_buffer *c;
4029 struct extent_buffer *next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04004030 struct btrfs_key key;
4031 u32 nritems;
4032 int ret;
4033
4034 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05004035 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04004036 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04004037
4038 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
4039
Chris Mason925baed2008-06-25 16:01:30 -04004040 btrfs_release_path(root, path);
Chris Masona2135012008-06-25 16:01:30 -04004041 path->keep_locks = 1;
Chris Mason925baed2008-06-25 16:01:30 -04004042 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4043 path->keep_locks = 0;
4044
4045 if (ret < 0)
4046 return ret;
4047
Chris Masonb4ce94d2009-02-04 09:25:08 -05004048 btrfs_set_path_blocking(path);
Chris Masona2135012008-06-25 16:01:30 -04004049 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04004050 /*
4051 * by releasing the path above we dropped all our locks. A balance
4052 * could have added more items next to the key that used to be
4053 * at the very end of the block. So, check again here and
4054 * advance the path if there are now more items available.
4055 */
Chris Masona2135012008-06-25 16:01:30 -04004056 if (nritems > 0 && path->slots[0] < nritems - 1) {
Chris Mason168fd7d2008-06-25 16:01:30 -04004057 path->slots[0]++;
Chris Mason925baed2008-06-25 16:01:30 -04004058 goto done;
4059 }
Chris Masond97e63b2007-02-20 16:40:44 -05004060
Chris Masond3977122009-01-05 21:25:51 -05004061 while (level < BTRFS_MAX_LEVEL) {
Chris Masond97e63b2007-02-20 16:40:44 -05004062 if (!path->nodes[level])
Chris Mason0f70abe2007-02-28 16:46:22 -05004063 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004064
Chris Masond97e63b2007-02-20 16:40:44 -05004065 slot = path->slots[level] + 1;
4066 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04004067 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05004068 level++;
Chris Masond3977122009-01-05 21:25:51 -05004069 if (level == BTRFS_MAX_LEVEL)
Chris Mason7bb86312007-12-11 09:25:06 -05004070 return 1;
Chris Masond97e63b2007-02-20 16:40:44 -05004071 continue;
4072 }
Chris Mason5f39d392007-10-15 16:14:19 -04004073
Chris Mason925baed2008-06-25 16:01:30 -04004074 if (next) {
4075 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04004076 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04004077 }
Chris Mason5f39d392007-10-15 16:14:19 -04004078
Chris Masonb4ce94d2009-02-04 09:25:08 -05004079 /* the path was set to blocking above */
Chris Mason0bd40a72008-07-17 12:54:43 -04004080 if (level == 1 && (path->locks[1] || path->skip_locking) &&
4081 path->reada)
Chris Mason01f46652007-12-21 16:24:26 -05004082 reada_for_search(root, path, level, slot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04004083
Chris Masonca7a79a2008-05-12 12:59:19 -04004084 next = read_node_slot(root, c, slot);
Chris Mason5cd57b22008-06-25 16:01:30 -04004085 if (!path->skip_locking) {
4086 WARN_ON(!btrfs_tree_locked(c));
4087 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004088 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004089 }
Chris Masond97e63b2007-02-20 16:40:44 -05004090 break;
4091 }
4092 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05004093 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05004094 level--;
4095 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04004096 if (path->locks[level])
4097 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04004098 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05004099 path->nodes[level] = next;
4100 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04004101 if (!path->skip_locking)
4102 path->locks[level] = 1;
Chris Masond97e63b2007-02-20 16:40:44 -05004103 if (!level)
4104 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004105
4106 btrfs_set_path_blocking(path);
Chris Mason925baed2008-06-25 16:01:30 -04004107 if (level == 1 && path->locks[1] && path->reada)
4108 reada_for_search(root, path, level, slot, 0);
Chris Masonca7a79a2008-05-12 12:59:19 -04004109 next = read_node_slot(root, next, 0);
Chris Mason5cd57b22008-06-25 16:01:30 -04004110 if (!path->skip_locking) {
4111 WARN_ON(!btrfs_tree_locked(path->nodes[level]));
4112 btrfs_tree_lock(next);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004113 btrfs_set_lock_blocking(next);
Chris Mason5cd57b22008-06-25 16:01:30 -04004114 }
Chris Masond97e63b2007-02-20 16:40:44 -05004115 }
Chris Mason925baed2008-06-25 16:01:30 -04004116done:
4117 unlock_up(path, 0, 1);
Chris Masond97e63b2007-02-20 16:40:44 -05004118 return 0;
4119}
Chris Mason0b86a832008-03-24 15:01:56 -04004120
Chris Mason3f157a22008-06-25 16:01:31 -04004121/*
4122 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
4123 * searching until it gets past min_objectid or finds an item of 'type'
4124 *
4125 * returns 0 if something is found, 1 if nothing was found and < 0 on error
4126 */
Chris Mason0b86a832008-03-24 15:01:56 -04004127int btrfs_previous_item(struct btrfs_root *root,
4128 struct btrfs_path *path, u64 min_objectid,
4129 int type)
4130{
4131 struct btrfs_key found_key;
4132 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04004133 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04004134 int ret;
4135
Chris Masond3977122009-01-05 21:25:51 -05004136 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04004137 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05004138 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04004139 ret = btrfs_prev_leaf(root, path);
4140 if (ret != 0)
4141 return ret;
4142 } else {
4143 path->slots[0]--;
4144 }
4145 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04004146 nritems = btrfs_header_nritems(leaf);
4147 if (nritems == 0)
4148 return 1;
4149 if (path->slots[0] == nritems)
4150 path->slots[0]--;
4151
Chris Mason0b86a832008-03-24 15:01:56 -04004152 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4153 if (found_key.type == type)
4154 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04004155 if (found_key.objectid < min_objectid)
4156 break;
4157 if (found_key.objectid == min_objectid &&
4158 found_key.type < type)
4159 break;
Chris Mason0b86a832008-03-24 15:01:56 -04004160 }
4161 return 1;
4162}