blob: 2603ee539b7ae100f0677ffbe9bd6ebc392652e4 [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 Masond352ac62008-09-29 15:18:18 -040057/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -040058void btrfs_free_path(struct btrfs_path *p)
59{
Chris Masondf24a2b2007-04-04 09:36:31 -040060 btrfs_release_path(NULL, p);
Chris Mason2c90e5d2007-04-02 10:50:19 -040061 kmem_cache_free(btrfs_path_cachep, p);
62}
63
Chris Masond352ac62008-09-29 15:18:18 -040064/*
65 * path release drops references on the extent buffers in the path
66 * and it drops any locks held by this path
67 *
68 * It is safe to call this on paths that no locks or extent buffers held.
69 */
Chris Masond3977122009-01-05 21:25:51 -050070noinline void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -050071{
72 int i;
Chris Masona2135012008-06-25 16:01:30 -040073
Chris Mason234b63a2007-03-13 10:46:10 -040074 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -040075 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050076 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -040077 continue;
78 if (p->locks[i]) {
79 btrfs_tree_unlock(p->nodes[i]);
80 p->locks[i] = 0;
81 }
Chris Mason5f39d392007-10-15 16:14:19 -040082 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -040083 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -050084 }
85}
86
Chris Masond352ac62008-09-29 15:18:18 -040087/*
88 * safely gets a reference on the root node of a tree. A lock
89 * is not taken, so a concurrent writer may put a different node
90 * at the root of the tree. See btrfs_lock_root_node for the
91 * looping required.
92 *
93 * The extent buffer returned by this has a reference taken, so
94 * it won't disappear. It may stop being the root of the tree
95 * at any time because there are no locks held.
96 */
Chris Mason925baed2008-06-25 16:01:30 -040097struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
98{
99 struct extent_buffer *eb;
100 spin_lock(&root->node_lock);
101 eb = root->node;
102 extent_buffer_get(eb);
103 spin_unlock(&root->node_lock);
104 return eb;
105}
106
Chris Masond352ac62008-09-29 15:18:18 -0400107/* loop around taking references on and locking the root node of the
108 * tree until you end up with a lock on the root. A locked buffer
109 * is returned, with a reference held.
110 */
Chris Mason925baed2008-06-25 16:01:30 -0400111struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
112{
113 struct extent_buffer *eb;
114
Chris Masond3977122009-01-05 21:25:51 -0500115 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400116 eb = btrfs_root_node(root);
117 btrfs_tree_lock(eb);
118
119 spin_lock(&root->node_lock);
120 if (eb == root->node) {
121 spin_unlock(&root->node_lock);
122 break;
123 }
124 spin_unlock(&root->node_lock);
125
126 btrfs_tree_unlock(eb);
127 free_extent_buffer(eb);
128 }
129 return eb;
130}
131
Chris Masond352ac62008-09-29 15:18:18 -0400132/* cowonly root (everything not a reference counted cow subvolume), just get
133 * put onto a simple dirty list. transaction.c walks this to make sure they
134 * get properly updated on disk.
135 */
Chris Mason0b86a832008-03-24 15:01:56 -0400136static void add_root_to_dirty_list(struct btrfs_root *root)
137{
138 if (root->track_dirty && list_empty(&root->dirty_list)) {
139 list_add(&root->dirty_list,
140 &root->fs_info->dirty_cowonly_roots);
141 }
142}
143
Chris Masond352ac62008-09-29 15:18:18 -0400144/*
145 * used by snapshot creation to make a copy of a root for a tree with
146 * a given objectid. The buffer with the new root node is returned in
147 * cow_ret, and this func returns zero on success or a negative error code.
148 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500149int btrfs_copy_root(struct btrfs_trans_handle *trans,
150 struct btrfs_root *root,
151 struct extent_buffer *buf,
152 struct extent_buffer **cow_ret, u64 new_root_objectid)
153{
154 struct extent_buffer *cow;
155 u32 nritems;
156 int ret = 0;
157 int level;
Chris Mason4aec2b52007-12-18 16:25:45 -0500158 struct btrfs_root *new_root;
Chris Masonbe20aa92007-12-17 20:14:01 -0500159
Chris Mason4aec2b52007-12-18 16:25:45 -0500160 new_root = kmalloc(sizeof(*new_root), GFP_NOFS);
161 if (!new_root)
162 return -ENOMEM;
163
164 memcpy(new_root, root, sizeof(*new_root));
165 new_root->root_key.objectid = new_root_objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500166
167 WARN_ON(root->ref_cows && trans->transid !=
168 root->fs_info->running_transaction->transid);
169 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
170
171 level = btrfs_header_level(buf);
172 nritems = btrfs_header_nritems(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400173
174 cow = btrfs_alloc_free_block(trans, new_root, buf->len, 0,
175 new_root_objectid, trans->transid,
176 level, buf->start, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500177 if (IS_ERR(cow)) {
178 kfree(new_root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500179 return PTR_ERR(cow);
Chris Mason4aec2b52007-12-18 16:25:45 -0500180 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500181
182 copy_extent_buffer(cow, buf, 0, 0, cow->len);
183 btrfs_set_header_bytenr(cow, cow->start);
184 btrfs_set_header_generation(cow, trans->transid);
185 btrfs_set_header_owner(cow, new_root_objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -0400186 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN);
Chris Masonbe20aa92007-12-17 20:14:01 -0500187
Yan Zheng2b820322008-11-17 21:11:30 -0500188 write_extent_buffer(cow, root->fs_info->fsid,
189 (unsigned long)btrfs_header_fsid(cow),
190 BTRFS_FSID_SIZE);
191
Chris Masonbe20aa92007-12-17 20:14:01 -0500192 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Zheng Yan31840ae2008-09-23 13:14:14 -0400193 ret = btrfs_inc_ref(trans, new_root, buf, cow, NULL);
Chris Mason4aec2b52007-12-18 16:25:45 -0500194 kfree(new_root);
195
Chris Masonbe20aa92007-12-17 20:14:01 -0500196 if (ret)
197 return ret;
198
199 btrfs_mark_buffer_dirty(cow);
200 *cow_ret = cow;
201 return 0;
202}
203
Chris Masond352ac62008-09-29 15:18:18 -0400204/*
Chris Masond3977122009-01-05 21:25:51 -0500205 * does the dirty work in cow of a single block. The parent block (if
206 * supplied) is updated to point to the new cow copy. The new buffer is marked
207 * dirty and returned locked. If you modify the block it needs to be marked
208 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400209 *
210 * search_start -- an allocation hint for the new block
211 *
Chris Masond3977122009-01-05 21:25:51 -0500212 * empty_size -- a hint that you plan on doing more cow. This is the size in
213 * bytes the allocator should try to find free next to the block it returns.
214 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400215 *
216 * prealloc_dest -- if you have already reserved a destination for the cow,
Chris Masond3977122009-01-05 21:25:51 -0500217 * this uses that block instead of allocating a new one.
218 * btrfs_alloc_reserved_extent is used to finish the allocation.
Chris Masond352ac62008-09-29 15:18:18 -0400219 */
Chris Masond3977122009-01-05 21:25:51 -0500220static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400221 struct btrfs_root *root,
222 struct extent_buffer *buf,
223 struct extent_buffer *parent, int parent_slot,
224 struct extent_buffer **cow_ret,
Chris Mason65b51a02008-08-01 15:11:20 -0400225 u64 search_start, u64 empty_size,
226 u64 prealloc_dest)
Chris Mason6702ed42007-08-07 16:15:09 -0400227{
Zheng Yan31840ae2008-09-23 13:14:14 -0400228 u64 parent_start;
Chris Mason5f39d392007-10-15 16:14:19 -0400229 struct extent_buffer *cow;
Chris Mason7bb86312007-12-11 09:25:06 -0500230 u32 nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400231 int ret = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500232 int level;
Chris Mason925baed2008-06-25 16:01:30 -0400233 int unlock_orig = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400234
Chris Mason925baed2008-06-25 16:01:30 -0400235 if (*cow_ret == buf)
236 unlock_orig = 1;
237
238 WARN_ON(!btrfs_tree_locked(buf));
239
Zheng Yan31840ae2008-09-23 13:14:14 -0400240 if (parent)
241 parent_start = parent->start;
242 else
243 parent_start = 0;
244
Chris Mason7bb86312007-12-11 09:25:06 -0500245 WARN_ON(root->ref_cows && trans->transid !=
246 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400247 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400248
Chris Mason7bb86312007-12-11 09:25:06 -0500249 level = btrfs_header_level(buf);
250 nritems = btrfs_header_nritems(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400251
Chris Mason65b51a02008-08-01 15:11:20 -0400252 if (prealloc_dest) {
253 struct btrfs_key ins;
254
255 ins.objectid = prealloc_dest;
256 ins.offset = buf->len;
257 ins.type = BTRFS_EXTENT_ITEM_KEY;
258
Zheng Yan31840ae2008-09-23 13:14:14 -0400259 ret = btrfs_alloc_reserved_extent(trans, root, parent_start,
Chris Mason65b51a02008-08-01 15:11:20 -0400260 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400261 trans->transid, level, &ins);
Chris Mason65b51a02008-08-01 15:11:20 -0400262 BUG_ON(ret);
263 cow = btrfs_init_new_buffer(trans, root, prealloc_dest,
264 buf->len);
265 } else {
266 cow = btrfs_alloc_free_block(trans, root, buf->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400267 parent_start,
Chris Mason65b51a02008-08-01 15:11:20 -0400268 root->root_key.objectid,
Zheng Yan31840ae2008-09-23 13:14:14 -0400269 trans->transid, level,
270 search_start, empty_size);
Chris Mason65b51a02008-08-01 15:11:20 -0400271 }
Chris Mason6702ed42007-08-07 16:15:09 -0400272 if (IS_ERR(cow))
273 return PTR_ERR(cow);
274
Chris Mason5f39d392007-10-15 16:14:19 -0400275 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400276 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400277 btrfs_set_header_generation(cow, trans->transid);
278 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -0400279 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN);
Chris Mason6702ed42007-08-07 16:15:09 -0400280
Yan Zheng2b820322008-11-17 21:11:30 -0500281 write_extent_buffer(cow, root->fs_info->fsid,
282 (unsigned long)btrfs_header_fsid(cow),
283 BTRFS_FSID_SIZE);
284
Chris Mason5f39d392007-10-15 16:14:19 -0400285 WARN_ON(btrfs_header_generation(buf) > trans->transid);
286 if (btrfs_header_generation(buf) != trans->transid) {
Zheng Yan31840ae2008-09-23 13:14:14 -0400287 u32 nr_extents;
Zheng Yan31840ae2008-09-23 13:14:14 -0400288 ret = btrfs_inc_ref(trans, root, buf, cow, &nr_extents);
Chris Mason6702ed42007-08-07 16:15:09 -0400289 if (ret)
290 return ret;
Zheng Yan31840ae2008-09-23 13:14:14 -0400291
292 ret = btrfs_cache_ref(trans, root, buf, nr_extents);
293 WARN_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -0400294 } else if (btrfs_header_owner(buf) == BTRFS_TREE_RELOC_OBJECTID) {
295 /*
296 * There are only two places that can drop reference to
297 * tree blocks owned by living reloc trees, one is here,
Yan Zhengf82d02d2008-10-29 14:49:05 -0400298 * the other place is btrfs_drop_subtree. In both places,
Zheng Yan1a40e232008-09-26 10:09:34 -0400299 * we check reference count while tree block is locked.
300 * Furthermore, if reference count is one, it won't get
301 * increased by someone else.
302 */
303 u32 refs;
304 ret = btrfs_lookup_extent_ref(trans, root, buf->start,
305 buf->len, &refs);
306 BUG_ON(ret);
307 if (refs == 1) {
308 ret = btrfs_update_ref(trans, root, buf, cow,
309 0, nritems);
310 clean_tree_block(trans, root, buf);
311 } else {
312 ret = btrfs_inc_ref(trans, root, buf, cow, NULL);
313 }
314 BUG_ON(ret);
Chris Mason6702ed42007-08-07 16:15:09 -0400315 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -0400316 ret = btrfs_update_ref(trans, root, buf, cow, 0, nritems);
317 if (ret)
318 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400319 clean_tree_block(trans, root, buf);
320 }
321
Zheng Yan1a40e232008-09-26 10:09:34 -0400322 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
Zheng Yan1a40e232008-09-26 10:09:34 -0400323 ret = btrfs_reloc_tree_cache_ref(trans, root, cow, buf->start);
324 WARN_ON(ret);
325 }
326
Chris Mason6702ed42007-08-07 16:15:09 -0400327 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -0400328 WARN_ON(parent && parent != buf);
Chris Mason925baed2008-06-25 16:01:30 -0400329
330 spin_lock(&root->node_lock);
Chris Mason6702ed42007-08-07 16:15:09 -0400331 root->node = cow;
Chris Mason5f39d392007-10-15 16:14:19 -0400332 extent_buffer_get(cow);
Chris Mason925baed2008-06-25 16:01:30 -0400333 spin_unlock(&root->node_lock);
334
Chris Mason6702ed42007-08-07 16:15:09 -0400335 if (buf != root->commit_root) {
Chris Masondb945352007-10-15 16:15:53 -0400336 btrfs_free_extent(trans, root, buf->start,
Zheng Yan31840ae2008-09-23 13:14:14 -0400337 buf->len, buf->start,
338 root->root_key.objectid,
339 btrfs_header_generation(buf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400340 level, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400341 }
Chris Mason5f39d392007-10-15 16:14:19 -0400342 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -0400343 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -0400344 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400345 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -0400346 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -0500347 WARN_ON(trans->transid == 0);
348 btrfs_set_node_ptr_generation(parent, parent_slot,
349 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400350 btrfs_mark_buffer_dirty(parent);
Chris Mason5f39d392007-10-15 16:14:19 -0400351 WARN_ON(btrfs_header_generation(parent) != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -0500352 btrfs_free_extent(trans, root, buf->start, buf->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400353 parent_start, btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400354 btrfs_header_generation(parent), level, 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400355 }
Chris Mason925baed2008-06-25 16:01:30 -0400356 if (unlock_orig)
357 btrfs_tree_unlock(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400358 free_extent_buffer(buf);
Chris Mason6702ed42007-08-07 16:15:09 -0400359 btrfs_mark_buffer_dirty(cow);
360 *cow_ret = cow;
361 return 0;
362}
363
Chris Masond352ac62008-09-29 15:18:18 -0400364/*
365 * cows a single block, see __btrfs_cow_block for the real work.
366 * This version of it has extra checks so that a block isn't cow'd more than
367 * once per transaction, as long as it hasn't been written yet
368 */
Chris Masond3977122009-01-05 21:25:51 -0500369noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400370 struct btrfs_root *root, struct extent_buffer *buf,
371 struct extent_buffer *parent, int parent_slot,
Chris Mason65b51a02008-08-01 15:11:20 -0400372 struct extent_buffer **cow_ret, u64 prealloc_dest)
Chris Mason02217ed2007-03-02 16:08:05 -0500373{
Chris Mason6702ed42007-08-07 16:15:09 -0400374 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400375 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -0500376
Chris Masonccd467d2007-06-28 15:57:36 -0400377 if (trans->transaction != root->fs_info->running_transaction) {
Chris Masond3977122009-01-05 21:25:51 -0500378 printk(KERN_CRIT "trans %llu running %llu\n",
379 (unsigned long long)trans->transid,
380 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -0400381 root->fs_info->running_transaction->transid);
382 WARN_ON(1);
383 }
384 if (trans->transid != root->fs_info->generation) {
Chris Masond3977122009-01-05 21:25:51 -0500385 printk(KERN_CRIT "trans %llu running %llu\n",
386 (unsigned long long)trans->transid,
387 (unsigned long long)root->fs_info->generation);
Chris Masonccd467d2007-06-28 15:57:36 -0400388 WARN_ON(1);
389 }
Chris Masondc17ff82008-01-08 15:46:30 -0500390
Chris Mason63b10fc2008-04-01 11:21:32 -0400391 spin_lock(&root->fs_info->hash_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400392 if (btrfs_header_generation(buf) == trans->transid &&
393 btrfs_header_owner(buf) == root->root_key.objectid &&
Chris Mason63b10fc2008-04-01 11:21:32 -0400394 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Mason02217ed2007-03-02 16:08:05 -0500395 *cow_ret = buf;
Chris Mason63b10fc2008-04-01 11:21:32 -0400396 spin_unlock(&root->fs_info->hash_lock);
Chris Mason65b51a02008-08-01 15:11:20 -0400397 WARN_ON(prealloc_dest);
Chris Mason02217ed2007-03-02 16:08:05 -0500398 return 0;
399 }
Chris Mason63b10fc2008-04-01 11:21:32 -0400400 spin_unlock(&root->fs_info->hash_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400401 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonf510cfe2007-10-15 16:14:48 -0400402 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason65b51a02008-08-01 15:11:20 -0400403 parent_slot, cow_ret, search_start, 0,
404 prealloc_dest);
Chris Masonf510cfe2007-10-15 16:14:48 -0400405 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -0400406}
407
Chris Masond352ac62008-09-29 15:18:18 -0400408/*
409 * helper function for defrag to decide if two blocks pointed to by a
410 * node are actually close by
411 */
Chris Mason6b800532007-10-15 16:17:34 -0400412static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -0400413{
Chris Mason6b800532007-10-15 16:17:34 -0400414 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400415 return 1;
Chris Mason6b800532007-10-15 16:17:34 -0400416 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -0400417 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -0500418 return 0;
419}
420
Chris Mason081e9572007-11-06 10:26:24 -0500421/*
422 * compare two keys in a memcmp fashion
423 */
424static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
425{
426 struct btrfs_key k1;
427
428 btrfs_disk_key_to_cpu(&k1, disk);
429
430 if (k1.objectid > k2->objectid)
431 return 1;
432 if (k1.objectid < k2->objectid)
433 return -1;
434 if (k1.type > k2->type)
435 return 1;
436 if (k1.type < k2->type)
437 return -1;
438 if (k1.offset > k2->offset)
439 return 1;
440 if (k1.offset < k2->offset)
441 return -1;
442 return 0;
443}
444
Josef Bacikf3465ca2008-11-12 14:19:50 -0500445/*
446 * same as comp_keys only with two btrfs_key's
447 */
448static int comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
449{
450 if (k1->objectid > k2->objectid)
451 return 1;
452 if (k1->objectid < k2->objectid)
453 return -1;
454 if (k1->type > k2->type)
455 return 1;
456 if (k1->type < k2->type)
457 return -1;
458 if (k1->offset > k2->offset)
459 return 1;
460 if (k1->offset < k2->offset)
461 return -1;
462 return 0;
463}
Chris Mason081e9572007-11-06 10:26:24 -0500464
Chris Masond352ac62008-09-29 15:18:18 -0400465/*
466 * this is used by the defrag code to go through all the
467 * leaves pointed to by a node and reallocate them so that
468 * disk order is close to key order
469 */
Chris Mason6702ed42007-08-07 16:15:09 -0400470int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400471 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -0400472 int start_slot, int cache_only, u64 *last_ret,
473 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -0400474{
Chris Mason6b800532007-10-15 16:17:34 -0400475 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -0400476 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -0400477 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -0400478 u64 search_start = *last_ret;
479 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -0400480 u64 other;
481 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -0400482 int end_slot;
483 int i;
484 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -0400485 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -0400486 int uptodate;
487 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -0500488 int progress_passed = 0;
489 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -0400490
Chris Mason5708b952007-10-25 15:43:18 -0400491 parent_level = btrfs_header_level(parent);
492 if (cache_only && parent_level != 1)
493 return 0;
494
Chris Masond3977122009-01-05 21:25:51 -0500495 if (trans->transaction != root->fs_info->running_transaction)
Chris Mason6702ed42007-08-07 16:15:09 -0400496 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -0500497 if (trans->transid != root->fs_info->generation)
Chris Mason6702ed42007-08-07 16:15:09 -0400498 WARN_ON(1);
Chris Mason86479a02007-09-10 19:58:16 -0400499
Chris Mason6b800532007-10-15 16:17:34 -0400500 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -0400501 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -0400502 end_slot = parent_nritems;
503
504 if (parent_nritems == 1)
505 return 0;
506
507 for (i = start_slot; i < end_slot; i++) {
508 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -0400509
Chris Mason5708b952007-10-25 15:43:18 -0400510 if (!parent->map_token) {
511 map_extent_buffer(parent,
512 btrfs_node_key_ptr_offset(i),
513 sizeof(struct btrfs_key_ptr),
514 &parent->map_token, &parent->kaddr,
515 &parent->map_start, &parent->map_len,
516 KM_USER1);
517 }
Chris Mason081e9572007-11-06 10:26:24 -0500518 btrfs_node_key(parent, &disk_key, i);
519 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
520 continue;
521
522 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -0400523 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -0400524 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -0400525 if (last_block == 0)
526 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -0400527
Chris Mason6702ed42007-08-07 16:15:09 -0400528 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -0400529 other = btrfs_node_blockptr(parent, i - 1);
530 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400531 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400532 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -0400533 other = btrfs_node_blockptr(parent, i + 1);
534 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -0400535 }
Chris Masone9d0b132007-08-10 14:06:19 -0400536 if (close) {
537 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -0400538 continue;
Chris Masone9d0b132007-08-10 14:06:19 -0400539 }
Chris Mason5708b952007-10-25 15:43:18 -0400540 if (parent->map_token) {
541 unmap_extent_buffer(parent, parent->map_token,
542 KM_USER1);
543 parent->map_token = NULL;
544 }
Chris Mason6702ed42007-08-07 16:15:09 -0400545
Chris Mason6b800532007-10-15 16:17:34 -0400546 cur = btrfs_find_tree_block(root, blocknr, blocksize);
547 if (cur)
Chris Mason1259ab72008-05-12 13:39:03 -0400548 uptodate = btrfs_buffer_uptodate(cur, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400549 else
550 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -0400551 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -0400552 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -0400553 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400554 continue;
555 }
Chris Mason6b800532007-10-15 16:17:34 -0400556 if (!cur) {
557 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -0400558 blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -0400559 } else if (!uptodate) {
Chris Masonca7a79a2008-05-12 12:59:19 -0400560 btrfs_read_buffer(cur, gen);
Chris Masonf2183bd2007-08-10 14:42:37 -0400561 }
Chris Mason6702ed42007-08-07 16:15:09 -0400562 }
Chris Masone9d0b132007-08-10 14:06:19 -0400563 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -0400564 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -0400565
Chris Masone7a84562008-06-25 16:01:31 -0400566 btrfs_tree_lock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400567 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -0400568 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -0400569 min(16 * blocksize,
Chris Mason65b51a02008-08-01 15:11:20 -0400570 (end_slot - i) * blocksize), 0);
Yan252c38f2007-08-29 09:11:44 -0400571 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -0400572 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -0400573 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400574 break;
Yan252c38f2007-08-29 09:11:44 -0400575 }
Chris Masone7a84562008-06-25 16:01:31 -0400576 search_start = cur->start;
577 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -0400578 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -0400579 btrfs_tree_unlock(cur);
580 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -0400581 }
Chris Mason5708b952007-10-25 15:43:18 -0400582 if (parent->map_token) {
583 unmap_extent_buffer(parent, parent->map_token,
584 KM_USER1);
585 parent->map_token = NULL;
586 }
Chris Mason6702ed42007-08-07 16:15:09 -0400587 return err;
588}
589
Chris Mason74123bd2007-02-02 11:05:29 -0500590/*
591 * The leaf data grows from end-to-front in the node.
592 * this returns the address of the start of the last item,
593 * which is the stop of the leaf data stack
594 */
Chris Mason123abc82007-03-14 14:14:43 -0400595static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400596 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500597{
Chris Mason5f39d392007-10-15 16:14:19 -0400598 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500599 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400600 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -0400601 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500602}
603
Chris Masond352ac62008-09-29 15:18:18 -0400604/*
605 * extra debugging checks to make sure all the items in a key are
606 * well formed and in the proper order
607 */
Chris Mason123abc82007-03-14 14:14:43 -0400608static int check_node(struct btrfs_root *root, struct btrfs_path *path,
609 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500610{
Chris Mason5f39d392007-10-15 16:14:19 -0400611 struct extent_buffer *parent = NULL;
612 struct extent_buffer *node = path->nodes[level];
613 struct btrfs_disk_key parent_key;
614 struct btrfs_disk_key node_key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500615 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400616 int slot;
617 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400618 u32 nritems = btrfs_header_nritems(node);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500619
620 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400621 parent = path->nodes[level + 1];
Aneesha1f39632007-07-11 10:03:27 -0400622
Chris Mason8d7be552007-05-10 11:24:42 -0400623 slot = path->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400624 BUG_ON(nritems == 0);
625 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400626 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400627 btrfs_node_key(parent, &parent_key, parent_slot);
628 btrfs_node_key(node, &node_key, 0);
629 BUG_ON(memcmp(&parent_key, &node_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400630 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400631 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400632 btrfs_header_bytenr(node));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500633 }
Chris Mason123abc82007-03-14 14:14:43 -0400634 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason8d7be552007-05-10 11:24:42 -0400635 if (slot != 0) {
Chris Mason5f39d392007-10-15 16:14:19 -0400636 btrfs_node_key_to_cpu(node, &cpukey, slot - 1);
637 btrfs_node_key(node, &node_key, slot);
638 BUG_ON(comp_keys(&node_key, &cpukey) <= 0);
Chris Mason8d7be552007-05-10 11:24:42 -0400639 }
640 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400641 btrfs_node_key_to_cpu(node, &cpukey, slot + 1);
642 btrfs_node_key(node, &node_key, slot);
643 BUG_ON(comp_keys(&node_key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500644 }
645 return 0;
646}
647
Chris Masond352ac62008-09-29 15:18:18 -0400648/*
649 * extra checking to make sure all the items in a leaf are
650 * well formed and in the proper order
651 */
Chris Mason123abc82007-03-14 14:14:43 -0400652static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
653 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500654{
Chris Mason5f39d392007-10-15 16:14:19 -0400655 struct extent_buffer *leaf = path->nodes[level];
656 struct extent_buffer *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500657 int parent_slot;
Chris Mason8d7be552007-05-10 11:24:42 -0400658 struct btrfs_key cpukey;
Chris Mason5f39d392007-10-15 16:14:19 -0400659 struct btrfs_disk_key parent_key;
660 struct btrfs_disk_key leaf_key;
661 int slot = path->slots[0];
Chris Mason8d7be552007-05-10 11:24:42 -0400662
Chris Mason5f39d392007-10-15 16:14:19 -0400663 u32 nritems = btrfs_header_nritems(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500664
665 if (path->nodes[level + 1])
Chris Mason5f39d392007-10-15 16:14:19 -0400666 parent = path->nodes[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400667
668 if (nritems == 0)
669 return 0;
670
671 if (parent) {
Aneesha1f39632007-07-11 10:03:27 -0400672 parent_slot = path->slots[level + 1];
Chris Mason5f39d392007-10-15 16:14:19 -0400673 btrfs_node_key(parent, &parent_key, parent_slot);
674 btrfs_item_key(leaf, &leaf_key, 0);
Chris Mason6702ed42007-08-07 16:15:09 -0400675
Chris Mason5f39d392007-10-15 16:14:19 -0400676 BUG_ON(memcmp(&parent_key, &leaf_key,
Chris Masone2fa7222007-03-12 16:22:34 -0400677 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400678 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Masondb945352007-10-15 16:15:53 -0400679 btrfs_header_bytenr(leaf));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500680 }
Chris Mason5f39d392007-10-15 16:14:19 -0400681 if (slot != 0 && slot < nritems - 1) {
682 btrfs_item_key(leaf, &leaf_key, slot);
683 btrfs_item_key_to_cpu(leaf, &cpukey, slot - 1);
684 if (comp_keys(&leaf_key, &cpukey) <= 0) {
685 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500686 printk(KERN_CRIT "slot %d offset bad key\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400687 BUG_ON(1);
688 }
689 if (btrfs_item_offset_nr(leaf, slot - 1) !=
690 btrfs_item_end_nr(leaf, slot)) {
691 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500692 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400693 BUG_ON(1);
694 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500695 }
Chris Mason8d7be552007-05-10 11:24:42 -0400696 if (slot < nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400697 btrfs_item_key(leaf, &leaf_key, slot);
698 btrfs_item_key_to_cpu(leaf, &cpukey, slot + 1);
699 BUG_ON(comp_keys(&leaf_key, &cpukey) >= 0);
700 if (btrfs_item_offset_nr(leaf, slot) !=
701 btrfs_item_end_nr(leaf, slot + 1)) {
702 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -0500703 printk(KERN_CRIT "slot %d offset bad\n", slot);
Chris Mason5f39d392007-10-15 16:14:19 -0400704 BUG_ON(1);
705 }
Chris Mason8d7be552007-05-10 11:24:42 -0400706 }
Chris Mason5f39d392007-10-15 16:14:19 -0400707 BUG_ON(btrfs_item_offset_nr(leaf, 0) +
708 btrfs_item_size_nr(leaf, 0) != BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500709 return 0;
710}
711
Chris Masond3977122009-01-05 21:25:51 -0500712static noinline int check_block(struct btrfs_root *root,
Chris Mason98ed5172008-01-03 10:01:48 -0500713 struct btrfs_path *path, int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500714{
Chris Mason85d824c2008-04-10 10:23:19 -0400715 return 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500716 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400717 return check_leaf(root, path, level);
718 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500719}
720
Chris Mason74123bd2007-02-02 11:05:29 -0500721/*
Chris Mason5f39d392007-10-15 16:14:19 -0400722 * search for key in the extent_buffer. The items start at offset p,
723 * and they are item_size apart. There are 'max' items in p.
724 *
Chris Mason74123bd2007-02-02 11:05:29 -0500725 * the slot in the array is returned via slot, and it points to
726 * the place where you would insert key if it is not found in
727 * the array.
728 *
729 * slot may point to max if the key is bigger than all of the keys
730 */
Chris Masone02119d2008-09-05 16:13:11 -0400731static noinline int generic_bin_search(struct extent_buffer *eb,
732 unsigned long p,
733 int item_size, struct btrfs_key *key,
734 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500735{
736 int low = 0;
737 int high = max;
738 int mid;
739 int ret;
Chris Mason479965d2007-10-15 16:14:27 -0400740 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400741 struct btrfs_disk_key unaligned;
742 unsigned long offset;
743 char *map_token = NULL;
744 char *kaddr = NULL;
745 unsigned long map_start = 0;
746 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -0400747 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500748
Chris Masond3977122009-01-05 21:25:51 -0500749 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500750 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -0400751 offset = p + mid * item_size;
752
753 if (!map_token || offset < map_start ||
754 (offset + sizeof(struct btrfs_disk_key)) >
755 map_start + map_len) {
Chris Mason479965d2007-10-15 16:14:27 -0400756 if (map_token) {
Chris Mason5f39d392007-10-15 16:14:19 -0400757 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Mason479965d2007-10-15 16:14:27 -0400758 map_token = NULL;
759 }
Chris Mason934d3752008-12-08 16:43:10 -0500760
761 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -0400762 sizeof(struct btrfs_disk_key),
763 &map_token, &kaddr,
764 &map_start, &map_len, KM_USER0);
Chris Mason5f39d392007-10-15 16:14:19 -0400765
Chris Mason479965d2007-10-15 16:14:27 -0400766 if (!err) {
767 tmp = (struct btrfs_disk_key *)(kaddr + offset -
768 map_start);
769 } else {
770 read_extent_buffer(eb, &unaligned,
771 offset, sizeof(unaligned));
772 tmp = &unaligned;
773 }
774
Chris Mason5f39d392007-10-15 16:14:19 -0400775 } else {
776 tmp = (struct btrfs_disk_key *)(kaddr + offset -
777 map_start);
778 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500779 ret = comp_keys(tmp, key);
780
781 if (ret < 0)
782 low = mid + 1;
783 else if (ret > 0)
784 high = mid;
785 else {
786 *slot = mid;
Chris Mason479965d2007-10-15 16:14:27 -0400787 if (map_token)
788 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500789 return 0;
790 }
791 }
792 *slot = low;
Chris Mason5f39d392007-10-15 16:14:19 -0400793 if (map_token)
794 unmap_extent_buffer(eb, map_token, KM_USER0);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500795 return 1;
796}
797
Chris Mason97571fd2007-02-24 13:39:08 -0500798/*
799 * simple bin_search frontend that does the right thing for
800 * leaves vs nodes
801 */
Chris Mason5f39d392007-10-15 16:14:19 -0400802static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
803 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500804{
Chris Mason5f39d392007-10-15 16:14:19 -0400805 if (level == 0) {
806 return generic_bin_search(eb,
807 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -0400808 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -0400809 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400810 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500811 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400812 return generic_bin_search(eb,
813 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -0400814 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -0400815 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -0400816 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500817 }
818 return -1;
819}
820
Chris Masond352ac62008-09-29 15:18:18 -0400821/* given a node and slot number, this reads the blocks it points to. The
822 * extent buffer is returned with a reference taken (but unlocked).
823 * NULL is returned on error.
824 */
Chris Masone02119d2008-09-05 16:13:11 -0400825static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400826 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -0500827{
Chris Masonca7a79a2008-05-12 12:59:19 -0400828 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500829 if (slot < 0)
830 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400831 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -0500832 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -0400833
834 BUG_ON(level == 0);
835
Chris Masondb945352007-10-15 16:15:53 -0400836 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -0400837 btrfs_level_size(root, level - 1),
838 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500839}
840
Chris Masond352ac62008-09-29 15:18:18 -0400841/*
842 * node level balancing, used to make sure nodes are in proper order for
843 * item deletion. We balance from the top down, so we have to make sure
844 * that a deletion won't leave an node completely empty later on.
845 */
Chris Masone02119d2008-09-05 16:13:11 -0400846static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -0500847 struct btrfs_root *root,
848 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500849{
Chris Mason5f39d392007-10-15 16:14:19 -0400850 struct extent_buffer *right = NULL;
851 struct extent_buffer *mid;
852 struct extent_buffer *left = NULL;
853 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500854 int ret = 0;
855 int wret;
856 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500857 int orig_slot = path->slots[level];
Chris Mason54aa1f42007-06-22 14:16:25 -0400858 int err_on_enospc = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500859 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500860
861 if (level == 0)
862 return 0;
863
Chris Mason5f39d392007-10-15 16:14:19 -0400864 mid = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -0400865 WARN_ON(!path->locks[level]);
Chris Mason7bb86312007-12-11 09:25:06 -0500866 WARN_ON(btrfs_header_generation(mid) != trans->transid);
867
Chris Mason1d4f8a02007-03-13 09:28:32 -0400868 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500869
Chris Mason234b63a2007-03-13 10:46:10 -0400870 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -0400871 parent = path->nodes[level + 1];
Chris Masonbb803952007-03-01 12:04:21 -0500872 pslot = path->slots[level + 1];
873
Chris Mason40689472007-03-17 14:29:23 -0400874 /*
875 * deal with the case where there is only one pointer in the root
876 * by promoting the node below to a root
877 */
Chris Mason5f39d392007-10-15 16:14:19 -0400878 if (!parent) {
879 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -0500880
Chris Mason5f39d392007-10-15 16:14:19 -0400881 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500882 return 0;
883
884 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -0400885 child = read_node_slot(root, mid, 0);
Chris Mason925baed2008-06-25 16:01:30 -0400886 btrfs_tree_lock(child);
Chris Masonbb803952007-03-01 12:04:21 -0500887 BUG_ON(!child);
Chris Mason65b51a02008-08-01 15:11:20 -0400888 ret = btrfs_cow_block(trans, root, child, mid, 0, &child, 0);
Yan2f375ab2008-02-01 14:58:07 -0500889 BUG_ON(ret);
890
Chris Mason925baed2008-06-25 16:01:30 -0400891 spin_lock(&root->node_lock);
Chris Masonbb803952007-03-01 12:04:21 -0500892 root->node = child;
Chris Mason925baed2008-06-25 16:01:30 -0400893 spin_unlock(&root->node_lock);
894
Zheng Yan31840ae2008-09-23 13:14:14 -0400895 ret = btrfs_update_extent_ref(trans, root, child->start,
896 mid->start, child->start,
897 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400898 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400899 BUG_ON(ret);
900
Chris Mason0b86a832008-03-24 15:01:56 -0400901 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -0400902 btrfs_tree_unlock(child);
903 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500904 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400905 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -0400906 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -0500907 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -0400908 free_extent_buffer(mid);
Chris Mason7bb86312007-12-11 09:25:06 -0500909 ret = btrfs_free_extent(trans, root, mid->start, mid->len,
Zheng Yan31840ae2008-09-23 13:14:14 -0400910 mid->start, root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400911 btrfs_header_generation(mid),
912 level, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500913 /* once for the root ptr */
Chris Mason5f39d392007-10-15 16:14:19 -0400914 free_extent_buffer(mid);
Chris Masondb945352007-10-15 16:15:53 -0400915 return ret;
Chris Masonbb803952007-03-01 12:04:21 -0500916 }
Chris Mason5f39d392007-10-15 16:14:19 -0400917 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -0400918 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500919 return 0;
920
Chris Mason5f39d392007-10-15 16:14:19 -0400921 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -0400922 err_on_enospc = 1;
923
Chris Mason5f39d392007-10-15 16:14:19 -0400924 left = read_node_slot(root, parent, pslot - 1);
925 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -0400926 btrfs_tree_lock(left);
Chris Mason5f39d392007-10-15 16:14:19 -0400927 wret = btrfs_cow_block(trans, root, left,
Chris Mason65b51a02008-08-01 15:11:20 -0400928 parent, pslot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400929 if (wret) {
930 ret = wret;
931 goto enospc;
932 }
Chris Mason2cc58cf2007-08-27 16:49:44 -0400933 }
Chris Mason5f39d392007-10-15 16:14:19 -0400934 right = read_node_slot(root, parent, pslot + 1);
935 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -0400936 btrfs_tree_lock(right);
Chris Mason5f39d392007-10-15 16:14:19 -0400937 wret = btrfs_cow_block(trans, root, right,
Chris Mason65b51a02008-08-01 15:11:20 -0400938 parent, pslot + 1, &right, 0);
Chris Mason2cc58cf2007-08-27 16:49:44 -0400939 if (wret) {
940 ret = wret;
941 goto enospc;
942 }
943 }
944
945 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -0400946 if (left) {
947 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -0400948 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -0500949 if (wret < 0)
950 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -0400951 if (btrfs_header_nritems(mid) < 2)
Chris Mason54aa1f42007-06-22 14:16:25 -0400952 err_on_enospc = 1;
Chris Masonbb803952007-03-01 12:04:21 -0500953 }
Chris Mason79f95c82007-03-01 15:16:26 -0500954
955 /*
956 * then try to empty the right most buffer into the middle
957 */
Chris Mason5f39d392007-10-15 16:14:19 -0400958 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -0400959 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400960 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -0500961 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -0400962 if (btrfs_header_nritems(right) == 0) {
Chris Masondb945352007-10-15 16:15:53 -0400963 u64 bytenr = right->start;
Chris Mason7bb86312007-12-11 09:25:06 -0500964 u64 generation = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -0400965 u32 blocksize = right->len;
966
Chris Mason5f39d392007-10-15 16:14:19 -0400967 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -0400968 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -0400969 free_extent_buffer(right);
Chris Masonbb803952007-03-01 12:04:21 -0500970 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -0400971 wret = del_ptr(trans, root, path, level + 1, pslot +
972 1);
Chris Masonbb803952007-03-01 12:04:21 -0500973 if (wret)
974 ret = wret;
Chris Masondb945352007-10-15 16:15:53 -0400975 wret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan31840ae2008-09-23 13:14:14 -0400976 blocksize, parent->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500977 btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -0400978 generation, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500979 if (wret)
980 ret = wret;
981 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400982 struct btrfs_disk_key right_key;
983 btrfs_node_key(right, &right_key, 0);
984 btrfs_set_node_key(parent, &right_key, pslot + 1);
985 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -0500986 }
987 }
Chris Mason5f39d392007-10-15 16:14:19 -0400988 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -0500989 /*
990 * we're not allowed to leave a node with one item in the
991 * tree during a delete. A deletion from lower in the tree
992 * could try to delete the only pointer in this node.
993 * So, pull some keys from the left.
994 * There has to be a left pointer at this point because
995 * otherwise we would have pulled some pointers from the
996 * right
997 */
Chris Mason5f39d392007-10-15 16:14:19 -0400998 BUG_ON(!left);
999 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001000 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001001 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001002 goto enospc;
1003 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001004 if (wret == 1) {
1005 wret = push_node_left(trans, root, left, mid, 1);
1006 if (wret < 0)
1007 ret = wret;
1008 }
Chris Mason79f95c82007-03-01 15:16:26 -05001009 BUG_ON(wret == 1);
1010 }
Chris Mason5f39d392007-10-15 16:14:19 -04001011 if (btrfs_header_nritems(mid) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001012 /* we've managed to empty the middle node, drop it */
Chris Mason7bb86312007-12-11 09:25:06 -05001013 u64 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001014 u64 bytenr = mid->start;
1015 u32 blocksize = mid->len;
Chris Mason925baed2008-06-25 16:01:30 -04001016
Chris Mason5f39d392007-10-15 16:14:19 -04001017 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001018 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001019 free_extent_buffer(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001020 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -04001021 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -05001022 if (wret)
1023 ret = wret;
Chris Mason7bb86312007-12-11 09:25:06 -05001024 wret = btrfs_free_extent(trans, root, bytenr, blocksize,
Zheng Yan31840ae2008-09-23 13:14:14 -04001025 parent->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001026 btrfs_header_owner(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001027 root_gen, level, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001028 if (wret)
1029 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -05001030 } else {
1031 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001032 struct btrfs_disk_key mid_key;
1033 btrfs_node_key(mid, &mid_key, 0);
1034 btrfs_set_node_key(parent, &mid_key, pslot);
1035 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001036 }
Chris Masonbb803952007-03-01 12:04:21 -05001037
Chris Mason79f95c82007-03-01 15:16:26 -05001038 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001039 if (left) {
1040 if (btrfs_header_nritems(left) > orig_slot) {
1041 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001042 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001043 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001044 path->slots[level + 1] -= 1;
1045 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001046 if (mid) {
1047 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001048 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001049 }
Chris Masonbb803952007-03-01 12:04:21 -05001050 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001051 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001052 path->slots[level] = orig_slot;
1053 }
1054 }
Chris Mason79f95c82007-03-01 15:16:26 -05001055 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -04001056 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -04001057 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001058 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001059 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001060enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001061 if (right) {
1062 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001063 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001064 }
1065 if (left) {
1066 if (path->nodes[level] != left)
1067 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001068 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001069 }
Chris Masonbb803952007-03-01 12:04:21 -05001070 return ret;
1071}
1072
Chris Masond352ac62008-09-29 15:18:18 -04001073/* Node balancing for insertion. Here we only split or push nodes around
1074 * when they are completely full. This is also done top down, so we
1075 * have to be pessimistic.
1076 */
Chris Masond3977122009-01-05 21:25:51 -05001077static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001078 struct btrfs_root *root,
1079 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001080{
Chris Mason5f39d392007-10-15 16:14:19 -04001081 struct extent_buffer *right = NULL;
1082 struct extent_buffer *mid;
1083 struct extent_buffer *left = NULL;
1084 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001085 int ret = 0;
1086 int wret;
1087 int pslot;
1088 int orig_slot = path->slots[level];
1089 u64 orig_ptr;
1090
1091 if (level == 0)
1092 return 1;
1093
Chris Mason5f39d392007-10-15 16:14:19 -04001094 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001095 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001096 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
1097
1098 if (level < BTRFS_MAX_LEVEL - 1)
Chris Mason5f39d392007-10-15 16:14:19 -04001099 parent = path->nodes[level + 1];
Chris Masone66f7092007-04-20 13:16:02 -04001100 pslot = path->slots[level + 1];
1101
Chris Mason5f39d392007-10-15 16:14:19 -04001102 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001103 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001104
Chris Mason5f39d392007-10-15 16:14:19 -04001105 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001106
1107 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001108 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001109 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001110
1111 btrfs_tree_lock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001112 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001113 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1114 wret = 1;
1115 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001116 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason65b51a02008-08-01 15:11:20 -04001117 pslot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001118 if (ret)
1119 wret = 1;
1120 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001121 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001122 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001123 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001124 }
Chris Masone66f7092007-04-20 13:16:02 -04001125 if (wret < 0)
1126 ret = wret;
1127 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001128 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001129 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001130 btrfs_node_key(mid, &disk_key, 0);
1131 btrfs_set_node_key(parent, &disk_key, pslot);
1132 btrfs_mark_buffer_dirty(parent);
1133 if (btrfs_header_nritems(left) > orig_slot) {
1134 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001135 path->slots[level + 1] -= 1;
1136 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001137 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001138 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001139 } else {
1140 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001141 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001142 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001143 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001144 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001145 }
Chris Masone66f7092007-04-20 13:16:02 -04001146 return 0;
1147 }
Chris Mason925baed2008-06-25 16:01:30 -04001148 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001149 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001150 }
Chris Mason925baed2008-06-25 16:01:30 -04001151 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001152
1153 /*
1154 * then try to empty the right most buffer into the middle
1155 */
Chris Mason5f39d392007-10-15 16:14:19 -04001156 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04001157 u32 right_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001158 btrfs_tree_lock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001159 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04001160 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1161 wret = 1;
1162 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001163 ret = btrfs_cow_block(trans, root, right,
1164 parent, pslot + 1,
Chris Mason65b51a02008-08-01 15:11:20 -04001165 &right, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001166 if (ret)
1167 wret = 1;
1168 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001169 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04001170 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001171 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001172 }
Chris Masone66f7092007-04-20 13:16:02 -04001173 if (wret < 0)
1174 ret = wret;
1175 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001176 struct btrfs_disk_key disk_key;
1177
1178 btrfs_node_key(right, &disk_key, 0);
1179 btrfs_set_node_key(parent, &disk_key, pslot + 1);
1180 btrfs_mark_buffer_dirty(parent);
1181
1182 if (btrfs_header_nritems(mid) <= orig_slot) {
1183 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04001184 path->slots[level + 1] += 1;
1185 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04001186 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001187 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001188 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001189 } else {
Chris Mason925baed2008-06-25 16:01:30 -04001190 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001191 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001192 }
Chris Masone66f7092007-04-20 13:16:02 -04001193 return 0;
1194 }
Chris Mason925baed2008-06-25 16:01:30 -04001195 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001196 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04001197 }
Chris Masone66f7092007-04-20 13:16:02 -04001198 return 1;
1199}
1200
Chris Mason74123bd2007-02-02 11:05:29 -05001201/*
Chris Masond352ac62008-09-29 15:18:18 -04001202 * readahead one full node of leaves, finding things that are close
1203 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04001204 */
Chris Masone02119d2008-09-05 16:13:11 -04001205static noinline void reada_for_search(struct btrfs_root *root,
1206 struct btrfs_path *path,
1207 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04001208{
Chris Mason5f39d392007-10-15 16:14:19 -04001209 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05001210 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04001211 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04001212 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05001213 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04001214 u64 nread = 0;
Chris Mason3c69fae2007-08-07 15:52:22 -04001215 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04001216 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04001217 u32 nr;
1218 u32 blocksize;
1219 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04001220
Chris Masona6b6e752007-10-15 16:22:39 -04001221 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04001222 return;
1223
Chris Mason6702ed42007-08-07 16:15:09 -04001224 if (!path->nodes[level])
1225 return;
1226
Chris Mason5f39d392007-10-15 16:14:19 -04001227 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04001228
Chris Mason3c69fae2007-08-07 15:52:22 -04001229 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04001230 blocksize = btrfs_level_size(root, level - 1);
1231 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001232 if (eb) {
1233 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04001234 return;
1235 }
1236
Chris Masona7175312009-01-22 09:23:10 -05001237 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04001238
Chris Mason5f39d392007-10-15 16:14:19 -04001239 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04001240 nr = slot;
Chris Masond3977122009-01-05 21:25:51 -05001241 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04001242 if (direction < 0) {
1243 if (nr == 0)
1244 break;
1245 nr--;
1246 } else if (direction > 0) {
1247 nr++;
1248 if (nr >= nritems)
1249 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001250 }
Chris Mason01f46652007-12-21 16:24:26 -05001251 if (path->reada < 0 && objectid) {
1252 btrfs_node_key(node, &disk_key, nr);
1253 if (btrfs_disk_key_objectid(&disk_key) != objectid)
1254 break;
1255 }
Chris Mason6b800532007-10-15 16:17:34 -04001256 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05001257 if ((search <= target && target - search <= 65536) ||
1258 (search > target && search - target <= 65536)) {
Chris Masonca7a79a2008-05-12 12:59:19 -04001259 readahead_tree_block(root, search, blocksize,
1260 btrfs_node_ptr_generation(node, nr));
Chris Mason6b800532007-10-15 16:17:34 -04001261 nread += blocksize;
1262 }
1263 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05001264 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04001265 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04001266 }
1267}
Chris Mason925baed2008-06-25 16:01:30 -04001268
Chris Masond352ac62008-09-29 15:18:18 -04001269/*
Chris Masond3977122009-01-05 21:25:51 -05001270 * when we walk down the tree, it is usually safe to unlock the higher layers
1271 * in the tree. The exceptions are when our path goes through slot 0, because
1272 * operations on the tree might require changing key pointers higher up in the
1273 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04001274 *
Chris Masond3977122009-01-05 21:25:51 -05001275 * callers might also have set path->keep_locks, which tells this code to keep
1276 * the lock if the path points to the last slot in the block. This is part of
1277 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04001278 *
Chris Masond3977122009-01-05 21:25:51 -05001279 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
1280 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04001281 */
Chris Masone02119d2008-09-05 16:13:11 -04001282static noinline void unlock_up(struct btrfs_path *path, int level,
1283 int lowest_unlock)
Chris Mason925baed2008-06-25 16:01:30 -04001284{
1285 int i;
1286 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04001287 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001288 struct extent_buffer *t;
1289
1290 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
1291 if (!path->nodes[i])
1292 break;
1293 if (!path->locks[i])
1294 break;
Chris Mason051e1b92008-06-25 16:01:30 -04001295 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04001296 skip_level = i + 1;
1297 continue;
1298 }
Chris Mason051e1b92008-06-25 16:01:30 -04001299 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04001300 u32 nritems;
1301 t = path->nodes[i];
1302 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04001303 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04001304 skip_level = i + 1;
1305 continue;
1306 }
1307 }
Chris Mason051e1b92008-06-25 16:01:30 -04001308 if (skip_level < i && i >= lowest_unlock)
1309 no_skips = 1;
1310
Chris Mason925baed2008-06-25 16:01:30 -04001311 t = path->nodes[i];
1312 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
1313 btrfs_tree_unlock(t);
1314 path->locks[i] = 0;
1315 }
1316 }
1317}
1318
Chris Mason3c69fae2007-08-07 15:52:22 -04001319/*
Chris Mason74123bd2007-02-02 11:05:29 -05001320 * look for key in the tree. path is filled in with nodes along the way
1321 * if key is found, we return zero and you can find the item in the leaf
1322 * level of the path (level 0)
1323 *
1324 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05001325 * be inserted, and 1 is returned. If there are other errors during the
1326 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05001327 *
1328 * if ins_len > 0, nodes and leaves will be split as we walk down the
1329 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
1330 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05001331 */
Chris Masone089f052007-03-16 16:20:31 -04001332int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
1333 *root, struct btrfs_key *key, struct btrfs_path *p, int
1334 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001335{
Chris Mason5f39d392007-10-15 16:14:19 -04001336 struct extent_buffer *b;
Chris Mason051e1b92008-06-25 16:01:30 -04001337 struct extent_buffer *tmp;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001338 int slot;
1339 int ret;
1340 int level;
Chris Mason3c69fae2007-08-07 15:52:22 -04001341 int should_reada = p->reada;
Chris Mason925baed2008-06-25 16:01:30 -04001342 int lowest_unlock = 1;
Chris Mason594a24e2008-06-25 16:01:30 -04001343 int blocksize;
Chris Mason9f3a7422007-08-07 15:52:19 -04001344 u8 lowest_level = 0;
Chris Mason594a24e2008-06-25 16:01:30 -04001345 u64 blocknr;
1346 u64 gen;
Chris Mason65b51a02008-08-01 15:11:20 -04001347 struct btrfs_key prealloc_block;
Chris Mason9f3a7422007-08-07 15:52:19 -04001348
Chris Mason6702ed42007-08-07 16:15:09 -04001349 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04001350 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04001351 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04001352
Chris Mason925baed2008-06-25 16:01:30 -04001353 if (ins_len < 0)
1354 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04001355
1356 prealloc_block.objectid = 0;
1357
Chris Masonbb803952007-03-01 12:04:21 -05001358again:
Chris Mason5cd57b22008-06-25 16:01:30 -04001359 if (p->skip_locking)
1360 b = btrfs_root_node(root);
1361 else
1362 b = btrfs_lock_root_node(root);
Chris Mason925baed2008-06-25 16:01:30 -04001363
Chris Masoneb60cea2007-02-02 09:18:22 -05001364 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04001365 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001366
1367 /*
1368 * setup the path here so we can release it under lock
1369 * contention with the cow code
1370 */
1371 p->nodes[level] = b;
1372 if (!p->skip_locking)
1373 p->locks[level] = 1;
1374
Chris Mason02217ed2007-03-02 16:08:05 -05001375 if (cow) {
1376 int wret;
Chris Mason65b51a02008-08-01 15:11:20 -04001377
1378 /* is a cow on this block not required */
1379 spin_lock(&root->fs_info->hash_lock);
1380 if (btrfs_header_generation(b) == trans->transid &&
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001381 btrfs_header_owner(b) == root->root_key.objectid &&
Chris Mason65b51a02008-08-01 15:11:20 -04001382 !btrfs_header_flag(b, BTRFS_HEADER_FLAG_WRITTEN)) {
1383 spin_unlock(&root->fs_info->hash_lock);
1384 goto cow_done;
1385 }
1386 spin_unlock(&root->fs_info->hash_lock);
1387
1388 /* ok, we have to cow, is our old prealloc the right
1389 * size?
1390 */
1391 if (prealloc_block.objectid &&
1392 prealloc_block.offset != b->len) {
1393 btrfs_free_reserved_extent(root,
1394 prealloc_block.objectid,
1395 prealloc_block.offset);
1396 prealloc_block.objectid = 0;
1397 }
1398
1399 /*
1400 * for higher level blocks, try not to allocate blocks
1401 * with the block and the parent locks held.
1402 */
1403 if (level > 1 && !prealloc_block.objectid &&
1404 btrfs_path_lock_waiting(p, level)) {
1405 u32 size = b->len;
1406 u64 hint = b->start;
1407
1408 btrfs_release_path(root, p);
1409 ret = btrfs_reserve_extent(trans, root,
1410 size, size, 0,
1411 hint, (u64)-1,
1412 &prealloc_block, 0);
1413 BUG_ON(ret);
1414 goto again;
1415 }
1416
Chris Masone20d96d2007-03-22 12:13:20 -04001417 wret = btrfs_cow_block(trans, root, b,
1418 p->nodes[level + 1],
1419 p->slots[level + 1],
Chris Mason65b51a02008-08-01 15:11:20 -04001420 &b, prealloc_block.objectid);
1421 prealloc_block.objectid = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04001422 if (wret) {
Chris Mason5f39d392007-10-15 16:14:19 -04001423 free_extent_buffer(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001424 ret = wret;
1425 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04001426 }
Chris Mason02217ed2007-03-02 16:08:05 -05001427 }
Chris Mason65b51a02008-08-01 15:11:20 -04001428cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05001429 BUG_ON(!cow && ins_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001430 if (level != btrfs_header_level(b))
Chris Mason2c90e5d2007-04-02 10:50:19 -04001431 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04001432 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04001433
Chris Masoneb60cea2007-02-02 09:18:22 -05001434 p->nodes[level] = b;
Chris Mason5cd57b22008-06-25 16:01:30 -04001435 if (!p->skip_locking)
1436 p->locks[level] = 1;
Chris Mason65b51a02008-08-01 15:11:20 -04001437
Chris Mason123abc82007-03-14 14:14:43 -04001438 ret = check_block(root, p, level);
Chris Mason65b51a02008-08-01 15:11:20 -04001439 if (ret) {
1440 ret = -1;
1441 goto done;
1442 }
Chris Mason925baed2008-06-25 16:01:30 -04001443
Chris Mason5f39d392007-10-15 16:14:19 -04001444 ret = bin_search(b, key, level, &slot);
1445 if (level != 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001446 if (ret && slot > 0)
1447 slot -= 1;
1448 p->slots[level] = slot;
Chris Mason459931e2008-12-10 09:10:46 -05001449 if ((p->search_for_split || ins_len > 0) &&
1450 btrfs_header_nritems(b) >=
Chris Mason15147942008-04-24 09:22:51 -04001451 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
Chris Masone089f052007-03-16 16:20:31 -04001452 int sret = split_node(trans, root, p, level);
Chris Mason5c680ed2007-02-22 11:39:13 -05001453 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001454 if (sret) {
1455 ret = sret;
1456 goto done;
1457 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001458 b = p->nodes[level];
Chris Mason5c680ed2007-02-22 11:39:13 -05001459 slot = p->slots[level];
Chris Masonbb803952007-03-01 12:04:21 -05001460 } else if (ins_len < 0) {
Chris Masone089f052007-03-16 16:20:31 -04001461 int sret = balance_level(trans, root, p,
1462 level);
Chris Mason65b51a02008-08-01 15:11:20 -04001463 if (sret) {
1464 ret = sret;
1465 goto done;
1466 }
Chris Masonbb803952007-03-01 12:04:21 -05001467 b = p->nodes[level];
Chris Masonf510cfe2007-10-15 16:14:48 -04001468 if (!b) {
1469 btrfs_release_path(NULL, p);
Chris Masonbb803952007-03-01 12:04:21 -05001470 goto again;
Chris Masonf510cfe2007-10-15 16:14:48 -04001471 }
Chris Masonbb803952007-03-01 12:04:21 -05001472 slot = p->slots[level];
Chris Mason5f39d392007-10-15 16:14:19 -04001473 BUG_ON(btrfs_header_nritems(b) == 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05001474 }
Chris Masonf9efa9c2008-06-25 16:14:04 -04001475 unlock_up(p, level, lowest_unlock);
1476
Chris Mason9f3a7422007-08-07 15:52:19 -04001477 /* this is only true while dropping a snapshot */
Chris Mason925baed2008-06-25 16:01:30 -04001478 if (level == lowest_level) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001479 ret = 0;
1480 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04001481 }
Chris Masonca7a79a2008-05-12 12:59:19 -04001482
Chris Mason594a24e2008-06-25 16:01:30 -04001483 blocknr = btrfs_node_blockptr(b, slot);
1484 gen = btrfs_node_ptr_generation(b, slot);
1485 blocksize = btrfs_level_size(root, level - 1);
1486
1487 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
1488 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
Chris Mason051e1b92008-06-25 16:01:30 -04001489 b = tmp;
1490 } else {
1491 /*
1492 * reduce lock contention at high levels
1493 * of the btree by dropping locks before
1494 * we read.
1495 */
1496 if (level > 1) {
1497 btrfs_release_path(NULL, p);
1498 if (tmp)
1499 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001500 if (should_reada)
1501 reada_for_search(root, p,
1502 level, slot,
1503 key->objectid);
1504
Chris Mason594a24e2008-06-25 16:01:30 -04001505 tmp = read_tree_block(root, blocknr,
1506 blocksize, gen);
1507 if (tmp)
1508 free_extent_buffer(tmp);
Chris Mason051e1b92008-06-25 16:01:30 -04001509 goto again;
1510 } else {
Chris Masona74a4b92008-06-25 16:01:31 -04001511 if (tmp)
1512 free_extent_buffer(tmp);
Chris Masonf9efa9c2008-06-25 16:14:04 -04001513 if (should_reada)
1514 reada_for_search(root, p,
1515 level, slot,
1516 key->objectid);
Chris Mason051e1b92008-06-25 16:01:30 -04001517 b = read_node_slot(root, b, slot);
1518 }
1519 }
Chris Mason5cd57b22008-06-25 16:01:30 -04001520 if (!p->skip_locking)
1521 btrfs_tree_lock(b);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001522 } else {
1523 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05001524 if (ins_len > 0 &&
1525 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masond4dbff92007-04-04 14:08:15 -04001526 int sret = split_leaf(trans, root, key,
Chris Masoncc0c5532007-10-25 15:42:57 -04001527 p, ins_len, ret == 0);
Chris Mason5c680ed2007-02-22 11:39:13 -05001528 BUG_ON(sret > 0);
Chris Mason65b51a02008-08-01 15:11:20 -04001529 if (sret) {
1530 ret = sret;
1531 goto done;
1532 }
Chris Mason5c680ed2007-02-22 11:39:13 -05001533 }
Chris Mason459931e2008-12-10 09:10:46 -05001534 if (!p->search_for_split)
1535 unlock_up(p, level, lowest_unlock);
Chris Mason65b51a02008-08-01 15:11:20 -04001536 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001537 }
1538 }
Chris Mason65b51a02008-08-01 15:11:20 -04001539 ret = 1;
1540done:
1541 if (prealloc_block.objectid) {
1542 btrfs_free_reserved_extent(root,
1543 prealloc_block.objectid,
1544 prealloc_block.offset);
1545 }
1546
1547 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001548}
1549
Zheng Yan1a40e232008-09-26 10:09:34 -04001550int btrfs_merge_path(struct btrfs_trans_handle *trans,
1551 struct btrfs_root *root,
1552 struct btrfs_key *node_keys,
1553 u64 *nodes, int lowest_level)
1554{
1555 struct extent_buffer *eb;
1556 struct extent_buffer *parent;
1557 struct btrfs_key key;
1558 u64 bytenr;
1559 u64 generation;
1560 u32 blocksize;
1561 int level;
1562 int slot;
1563 int key_match;
1564 int ret;
1565
1566 eb = btrfs_lock_root_node(root);
1567 ret = btrfs_cow_block(trans, root, eb, NULL, 0, &eb, 0);
1568 BUG_ON(ret);
1569
1570 parent = eb;
1571 while (1) {
1572 level = btrfs_header_level(parent);
1573 if (level == 0 || level <= lowest_level)
1574 break;
1575
1576 ret = bin_search(parent, &node_keys[lowest_level], level,
1577 &slot);
1578 if (ret && slot > 0)
1579 slot--;
1580
1581 bytenr = btrfs_node_blockptr(parent, slot);
1582 if (nodes[level - 1] == bytenr)
1583 break;
1584
1585 blocksize = btrfs_level_size(root, level - 1);
1586 generation = btrfs_node_ptr_generation(parent, slot);
1587 btrfs_node_key_to_cpu(eb, &key, slot);
1588 key_match = !memcmp(&key, &node_keys[level - 1], sizeof(key));
1589
Yan Zhengf82d02d2008-10-29 14:49:05 -04001590 if (generation == trans->transid) {
Zheng Yan1a40e232008-09-26 10:09:34 -04001591 eb = read_tree_block(root, bytenr, blocksize,
1592 generation);
1593 btrfs_tree_lock(eb);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001594 }
1595
1596 /*
1597 * if node keys match and node pointer hasn't been modified
1598 * in the running transaction, we can merge the path. for
1599 * blocks owened by reloc trees, the node pointer check is
1600 * skipped, this is because these blocks are fully controlled
1601 * by the space balance code, no one else can modify them.
1602 */
1603 if (!nodes[level - 1] || !key_match ||
1604 (generation == trans->transid &&
1605 btrfs_header_owner(eb) != BTRFS_TREE_RELOC_OBJECTID)) {
1606 if (level == 1 || level == lowest_level + 1) {
1607 if (generation == trans->transid) {
1608 btrfs_tree_unlock(eb);
1609 free_extent_buffer(eb);
1610 }
1611 break;
1612 }
1613
1614 if (generation != trans->transid) {
1615 eb = read_tree_block(root, bytenr, blocksize,
1616 generation);
1617 btrfs_tree_lock(eb);
1618 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001619
1620 ret = btrfs_cow_block(trans, root, eb, parent, slot,
1621 &eb, 0);
1622 BUG_ON(ret);
1623
Yan Zhengf82d02d2008-10-29 14:49:05 -04001624 if (root->root_key.objectid ==
1625 BTRFS_TREE_RELOC_OBJECTID) {
1626 if (!nodes[level - 1]) {
1627 nodes[level - 1] = eb->start;
1628 memcpy(&node_keys[level - 1], &key,
1629 sizeof(node_keys[0]));
1630 } else {
1631 WARN_ON(1);
1632 }
1633 }
1634
Zheng Yan1a40e232008-09-26 10:09:34 -04001635 btrfs_tree_unlock(parent);
1636 free_extent_buffer(parent);
1637 parent = eb;
1638 continue;
1639 }
1640
Zheng Yan1a40e232008-09-26 10:09:34 -04001641 btrfs_set_node_blockptr(parent, slot, nodes[level - 1]);
1642 btrfs_set_node_ptr_generation(parent, slot, trans->transid);
1643 btrfs_mark_buffer_dirty(parent);
1644
1645 ret = btrfs_inc_extent_ref(trans, root,
1646 nodes[level - 1],
1647 blocksize, parent->start,
1648 btrfs_header_owner(parent),
1649 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001650 level - 1);
Zheng Yan1a40e232008-09-26 10:09:34 -04001651 BUG_ON(ret);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001652
1653 /*
1654 * If the block was created in the running transaction,
1655 * it's possible this is the last reference to it, so we
1656 * should drop the subtree.
1657 */
1658 if (generation == trans->transid) {
1659 ret = btrfs_drop_subtree(trans, root, eb, parent);
1660 BUG_ON(ret);
1661 btrfs_tree_unlock(eb);
1662 free_extent_buffer(eb);
1663 } else {
1664 ret = btrfs_free_extent(trans, root, bytenr,
Zheng Yan1a40e232008-09-26 10:09:34 -04001665 blocksize, parent->start,
1666 btrfs_header_owner(parent),
1667 btrfs_header_generation(parent),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001668 level - 1, 1);
Yan Zhengf82d02d2008-10-29 14:49:05 -04001669 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04001670 }
1671 break;
1672 }
1673 btrfs_tree_unlock(parent);
1674 free_extent_buffer(parent);
1675 return 0;
1676}
1677
Chris Mason74123bd2007-02-02 11:05:29 -05001678/*
1679 * adjust the pointers going up the tree, starting at level
1680 * making sure the right key of each node is points to 'key'.
1681 * This is used after shifting pointers to the left, so it stops
1682 * fixing up pointers when a given leaf/node is not in slot 0 of the
1683 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05001684 *
1685 * If this fails to write a tree block, it returns -1, but continues
1686 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -05001687 */
Chris Mason5f39d392007-10-15 16:14:19 -04001688static int fixup_low_keys(struct btrfs_trans_handle *trans,
1689 struct btrfs_root *root, struct btrfs_path *path,
1690 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001691{
1692 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001693 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001694 struct extent_buffer *t;
1695
Chris Mason234b63a2007-03-13 10:46:10 -04001696 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001697 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05001698 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05001699 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001700 t = path->nodes[i];
1701 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04001702 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001703 if (tslot != 0)
1704 break;
1705 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001706 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001707}
1708
Chris Mason74123bd2007-02-02 11:05:29 -05001709/*
Zheng Yan31840ae2008-09-23 13:14:14 -04001710 * update item key.
1711 *
1712 * This function isn't completely safe. It's the caller's responsibility
1713 * that the new key won't break the order
1714 */
1715int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
1716 struct btrfs_root *root, struct btrfs_path *path,
1717 struct btrfs_key *new_key)
1718{
1719 struct btrfs_disk_key disk_key;
1720 struct extent_buffer *eb;
1721 int slot;
1722
1723 eb = path->nodes[0];
1724 slot = path->slots[0];
1725 if (slot > 0) {
1726 btrfs_item_key(eb, &disk_key, slot - 1);
1727 if (comp_keys(&disk_key, new_key) >= 0)
1728 return -1;
1729 }
1730 if (slot < btrfs_header_nritems(eb) - 1) {
1731 btrfs_item_key(eb, &disk_key, slot + 1);
1732 if (comp_keys(&disk_key, new_key) <= 0)
1733 return -1;
1734 }
1735
1736 btrfs_cpu_key_to_disk(&disk_key, new_key);
1737 btrfs_set_item_key(eb, &disk_key, slot);
1738 btrfs_mark_buffer_dirty(eb);
1739 if (slot == 0)
1740 fixup_low_keys(trans, root, path, &disk_key, 1);
1741 return 0;
1742}
1743
1744/*
Chris Mason74123bd2007-02-02 11:05:29 -05001745 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05001746 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001747 *
1748 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
1749 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05001750 */
Chris Mason98ed5172008-01-03 10:01:48 -05001751static int push_node_left(struct btrfs_trans_handle *trans,
1752 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04001753 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001754{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001755 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001756 int src_nritems;
1757 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001758 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001759
Chris Mason5f39d392007-10-15 16:14:19 -04001760 src_nritems = btrfs_header_nritems(src);
1761 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001762 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05001763 WARN_ON(btrfs_header_generation(src) != trans->transid);
1764 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001765
Chris Masonbce4eae2008-04-24 14:42:46 -04001766 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04001767 return 1;
1768
Chris Masond3977122009-01-05 21:25:51 -05001769 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001770 return 1;
1771
Chris Masonbce4eae2008-04-24 14:42:46 -04001772 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04001773 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04001774 if (push_items < src_nritems) {
1775 /* leave at least 8 pointers in the node if
1776 * we aren't going to empty it
1777 */
1778 if (src_nritems - push_items < 8) {
1779 if (push_items <= 8)
1780 return 1;
1781 push_items -= 8;
1782 }
1783 }
1784 } else
1785 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001786
Chris Mason5f39d392007-10-15 16:14:19 -04001787 copy_extent_buffer(dst, src,
1788 btrfs_node_key_ptr_offset(dst_nritems),
1789 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05001790 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04001791
Chris Masonbb803952007-03-01 12:04:21 -05001792 if (push_items < src_nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001793 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
1794 btrfs_node_key_ptr_offset(push_items),
1795 (src_nritems - push_items) *
1796 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05001797 }
Chris Mason5f39d392007-10-15 16:14:19 -04001798 btrfs_set_header_nritems(src, src_nritems - push_items);
1799 btrfs_set_header_nritems(dst, dst_nritems + push_items);
1800 btrfs_mark_buffer_dirty(src);
1801 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001802
1803 ret = btrfs_update_ref(trans, root, src, dst, dst_nritems, push_items);
1804 BUG_ON(ret);
1805
Chris Masonbb803952007-03-01 12:04:21 -05001806 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001807}
1808
Chris Mason97571fd2007-02-24 13:39:08 -05001809/*
Chris Mason79f95c82007-03-01 15:16:26 -05001810 * try to push data from one node into the next node right in the
1811 * tree.
1812 *
1813 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
1814 * error, and > 0 if there was no room in the right hand block.
1815 *
1816 * this will only push up to 1/2 the contents of the left node over
1817 */
Chris Mason5f39d392007-10-15 16:14:19 -04001818static int balance_node_right(struct btrfs_trans_handle *trans,
1819 struct btrfs_root *root,
1820 struct extent_buffer *dst,
1821 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05001822{
Chris Mason79f95c82007-03-01 15:16:26 -05001823 int push_items = 0;
1824 int max_push;
1825 int src_nritems;
1826 int dst_nritems;
1827 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05001828
Chris Mason7bb86312007-12-11 09:25:06 -05001829 WARN_ON(btrfs_header_generation(src) != trans->transid);
1830 WARN_ON(btrfs_header_generation(dst) != trans->transid);
1831
Chris Mason5f39d392007-10-15 16:14:19 -04001832 src_nritems = btrfs_header_nritems(src);
1833 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04001834 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05001835 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05001836 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04001837
Chris Masond3977122009-01-05 21:25:51 -05001838 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04001839 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05001840
1841 max_push = src_nritems / 2 + 1;
1842 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05001843 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05001844 return 1;
Yan252c38f2007-08-29 09:11:44 -04001845
Chris Mason79f95c82007-03-01 15:16:26 -05001846 if (max_push < push_items)
1847 push_items = max_push;
1848
Chris Mason5f39d392007-10-15 16:14:19 -04001849 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
1850 btrfs_node_key_ptr_offset(0),
1851 (dst_nritems) *
1852 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04001853
Chris Mason5f39d392007-10-15 16:14:19 -04001854 copy_extent_buffer(dst, src,
1855 btrfs_node_key_ptr_offset(0),
1856 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05001857 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05001858
Chris Mason5f39d392007-10-15 16:14:19 -04001859 btrfs_set_header_nritems(src, src_nritems - push_items);
1860 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05001861
Chris Mason5f39d392007-10-15 16:14:19 -04001862 btrfs_mark_buffer_dirty(src);
1863 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04001864
1865 ret = btrfs_update_ref(trans, root, src, dst, 0, push_items);
1866 BUG_ON(ret);
1867
Chris Mason79f95c82007-03-01 15:16:26 -05001868 return ret;
1869}
1870
1871/*
Chris Mason97571fd2007-02-24 13:39:08 -05001872 * helper function to insert a new root level in the tree.
1873 * A new node is allocated, and a single item is inserted to
1874 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05001875 *
1876 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05001877 */
Chris Masond3977122009-01-05 21:25:51 -05001878static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001879 struct btrfs_root *root,
1880 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05001881{
Chris Mason7bb86312007-12-11 09:25:06 -05001882 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04001883 struct extent_buffer *lower;
1884 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04001885 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04001886 struct btrfs_disk_key lower_key;
Zheng Yan31840ae2008-09-23 13:14:14 -04001887 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05001888
1889 BUG_ON(path->nodes[level]);
1890 BUG_ON(path->nodes[level-1] != root->node);
1891
Chris Mason7bb86312007-12-11 09:25:06 -05001892 lower = path->nodes[level-1];
1893 if (level == 1)
1894 btrfs_item_key(lower, &lower_key, 0);
1895 else
1896 btrfs_node_key(lower, &lower_key, 0);
1897
Zheng Yan31840ae2008-09-23 13:14:14 -04001898 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
1899 root->root_key.objectid, trans->transid,
Christoph Hellwigad3d81b2008-09-05 16:43:28 -04001900 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001901 if (IS_ERR(c))
1902 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04001903
Chris Mason5f39d392007-10-15 16:14:19 -04001904 memset_extent_buffer(c, 0, 0, root->nodesize);
1905 btrfs_set_header_nritems(c, 1);
1906 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04001907 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001908 btrfs_set_header_generation(c, trans->transid);
1909 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04001910
Chris Mason5f39d392007-10-15 16:14:19 -04001911 write_extent_buffer(c, root->fs_info->fsid,
1912 (unsigned long)btrfs_header_fsid(c),
1913 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04001914
1915 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
1916 (unsigned long)btrfs_header_chunk_tree_uuid(c),
1917 BTRFS_UUID_SIZE);
1918
Chris Mason5f39d392007-10-15 16:14:19 -04001919 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04001920 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05001921 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04001922 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05001923
1924 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04001925
1926 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04001927
Chris Mason925baed2008-06-25 16:01:30 -04001928 spin_lock(&root->node_lock);
1929 old = root->node;
Chris Mason5f39d392007-10-15 16:14:19 -04001930 root->node = c;
Chris Mason925baed2008-06-25 16:01:30 -04001931 spin_unlock(&root->node_lock);
1932
Zheng Yan31840ae2008-09-23 13:14:14 -04001933 ret = btrfs_update_extent_ref(trans, root, lower->start,
1934 lower->start, c->start,
1935 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04001936 trans->transid, level - 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001937 BUG_ON(ret);
1938
Chris Mason925baed2008-06-25 16:01:30 -04001939 /* the super has an extra ref to root->node */
1940 free_extent_buffer(old);
1941
Chris Mason0b86a832008-03-24 15:01:56 -04001942 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001943 extent_buffer_get(c);
1944 path->nodes[level] = c;
Chris Mason925baed2008-06-25 16:01:30 -04001945 path->locks[level] = 1;
Chris Mason5c680ed2007-02-22 11:39:13 -05001946 path->slots[level] = 0;
1947 return 0;
1948}
1949
Chris Mason74123bd2007-02-02 11:05:29 -05001950/*
1951 * worker function to insert a single pointer in a node.
1952 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05001953 *
Chris Mason74123bd2007-02-02 11:05:29 -05001954 * slot and level indicate where you want the key to go, and
1955 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001956 *
1957 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -05001958 */
Chris Masone089f052007-03-16 16:20:31 -04001959static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
1960 *root, struct btrfs_path *path, struct btrfs_disk_key
Chris Masondb945352007-10-15 16:15:53 -04001961 *key, u64 bytenr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05001962{
Chris Mason5f39d392007-10-15 16:14:19 -04001963 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05001964 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -05001965
1966 BUG_ON(!path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04001967 lower = path->nodes[level];
1968 nritems = btrfs_header_nritems(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05001969 if (slot > nritems)
1970 BUG();
Chris Mason123abc82007-03-14 14:14:43 -04001971 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -05001972 BUG();
1973 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04001974 memmove_extent_buffer(lower,
1975 btrfs_node_key_ptr_offset(slot + 1),
1976 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04001977 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05001978 }
Chris Mason5f39d392007-10-15 16:14:19 -04001979 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04001980 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05001981 WARN_ON(trans->transid == 0);
1982 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04001983 btrfs_set_header_nritems(lower, nritems + 1);
1984 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05001985 return 0;
1986}
1987
Chris Mason97571fd2007-02-24 13:39:08 -05001988/*
1989 * split the node at the specified level in path in two.
1990 * The path is corrected to point to the appropriate node after the split
1991 *
1992 * Before splitting this tries to make some room in the node by pushing
1993 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001994 *
1995 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05001996 */
Chris Masone02119d2008-09-05 16:13:11 -04001997static noinline int split_node(struct btrfs_trans_handle *trans,
1998 struct btrfs_root *root,
1999 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002000{
Chris Mason5f39d392007-10-15 16:14:19 -04002001 struct extent_buffer *c;
2002 struct extent_buffer *split;
2003 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002004 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05002005 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002006 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04002007 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002008
Chris Mason5f39d392007-10-15 16:14:19 -04002009 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002010 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002011 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002012 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04002013 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002014 if (ret)
2015 return ret;
Chris Masone66f7092007-04-20 13:16:02 -04002016 } else {
2017 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04002018 c = path->nodes[level];
2019 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04002020 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04002021 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04002022 if (ret < 0)
2023 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002024 }
Chris Masone66f7092007-04-20 13:16:02 -04002025
Chris Mason5f39d392007-10-15 16:14:19 -04002026 c_nritems = btrfs_header_nritems(c);
Chris Mason7bb86312007-12-11 09:25:06 -05002027
Chris Mason925baed2008-06-25 16:01:30 -04002028 split = btrfs_alloc_free_block(trans, root, root->nodesize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002029 path->nodes[level + 1]->start,
2030 root->root_key.objectid,
2031 trans->transid, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002032 if (IS_ERR(split))
2033 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04002034
Chris Mason5f39d392007-10-15 16:14:19 -04002035 btrfs_set_header_flags(split, btrfs_header_flags(c));
2036 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04002037 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002038 btrfs_set_header_generation(split, trans->transid);
2039 btrfs_set_header_owner(split, root->root_key.objectid);
Chris Mason63b10fc2008-04-01 11:21:32 -04002040 btrfs_set_header_flags(split, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002041 write_extent_buffer(split, root->fs_info->fsid,
2042 (unsigned long)btrfs_header_fsid(split),
2043 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002044 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
2045 (unsigned long)btrfs_header_chunk_tree_uuid(split),
2046 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04002047
Chris Mason7518a232007-03-12 12:01:18 -04002048 mid = (c_nritems + 1) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04002049
2050 copy_extent_buffer(split, c,
2051 btrfs_node_key_ptr_offset(0),
2052 btrfs_node_key_ptr_offset(mid),
2053 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
2054 btrfs_set_header_nritems(split, c_nritems - mid);
2055 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002056 ret = 0;
2057
Chris Mason5f39d392007-10-15 16:14:19 -04002058 btrfs_mark_buffer_dirty(c);
2059 btrfs_mark_buffer_dirty(split);
2060
2061 btrfs_node_key(split, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002062 wret = insert_ptr(trans, root, path, &disk_key, split->start,
Chris Mason5f39d392007-10-15 16:14:19 -04002063 path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -04002064 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002065 if (wret)
2066 ret = wret;
2067
Zheng Yan31840ae2008-09-23 13:14:14 -04002068 ret = btrfs_update_ref(trans, root, c, split, 0, c_nritems - mid);
2069 BUG_ON(ret);
2070
Chris Mason5de08d72007-02-24 06:24:44 -05002071 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05002072 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04002073 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04002074 free_extent_buffer(c);
2075 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05002076 path->slots[level + 1] += 1;
2077 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002078 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04002079 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002080 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002081 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002082}
2083
Chris Mason74123bd2007-02-02 11:05:29 -05002084/*
2085 * how many bytes are required to store the items in a leaf. start
2086 * and nr indicate which items in the leaf to check. This totals up the
2087 * space used both by the item structs and the item data
2088 */
Chris Mason5f39d392007-10-15 16:14:19 -04002089static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002090{
2091 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04002092 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04002093 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002094
2095 if (!nr)
2096 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002097 data_len = btrfs_item_end_nr(l, start);
2098 data_len = data_len - btrfs_item_offset_nr(l, end);
Chris Mason0783fcf2007-03-12 20:12:07 -04002099 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04002100 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002101 return data_len;
2102}
2103
Chris Mason74123bd2007-02-02 11:05:29 -05002104/*
Chris Masond4dbff92007-04-04 14:08:15 -04002105 * The space between the end of the leaf items and
2106 * the start of the leaf data. IOW, how much room
2107 * the leaf has left for both items and data
2108 */
Chris Masond3977122009-01-05 21:25:51 -05002109noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04002110 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04002111{
Chris Mason5f39d392007-10-15 16:14:19 -04002112 int nritems = btrfs_header_nritems(leaf);
2113 int ret;
2114 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
2115 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05002116 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
2117 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04002118 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04002119 leaf_space_used(leaf, 0, nritems), nritems);
2120 }
2121 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04002122}
2123
2124/*
Chris Mason00ec4c52007-02-24 12:47:20 -05002125 * push some data in the path leaf to the right, trying to free up at
2126 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Masonaa5d6be2007-02-28 16:35:06 -05002127 *
2128 * returns 1 if the push failed because the other node didn't have enough
2129 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason00ec4c52007-02-24 12:47:20 -05002130 */
Chris Masone089f052007-03-16 16:20:31 -04002131static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason34a38212007-11-07 13:31:03 -05002132 *root, struct btrfs_path *path, int data_size,
2133 int empty)
Chris Mason00ec4c52007-02-24 12:47:20 -05002134{
Chris Mason5f39d392007-10-15 16:14:19 -04002135 struct extent_buffer *left = path->nodes[0];
2136 struct extent_buffer *right;
2137 struct extent_buffer *upper;
2138 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05002139 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05002140 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05002141 int free_space;
2142 int push_space = 0;
2143 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002144 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002145 u32 left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002146 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04002147 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002148 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04002149 u32 this_item_size;
Chris Mason54aa1f42007-06-22 14:16:25 -04002150 int ret;
Chris Mason00ec4c52007-02-24 12:47:20 -05002151
2152 slot = path->slots[1];
Chris Masond3977122009-01-05 21:25:51 -05002153 if (!path->nodes[1])
Chris Mason00ec4c52007-02-24 12:47:20 -05002154 return 1;
Chris Masond3977122009-01-05 21:25:51 -05002155
Chris Mason00ec4c52007-02-24 12:47:20 -05002156 upper = path->nodes[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002157 if (slot >= btrfs_header_nritems(upper) - 1)
Chris Mason00ec4c52007-02-24 12:47:20 -05002158 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002159
Chris Masona2135012008-06-25 16:01:30 -04002160 WARN_ON(!btrfs_tree_locked(path->nodes[1]));
2161
Chris Masonca7a79a2008-05-12 12:59:19 -04002162 right = read_node_slot(root, upper, slot + 1);
Chris Mason925baed2008-06-25 16:01:30 -04002163 btrfs_tree_lock(right);
Chris Mason123abc82007-03-14 14:14:43 -04002164 free_space = btrfs_leaf_free_space(root, right);
Yan Zheng87b29b22008-12-17 10:21:48 -05002165 if (free_space < data_size)
Chris Mason925baed2008-06-25 16:01:30 -04002166 goto out_unlock;
Chris Mason02217ed2007-03-02 16:08:05 -05002167
Chris Mason5f39d392007-10-15 16:14:19 -04002168 /* cow and double check */
2169 ret = btrfs_cow_block(trans, root, right, upper,
Chris Mason65b51a02008-08-01 15:11:20 -04002170 slot + 1, &right, 0);
Chris Mason925baed2008-06-25 16:01:30 -04002171 if (ret)
2172 goto out_unlock;
2173
Chris Mason5f39d392007-10-15 16:14:19 -04002174 free_space = btrfs_leaf_free_space(root, right);
Yan Zheng87b29b22008-12-17 10:21:48 -05002175 if (free_space < data_size)
Chris Mason925baed2008-06-25 16:01:30 -04002176 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002177
2178 left_nritems = btrfs_header_nritems(left);
Chris Mason925baed2008-06-25 16:01:30 -04002179 if (left_nritems == 0)
2180 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002181
Chris Mason34a38212007-11-07 13:31:03 -05002182 if (empty)
2183 nr = 0;
2184 else
2185 nr = 1;
2186
Zheng Yan31840ae2008-09-23 13:14:14 -04002187 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05002188 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04002189
Chris Mason34a38212007-11-07 13:31:03 -05002190 i = left_nritems - 1;
2191 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04002192 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002193
Zheng Yan31840ae2008-09-23 13:14:14 -04002194 if (!empty && push_items > 0) {
2195 if (path->slots[0] > i)
2196 break;
2197 if (path->slots[0] == i) {
2198 int space = btrfs_leaf_free_space(root, left);
2199 if (space + push_space * 2 > free_space)
2200 break;
2201 }
2202 }
2203
Chris Mason00ec4c52007-02-24 12:47:20 -05002204 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002205 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002206
2207 if (!left->map_token) {
2208 map_extent_buffer(left, (unsigned long)item,
2209 sizeof(struct btrfs_item),
2210 &left->map_token, &left->kaddr,
2211 &left->map_start, &left->map_len,
2212 KM_USER1);
2213 }
2214
2215 this_item_size = btrfs_item_size(left, item);
2216 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05002217 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04002218
Chris Mason00ec4c52007-02-24 12:47:20 -05002219 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002220 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05002221 if (i == 0)
2222 break;
2223 i--;
Chris Masondb945352007-10-15 16:15:53 -04002224 }
2225 if (left->map_token) {
2226 unmap_extent_buffer(left, left->map_token, KM_USER1);
2227 left->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002228 }
Chris Mason5f39d392007-10-15 16:14:19 -04002229
Chris Mason925baed2008-06-25 16:01:30 -04002230 if (push_items == 0)
2231 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04002232
Chris Mason34a38212007-11-07 13:31:03 -05002233 if (!empty && push_items == left_nritems)
Chris Masona429e512007-04-18 16:15:28 -04002234 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002235
Chris Mason00ec4c52007-02-24 12:47:20 -05002236 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002237 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05002238
Chris Mason5f39d392007-10-15 16:14:19 -04002239 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04002240 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04002241
Chris Mason00ec4c52007-02-24 12:47:20 -05002242 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002243 data_end = leaf_data_end(root, right);
2244 memmove_extent_buffer(right,
2245 btrfs_leaf_data(right) + data_end - push_space,
2246 btrfs_leaf_data(right) + data_end,
2247 BTRFS_LEAF_DATA_SIZE(root) - data_end);
2248
Chris Mason00ec4c52007-02-24 12:47:20 -05002249 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04002250 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04002251 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2252 btrfs_leaf_data(left) + leaf_data_end(root, left),
2253 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002254
2255 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
2256 btrfs_item_nr_offset(0),
2257 right_nritems * sizeof(struct btrfs_item));
2258
Chris Mason00ec4c52007-02-24 12:47:20 -05002259 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04002260 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
2261 btrfs_item_nr_offset(left_nritems - push_items),
2262 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05002263
2264 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04002265 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002266 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002267 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04002268 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002269 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002270 if (!right->map_token) {
2271 map_extent_buffer(right, (unsigned long)item,
2272 sizeof(struct btrfs_item),
2273 &right->map_token, &right->kaddr,
2274 &right->map_start, &right->map_len,
2275 KM_USER1);
2276 }
2277 push_space -= btrfs_item_size(right, item);
2278 btrfs_set_item_offset(right, item, push_space);
2279 }
2280
2281 if (right->map_token) {
2282 unmap_extent_buffer(right, right->map_token, KM_USER1);
2283 right->map_token = NULL;
Chris Mason00ec4c52007-02-24 12:47:20 -05002284 }
Chris Mason7518a232007-03-12 12:01:18 -04002285 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04002286 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05002287
Chris Mason34a38212007-11-07 13:31:03 -05002288 if (left_nritems)
2289 btrfs_mark_buffer_dirty(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002290 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04002291
Zheng Yan31840ae2008-09-23 13:14:14 -04002292 ret = btrfs_update_ref(trans, root, left, right, 0, push_items);
2293 BUG_ON(ret);
2294
Chris Mason5f39d392007-10-15 16:14:19 -04002295 btrfs_item_key(right, &disk_key, 0);
2296 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04002297 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05002298
Chris Mason00ec4c52007-02-24 12:47:20 -05002299 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04002300 if (path->slots[0] >= left_nritems) {
2301 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002302 if (btrfs_header_nritems(path->nodes[0]) == 0)
2303 clean_tree_block(trans, root, path->nodes[0]);
2304 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002305 free_extent_buffer(path->nodes[0]);
2306 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05002307 path->slots[1] += 1;
2308 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002309 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002310 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05002311 }
2312 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04002313
2314out_unlock:
2315 btrfs_tree_unlock(right);
2316 free_extent_buffer(right);
2317 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05002318}
Chris Mason925baed2008-06-25 16:01:30 -04002319
Chris Mason00ec4c52007-02-24 12:47:20 -05002320/*
Chris Mason74123bd2007-02-02 11:05:29 -05002321 * push some data in the path leaf to the left, trying to free up at
2322 * least data_size bytes. returns zero if the push worked, nonzero otherwise
2323 */
Chris Masone089f052007-03-16 16:20:31 -04002324static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason34a38212007-11-07 13:31:03 -05002325 *root, struct btrfs_path *path, int data_size,
2326 int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002327{
Chris Mason5f39d392007-10-15 16:14:19 -04002328 struct btrfs_disk_key disk_key;
2329 struct extent_buffer *right = path->nodes[0];
2330 struct extent_buffer *left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002331 int slot;
2332 int i;
2333 int free_space;
2334 int push_space = 0;
2335 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04002336 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04002337 u32 old_left_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04002338 u32 right_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05002339 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002340 int ret = 0;
2341 int wret;
Chris Masondb945352007-10-15 16:15:53 -04002342 u32 this_item_size;
2343 u32 old_left_item_size;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002344
2345 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04002346 if (slot == 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002347 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002348 if (!path->nodes[1])
Chris Masonbe0e5c02007-01-26 15:51:26 -05002349 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002350
Chris Mason3685f792007-10-19 09:23:27 -04002351 right_nritems = btrfs_header_nritems(right);
Chris Masond3977122009-01-05 21:25:51 -05002352 if (right_nritems == 0)
Chris Mason3685f792007-10-19 09:23:27 -04002353 return 1;
Chris Mason3685f792007-10-19 09:23:27 -04002354
Chris Masona2135012008-06-25 16:01:30 -04002355 WARN_ON(!btrfs_tree_locked(path->nodes[1]));
2356
Chris Masonca7a79a2008-05-12 12:59:19 -04002357 left = read_node_slot(root, path->nodes[1], slot - 1);
Chris Mason925baed2008-06-25 16:01:30 -04002358 btrfs_tree_lock(left);
Chris Mason123abc82007-03-14 14:14:43 -04002359 free_space = btrfs_leaf_free_space(root, left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002360 if (free_space < data_size) {
Chris Mason925baed2008-06-25 16:01:30 -04002361 ret = 1;
2362 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002363 }
Chris Mason02217ed2007-03-02 16:08:05 -05002364
2365 /* cow and double check */
Chris Mason5f39d392007-10-15 16:14:19 -04002366 ret = btrfs_cow_block(trans, root, left,
Chris Mason65b51a02008-08-01 15:11:20 -04002367 path->nodes[1], slot - 1, &left, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002368 if (ret) {
2369 /* we hit -ENOSPC, but it isn't fatal here */
Chris Mason925baed2008-06-25 16:01:30 -04002370 ret = 1;
2371 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002372 }
Chris Mason3685f792007-10-19 09:23:27 -04002373
Chris Mason123abc82007-03-14 14:14:43 -04002374 free_space = btrfs_leaf_free_space(root, left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002375 if (free_space < data_size) {
Chris Mason925baed2008-06-25 16:01:30 -04002376 ret = 1;
2377 goto out;
Chris Mason02217ed2007-03-02 16:08:05 -05002378 }
2379
Chris Mason34a38212007-11-07 13:31:03 -05002380 if (empty)
2381 nr = right_nritems;
2382 else
2383 nr = right_nritems - 1;
2384
2385 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002386 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002387 if (!right->map_token) {
2388 map_extent_buffer(right, (unsigned long)item,
2389 sizeof(struct btrfs_item),
2390 &right->map_token, &right->kaddr,
2391 &right->map_start, &right->map_len,
2392 KM_USER1);
2393 }
2394
Zheng Yan31840ae2008-09-23 13:14:14 -04002395 if (!empty && push_items > 0) {
2396 if (path->slots[0] < i)
2397 break;
2398 if (path->slots[0] == i) {
2399 int space = btrfs_leaf_free_space(root, right);
2400 if (space + push_space * 2 > free_space)
2401 break;
2402 }
2403 }
2404
Chris Masonbe0e5c02007-01-26 15:51:26 -05002405 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05002406 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04002407
2408 this_item_size = btrfs_item_size(right, item);
2409 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002410 break;
Chris Masondb945352007-10-15 16:15:53 -04002411
Chris Masonbe0e5c02007-01-26 15:51:26 -05002412 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04002413 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002414 }
Chris Masondb945352007-10-15 16:15:53 -04002415
2416 if (right->map_token) {
2417 unmap_extent_buffer(right, right->map_token, KM_USER1);
2418 right->map_token = NULL;
2419 }
2420
Chris Masonbe0e5c02007-01-26 15:51:26 -05002421 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002422 ret = 1;
2423 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002424 }
Chris Mason34a38212007-11-07 13:31:03 -05002425 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04002426 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002427
Chris Masonbe0e5c02007-01-26 15:51:26 -05002428 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04002429 copy_extent_buffer(left, right,
2430 btrfs_item_nr_offset(btrfs_header_nritems(left)),
2431 btrfs_item_nr_offset(0),
2432 push_items * sizeof(struct btrfs_item));
2433
Chris Mason123abc82007-03-14 14:14:43 -04002434 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05002435 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002436
2437 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04002438 leaf_data_end(root, left) - push_space,
2439 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04002440 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04002441 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04002442 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05002443 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05002444
Chris Masondb945352007-10-15 16:15:53 -04002445 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04002446 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002447 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04002448
Chris Mason5f39d392007-10-15 16:14:19 -04002449 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04002450 if (!left->map_token) {
2451 map_extent_buffer(left, (unsigned long)item,
2452 sizeof(struct btrfs_item),
2453 &left->map_token, &left->kaddr,
2454 &left->map_start, &left->map_len,
2455 KM_USER1);
2456 }
2457
Chris Mason5f39d392007-10-15 16:14:19 -04002458 ioff = btrfs_item_offset(left, item);
2459 btrfs_set_item_offset(left, item,
Chris Masondb945352007-10-15 16:15:53 -04002460 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size));
Chris Masonbe0e5c02007-01-26 15:51:26 -05002461 }
Chris Mason5f39d392007-10-15 16:14:19 -04002462 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masondb945352007-10-15 16:15:53 -04002463 if (left->map_token) {
2464 unmap_extent_buffer(left, left->map_token, KM_USER1);
2465 left->map_token = NULL;
2466 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002467
2468 /* fixup right node */
Chris Mason34a38212007-11-07 13:31:03 -05002469 if (push_items > right_nritems) {
Chris Masond3977122009-01-05 21:25:51 -05002470 printk(KERN_CRIT "push items %d nr %u\n", push_items,
2471 right_nritems);
Chris Mason34a38212007-11-07 13:31:03 -05002472 WARN_ON(1);
2473 }
Chris Mason5f39d392007-10-15 16:14:19 -04002474
Chris Mason34a38212007-11-07 13:31:03 -05002475 if (push_items < right_nritems) {
2476 push_space = btrfs_item_offset_nr(right, push_items - 1) -
2477 leaf_data_end(root, right);
2478 memmove_extent_buffer(right, btrfs_leaf_data(right) +
2479 BTRFS_LEAF_DATA_SIZE(root) - push_space,
2480 btrfs_leaf_data(right) +
2481 leaf_data_end(root, right), push_space);
2482
2483 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04002484 btrfs_item_nr_offset(push_items),
2485 (btrfs_header_nritems(right) - push_items) *
2486 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05002487 }
Yaneef1c492007-11-26 10:58:13 -05002488 right_nritems -= push_items;
2489 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04002490 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04002491 for (i = 0; i < right_nritems; i++) {
2492 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002493
2494 if (!right->map_token) {
2495 map_extent_buffer(right, (unsigned long)item,
2496 sizeof(struct btrfs_item),
2497 &right->map_token, &right->kaddr,
2498 &right->map_start, &right->map_len,
2499 KM_USER1);
2500 }
2501
2502 push_space = push_space - btrfs_item_size(right, item);
2503 btrfs_set_item_offset(right, item, push_space);
2504 }
2505 if (right->map_token) {
2506 unmap_extent_buffer(right, right->map_token, KM_USER1);
2507 right->map_token = NULL;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002508 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002509
Chris Mason5f39d392007-10-15 16:14:19 -04002510 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05002511 if (right_nritems)
2512 btrfs_mark_buffer_dirty(right);
Chris Mason098f59c2007-05-11 11:33:21 -04002513
Zheng Yan31840ae2008-09-23 13:14:14 -04002514 ret = btrfs_update_ref(trans, root, right, left,
2515 old_left_nritems, push_items);
2516 BUG_ON(ret);
2517
Chris Mason5f39d392007-10-15 16:14:19 -04002518 btrfs_item_key(right, &disk_key, 0);
2519 wret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002520 if (wret)
2521 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002522
2523 /* then fixup the leaf pointer in the path */
2524 if (path->slots[0] < push_items) {
2525 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04002526 if (btrfs_header_nritems(path->nodes[0]) == 0)
2527 clean_tree_block(trans, root, path->nodes[0]);
2528 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002529 free_extent_buffer(path->nodes[0]);
2530 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002531 path->slots[1] -= 1;
2532 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002533 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002534 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002535 path->slots[0] -= push_items;
2536 }
Chris Masoneb60cea2007-02-02 09:18:22 -05002537 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002538 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04002539out:
2540 btrfs_tree_unlock(left);
2541 free_extent_buffer(left);
2542 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002543}
2544
Chris Mason74123bd2007-02-02 11:05:29 -05002545/*
2546 * split the path's leaf in two, making sure there is at least data_size
2547 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002548 *
2549 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05002550 */
Chris Masone02119d2008-09-05 16:13:11 -04002551static noinline int split_leaf(struct btrfs_trans_handle *trans,
2552 struct btrfs_root *root,
2553 struct btrfs_key *ins_key,
2554 struct btrfs_path *path, int data_size,
2555 int extend)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002556{
Chris Mason5f39d392007-10-15 16:14:19 -04002557 struct extent_buffer *l;
Chris Mason7518a232007-03-12 12:01:18 -04002558 u32 nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -05002559 int mid;
2560 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04002561 struct extent_buffer *right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002562 int data_copy_size;
2563 int rt_data_off;
2564 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04002565 int ret = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002566 int wret;
Chris Masoncc0c5532007-10-25 15:42:57 -04002567 int double_split;
2568 int num_doubles = 0;
Chris Masond4dbff92007-04-04 14:08:15 -04002569 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002570
Chris Mason40689472007-03-17 14:29:23 -04002571 /* first try to make some room by pushing left and right */
Chris Mason459931e2008-12-10 09:10:46 -05002572 if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
Chris Mason34a38212007-11-07 13:31:03 -05002573 wret = push_leaf_right(trans, root, path, data_size, 0);
Chris Masond3977122009-01-05 21:25:51 -05002574 if (wret < 0)
Chris Masoneaee50e2007-03-13 11:17:52 -04002575 return wret;
Chris Mason3685f792007-10-19 09:23:27 -04002576 if (wret) {
Chris Mason34a38212007-11-07 13:31:03 -05002577 wret = push_leaf_left(trans, root, path, data_size, 0);
Chris Mason3685f792007-10-19 09:23:27 -04002578 if (wret < 0)
2579 return wret;
2580 }
2581 l = path->nodes[0];
Chris Masonaa5d6be2007-02-28 16:35:06 -05002582
Chris Mason3685f792007-10-19 09:23:27 -04002583 /* did the pushes work? */
Yan Zheng87b29b22008-12-17 10:21:48 -05002584 if (btrfs_leaf_free_space(root, l) >= data_size)
Chris Mason3685f792007-10-19 09:23:27 -04002585 return 0;
Chris Mason3326d1b2007-10-15 16:18:25 -04002586 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05002587
Chris Mason5c680ed2007-02-22 11:39:13 -05002588 if (!path->nodes[1]) {
Chris Masone089f052007-03-16 16:20:31 -04002589 ret = insert_new_root(trans, root, path, 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05002590 if (ret)
2591 return ret;
2592 }
Chris Masoncc0c5532007-10-25 15:42:57 -04002593again:
2594 double_split = 0;
2595 l = path->nodes[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05002596 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04002597 nritems = btrfs_header_nritems(l);
Chris Masond3977122009-01-05 21:25:51 -05002598 mid = (nritems + 1) / 2;
Chris Mason54aa1f42007-06-22 14:16:25 -04002599
Chris Mason925baed2008-06-25 16:01:30 -04002600 right = btrfs_alloc_free_block(trans, root, root->leafsize,
Zheng Yan31840ae2008-09-23 13:14:14 -04002601 path->nodes[1]->start,
2602 root->root_key.objectid,
2603 trans->transid, 0, l->start, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04002604 if (IS_ERR(right)) {
2605 BUG_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04002606 return PTR_ERR(right);
Chris Masoncea9e442008-04-09 16:28:12 -04002607 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002608
Chris Mason5f39d392007-10-15 16:14:19 -04002609 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
Chris Masondb945352007-10-15 16:15:53 -04002610 btrfs_set_header_bytenr(right, right->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002611 btrfs_set_header_generation(right, trans->transid);
2612 btrfs_set_header_owner(right, root->root_key.objectid);
2613 btrfs_set_header_level(right, 0);
2614 write_extent_buffer(right, root->fs_info->fsid,
2615 (unsigned long)btrfs_header_fsid(right),
2616 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04002617
2618 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
2619 (unsigned long)btrfs_header_chunk_tree_uuid(right),
2620 BTRFS_UUID_SIZE);
Chris Masond4dbff92007-04-04 14:08:15 -04002621 if (mid <= slot) {
2622 if (nritems == 1 ||
Yan Zheng87b29b22008-12-17 10:21:48 -05002623 leaf_space_used(l, mid, nritems - mid) + data_size >
Chris Masond4dbff92007-04-04 14:08:15 -04002624 BTRFS_LEAF_DATA_SIZE(root)) {
2625 if (slot >= nritems) {
2626 btrfs_cpu_key_to_disk(&disk_key, ins_key);
Chris Mason5f39d392007-10-15 16:14:19 -04002627 btrfs_set_header_nritems(right, 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002628 wret = insert_ptr(trans, root, path,
Chris Masondb945352007-10-15 16:15:53 -04002629 &disk_key, right->start,
Chris Masond4dbff92007-04-04 14:08:15 -04002630 path->slots[1] + 1, 1);
2631 if (wret)
2632 ret = wret;
Chris Mason925baed2008-06-25 16:01:30 -04002633
2634 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002635 free_extent_buffer(path->nodes[0]);
2636 path->nodes[0] = right;
Chris Masond4dbff92007-04-04 14:08:15 -04002637 path->slots[0] = 0;
2638 path->slots[1] += 1;
Chris Mason0ef8b242008-04-03 16:29:02 -04002639 btrfs_mark_buffer_dirty(right);
Chris Masond4dbff92007-04-04 14:08:15 -04002640 return ret;
2641 }
2642 mid = slot;
Chris Mason3326d1b2007-10-15 16:18:25 -04002643 if (mid != nritems &&
2644 leaf_space_used(l, mid, nritems - mid) +
Yan Zheng87b29b22008-12-17 10:21:48 -05002645 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason3326d1b2007-10-15 16:18:25 -04002646 double_split = 1;
2647 }
Chris Masond4dbff92007-04-04 14:08:15 -04002648 }
2649 } else {
Yan Zheng87b29b22008-12-17 10:21:48 -05002650 if (leaf_space_used(l, 0, mid) + data_size >
Chris Masond4dbff92007-04-04 14:08:15 -04002651 BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason459931e2008-12-10 09:10:46 -05002652 if (!extend && data_size && slot == 0) {
Chris Masond4dbff92007-04-04 14:08:15 -04002653 btrfs_cpu_key_to_disk(&disk_key, ins_key);
Chris Mason5f39d392007-10-15 16:14:19 -04002654 btrfs_set_header_nritems(right, 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002655 wret = insert_ptr(trans, root, path,
2656 &disk_key,
Chris Masondb945352007-10-15 16:15:53 -04002657 right->start,
Chris Mason098f59c2007-05-11 11:33:21 -04002658 path->slots[1], 1);
Chris Masond4dbff92007-04-04 14:08:15 -04002659 if (wret)
2660 ret = wret;
Chris Mason925baed2008-06-25 16:01:30 -04002661 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002662 free_extent_buffer(path->nodes[0]);
2663 path->nodes[0] = right;
Chris Masond4dbff92007-04-04 14:08:15 -04002664 path->slots[0] = 0;
Chris Masona429e512007-04-18 16:15:28 -04002665 if (path->slots[1] == 0) {
2666 wret = fixup_low_keys(trans, root,
Chris Masond3977122009-01-05 21:25:51 -05002667 path, &disk_key, 1);
Chris Masona429e512007-04-18 16:15:28 -04002668 if (wret)
2669 ret = wret;
2670 }
Chris Mason0ef8b242008-04-03 16:29:02 -04002671 btrfs_mark_buffer_dirty(right);
Chris Masond4dbff92007-04-04 14:08:15 -04002672 return ret;
Chris Mason459931e2008-12-10 09:10:46 -05002673 } else if ((extend || !data_size) && slot == 0) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002674 mid = 1;
2675 } else {
2676 mid = slot;
2677 if (mid != nritems &&
2678 leaf_space_used(l, mid, nritems - mid) +
Yan Zheng87b29b22008-12-17 10:21:48 -05002679 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Masoncc0c5532007-10-25 15:42:57 -04002680 double_split = 1;
2681 }
Chris Mason5ee78ac2007-10-19 14:01:21 -04002682 }
Chris Masond4dbff92007-04-04 14:08:15 -04002683 }
2684 }
Chris Mason5f39d392007-10-15 16:14:19 -04002685 nritems = nritems - mid;
2686 btrfs_set_header_nritems(right, nritems);
2687 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
2688
2689 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
2690 btrfs_item_nr_offset(mid),
2691 nritems * sizeof(struct btrfs_item));
2692
2693 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04002694 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
2695 data_copy_size, btrfs_leaf_data(l) +
2696 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05002697
Chris Mason5f39d392007-10-15 16:14:19 -04002698 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
2699 btrfs_item_end_nr(l, mid);
2700
2701 for (i = 0; i < nritems; i++) {
2702 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04002703 u32 ioff;
2704
2705 if (!right->map_token) {
2706 map_extent_buffer(right, (unsigned long)item,
2707 sizeof(struct btrfs_item),
2708 &right->map_token, &right->kaddr,
2709 &right->map_start, &right->map_len,
2710 KM_USER1);
2711 }
2712
2713 ioff = btrfs_item_offset(right, item);
Chris Mason5f39d392007-10-15 16:14:19 -04002714 btrfs_set_item_offset(right, item, ioff + rt_data_off);
Chris Mason0783fcf2007-03-12 20:12:07 -04002715 }
Chris Mason74123bd2007-02-02 11:05:29 -05002716
Chris Masondb945352007-10-15 16:15:53 -04002717 if (right->map_token) {
2718 unmap_extent_buffer(right, right->map_token, KM_USER1);
2719 right->map_token = NULL;
2720 }
2721
Chris Mason5f39d392007-10-15 16:14:19 -04002722 btrfs_set_header_nritems(l, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002723 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002724 btrfs_item_key(right, &disk_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04002725 wret = insert_ptr(trans, root, path, &disk_key, right->start,
2726 path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05002727 if (wret)
2728 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002729
2730 btrfs_mark_buffer_dirty(right);
2731 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05002732 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04002733
Zheng Yan31840ae2008-09-23 13:14:14 -04002734 ret = btrfs_update_ref(trans, root, l, right, 0, nritems);
2735 BUG_ON(ret);
2736
Chris Masonbe0e5c02007-01-26 15:51:26 -05002737 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04002738 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04002739 free_extent_buffer(path->nodes[0]);
2740 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002741 path->slots[0] -= mid;
2742 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04002743 } else {
2744 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002745 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002746 }
Chris Mason5f39d392007-10-15 16:14:19 -04002747
Chris Masoneb60cea2007-02-02 09:18:22 -05002748 BUG_ON(path->slots[0] < 0);
Chris Masond4dbff92007-04-04 14:08:15 -04002749
Chris Masoncc0c5532007-10-25 15:42:57 -04002750 if (double_split) {
2751 BUG_ON(num_doubles != 0);
2752 num_doubles++;
2753 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04002754 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002755 return ret;
2756}
2757
Chris Masond352ac62008-09-29 15:18:18 -04002758/*
Chris Mason459931e2008-12-10 09:10:46 -05002759 * This function splits a single item into two items,
2760 * giving 'new_key' to the new item and splitting the
2761 * old one at split_offset (from the start of the item).
2762 *
2763 * The path may be released by this operation. After
2764 * the split, the path is pointing to the old item. The
2765 * new item is going to be in the same node as the old one.
2766 *
2767 * Note, the item being split must be smaller enough to live alone on
2768 * a tree block with room for one extra struct btrfs_item
2769 *
2770 * This allows us to split the item in place, keeping a lock on the
2771 * leaf the entire time.
2772 */
2773int btrfs_split_item(struct btrfs_trans_handle *trans,
2774 struct btrfs_root *root,
2775 struct btrfs_path *path,
2776 struct btrfs_key *new_key,
2777 unsigned long split_offset)
2778{
2779 u32 item_size;
2780 struct extent_buffer *leaf;
2781 struct btrfs_key orig_key;
2782 struct btrfs_item *item;
2783 struct btrfs_item *new_item;
2784 int ret = 0;
2785 int slot;
2786 u32 nritems;
2787 u32 orig_offset;
2788 struct btrfs_disk_key disk_key;
2789 char *buf;
2790
2791 leaf = path->nodes[0];
2792 btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
2793 if (btrfs_leaf_free_space(root, leaf) >= sizeof(struct btrfs_item))
2794 goto split;
2795
2796 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2797 btrfs_release_path(root, path);
2798
2799 path->search_for_split = 1;
2800 path->keep_locks = 1;
2801
2802 ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
2803 path->search_for_split = 0;
2804
2805 /* if our item isn't there or got smaller, return now */
2806 if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
2807 path->slots[0])) {
2808 path->keep_locks = 0;
2809 return -EAGAIN;
2810 }
2811
Yan Zheng87b29b22008-12-17 10:21:48 -05002812 ret = split_leaf(trans, root, &orig_key, path,
2813 sizeof(struct btrfs_item), 1);
Chris Mason459931e2008-12-10 09:10:46 -05002814 path->keep_locks = 0;
2815 BUG_ON(ret);
2816
Chris Mason459931e2008-12-10 09:10:46 -05002817 leaf = path->nodes[0];
Chris Mason42dc7ba2008-12-15 11:44:56 -05002818 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05002819
2820split:
2821 item = btrfs_item_nr(leaf, path->slots[0]);
2822 orig_offset = btrfs_item_offset(leaf, item);
2823 item_size = btrfs_item_size(leaf, item);
2824
2825
2826 buf = kmalloc(item_size, GFP_NOFS);
2827 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
2828 path->slots[0]), item_size);
2829 slot = path->slots[0] + 1;
2830 leaf = path->nodes[0];
2831
2832 nritems = btrfs_header_nritems(leaf);
2833
2834 if (slot != nritems) {
2835 /* shift the items */
2836 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
2837 btrfs_item_nr_offset(slot),
2838 (nritems - slot) * sizeof(struct btrfs_item));
2839
2840 }
2841
2842 btrfs_cpu_key_to_disk(&disk_key, new_key);
2843 btrfs_set_item_key(leaf, &disk_key, slot);
2844
2845 new_item = btrfs_item_nr(leaf, slot);
2846
2847 btrfs_set_item_offset(leaf, new_item, orig_offset);
2848 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
2849
2850 btrfs_set_item_offset(leaf, item,
2851 orig_offset + item_size - split_offset);
2852 btrfs_set_item_size(leaf, item, split_offset);
2853
2854 btrfs_set_header_nritems(leaf, nritems + 1);
2855
2856 /* write the data for the start of the original item */
2857 write_extent_buffer(leaf, buf,
2858 btrfs_item_ptr_offset(leaf, path->slots[0]),
2859 split_offset);
2860
2861 /* write the data for the new item */
2862 write_extent_buffer(leaf, buf + split_offset,
2863 btrfs_item_ptr_offset(leaf, slot),
2864 item_size - split_offset);
2865 btrfs_mark_buffer_dirty(leaf);
2866
2867 ret = 0;
2868 if (btrfs_leaf_free_space(root, leaf) < 0) {
2869 btrfs_print_leaf(root, leaf);
2870 BUG();
2871 }
2872 kfree(buf);
2873 return ret;
2874}
2875
2876/*
Chris Masond352ac62008-09-29 15:18:18 -04002877 * make the item pointed to by the path smaller. new_size indicates
2878 * how small to make it, and from_end tells us if we just chop bytes
2879 * off the end of the item or if we shift the item to chop bytes off
2880 * the front.
2881 */
Chris Masonb18c6682007-04-17 13:26:50 -04002882int btrfs_truncate_item(struct btrfs_trans_handle *trans,
2883 struct btrfs_root *root,
2884 struct btrfs_path *path,
Chris Mason179e29e2007-11-01 11:28:41 -04002885 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04002886{
2887 int ret = 0;
2888 int slot;
2889 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04002890 struct extent_buffer *leaf;
2891 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04002892 u32 nritems;
2893 unsigned int data_end;
2894 unsigned int old_data_start;
2895 unsigned int old_size;
2896 unsigned int size_diff;
2897 int i;
2898
2899 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04002900 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04002901 slot = path->slots[0];
2902
2903 old_size = btrfs_item_size_nr(leaf, slot);
2904 if (old_size == new_size)
2905 return 0;
Chris Masonb18c6682007-04-17 13:26:50 -04002906
Chris Mason5f39d392007-10-15 16:14:19 -04002907 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04002908 data_end = leaf_data_end(root, leaf);
2909
Chris Mason5f39d392007-10-15 16:14:19 -04002910 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04002911
Chris Masonb18c6682007-04-17 13:26:50 -04002912 size_diff = old_size - new_size;
2913
2914 BUG_ON(slot < 0);
2915 BUG_ON(slot >= nritems);
2916
2917 /*
2918 * item0..itemN ... dataN.offset..dataN.size .. data0.size
2919 */
2920 /* first correct the data pointers */
2921 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04002922 u32 ioff;
2923 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04002924
2925 if (!leaf->map_token) {
2926 map_extent_buffer(leaf, (unsigned long)item,
2927 sizeof(struct btrfs_item),
2928 &leaf->map_token, &leaf->kaddr,
2929 &leaf->map_start, &leaf->map_len,
2930 KM_USER1);
2931 }
2932
Chris Mason5f39d392007-10-15 16:14:19 -04002933 ioff = btrfs_item_offset(leaf, item);
2934 btrfs_set_item_offset(leaf, item, ioff + size_diff);
Chris Masonb18c6682007-04-17 13:26:50 -04002935 }
Chris Masondb945352007-10-15 16:15:53 -04002936
2937 if (leaf->map_token) {
2938 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
2939 leaf->map_token = NULL;
2940 }
2941
Chris Masonb18c6682007-04-17 13:26:50 -04002942 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04002943 if (from_end) {
2944 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
2945 data_end + size_diff, btrfs_leaf_data(leaf) +
2946 data_end, old_data_start + new_size - data_end);
2947 } else {
2948 struct btrfs_disk_key disk_key;
2949 u64 offset;
2950
2951 btrfs_item_key(leaf, &disk_key, slot);
2952
2953 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
2954 unsigned long ptr;
2955 struct btrfs_file_extent_item *fi;
2956
2957 fi = btrfs_item_ptr(leaf, slot,
2958 struct btrfs_file_extent_item);
2959 fi = (struct btrfs_file_extent_item *)(
2960 (unsigned long)fi - size_diff);
2961
2962 if (btrfs_file_extent_type(leaf, fi) ==
2963 BTRFS_FILE_EXTENT_INLINE) {
2964 ptr = btrfs_item_ptr_offset(leaf, slot);
2965 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05002966 (unsigned long)fi,
2967 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04002968 disk_bytenr));
2969 }
2970 }
2971
2972 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
2973 data_end + size_diff, btrfs_leaf_data(leaf) +
2974 data_end, old_data_start - data_end);
2975
2976 offset = btrfs_disk_key_offset(&disk_key);
2977 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
2978 btrfs_set_item_key(leaf, &disk_key, slot);
2979 if (slot == 0)
2980 fixup_low_keys(trans, root, path, &disk_key, 1);
2981 }
Chris Mason5f39d392007-10-15 16:14:19 -04002982
2983 item = btrfs_item_nr(leaf, slot);
2984 btrfs_set_item_size(leaf, item, new_size);
2985 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04002986
2987 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002988 if (btrfs_leaf_free_space(root, leaf) < 0) {
2989 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04002990 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04002991 }
Chris Masonb18c6682007-04-17 13:26:50 -04002992 return ret;
2993}
2994
Chris Masond352ac62008-09-29 15:18:18 -04002995/*
2996 * make the item pointed to by the path bigger, data_size is the new size.
2997 */
Chris Mason5f39d392007-10-15 16:14:19 -04002998int btrfs_extend_item(struct btrfs_trans_handle *trans,
2999 struct btrfs_root *root, struct btrfs_path *path,
3000 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04003001{
3002 int ret = 0;
3003 int slot;
3004 int slot_orig;
Chris Mason5f39d392007-10-15 16:14:19 -04003005 struct extent_buffer *leaf;
3006 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04003007 u32 nritems;
3008 unsigned int data_end;
3009 unsigned int old_data;
3010 unsigned int old_size;
3011 int i;
3012
3013 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003014 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04003015
Chris Mason5f39d392007-10-15 16:14:19 -04003016 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003017 data_end = leaf_data_end(root, leaf);
3018
Chris Mason5f39d392007-10-15 16:14:19 -04003019 if (btrfs_leaf_free_space(root, leaf) < data_size) {
3020 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003021 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003022 }
Chris Mason6567e832007-04-16 09:22:45 -04003023 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003024 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04003025
3026 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04003027 if (slot >= nritems) {
3028 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003029 printk(KERN_CRIT "slot %d too large, nritems %d\n",
3030 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04003031 BUG_ON(1);
3032 }
Chris Mason6567e832007-04-16 09:22:45 -04003033
3034 /*
3035 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3036 */
3037 /* first correct the data pointers */
3038 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003039 u32 ioff;
3040 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003041
3042 if (!leaf->map_token) {
3043 map_extent_buffer(leaf, (unsigned long)item,
3044 sizeof(struct btrfs_item),
3045 &leaf->map_token, &leaf->kaddr,
3046 &leaf->map_start, &leaf->map_len,
3047 KM_USER1);
3048 }
Chris Mason5f39d392007-10-15 16:14:19 -04003049 ioff = btrfs_item_offset(leaf, item);
3050 btrfs_set_item_offset(leaf, item, ioff - data_size);
Chris Mason6567e832007-04-16 09:22:45 -04003051 }
Chris Mason5f39d392007-10-15 16:14:19 -04003052
Chris Masondb945352007-10-15 16:15:53 -04003053 if (leaf->map_token) {
3054 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3055 leaf->map_token = NULL;
3056 }
3057
Chris Mason6567e832007-04-16 09:22:45 -04003058 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003059 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04003060 data_end - data_size, btrfs_leaf_data(leaf) +
3061 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003062
Chris Mason6567e832007-04-16 09:22:45 -04003063 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04003064 old_size = btrfs_item_size_nr(leaf, slot);
3065 item = btrfs_item_nr(leaf, slot);
3066 btrfs_set_item_size(leaf, item, old_size + data_size);
3067 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003068
3069 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003070 if (btrfs_leaf_free_space(root, leaf) < 0) {
3071 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04003072 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003073 }
Chris Mason6567e832007-04-16 09:22:45 -04003074 return ret;
3075}
3076
Chris Mason74123bd2007-02-02 11:05:29 -05003077/*
Chris Masond352ac62008-09-29 15:18:18 -04003078 * Given a key and some data, insert items into the tree.
Chris Mason74123bd2007-02-02 11:05:29 -05003079 * This does all the path init required, making room in the tree if needed.
Josef Bacikf3465ca2008-11-12 14:19:50 -05003080 * Returns the number of keys that were inserted.
3081 */
3082int btrfs_insert_some_items(struct btrfs_trans_handle *trans,
3083 struct btrfs_root *root,
3084 struct btrfs_path *path,
3085 struct btrfs_key *cpu_key, u32 *data_size,
3086 int nr)
3087{
3088 struct extent_buffer *leaf;
3089 struct btrfs_item *item;
3090 int ret = 0;
3091 int slot;
Josef Bacikf3465ca2008-11-12 14:19:50 -05003092 int i;
3093 u32 nritems;
3094 u32 total_data = 0;
3095 u32 total_size = 0;
3096 unsigned int data_end;
3097 struct btrfs_disk_key disk_key;
3098 struct btrfs_key found_key;
3099
Yan Zheng87b29b22008-12-17 10:21:48 -05003100 for (i = 0; i < nr; i++) {
3101 if (total_size + data_size[i] + sizeof(struct btrfs_item) >
3102 BTRFS_LEAF_DATA_SIZE(root)) {
3103 break;
3104 nr = i;
3105 }
Josef Bacikf3465ca2008-11-12 14:19:50 -05003106 total_data += data_size[i];
Yan Zheng87b29b22008-12-17 10:21:48 -05003107 total_size += data_size[i] + sizeof(struct btrfs_item);
3108 }
3109 BUG_ON(nr == 0);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003110
Josef Bacikf3465ca2008-11-12 14:19:50 -05003111 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
3112 if (ret == 0)
3113 return -EEXIST;
3114 if (ret < 0)
3115 goto out;
3116
Josef Bacikf3465ca2008-11-12 14:19:50 -05003117 leaf = path->nodes[0];
3118
3119 nritems = btrfs_header_nritems(leaf);
3120 data_end = leaf_data_end(root, leaf);
3121
3122 if (btrfs_leaf_free_space(root, leaf) < total_size) {
3123 for (i = nr; i >= 0; i--) {
3124 total_data -= data_size[i];
3125 total_size -= data_size[i] + sizeof(struct btrfs_item);
3126 if (total_size < btrfs_leaf_free_space(root, leaf))
3127 break;
3128 }
3129 nr = i;
3130 }
3131
3132 slot = path->slots[0];
3133 BUG_ON(slot < 0);
3134
3135 if (slot != nritems) {
3136 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
3137
3138 item = btrfs_item_nr(leaf, slot);
3139 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3140
3141 /* figure out how many keys we can insert in here */
3142 total_data = data_size[0];
3143 for (i = 1; i < nr; i++) {
3144 if (comp_cpu_keys(&found_key, cpu_key + i) <= 0)
3145 break;
3146 total_data += data_size[i];
3147 }
3148 nr = i;
3149
3150 if (old_data < data_end) {
3151 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003152 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Josef Bacikf3465ca2008-11-12 14:19:50 -05003153 slot, old_data, data_end);
3154 BUG_ON(1);
3155 }
3156 /*
3157 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3158 */
3159 /* first correct the data pointers */
3160 WARN_ON(leaf->map_token);
3161 for (i = slot; i < nritems; i++) {
3162 u32 ioff;
3163
3164 item = btrfs_item_nr(leaf, i);
3165 if (!leaf->map_token) {
3166 map_extent_buffer(leaf, (unsigned long)item,
3167 sizeof(struct btrfs_item),
3168 &leaf->map_token, &leaf->kaddr,
3169 &leaf->map_start, &leaf->map_len,
3170 KM_USER1);
3171 }
3172
3173 ioff = btrfs_item_offset(leaf, item);
3174 btrfs_set_item_offset(leaf, item, ioff - total_data);
3175 }
3176 if (leaf->map_token) {
3177 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3178 leaf->map_token = NULL;
3179 }
3180
3181 /* shift the items */
3182 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
3183 btrfs_item_nr_offset(slot),
3184 (nritems - slot) * sizeof(struct btrfs_item));
3185
3186 /* shift the data */
3187 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
3188 data_end - total_data, btrfs_leaf_data(leaf) +
3189 data_end, old_data - data_end);
3190 data_end = old_data;
3191 } else {
3192 /*
3193 * this sucks but it has to be done, if we are inserting at
3194 * the end of the leaf only insert 1 of the items, since we
3195 * have no way of knowing whats on the next leaf and we'd have
3196 * to drop our current locks to figure it out
3197 */
3198 nr = 1;
3199 }
3200
3201 /* setup the item for the new data */
3202 for (i = 0; i < nr; i++) {
3203 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3204 btrfs_set_item_key(leaf, &disk_key, slot + i);
3205 item = btrfs_item_nr(leaf, slot + i);
3206 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3207 data_end -= data_size[i];
3208 btrfs_set_item_size(leaf, item, data_size[i]);
3209 }
3210 btrfs_set_header_nritems(leaf, nritems + nr);
3211 btrfs_mark_buffer_dirty(leaf);
3212
3213 ret = 0;
3214 if (slot == 0) {
3215 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
3216 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
3217 }
3218
3219 if (btrfs_leaf_free_space(root, leaf) < 0) {
3220 btrfs_print_leaf(root, leaf);
3221 BUG();
3222 }
3223out:
3224 if (!ret)
3225 ret = nr;
3226 return ret;
3227}
3228
3229/*
3230 * Given a key and some data, insert items into the tree.
3231 * This does all the path init required, making room in the tree if needed.
Chris Mason74123bd2007-02-02 11:05:29 -05003232 */
Chris Mason9c583092008-01-29 15:15:18 -05003233int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003234 struct btrfs_root *root,
3235 struct btrfs_path *path,
Chris Mason9c583092008-01-29 15:15:18 -05003236 struct btrfs_key *cpu_key, u32 *data_size,
3237 int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003238{
Chris Mason5f39d392007-10-15 16:14:19 -04003239 struct extent_buffer *leaf;
3240 struct btrfs_item *item;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003241 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003242 int slot;
Chris Masoneb60cea2007-02-02 09:18:22 -05003243 int slot_orig;
Chris Mason9c583092008-01-29 15:15:18 -05003244 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003245 u32 nritems;
Chris Mason9c583092008-01-29 15:15:18 -05003246 u32 total_size = 0;
3247 u32 total_data = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003248 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04003249 struct btrfs_disk_key disk_key;
3250
Chris Masond3977122009-01-05 21:25:51 -05003251 for (i = 0; i < nr; i++)
Chris Mason9c583092008-01-29 15:15:18 -05003252 total_data += data_size[i];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003253
Josef Bacik7b128762008-07-24 12:17:14 -04003254 total_size = total_data + (nr * sizeof(struct btrfs_item));
Chris Mason9c583092008-01-29 15:15:18 -05003255 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003256 if (ret == 0)
Chris Masonf0930a32007-03-02 09:47:58 -05003257 return -EEXIST;
Chris Masoned2ff2c2007-03-01 18:59:40 -05003258 if (ret < 0)
3259 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003260
Chris Mason62e27492007-03-15 12:56:47 -04003261 slot_orig = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04003262 leaf = path->nodes[0];
Chris Mason74123bd2007-02-02 11:05:29 -05003263
Chris Mason5f39d392007-10-15 16:14:19 -04003264 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04003265 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05003266
Chris Masonf25956c2008-09-12 15:32:53 -04003267 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04003268 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003269 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05003270 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003271 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04003272 }
Chris Mason5f39d392007-10-15 16:14:19 -04003273
Chris Mason62e27492007-03-15 12:56:47 -04003274 slot = path->slots[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05003275 BUG_ON(slot < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003276
Chris Masonbe0e5c02007-01-26 15:51:26 -05003277 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04003278 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003279
Chris Mason5f39d392007-10-15 16:14:19 -04003280 if (old_data < data_end) {
3281 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05003282 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04003283 slot, old_data, data_end);
3284 BUG_ON(1);
3285 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003286 /*
3287 * item0..itemN ... dataN.offset..dataN.size .. data0.size
3288 */
3289 /* first correct the data pointers */
Chris Masondb945352007-10-15 16:15:53 -04003290 WARN_ON(leaf->map_token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003291 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003292 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003293
Chris Mason5f39d392007-10-15 16:14:19 -04003294 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003295 if (!leaf->map_token) {
3296 map_extent_buffer(leaf, (unsigned long)item,
3297 sizeof(struct btrfs_item),
3298 &leaf->map_token, &leaf->kaddr,
3299 &leaf->map_start, &leaf->map_len,
3300 KM_USER1);
3301 }
3302
Chris Mason5f39d392007-10-15 16:14:19 -04003303 ioff = btrfs_item_offset(leaf, item);
Chris Mason9c583092008-01-29 15:15:18 -05003304 btrfs_set_item_offset(leaf, item, ioff - total_data);
Chris Mason0783fcf2007-03-12 20:12:07 -04003305 }
Chris Masondb945352007-10-15 16:15:53 -04003306 if (leaf->map_token) {
3307 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3308 leaf->map_token = NULL;
3309 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003310
3311 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05003312 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04003313 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003314 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003315
3316 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04003317 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05003318 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003319 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003320 data_end = old_data;
3321 }
Chris Mason5f39d392007-10-15 16:14:19 -04003322
Chris Mason62e27492007-03-15 12:56:47 -04003323 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05003324 for (i = 0; i < nr; i++) {
3325 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
3326 btrfs_set_item_key(leaf, &disk_key, slot + i);
3327 item = btrfs_item_nr(leaf, slot + i);
3328 btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
3329 data_end -= data_size[i];
3330 btrfs_set_item_size(leaf, item, data_size[i]);
3331 }
3332 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Mason5f39d392007-10-15 16:14:19 -04003333 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003334
3335 ret = 0;
Chris Mason5a01a2e2008-01-30 11:43:54 -05003336 if (slot == 0) {
3337 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masone089f052007-03-16 16:20:31 -04003338 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05003339 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003340
Chris Mason5f39d392007-10-15 16:14:19 -04003341 if (btrfs_leaf_free_space(root, leaf) < 0) {
3342 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003343 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04003344 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05003345out:
Chris Mason62e27492007-03-15 12:56:47 -04003346 return ret;
3347}
3348
3349/*
3350 * Given a key and some data, insert an item into the tree.
3351 * This does all the path init required, making room in the tree if needed.
3352 */
Chris Masone089f052007-03-16 16:20:31 -04003353int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
3354 *root, struct btrfs_key *cpu_key, void *data, u32
3355 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04003356{
3357 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04003358 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003359 struct extent_buffer *leaf;
3360 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04003361
Chris Mason2c90e5d2007-04-02 10:50:19 -04003362 path = btrfs_alloc_path();
3363 BUG_ON(!path);
Chris Mason2c90e5d2007-04-02 10:50:19 -04003364 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04003365 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04003366 leaf = path->nodes[0];
3367 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3368 write_extent_buffer(leaf, data, ptr, data_size);
3369 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04003370 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04003371 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003372 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003373}
3374
Chris Mason74123bd2007-02-02 11:05:29 -05003375/*
Chris Mason5de08d72007-02-24 06:24:44 -05003376 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05003377 *
Chris Masond352ac62008-09-29 15:18:18 -04003378 * the tree should have been previously balanced so the deletion does not
3379 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05003380 */
Chris Masone089f052007-03-16 16:20:31 -04003381static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3382 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003383{
Chris Mason5f39d392007-10-15 16:14:19 -04003384 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04003385 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003386 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003387 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003388
Chris Mason5f39d392007-10-15 16:14:19 -04003389 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05003390 if (slot != nritems - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003391 memmove_extent_buffer(parent,
3392 btrfs_node_key_ptr_offset(slot),
3393 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04003394 sizeof(struct btrfs_key_ptr) *
3395 (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05003396 }
Chris Mason7518a232007-03-12 12:01:18 -04003397 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04003398 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04003399 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04003400 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05003401 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04003402 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05003403 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003404 struct btrfs_disk_key disk_key;
3405
3406 btrfs_node_key(parent, &disk_key, 0);
3407 wret = fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05003408 if (wret)
3409 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003410 }
Chris Masond6025572007-03-30 14:27:56 -04003411 btrfs_mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003412 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003413}
3414
Chris Mason74123bd2007-02-02 11:05:29 -05003415/*
Chris Mason323ac952008-10-01 19:05:46 -04003416 * a helper function to delete the leaf pointed to by path->slots[1] and
3417 * path->nodes[1]. bytenr is the node block pointer, but since the callers
3418 * already know it, it is faster to have them pass it down than to
3419 * read it out of the node again.
3420 *
3421 * This deletes the pointer in path->nodes[1] and frees the leaf
3422 * block extent. zero is returned if it all worked out, < 0 otherwise.
3423 *
3424 * The path must have already been setup for deleting the leaf, including
3425 * all the proper balancing. path->nodes[1] must be locked.
3426 */
3427noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
3428 struct btrfs_root *root,
3429 struct btrfs_path *path, u64 bytenr)
3430{
3431 int ret;
3432 u64 root_gen = btrfs_header_generation(path->nodes[1]);
3433
3434 ret = del_ptr(trans, root, path, 1, path->slots[1]);
3435 if (ret)
3436 return ret;
3437
3438 ret = btrfs_free_extent(trans, root, bytenr,
3439 btrfs_level_size(root, 0),
3440 path->nodes[1]->start,
3441 btrfs_header_owner(path->nodes[1]),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04003442 root_gen, 0, 1);
Chris Mason323ac952008-10-01 19:05:46 -04003443 return ret;
3444}
3445/*
Chris Mason74123bd2007-02-02 11:05:29 -05003446 * delete the item at the leaf level in path. If that empties
3447 * the leaf, remove it from the tree
3448 */
Chris Mason85e21ba2008-01-29 15:11:36 -05003449int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3450 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003451{
Chris Mason5f39d392007-10-15 16:14:19 -04003452 struct extent_buffer *leaf;
3453 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003454 int last_off;
3455 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003456 int ret = 0;
3457 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05003458 int i;
Chris Mason7518a232007-03-12 12:01:18 -04003459 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003460
Chris Mason5f39d392007-10-15 16:14:19 -04003461 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05003462 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
3463
3464 for (i = 0; i < nr; i++)
3465 dsize += btrfs_item_size_nr(leaf, slot + i);
3466
Chris Mason5f39d392007-10-15 16:14:19 -04003467 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003468
Chris Mason85e21ba2008-01-29 15:11:36 -05003469 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04003470 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003471
3472 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04003473 data_end + dsize,
3474 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05003475 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003476
Chris Mason85e21ba2008-01-29 15:11:36 -05003477 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003478 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003479
Chris Mason5f39d392007-10-15 16:14:19 -04003480 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04003481 if (!leaf->map_token) {
3482 map_extent_buffer(leaf, (unsigned long)item,
3483 sizeof(struct btrfs_item),
3484 &leaf->map_token, &leaf->kaddr,
3485 &leaf->map_start, &leaf->map_len,
3486 KM_USER1);
3487 }
Chris Mason5f39d392007-10-15 16:14:19 -04003488 ioff = btrfs_item_offset(leaf, item);
3489 btrfs_set_item_offset(leaf, item, ioff + dsize);
Chris Mason0783fcf2007-03-12 20:12:07 -04003490 }
Chris Masondb945352007-10-15 16:15:53 -04003491
3492 if (leaf->map_token) {
3493 unmap_extent_buffer(leaf, leaf->map_token, KM_USER1);
3494 leaf->map_token = NULL;
3495 }
3496
Chris Mason5f39d392007-10-15 16:14:19 -04003497 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05003498 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04003499 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05003500 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05003501 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003502 btrfs_set_header_nritems(leaf, nritems - nr);
3503 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04003504
Chris Mason74123bd2007-02-02 11:05:29 -05003505 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04003506 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003507 if (leaf == root->node) {
3508 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05003509 } else {
Chris Mason323ac952008-10-01 19:05:46 -04003510 ret = btrfs_del_leaf(trans, root, path, leaf->start);
3511 BUG_ON(ret);
Chris Mason9a8dd152007-02-23 08:38:36 -05003512 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05003513 } else {
Chris Mason7518a232007-03-12 12:01:18 -04003514 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003515 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003516 struct btrfs_disk_key disk_key;
3517
3518 btrfs_item_key(leaf, &disk_key, 0);
Chris Masone089f052007-03-16 16:20:31 -04003519 wret = fixup_low_keys(trans, root, path,
Chris Mason5f39d392007-10-15 16:14:19 -04003520 &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003521 if (wret)
3522 ret = wret;
3523 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003524
Chris Mason74123bd2007-02-02 11:05:29 -05003525 /* delete the leaf if it is mostly empty */
Chris Mason85e21ba2008-01-29 15:11:36 -05003526 if (used < BTRFS_LEAF_DATA_SIZE(root) / 4) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003527 /* push_leaf_left fixes the path.
3528 * make sure the path still points to our leaf
3529 * for possible call to del_ptr below
3530 */
Chris Mason4920c9a2007-01-26 16:38:42 -05003531 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04003532 extent_buffer_get(leaf);
3533
Chris Mason85e21ba2008-01-29 15:11:36 -05003534 wret = push_leaf_left(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003535 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003536 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04003537
3538 if (path->nodes[0] == leaf &&
3539 btrfs_header_nritems(leaf)) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003540 wret = push_leaf_right(trans, root, path, 1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003541 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05003542 ret = wret;
3543 }
Chris Mason5f39d392007-10-15 16:14:19 -04003544
3545 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04003546 path->slots[1] = slot;
Chris Masond3977122009-01-05 21:25:51 -05003547 ret = btrfs_del_leaf(trans, root, path,
3548 leaf->start);
Chris Mason323ac952008-10-01 19:05:46 -04003549 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003550 free_extent_buffer(leaf);
Chris Mason5de08d72007-02-24 06:24:44 -05003551 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003552 /* if we're still in the path, make sure
3553 * we're dirty. Otherwise, one of the
3554 * push_leaf functions must have already
3555 * dirtied this buffer
3556 */
3557 if (path->nodes[0] == leaf)
3558 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04003559 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003560 }
Chris Masond5719762007-03-23 10:01:08 -04003561 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04003562 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003563 }
3564 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003565 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003566}
3567
Chris Mason97571fd2007-02-24 13:39:08 -05003568/*
Chris Mason925baed2008-06-25 16:01:30 -04003569 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05003570 * returns 0 if it found something or 1 if there are no lesser leaves.
3571 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04003572 *
3573 * This may release the path, and so you may lose any locks held at the
3574 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05003575 */
3576int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
3577{
Chris Mason925baed2008-06-25 16:01:30 -04003578 struct btrfs_key key;
3579 struct btrfs_disk_key found_key;
3580 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05003581
Chris Mason925baed2008-06-25 16:01:30 -04003582 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05003583
Chris Mason925baed2008-06-25 16:01:30 -04003584 if (key.offset > 0)
3585 key.offset--;
3586 else if (key.type > 0)
3587 key.type--;
3588 else if (key.objectid > 0)
3589 key.objectid--;
3590 else
3591 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003592
Chris Mason925baed2008-06-25 16:01:30 -04003593 btrfs_release_path(root, path);
3594 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3595 if (ret < 0)
3596 return ret;
3597 btrfs_item_key(path->nodes[0], &found_key, 0);
3598 ret = comp_keys(&found_key, &key);
3599 if (ret < 0)
3600 return 0;
3601 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05003602}
3603
Chris Mason3f157a22008-06-25 16:01:31 -04003604/*
3605 * A helper function to walk down the tree starting at min_key, and looking
3606 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04003607 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04003608 *
3609 * This does not cow, but it does stuff the starting key it finds back
3610 * into min_key, so you can call btrfs_search_slot with cow=1 on the
3611 * key and get a writable path.
3612 *
3613 * This does lock as it descends, and path->keep_locks should be set
3614 * to 1 by the caller.
3615 *
3616 * This honors path->lowest_level to prevent descent past a given level
3617 * of the tree.
3618 *
Chris Masond352ac62008-09-29 15:18:18 -04003619 * min_trans indicates the oldest transaction that you are interested
3620 * in walking through. Any nodes or leaves older than min_trans are
3621 * skipped over (without reading them).
3622 *
Chris Mason3f157a22008-06-25 16:01:31 -04003623 * returns zero if something useful was found, < 0 on error and 1 if there
3624 * was nothing in the tree that matched the search criteria.
3625 */
3626int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04003627 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04003628 struct btrfs_path *path, int cache_only,
3629 u64 min_trans)
3630{
3631 struct extent_buffer *cur;
3632 struct btrfs_key found_key;
3633 int slot;
Yan96524802008-07-24 12:19:49 -04003634 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04003635 u32 nritems;
3636 int level;
3637 int ret = 1;
3638
Chris Mason934d3752008-12-08 16:43:10 -05003639 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04003640again:
3641 cur = btrfs_lock_root_node(root);
3642 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04003643 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04003644 path->nodes[level] = cur;
3645 path->locks[level] = 1;
3646
3647 if (btrfs_header_generation(cur) < min_trans) {
3648 ret = 1;
3649 goto out;
3650 }
Chris Masond3977122009-01-05 21:25:51 -05003651 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04003652 nritems = btrfs_header_nritems(cur);
3653 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04003654 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003655
Chris Mason323ac952008-10-01 19:05:46 -04003656 /* at the lowest level, we're done, setup the path and exit */
3657 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04003658 if (slot >= nritems)
3659 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04003660 ret = 0;
3661 path->slots[level] = slot;
3662 btrfs_item_key_to_cpu(cur, &found_key, slot);
3663 goto out;
3664 }
Yan96524802008-07-24 12:19:49 -04003665 if (sret && slot > 0)
3666 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04003667 /*
3668 * check this node pointer against the cache_only and
3669 * min_trans parameters. If it isn't in cache or is too
3670 * old, skip to the next one.
3671 */
Chris Masond3977122009-01-05 21:25:51 -05003672 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04003673 u64 blockptr;
3674 u64 gen;
3675 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04003676 struct btrfs_disk_key disk_key;
3677
Chris Mason3f157a22008-06-25 16:01:31 -04003678 blockptr = btrfs_node_blockptr(cur, slot);
3679 gen = btrfs_node_ptr_generation(cur, slot);
3680 if (gen < min_trans) {
3681 slot++;
3682 continue;
3683 }
3684 if (!cache_only)
3685 break;
3686
Chris Masone02119d2008-09-05 16:13:11 -04003687 if (max_key) {
3688 btrfs_node_key(cur, &disk_key, slot);
3689 if (comp_keys(&disk_key, max_key) >= 0) {
3690 ret = 1;
3691 goto out;
3692 }
3693 }
3694
Chris Mason3f157a22008-06-25 16:01:31 -04003695 tmp = btrfs_find_tree_block(root, blockptr,
3696 btrfs_level_size(root, level - 1));
3697
3698 if (tmp && btrfs_buffer_uptodate(tmp, gen)) {
3699 free_extent_buffer(tmp);
3700 break;
3701 }
3702 if (tmp)
3703 free_extent_buffer(tmp);
3704 slot++;
3705 }
Chris Masone02119d2008-09-05 16:13:11 -04003706find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04003707 /*
3708 * we didn't find a candidate key in this node, walk forward
3709 * and find another one
3710 */
3711 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04003712 path->slots[level] = slot;
3713 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04003714 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04003715 if (sret == 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04003716 btrfs_release_path(root, path);
3717 goto again;
3718 } else {
3719 goto out;
3720 }
3721 }
3722 /* save our key for returning back */
3723 btrfs_node_key_to_cpu(cur, &found_key, slot);
3724 path->slots[level] = slot;
3725 if (level == path->lowest_level) {
3726 ret = 0;
3727 unlock_up(path, level, 1);
3728 goto out;
3729 }
3730 cur = read_node_slot(root, cur, slot);
3731
3732 btrfs_tree_lock(cur);
3733 path->locks[level - 1] = 1;
3734 path->nodes[level - 1] = cur;
3735 unlock_up(path, level, 1);
3736 }
3737out:
3738 if (ret == 0)
3739 memcpy(min_key, &found_key, sizeof(found_key));
3740 return ret;
3741}
3742
3743/*
3744 * this is similar to btrfs_next_leaf, but does not try to preserve
3745 * and fixup the path. It looks for and returns the next key in the
3746 * tree based on the current path and the cache_only and min_trans
3747 * parameters.
3748 *
3749 * 0 is returned if another key is found, < 0 if there are any errors
3750 * and 1 is returned if there are no higher keys in the tree
3751 *
3752 * path->keep_locks should be set to 1 on the search made before
3753 * calling this function.
3754 */
Chris Masone7a84562008-06-25 16:01:31 -04003755int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04003756 struct btrfs_key *key, int lowest_level,
3757 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04003758{
3759 int level = lowest_level;
3760 int slot;
3761 struct extent_buffer *c;
3762
Chris Mason934d3752008-12-08 16:43:10 -05003763 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05003764 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04003765 if (!path->nodes[level])
3766 return 1;
3767
3768 slot = path->slots[level] + 1;
3769 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04003770next:
Chris Masone7a84562008-06-25 16:01:31 -04003771 if (slot >= btrfs_header_nritems(c)) {
3772 level++;
Chris Masond3977122009-01-05 21:25:51 -05003773 if (level == BTRFS_MAX_LEVEL)
Chris Masone7a84562008-06-25 16:01:31 -04003774 return 1;
Chris Masone7a84562008-06-25 16:01:31 -04003775 continue;
3776 }
3777 if (level == 0)
3778 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003779 else {
3780 u64 blockptr = btrfs_node_blockptr(c, slot);
3781 u64 gen = btrfs_node_ptr_generation(c, slot);
3782
3783 if (cache_only) {
3784 struct extent_buffer *cur;
3785 cur = btrfs_find_tree_block(root, blockptr,
3786 btrfs_level_size(root, level - 1));
3787 if (!cur || !btrfs_buffer_uptodate(cur, gen)) {
3788 slot++;
3789 if (cur)
3790 free_extent_buffer(cur);
3791 goto next;
3792 }
3793 free_extent_buffer(cur);
3794 }
3795 if (gen < min_trans) {
3796 slot++;
3797 goto next;
3798 }
Chris Masone7a84562008-06-25 16:01:31 -04003799 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04003800 }
Chris Masone7a84562008-06-25 16:01:31 -04003801 return 0;
3802 }
3803 return 1;
3804}
3805
Chris Mason7bb86312007-12-11 09:25:06 -05003806/*
Chris Mason925baed2008-06-25 16:01:30 -04003807 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05003808 * returns 0 if it found something or 1 if there are no greater leaves.
3809 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05003810 */
Chris Mason234b63a2007-03-13 10:46:10 -04003811int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05003812{
3813 int slot;
3814 int level = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003815 struct extent_buffer *c;
3816 struct extent_buffer *next = NULL;
Chris Mason925baed2008-06-25 16:01:30 -04003817 struct btrfs_key key;
3818 u32 nritems;
3819 int ret;
3820
3821 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05003822 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04003823 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04003824
3825 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
3826
Chris Mason925baed2008-06-25 16:01:30 -04003827 btrfs_release_path(root, path);
Chris Masona2135012008-06-25 16:01:30 -04003828 path->keep_locks = 1;
Chris Mason925baed2008-06-25 16:01:30 -04003829 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3830 path->keep_locks = 0;
3831
3832 if (ret < 0)
3833 return ret;
3834
Chris Masona2135012008-06-25 16:01:30 -04003835 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04003836 /*
3837 * by releasing the path above we dropped all our locks. A balance
3838 * could have added more items next to the key that used to be
3839 * at the very end of the block. So, check again here and
3840 * advance the path if there are now more items available.
3841 */
Chris Masona2135012008-06-25 16:01:30 -04003842 if (nritems > 0 && path->slots[0] < nritems - 1) {
Chris Mason168fd7d2008-06-25 16:01:30 -04003843 path->slots[0]++;
Chris Mason925baed2008-06-25 16:01:30 -04003844 goto done;
3845 }
Chris Masond97e63b2007-02-20 16:40:44 -05003846
Chris Masond3977122009-01-05 21:25:51 -05003847 while (level < BTRFS_MAX_LEVEL) {
Chris Masond97e63b2007-02-20 16:40:44 -05003848 if (!path->nodes[level])
Chris Mason0f70abe2007-02-28 16:46:22 -05003849 return 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003850
Chris Masond97e63b2007-02-20 16:40:44 -05003851 slot = path->slots[level] + 1;
3852 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04003853 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05003854 level++;
Chris Masond3977122009-01-05 21:25:51 -05003855 if (level == BTRFS_MAX_LEVEL)
Chris Mason7bb86312007-12-11 09:25:06 -05003856 return 1;
Chris Masond97e63b2007-02-20 16:40:44 -05003857 continue;
3858 }
Chris Mason5f39d392007-10-15 16:14:19 -04003859
Chris Mason925baed2008-06-25 16:01:30 -04003860 if (next) {
3861 btrfs_tree_unlock(next);
Chris Mason5f39d392007-10-15 16:14:19 -04003862 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04003863 }
Chris Mason5f39d392007-10-15 16:14:19 -04003864
Chris Mason0bd40a72008-07-17 12:54:43 -04003865 if (level == 1 && (path->locks[1] || path->skip_locking) &&
3866 path->reada)
Chris Mason01f46652007-12-21 16:24:26 -05003867 reada_for_search(root, path, level, slot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003868
Chris Masonca7a79a2008-05-12 12:59:19 -04003869 next = read_node_slot(root, c, slot);
Chris Mason5cd57b22008-06-25 16:01:30 -04003870 if (!path->skip_locking) {
3871 WARN_ON(!btrfs_tree_locked(c));
3872 btrfs_tree_lock(next);
3873 }
Chris Masond97e63b2007-02-20 16:40:44 -05003874 break;
3875 }
3876 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05003877 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05003878 level--;
3879 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04003880 if (path->locks[level])
3881 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003882 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05003883 path->nodes[level] = next;
3884 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04003885 if (!path->skip_locking)
3886 path->locks[level] = 1;
Chris Masond97e63b2007-02-20 16:40:44 -05003887 if (!level)
3888 break;
Chris Mason925baed2008-06-25 16:01:30 -04003889 if (level == 1 && path->locks[1] && path->reada)
3890 reada_for_search(root, path, level, slot, 0);
Chris Masonca7a79a2008-05-12 12:59:19 -04003891 next = read_node_slot(root, next, 0);
Chris Mason5cd57b22008-06-25 16:01:30 -04003892 if (!path->skip_locking) {
3893 WARN_ON(!btrfs_tree_locked(path->nodes[level]));
3894 btrfs_tree_lock(next);
3895 }
Chris Masond97e63b2007-02-20 16:40:44 -05003896 }
Chris Mason925baed2008-06-25 16:01:30 -04003897done:
3898 unlock_up(path, 0, 1);
Chris Masond97e63b2007-02-20 16:40:44 -05003899 return 0;
3900}
Chris Mason0b86a832008-03-24 15:01:56 -04003901
Chris Mason3f157a22008-06-25 16:01:31 -04003902/*
3903 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
3904 * searching until it gets past min_objectid or finds an item of 'type'
3905 *
3906 * returns 0 if something is found, 1 if nothing was found and < 0 on error
3907 */
Chris Mason0b86a832008-03-24 15:01:56 -04003908int btrfs_previous_item(struct btrfs_root *root,
3909 struct btrfs_path *path, u64 min_objectid,
3910 int type)
3911{
3912 struct btrfs_key found_key;
3913 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04003914 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04003915 int ret;
3916
Chris Masond3977122009-01-05 21:25:51 -05003917 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04003918 if (path->slots[0] == 0) {
3919 ret = btrfs_prev_leaf(root, path);
3920 if (ret != 0)
3921 return ret;
3922 } else {
3923 path->slots[0]--;
3924 }
3925 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04003926 nritems = btrfs_header_nritems(leaf);
3927 if (nritems == 0)
3928 return 1;
3929 if (path->slots[0] == nritems)
3930 path->slots[0]--;
3931
Chris Mason0b86a832008-03-24 15:01:56 -04003932 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3933 if (found_key.type == type)
3934 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04003935 if (found_key.objectid < min_objectid)
3936 break;
3937 if (found_key.objectid == min_objectid &&
3938 found_key.type < type)
3939 break;
Chris Mason0b86a832008-03-24 15:01:56 -04003940 }
3941 return 1;
3942}