blob: 35444013f0cfbcfd2ab6cdb7527d4b513cf29cf3 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
Chris Masond352ac62008-09-29 15:18:18 -04002 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Masona6b6e752007-10-15 16:22:39 -040019#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Jan Schmidtbd989ba2012-05-16 17:18:50 +020021#include <linux/rbtree.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050022#include "ctree.h"
23#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040024#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040025#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040026#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050027
Chris Masone089f052007-03-16 16:20:31 -040028static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
29 *root, struct btrfs_path *path, int level);
30static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040031 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040032 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040033static int push_node_left(struct btrfs_trans_handle *trans,
34 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040035 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040036static int balance_node_right(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
38 struct extent_buffer *dst_buf,
39 struct extent_buffer *src_buf);
Jeff Mahoney143bede2012-03-01 14:56:26 +010040static void del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Liu Bo0e411ec2012-10-19 09:50:54 +000041 struct btrfs_path *path, int level, int slot);
Jan Schmidtf2304752012-05-26 11:43:17 +020042static void tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
43 struct extent_buffer *eb);
44struct extent_buffer *read_old_tree_block(struct btrfs_root *root, u64 bytenr,
45 u32 blocksize, u64 parent_transid,
46 u64 time_seq);
47struct extent_buffer *btrfs_find_old_tree_block(struct btrfs_root *root,
48 u64 bytenr, u32 blocksize,
49 u64 time_seq);
Chris Masond97e63b2007-02-20 16:40:44 -050050
Chris Mason2c90e5d2007-04-02 10:50:19 -040051struct btrfs_path *btrfs_alloc_path(void)
52{
Chris Masondf24a2b2007-04-04 09:36:31 -040053 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050054 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Masondf24a2b2007-04-04 09:36:31 -040055 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040056}
57
Chris Masonb4ce94d2009-02-04 09:25:08 -050058/*
59 * set all locked nodes in the path to blocking locks. This should
60 * be done before scheduling
61 */
62noinline void btrfs_set_path_blocking(struct btrfs_path *p)
63{
64 int i;
65 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040066 if (!p->nodes[i] || !p->locks[i])
67 continue;
68 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
69 if (p->locks[i] == BTRFS_READ_LOCK)
70 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
71 else if (p->locks[i] == BTRFS_WRITE_LOCK)
72 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050073 }
74}
75
76/*
77 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050078 *
79 * held is used to keep lockdep happy, when lockdep is enabled
80 * we set held to a blocking lock before we go around and
81 * retake all the spinlocks in the path. You can safely use NULL
82 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050083 */
Chris Mason4008c042009-02-12 14:09:45 -050084noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040085 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050086{
87 int i;
Chris Mason4008c042009-02-12 14:09:45 -050088
89#ifdef CONFIG_DEBUG_LOCK_ALLOC
90 /* lockdep really cares that we take all of these spinlocks
91 * in the right order. If any of the locks in the path are not
92 * currently blocking, it is going to complain. So, make really
93 * really sure by forcing the path to blocking before we clear
94 * the path blocking.
95 */
Chris Masonbd681512011-07-16 15:23:14 -040096 if (held) {
97 btrfs_set_lock_blocking_rw(held, held_rw);
98 if (held_rw == BTRFS_WRITE_LOCK)
99 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
100 else if (held_rw == BTRFS_READ_LOCK)
101 held_rw = BTRFS_READ_LOCK_BLOCKING;
102 }
Chris Mason4008c042009-02-12 14:09:45 -0500103 btrfs_set_path_blocking(p);
104#endif
105
106 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -0400107 if (p->nodes[i] && p->locks[i]) {
108 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
109 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
110 p->locks[i] = BTRFS_WRITE_LOCK;
111 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
112 p->locks[i] = BTRFS_READ_LOCK;
113 }
Chris Masonb4ce94d2009-02-04 09:25:08 -0500114 }
Chris Mason4008c042009-02-12 14:09:45 -0500115
116#ifdef CONFIG_DEBUG_LOCK_ALLOC
117 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400118 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Mason4008c042009-02-12 14:09:45 -0500119#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -0500120}
121
Chris Masond352ac62008-09-29 15:18:18 -0400122/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400123void btrfs_free_path(struct btrfs_path *p)
124{
Jesper Juhlff175d52010-12-25 21:22:30 +0000125 if (!p)
126 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200127 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400128 kmem_cache_free(btrfs_path_cachep, p);
129}
130
Chris Masond352ac62008-09-29 15:18:18 -0400131/*
132 * path release drops references on the extent buffers in the path
133 * and it drops any locks held by this path
134 *
135 * It is safe to call this on paths that no locks or extent buffers held.
136 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200137noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500138{
139 int i;
Chris Masona2135012008-06-25 16:01:30 -0400140
Chris Mason234b63a2007-03-13 10:46:10 -0400141 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400142 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500143 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400144 continue;
145 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400146 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400147 p->locks[i] = 0;
148 }
Chris Mason5f39d392007-10-15 16:14:19 -0400149 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400150 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500151 }
152}
153
Chris Masond352ac62008-09-29 15:18:18 -0400154/*
155 * safely gets a reference on the root node of a tree. A lock
156 * is not taken, so a concurrent writer may put a different node
157 * at the root of the tree. See btrfs_lock_root_node for the
158 * looping required.
159 *
160 * The extent buffer returned by this has a reference taken, so
161 * it won't disappear. It may stop being the root of the tree
162 * at any time because there are no locks held.
163 */
Chris Mason925baed2008-06-25 16:01:30 -0400164struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
165{
166 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400167
Josef Bacik3083ee22012-03-09 16:01:49 -0500168 while (1) {
169 rcu_read_lock();
170 eb = rcu_dereference(root->node);
171
172 /*
173 * RCU really hurts here, we could free up the root node because
174 * it was cow'ed but we may not get the new root node yet so do
175 * the inc_not_zero dance and if it doesn't work then
176 * synchronize_rcu and try again.
177 */
178 if (atomic_inc_not_zero(&eb->refs)) {
179 rcu_read_unlock();
180 break;
181 }
182 rcu_read_unlock();
183 synchronize_rcu();
184 }
Chris Mason925baed2008-06-25 16:01:30 -0400185 return eb;
186}
187
Chris Masond352ac62008-09-29 15:18:18 -0400188/* loop around taking references on and locking the root node of the
189 * tree until you end up with a lock on the root. A locked buffer
190 * is returned, with a reference held.
191 */
Chris Mason925baed2008-06-25 16:01:30 -0400192struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
193{
194 struct extent_buffer *eb;
195
Chris Masond3977122009-01-05 21:25:51 -0500196 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400197 eb = btrfs_root_node(root);
198 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400199 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400200 break;
Chris Mason925baed2008-06-25 16:01:30 -0400201 btrfs_tree_unlock(eb);
202 free_extent_buffer(eb);
203 }
204 return eb;
205}
206
Chris Masonbd681512011-07-16 15:23:14 -0400207/* loop around taking references on and locking the root node of the
208 * tree until you end up with a lock on the root. A locked buffer
209 * is returned, with a reference held.
210 */
211struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
212{
213 struct extent_buffer *eb;
214
215 while (1) {
216 eb = btrfs_root_node(root);
217 btrfs_tree_read_lock(eb);
218 if (eb == root->node)
219 break;
220 btrfs_tree_read_unlock(eb);
221 free_extent_buffer(eb);
222 }
223 return eb;
224}
225
Chris Masond352ac62008-09-29 15:18:18 -0400226/* cowonly root (everything not a reference counted cow subvolume), just get
227 * put onto a simple dirty list. transaction.c walks this to make sure they
228 * get properly updated on disk.
229 */
Chris Mason0b86a832008-03-24 15:01:56 -0400230static void add_root_to_dirty_list(struct btrfs_root *root)
231{
Chris Masone5846fc2012-05-03 12:08:48 -0400232 spin_lock(&root->fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400233 if (root->track_dirty && list_empty(&root->dirty_list)) {
234 list_add(&root->dirty_list,
235 &root->fs_info->dirty_cowonly_roots);
236 }
Chris Masone5846fc2012-05-03 12:08:48 -0400237 spin_unlock(&root->fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400238}
239
Chris Masond352ac62008-09-29 15:18:18 -0400240/*
241 * used by snapshot creation to make a copy of a root for a tree with
242 * a given objectid. The buffer with the new root node is returned in
243 * cow_ret, and this func returns zero on success or a negative error code.
244 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500245int btrfs_copy_root(struct btrfs_trans_handle *trans,
246 struct btrfs_root *root,
247 struct extent_buffer *buf,
248 struct extent_buffer **cow_ret, u64 new_root_objectid)
249{
250 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500251 int ret = 0;
252 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400253 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500254
255 WARN_ON(root->ref_cows && trans->transid !=
256 root->fs_info->running_transaction->transid);
257 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
258
259 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400260 if (level == 0)
261 btrfs_item_key(buf, &disk_key, 0);
262 else
263 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400264
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400265 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
266 new_root_objectid, &disk_key, level,
Jan Schmidt5581a512012-05-16 17:04:52 +0200267 buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400268 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500269 return PTR_ERR(cow);
270
271 copy_extent_buffer(cow, buf, 0, 0, cow->len);
272 btrfs_set_header_bytenr(cow, cow->start);
273 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400274 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
275 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
276 BTRFS_HEADER_FLAG_RELOC);
277 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
278 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
279 else
280 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500281
Yan Zheng2b820322008-11-17 21:11:30 -0500282 write_extent_buffer(cow, root->fs_info->fsid,
283 (unsigned long)btrfs_header_fsid(cow),
284 BTRFS_FSID_SIZE);
285
Chris Masonbe20aa92007-12-17 20:14:01 -0500286 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400287 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200288 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400289 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200290 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Chris Mason4aec2b52007-12-18 16:25:45 -0500291
Chris Masonbe20aa92007-12-17 20:14:01 -0500292 if (ret)
293 return ret;
294
295 btrfs_mark_buffer_dirty(cow);
296 *cow_ret = cow;
297 return 0;
298}
299
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200300enum mod_log_op {
301 MOD_LOG_KEY_REPLACE,
302 MOD_LOG_KEY_ADD,
303 MOD_LOG_KEY_REMOVE,
304 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
305 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
306 MOD_LOG_MOVE_KEYS,
307 MOD_LOG_ROOT_REPLACE,
308};
309
310struct tree_mod_move {
311 int dst_slot;
312 int nr_items;
313};
314
315struct tree_mod_root {
316 u64 logical;
317 u8 level;
318};
319
320struct tree_mod_elem {
321 struct rb_node node;
322 u64 index; /* shifted logical */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200323 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200324 enum mod_log_op op;
325
326 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
327 int slot;
328
329 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
330 u64 generation;
331
332 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
333 struct btrfs_disk_key key;
334 u64 blockptr;
335
336 /* this is used for op == MOD_LOG_MOVE_KEYS */
337 struct tree_mod_move move;
338
339 /* this is used for op == MOD_LOG_ROOT_REPLACE */
340 struct tree_mod_root old_root;
341};
342
Jan Schmidt097b8a72012-06-21 11:08:04 +0200343static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200344{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200345 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200346}
347
Jan Schmidt097b8a72012-06-21 11:08:04 +0200348static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200349{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200350 read_unlock(&fs_info->tree_mod_log_lock);
351}
352
353static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
354{
355 write_lock(&fs_info->tree_mod_log_lock);
356}
357
358static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
359{
360 write_unlock(&fs_info->tree_mod_log_lock);
361}
362
363/*
364 * This adds a new blocker to the tree mod log's blocker list if the @elem
365 * passed does not already have a sequence number set. So when a caller expects
366 * to record tree modifications, it should ensure to set elem->seq to zero
367 * before calling btrfs_get_tree_mod_seq.
368 * Returns a fresh, unused tree log modification sequence number, even if no new
369 * blocker was added.
370 */
371u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
372 struct seq_list *elem)
373{
374 u64 seq;
375
376 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200377 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200378 if (!elem->seq) {
379 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
380 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
381 }
382 seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200383 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200384 tree_mod_log_write_unlock(fs_info);
385
386 return seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200387}
388
389void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
390 struct seq_list *elem)
391{
392 struct rb_root *tm_root;
393 struct rb_node *node;
394 struct rb_node *next;
395 struct seq_list *cur_elem;
396 struct tree_mod_elem *tm;
397 u64 min_seq = (u64)-1;
398 u64 seq_putting = elem->seq;
399
400 if (!seq_putting)
401 return;
402
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200403 spin_lock(&fs_info->tree_mod_seq_lock);
404 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200405 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200406
407 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200408 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200409 if (seq_putting > cur_elem->seq) {
410 /*
411 * blocker with lower sequence number exists, we
412 * cannot remove anything from the log
413 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200414 spin_unlock(&fs_info->tree_mod_seq_lock);
415 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200416 }
417 min_seq = cur_elem->seq;
418 }
419 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200420 spin_unlock(&fs_info->tree_mod_seq_lock);
421
422 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200423 * anything that's lower than the lowest existing (read: blocked)
424 * sequence number can be removed from the tree.
425 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200426 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200427 tm_root = &fs_info->tree_mod_log;
428 for (node = rb_first(tm_root); node; node = next) {
429 next = rb_next(node);
430 tm = container_of(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200431 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200432 continue;
433 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200434 kfree(tm);
435 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200436 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200437}
438
439/*
440 * key order of the log:
441 * index -> sequence
442 *
443 * the index is the shifted logical of the *new* root node for root replace
444 * operations, or the shifted logical of the affected block for all other
445 * operations.
446 */
447static noinline int
448__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
449{
450 struct rb_root *tm_root;
451 struct rb_node **new;
452 struct rb_node *parent = NULL;
453 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200454
Jan Schmidt097b8a72012-06-21 11:08:04 +0200455 BUG_ON(!tm || !tm->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200456
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200457 tm_root = &fs_info->tree_mod_log;
458 new = &tm_root->rb_node;
459 while (*new) {
460 cur = container_of(*new, struct tree_mod_elem, node);
461 parent = *new;
462 if (cur->index < tm->index)
463 new = &((*new)->rb_left);
464 else if (cur->index > tm->index)
465 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200466 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200467 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200468 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200469 new = &((*new)->rb_right);
470 else {
471 kfree(tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200472 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200473 }
474 }
475
476 rb_link_node(&tm->node, parent, new);
477 rb_insert_color(&tm->node, tm_root);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200478 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200479}
480
Jan Schmidt097b8a72012-06-21 11:08:04 +0200481/*
482 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
483 * returns zero with the tree_mod_log_lock acquired. The caller must hold
484 * this until all tree mod log insertions are recorded in the rb tree and then
485 * call tree_mod_log_write_unlock() to release.
486 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200487static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
488 struct extent_buffer *eb) {
489 smp_mb();
490 if (list_empty(&(fs_info)->tree_mod_seq_list))
491 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200492 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200493 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200494
495 tree_mod_log_write_lock(fs_info);
496 if (list_empty(&fs_info->tree_mod_seq_list)) {
497 /*
498 * someone emptied the list while we were waiting for the lock.
499 * we must not add to the list when no blocker exists.
500 */
501 tree_mod_log_write_unlock(fs_info);
502 return 1;
503 }
504
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200505 return 0;
506}
507
Jan Schmidt3310c362012-06-11 10:52:38 +0200508/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200509 * This allocates memory and gets a tree modification sequence number.
Jan Schmidt3310c362012-06-11 10:52:38 +0200510 *
Jan Schmidt097b8a72012-06-21 11:08:04 +0200511 * Returns <0 on error.
512 * Returns >0 (the added sequence number) on success.
Jan Schmidt3310c362012-06-11 10:52:38 +0200513 */
Jan Schmidt926dd8a2012-05-31 14:00:15 +0200514static inline int tree_mod_alloc(struct btrfs_fs_info *fs_info, gfp_t flags,
515 struct tree_mod_elem **tm_ret)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200516{
517 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200518
Jan Schmidt097b8a72012-06-21 11:08:04 +0200519 /*
520 * once we switch from spin locks to something different, we should
521 * honor the flags parameter here.
522 */
523 tm = *tm_ret = kzalloc(sizeof(*tm), GFP_ATOMIC);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200524 if (!tm)
525 return -ENOMEM;
526
Jan Schmidt097b8a72012-06-21 11:08:04 +0200527 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
528 return tm->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200529}
530
Jan Schmidt097b8a72012-06-21 11:08:04 +0200531static inline int
532__tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
533 struct extent_buffer *eb, int slot,
534 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200535{
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200536 int ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200537 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200538
539 ret = tree_mod_alloc(fs_info, flags, &tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200540 if (ret < 0)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200541 return ret;
542
543 tm->index = eb->start >> PAGE_CACHE_SHIFT;
544 if (op != MOD_LOG_KEY_ADD) {
545 btrfs_node_key(eb, &tm->key, slot);
546 tm->blockptr = btrfs_node_blockptr(eb, slot);
547 }
548 tm->op = op;
549 tm->slot = slot;
550 tm->generation = btrfs_node_ptr_generation(eb, slot);
551
Jan Schmidt097b8a72012-06-21 11:08:04 +0200552 return __tree_mod_log_insert(fs_info, tm);
553}
554
555static noinline int
556tree_mod_log_insert_key_mask(struct btrfs_fs_info *fs_info,
557 struct extent_buffer *eb, int slot,
558 enum mod_log_op op, gfp_t flags)
559{
560 int ret;
561
562 if (tree_mod_dont_log(fs_info, eb))
563 return 0;
564
565 ret = __tree_mod_log_insert_key(fs_info, eb, slot, op, flags);
566
567 tree_mod_log_write_unlock(fs_info);
Jan Schmidt3310c362012-06-11 10:52:38 +0200568 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200569}
570
571static noinline int
572tree_mod_log_insert_key(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
573 int slot, enum mod_log_op op)
574{
575 return tree_mod_log_insert_key_mask(fs_info, eb, slot, op, GFP_NOFS);
576}
577
578static noinline int
Jan Schmidt097b8a72012-06-21 11:08:04 +0200579tree_mod_log_insert_key_locked(struct btrfs_fs_info *fs_info,
580 struct extent_buffer *eb, int slot,
581 enum mod_log_op op)
582{
583 return __tree_mod_log_insert_key(fs_info, eb, slot, op, GFP_NOFS);
584}
585
586static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200587tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
588 struct extent_buffer *eb, int dst_slot, int src_slot,
589 int nr_items, gfp_t flags)
590{
591 struct tree_mod_elem *tm;
592 int ret;
593 int i;
594
Jan Schmidtf3956942012-05-31 15:02:32 +0200595 if (tree_mod_dont_log(fs_info, eb))
596 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200597
Jan Schmidt01763a22012-10-23 15:02:12 +0200598 /*
599 * When we override something during the move, we log these removals.
600 * This can only happen when we move towards the beginning of the
601 * buffer, i.e. dst_slot < src_slot.
602 */
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200603 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200604 ret = tree_mod_log_insert_key_locked(fs_info, eb, i + dst_slot,
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200605 MOD_LOG_KEY_REMOVE_WHILE_MOVING);
606 BUG_ON(ret < 0);
607 }
608
Jan Schmidtf3956942012-05-31 15:02:32 +0200609 ret = tree_mod_alloc(fs_info, flags, &tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200610 if (ret < 0)
611 goto out;
Jan Schmidtf3956942012-05-31 15:02:32 +0200612
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200613 tm->index = eb->start >> PAGE_CACHE_SHIFT;
614 tm->slot = src_slot;
615 tm->move.dst_slot = dst_slot;
616 tm->move.nr_items = nr_items;
617 tm->op = MOD_LOG_MOVE_KEYS;
618
Jan Schmidt3310c362012-06-11 10:52:38 +0200619 ret = __tree_mod_log_insert(fs_info, tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200620out:
621 tree_mod_log_write_unlock(fs_info);
Jan Schmidt3310c362012-06-11 10:52:38 +0200622 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200623}
624
Jan Schmidt097b8a72012-06-21 11:08:04 +0200625static inline void
626__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
627{
628 int i;
629 u32 nritems;
630 int ret;
631
Chris Masonb12a3b12012-08-07 15:34:49 -0400632 if (btrfs_header_level(eb) == 0)
633 return;
634
Jan Schmidt097b8a72012-06-21 11:08:04 +0200635 nritems = btrfs_header_nritems(eb);
636 for (i = nritems - 1; i >= 0; i--) {
637 ret = tree_mod_log_insert_key_locked(fs_info, eb, i,
638 MOD_LOG_KEY_REMOVE_WHILE_FREEING);
639 BUG_ON(ret < 0);
640 }
641}
642
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200643static noinline int
644tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
645 struct extent_buffer *old_root,
646 struct extent_buffer *new_root, gfp_t flags)
647{
648 struct tree_mod_elem *tm;
649 int ret;
650
Jan Schmidt097b8a72012-06-21 11:08:04 +0200651 if (tree_mod_dont_log(fs_info, NULL))
652 return 0;
653
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200654 ret = tree_mod_alloc(fs_info, flags, &tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200655 if (ret < 0)
656 goto out;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200657
658 tm->index = new_root->start >> PAGE_CACHE_SHIFT;
659 tm->old_root.logical = old_root->start;
660 tm->old_root.level = btrfs_header_level(old_root);
661 tm->generation = btrfs_header_generation(old_root);
662 tm->op = MOD_LOG_ROOT_REPLACE;
663
Jan Schmidt3310c362012-06-11 10:52:38 +0200664 ret = __tree_mod_log_insert(fs_info, tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200665out:
666 tree_mod_log_write_unlock(fs_info);
Jan Schmidt3310c362012-06-11 10:52:38 +0200667 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200668}
669
670static struct tree_mod_elem *
671__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
672 int smallest)
673{
674 struct rb_root *tm_root;
675 struct rb_node *node;
676 struct tree_mod_elem *cur = NULL;
677 struct tree_mod_elem *found = NULL;
678 u64 index = start >> PAGE_CACHE_SHIFT;
679
Jan Schmidt097b8a72012-06-21 11:08:04 +0200680 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200681 tm_root = &fs_info->tree_mod_log;
682 node = tm_root->rb_node;
683 while (node) {
684 cur = container_of(node, struct tree_mod_elem, node);
685 if (cur->index < index) {
686 node = node->rb_left;
687 } else if (cur->index > index) {
688 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200689 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200690 node = node->rb_left;
691 } else if (!smallest) {
692 /* we want the node with the highest seq */
693 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200694 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200695 found = cur;
696 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200697 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200698 /* we want the node with the smallest seq */
699 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200700 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200701 found = cur;
702 node = node->rb_right;
703 } else {
704 found = cur;
705 break;
706 }
707 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200708 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200709
710 return found;
711}
712
713/*
714 * this returns the element from the log with the smallest time sequence
715 * value that's in the log (the oldest log item). any element with a time
716 * sequence lower than min_seq will be ignored.
717 */
718static struct tree_mod_elem *
719tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
720 u64 min_seq)
721{
722 return __tree_mod_log_search(fs_info, start, min_seq, 1);
723}
724
725/*
726 * this returns the element from the log with the largest time sequence
727 * value that's in the log (the most recent log item). any element with
728 * a time sequence lower than min_seq will be ignored.
729 */
730static struct tree_mod_elem *
731tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
732{
733 return __tree_mod_log_search(fs_info, start, min_seq, 0);
734}
735
Jan Schmidt097b8a72012-06-21 11:08:04 +0200736static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200737tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
738 struct extent_buffer *src, unsigned long dst_offset,
739 unsigned long src_offset, int nr_items)
740{
741 int ret;
742 int i;
743
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200744 if (tree_mod_dont_log(fs_info, NULL))
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200745 return;
746
Jan Schmidt097b8a72012-06-21 11:08:04 +0200747 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0) {
748 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200749 return;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200750 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200751
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200752 for (i = 0; i < nr_items; i++) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200753 ret = tree_mod_log_insert_key_locked(fs_info, src,
754 i + src_offset,
755 MOD_LOG_KEY_REMOVE);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200756 BUG_ON(ret < 0);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200757 ret = tree_mod_log_insert_key_locked(fs_info, dst,
758 i + dst_offset,
759 MOD_LOG_KEY_ADD);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200760 BUG_ON(ret < 0);
761 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200762
763 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200764}
765
766static inline void
767tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
768 int dst_offset, int src_offset, int nr_items)
769{
770 int ret;
771 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
772 nr_items, GFP_NOFS);
773 BUG_ON(ret < 0);
774}
775
Jan Schmidt097b8a72012-06-21 11:08:04 +0200776static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200777tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000778 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200779{
780 int ret;
781
782 ret = tree_mod_log_insert_key_mask(fs_info, eb, slot,
783 MOD_LOG_KEY_REPLACE,
784 atomic ? GFP_ATOMIC : GFP_NOFS);
785 BUG_ON(ret < 0);
786}
787
Jan Schmidt097b8a72012-06-21 11:08:04 +0200788static noinline void
789tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200790{
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200791 if (tree_mod_dont_log(fs_info, eb))
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200792 return;
793
Jan Schmidt097b8a72012-06-21 11:08:04 +0200794 __tree_mod_log_free_eb(fs_info, eb);
795
796 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200797}
798
Jan Schmidt097b8a72012-06-21 11:08:04 +0200799static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200800tree_mod_log_set_root_pointer(struct btrfs_root *root,
801 struct extent_buffer *new_root_node)
802{
803 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200804 ret = tree_mod_log_insert_root(root->fs_info, root->node,
805 new_root_node, GFP_NOFS);
806 BUG_ON(ret < 0);
807}
808
Chris Masond352ac62008-09-29 15:18:18 -0400809/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400810 * check if the tree block can be shared by multiple trees
811 */
812int btrfs_block_can_be_shared(struct btrfs_root *root,
813 struct extent_buffer *buf)
814{
815 /*
816 * Tree blocks not in refernece counted trees and tree roots
817 * are never shared. If a block was allocated after the last
818 * snapshot and the block was not allocated by tree relocation,
819 * we know the block is not shared.
820 */
821 if (root->ref_cows &&
822 buf != root->node && buf != root->commit_root &&
823 (btrfs_header_generation(buf) <=
824 btrfs_root_last_snapshot(&root->root_item) ||
825 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
826 return 1;
827#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
828 if (root->ref_cows &&
829 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
830 return 1;
831#endif
832 return 0;
833}
834
835static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
836 struct btrfs_root *root,
837 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400838 struct extent_buffer *cow,
839 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400840{
841 u64 refs;
842 u64 owner;
843 u64 flags;
844 u64 new_flags = 0;
845 int ret;
846
847 /*
848 * Backrefs update rules:
849 *
850 * Always use full backrefs for extent pointers in tree block
851 * allocated by tree relocation.
852 *
853 * If a shared tree block is no longer referenced by its owner
854 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
855 * use full backrefs for extent pointers in tree block.
856 *
857 * If a tree block is been relocating
858 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
859 * use full backrefs for extent pointers in tree block.
860 * The reason for this is some operations (such as drop tree)
861 * are only allowed for blocks use full backrefs.
862 */
863
864 if (btrfs_block_can_be_shared(root, buf)) {
865 ret = btrfs_lookup_extent_info(trans, root, buf->start,
866 buf->len, &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700867 if (ret)
868 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -0700869 if (refs == 0) {
870 ret = -EROFS;
871 btrfs_std_error(root->fs_info, ret);
872 return ret;
873 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400874 } else {
875 refs = 1;
876 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
877 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
878 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
879 else
880 flags = 0;
881 }
882
883 owner = btrfs_header_owner(buf);
884 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
885 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
886
887 if (refs > 1) {
888 if ((owner == root->root_key.objectid ||
889 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
890 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200891 ret = btrfs_inc_ref(trans, root, buf, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100892 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400893
894 if (root->root_key.objectid ==
895 BTRFS_TREE_RELOC_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200896 ret = btrfs_dec_ref(trans, root, buf, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100897 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200898 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100899 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400900 }
901 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
902 } else {
903
904 if (root->root_key.objectid ==
905 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200906 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400907 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200908 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100909 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400910 }
911 if (new_flags != 0) {
912 ret = btrfs_set_disk_extent_flags(trans, root,
913 buf->start,
914 buf->len,
915 new_flags, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700916 if (ret)
917 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400918 }
919 } else {
920 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
921 if (root->root_key.objectid ==
922 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200923 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400924 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200925 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100926 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200927 ret = btrfs_dec_ref(trans, root, buf, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100928 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400929 }
Jan Schmidtba1bfbd2012-10-22 20:02:56 +0200930 tree_mod_log_free_eb(root->fs_info, buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400931 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400932 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400933 }
934 return 0;
935}
936
937/*
Chris Masond3977122009-01-05 21:25:51 -0500938 * does the dirty work in cow of a single block. The parent block (if
939 * supplied) is updated to point to the new cow copy. The new buffer is marked
940 * dirty and returned locked. If you modify the block it needs to be marked
941 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400942 *
943 * search_start -- an allocation hint for the new block
944 *
Chris Masond3977122009-01-05 21:25:51 -0500945 * empty_size -- a hint that you plan on doing more cow. This is the size in
946 * bytes the allocator should try to find free next to the block it returns.
947 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400948 */
Chris Masond3977122009-01-05 21:25:51 -0500949static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400950 struct btrfs_root *root,
951 struct extent_buffer *buf,
952 struct extent_buffer *parent, int parent_slot,
953 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400954 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400955{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400957 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -0700958 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400959 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400960 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400962
Chris Mason925baed2008-06-25 16:01:30 -0400963 if (*cow_ret == buf)
964 unlock_orig = 1;
965
Chris Masonb9447ef82009-03-09 11:45:38 -0400966 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400967
Chris Mason7bb86312007-12-11 09:25:06 -0500968 WARN_ON(root->ref_cows && trans->transid !=
969 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400970 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400971
Chris Mason7bb86312007-12-11 09:25:06 -0500972 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400973
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400974 if (level == 0)
975 btrfs_item_key(buf, &disk_key, 0);
976 else
977 btrfs_node_key(buf, &disk_key, 0);
978
979 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
980 if (parent)
981 parent_start = parent->start;
982 else
983 parent_start = 0;
984 } else
985 parent_start = 0;
986
987 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
988 root->root_key.objectid, &disk_key,
Jan Schmidt5581a512012-05-16 17:04:52 +0200989 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -0400990 if (IS_ERR(cow))
991 return PTR_ERR(cow);
992
Chris Masonb4ce94d2009-02-04 09:25:08 -0500993 /* cow is set to blocking by btrfs_init_new_buffer */
994
Chris Mason5f39d392007-10-15 16:14:19 -0400995 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400996 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400997 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400998 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
999 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1000 BTRFS_HEADER_FLAG_RELOC);
1001 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1002 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1003 else
1004 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001005
Yan Zheng2b820322008-11-17 21:11:30 -05001006 write_extent_buffer(cow, root->fs_info->fsid,
1007 (unsigned long)btrfs_header_fsid(cow),
1008 BTRFS_FSID_SIZE);
1009
Mark Fashehbe1a5562011-08-08 13:20:18 -07001010 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001011 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001012 btrfs_abort_transaction(trans, root, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001013 return ret;
1014 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001015
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001016 if (root->ref_cows)
1017 btrfs_reloc_cow_block(trans, root, buf, cow);
1018
Chris Mason6702ed42007-08-07 16:15:09 -04001019 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001020 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001021 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1022 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1023 parent_start = buf->start;
1024 else
1025 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001026
Chris Mason5f39d392007-10-15 16:14:19 -04001027 extent_buffer_get(cow);
Jan Schmidtf2304752012-05-26 11:43:17 +02001028 tree_mod_log_set_root_pointer(root, cow);
Chris Mason240f62c2011-03-23 14:54:42 -04001029 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001030
Yan, Zhengf0486c62010-05-16 10:46:25 -04001031 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001032 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001033 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001034 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001035 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1037 parent_start = parent->start;
1038 else
1039 parent_start = 0;
1040
1041 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001042 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
1043 MOD_LOG_KEY_REPLACE);
Chris Mason5f39d392007-10-15 16:14:19 -04001044 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001045 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001046 btrfs_set_node_ptr_generation(parent, parent_slot,
1047 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001048 btrfs_mark_buffer_dirty(parent);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001049 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001050 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001051 }
Chris Mason925baed2008-06-25 16:01:30 -04001052 if (unlock_orig)
1053 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001054 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001055 btrfs_mark_buffer_dirty(cow);
1056 *cow_ret = cow;
1057 return 0;
1058}
1059
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001060/*
1061 * returns the logical address of the oldest predecessor of the given root.
1062 * entries older than time_seq are ignored.
1063 */
1064static struct tree_mod_elem *
1065__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
1066 struct btrfs_root *root, u64 time_seq)
1067{
1068 struct tree_mod_elem *tm;
1069 struct tree_mod_elem *found = NULL;
1070 u64 root_logical = root->node->start;
1071 int looped = 0;
1072
1073 if (!time_seq)
1074 return 0;
1075
1076 /*
1077 * the very last operation that's logged for a root is the replacement
1078 * operation (if it is replaced at all). this has the index of the *new*
1079 * root, making it the very first operation that's logged for this root.
1080 */
1081 while (1) {
1082 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1083 time_seq);
1084 if (!looped && !tm)
1085 return 0;
1086 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001087 * if there are no tree operation for the oldest root, we simply
1088 * return it. this should only happen if that (old) root is at
1089 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001090 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001091 if (!tm)
1092 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001093
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001094 /*
1095 * if there's an operation that's not a root replacement, we
1096 * found the oldest version of our root. normally, we'll find a
1097 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1098 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001099 if (tm->op != MOD_LOG_ROOT_REPLACE)
1100 break;
1101
1102 found = tm;
1103 root_logical = tm->old_root.logical;
1104 BUG_ON(root_logical == root->node->start);
1105 looped = 1;
1106 }
1107
Jan Schmidta95236d2012-06-05 16:41:24 +02001108 /* if there's no old root to return, return what we found instead */
1109 if (!found)
1110 found = tm;
1111
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001112 return found;
1113}
1114
1115/*
1116 * tm is a pointer to the first operation to rewind within eb. then, all
1117 * previous operations will be rewinded (until we reach something older than
1118 * time_seq).
1119 */
1120static void
1121__tree_mod_log_rewind(struct extent_buffer *eb, u64 time_seq,
1122 struct tree_mod_elem *first_tm)
1123{
1124 u32 n;
1125 struct rb_node *next;
1126 struct tree_mod_elem *tm = first_tm;
1127 unsigned long o_dst;
1128 unsigned long o_src;
1129 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1130
1131 n = btrfs_header_nritems(eb);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001132 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001133 /*
1134 * all the operations are recorded with the operator used for
1135 * the modification. as we're going backwards, we do the
1136 * opposite of each operation here.
1137 */
1138 switch (tm->op) {
1139 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1140 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001141 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001142 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001143 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001144 btrfs_set_node_key(eb, &tm->key, tm->slot);
1145 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1146 btrfs_set_node_ptr_generation(eb, tm->slot,
1147 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001148 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001149 break;
1150 case MOD_LOG_KEY_REPLACE:
1151 BUG_ON(tm->slot >= n);
1152 btrfs_set_node_key(eb, &tm->key, tm->slot);
1153 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1154 btrfs_set_node_ptr_generation(eb, tm->slot,
1155 tm->generation);
1156 break;
1157 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001158 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001159 n--;
1160 break;
1161 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001162 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1163 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1164 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001165 tm->move.nr_items * p_size);
1166 break;
1167 case MOD_LOG_ROOT_REPLACE:
1168 /*
1169 * this operation is special. for roots, this must be
1170 * handled explicitly before rewinding.
1171 * for non-roots, this operation may exist if the node
1172 * was a root: root A -> child B; then A gets empty and
1173 * B is promoted to the new root. in the mod log, we'll
1174 * have a root-replace operation for B, a tree block
1175 * that is no root. we simply ignore that operation.
1176 */
1177 break;
1178 }
1179 next = rb_next(&tm->node);
1180 if (!next)
1181 break;
1182 tm = container_of(next, struct tree_mod_elem, node);
1183 if (tm->index != first_tm->index)
1184 break;
1185 }
1186 btrfs_set_header_nritems(eb, n);
1187}
1188
1189static struct extent_buffer *
1190tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1191 u64 time_seq)
1192{
1193 struct extent_buffer *eb_rewin;
1194 struct tree_mod_elem *tm;
1195
1196 if (!time_seq)
1197 return eb;
1198
1199 if (btrfs_header_level(eb) == 0)
1200 return eb;
1201
1202 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1203 if (!tm)
1204 return eb;
1205
1206 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1207 BUG_ON(tm->slot != 0);
1208 eb_rewin = alloc_dummy_extent_buffer(eb->start,
1209 fs_info->tree_root->nodesize);
1210 BUG_ON(!eb_rewin);
1211 btrfs_set_header_bytenr(eb_rewin, eb->start);
1212 btrfs_set_header_backref_rev(eb_rewin,
1213 btrfs_header_backref_rev(eb));
1214 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001215 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001216 } else {
1217 eb_rewin = btrfs_clone_extent_buffer(eb);
1218 BUG_ON(!eb_rewin);
1219 }
1220
1221 extent_buffer_get(eb_rewin);
1222 free_extent_buffer(eb);
1223
1224 __tree_mod_log_rewind(eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001225 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001226 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001227
1228 return eb_rewin;
1229}
1230
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001231/*
1232 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1233 * value. If there are no changes, the current root->root_node is returned. If
1234 * anything changed in between, there's a fresh buffer allocated on which the
1235 * rewind operations are done. In any case, the returned buffer is read locked.
1236 * Returns NULL on error (with no locks held).
1237 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001238static inline struct extent_buffer *
1239get_old_root(struct btrfs_root *root, u64 time_seq)
1240{
1241 struct tree_mod_elem *tm;
1242 struct extent_buffer *eb;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001243 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001244 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001245 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001246 u64 logical;
Jan Schmidt834328a2012-10-23 11:27:33 +02001247 u32 blocksize;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001248
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001249 eb = btrfs_read_lock_root_node(root);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001250 tm = __tree_mod_log_oldest_root(root->fs_info, root, time_seq);
1251 if (!tm)
1252 return root->node;
1253
Jan Schmidta95236d2012-06-05 16:41:24 +02001254 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1255 old_root = &tm->old_root;
1256 old_generation = tm->generation;
1257 logical = old_root->logical;
1258 } else {
1259 logical = root->node->start;
1260 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001261
Jan Schmidta95236d2012-06-05 16:41:24 +02001262 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001263 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1264 btrfs_tree_read_unlock(root->node);
1265 free_extent_buffer(root->node);
1266 blocksize = btrfs_level_size(root, old_root->level);
Liu Bo7bfdcf72012-10-25 07:30:19 -06001267 old = read_tree_block(root, logical, blocksize, 0);
1268 if (!old) {
Jan Schmidt834328a2012-10-23 11:27:33 +02001269 pr_warn("btrfs: failed to read tree block %llu from get_old_root\n",
1270 logical);
1271 WARN_ON(1);
1272 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001273 eb = btrfs_clone_extent_buffer(old);
1274 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001275 }
1276 } else if (old_root) {
1277 btrfs_tree_read_unlock(root->node);
1278 free_extent_buffer(root->node);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001279 eb = alloc_dummy_extent_buffer(logical, root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001280 } else {
Jan Schmidta95236d2012-06-05 16:41:24 +02001281 eb = btrfs_clone_extent_buffer(root->node);
Jan Schmidt834328a2012-10-23 11:27:33 +02001282 btrfs_tree_read_unlock(root->node);
1283 free_extent_buffer(root->node);
1284 }
1285
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001286 if (!eb)
1287 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001288 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001289 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001290 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001291 btrfs_set_header_bytenr(eb, eb->start);
1292 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
1293 btrfs_set_header_owner(eb, root->root_key.objectid);
Jan Schmidta95236d2012-06-05 16:41:24 +02001294 btrfs_set_header_level(eb, old_root->level);
1295 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001296 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001297 if (tm)
1298 __tree_mod_log_rewind(eb, time_seq, tm);
1299 else
1300 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001301 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001302
1303 return eb;
1304}
1305
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001306int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1307{
1308 struct tree_mod_elem *tm;
1309 int level;
1310
1311 tm = __tree_mod_log_oldest_root(root->fs_info, root, time_seq);
1312 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1313 level = tm->old_root.level;
1314 } else {
1315 rcu_read_lock();
1316 level = btrfs_header_level(root->node);
1317 rcu_read_unlock();
1318 }
1319
1320 return level;
1321}
1322
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001323static inline int should_cow_block(struct btrfs_trans_handle *trans,
1324 struct btrfs_root *root,
1325 struct extent_buffer *buf)
1326{
Liu Bof1ebcc72011-11-14 20:48:06 -05001327 /* ensure we can see the force_cow */
1328 smp_rmb();
1329
1330 /*
1331 * We do not need to cow a block if
1332 * 1) this block is not created or changed in this transaction;
1333 * 2) this block does not belong to TREE_RELOC tree;
1334 * 3) the root is not forced COW.
1335 *
1336 * What is forced COW:
1337 * when we create snapshot during commiting the transaction,
1338 * after we've finished coping src root, we must COW the shared
1339 * block to ensure the metadata consistency.
1340 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001341 if (btrfs_header_generation(buf) == trans->transid &&
1342 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1343 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001344 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
1345 !root->force_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001346 return 0;
1347 return 1;
1348}
1349
Chris Masond352ac62008-09-29 15:18:18 -04001350/*
1351 * cows a single block, see __btrfs_cow_block for the real work.
1352 * This version of it has extra checks so that a block isn't cow'd more than
1353 * once per transaction, as long as it hasn't been written yet
1354 */
Chris Masond3977122009-01-05 21:25:51 -05001355noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001356 struct btrfs_root *root, struct extent_buffer *buf,
1357 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001358 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001359{
Chris Mason6702ed42007-08-07 16:15:09 -04001360 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001361 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001362
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001363 if (trans->transaction != root->fs_info->running_transaction)
1364 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05001365 (unsigned long long)trans->transid,
1366 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -04001367 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001368
1369 if (trans->transid != root->fs_info->generation)
1370 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05001371 (unsigned long long)trans->transid,
1372 (unsigned long long)root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001373
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001374 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -05001375 *cow_ret = buf;
1376 return 0;
1377 }
Chris Masonc4876852009-02-04 09:24:25 -05001378
Chris Mason0b86a832008-03-24 15:01:56 -04001379 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001380
1381 if (parent)
1382 btrfs_set_lock_blocking(parent);
1383 btrfs_set_lock_blocking(buf);
1384
Chris Masonf510cfe2007-10-15 16:14:48 -04001385 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001386 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001387
1388 trace_btrfs_cow_block(root, buf, *cow_ret);
1389
Chris Masonf510cfe2007-10-15 16:14:48 -04001390 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001391}
1392
Chris Masond352ac62008-09-29 15:18:18 -04001393/*
1394 * helper function for defrag to decide if two blocks pointed to by a
1395 * node are actually close by
1396 */
Chris Mason6b800532007-10-15 16:17:34 -04001397static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001398{
Chris Mason6b800532007-10-15 16:17:34 -04001399 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001400 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001401 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001402 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001403 return 0;
1404}
1405
Chris Mason081e9572007-11-06 10:26:24 -05001406/*
1407 * compare two keys in a memcmp fashion
1408 */
1409static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1410{
1411 struct btrfs_key k1;
1412
1413 btrfs_disk_key_to_cpu(&k1, disk);
1414
Diego Calleja20736ab2009-07-24 11:06:52 -04001415 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001416}
1417
Josef Bacikf3465ca2008-11-12 14:19:50 -05001418/*
1419 * same as comp_keys only with two btrfs_key's
1420 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001421int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001422{
1423 if (k1->objectid > k2->objectid)
1424 return 1;
1425 if (k1->objectid < k2->objectid)
1426 return -1;
1427 if (k1->type > k2->type)
1428 return 1;
1429 if (k1->type < k2->type)
1430 return -1;
1431 if (k1->offset > k2->offset)
1432 return 1;
1433 if (k1->offset < k2->offset)
1434 return -1;
1435 return 0;
1436}
Chris Mason081e9572007-11-06 10:26:24 -05001437
Chris Masond352ac62008-09-29 15:18:18 -04001438/*
1439 * this is used by the defrag code to go through all the
1440 * leaves pointed to by a node and reallocate them so that
1441 * disk order is close to key order
1442 */
Chris Mason6702ed42007-08-07 16:15:09 -04001443int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001444 struct btrfs_root *root, struct extent_buffer *parent,
Chris Masona6b6e752007-10-15 16:22:39 -04001445 int start_slot, int cache_only, u64 *last_ret,
1446 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001447{
Chris Mason6b800532007-10-15 16:17:34 -04001448 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001449 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001450 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001451 u64 search_start = *last_ret;
1452 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001453 u64 other;
1454 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001455 int end_slot;
1456 int i;
1457 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001458 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001459 int uptodate;
1460 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001461 int progress_passed = 0;
1462 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001463
Chris Mason5708b952007-10-25 15:43:18 -04001464 parent_level = btrfs_header_level(parent);
1465 if (cache_only && parent_level != 1)
1466 return 0;
1467
Julia Lawall6c1500f2012-11-03 20:30:18 +00001468 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1469 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001470
Chris Mason6b800532007-10-15 16:17:34 -04001471 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -04001472 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -04001473 end_slot = parent_nritems;
1474
1475 if (parent_nritems == 1)
1476 return 0;
1477
Chris Masonb4ce94d2009-02-04 09:25:08 -05001478 btrfs_set_lock_blocking(parent);
1479
Chris Mason6702ed42007-08-07 16:15:09 -04001480 for (i = start_slot; i < end_slot; i++) {
1481 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001482
Chris Mason081e9572007-11-06 10:26:24 -05001483 btrfs_node_key(parent, &disk_key, i);
1484 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1485 continue;
1486
1487 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001488 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001489 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001490 if (last_block == 0)
1491 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001492
Chris Mason6702ed42007-08-07 16:15:09 -04001493 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001494 other = btrfs_node_blockptr(parent, i - 1);
1495 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001496 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001497 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -04001498 other = btrfs_node_blockptr(parent, i + 1);
1499 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001500 }
Chris Masone9d0b132007-08-10 14:06:19 -04001501 if (close) {
1502 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001503 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001504 }
Chris Mason6702ed42007-08-07 16:15:09 -04001505
Chris Mason6b800532007-10-15 16:17:34 -04001506 cur = btrfs_find_tree_block(root, blocknr, blocksize);
1507 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001508 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001509 else
1510 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001511 if (!cur || !uptodate) {
Chris Mason6702ed42007-08-07 16:15:09 -04001512 if (cache_only) {
Chris Mason6b800532007-10-15 16:17:34 -04001513 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001514 continue;
1515 }
Chris Mason6b800532007-10-15 16:17:34 -04001516 if (!cur) {
1517 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -04001518 blocksize, gen);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001519 if (!cur)
1520 return -EIO;
Chris Mason6b800532007-10-15 16:17:34 -04001521 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001522 err = btrfs_read_buffer(cur, gen);
1523 if (err) {
1524 free_extent_buffer(cur);
1525 return err;
1526 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001527 }
Chris Mason6702ed42007-08-07 16:15:09 -04001528 }
Chris Masone9d0b132007-08-10 14:06:19 -04001529 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001530 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001531
Chris Masone7a84562008-06-25 16:01:31 -04001532 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001533 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001534 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001535 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001536 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001537 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001538 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001539 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001540 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001541 break;
Yan252c38f2007-08-29 09:11:44 -04001542 }
Chris Masone7a84562008-06-25 16:01:31 -04001543 search_start = cur->start;
1544 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001545 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001546 btrfs_tree_unlock(cur);
1547 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001548 }
1549 return err;
1550}
1551
Chris Mason74123bd2007-02-02 11:05:29 -05001552/*
1553 * The leaf data grows from end-to-front in the node.
1554 * this returns the address of the start of the last item,
1555 * which is the stop of the leaf data stack
1556 */
Chris Mason123abc82007-03-14 14:14:43 -04001557static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001558 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001559{
Chris Mason5f39d392007-10-15 16:14:19 -04001560 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001561 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -04001562 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001563 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001564}
1565
Chris Masonaa5d6be2007-02-28 16:35:06 -05001566
Chris Mason74123bd2007-02-02 11:05:29 -05001567/*
Chris Mason5f39d392007-10-15 16:14:19 -04001568 * search for key in the extent_buffer. The items start at offset p,
1569 * and they are item_size apart. There are 'max' items in p.
1570 *
Chris Mason74123bd2007-02-02 11:05:29 -05001571 * the slot in the array is returned via slot, and it points to
1572 * the place where you would insert key if it is not found in
1573 * the array.
1574 *
1575 * slot may point to max if the key is bigger than all of the keys
1576 */
Chris Masone02119d2008-09-05 16:13:11 -04001577static noinline int generic_bin_search(struct extent_buffer *eb,
1578 unsigned long p,
1579 int item_size, struct btrfs_key *key,
1580 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001581{
1582 int low = 0;
1583 int high = max;
1584 int mid;
1585 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001586 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001587 struct btrfs_disk_key unaligned;
1588 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001589 char *kaddr = NULL;
1590 unsigned long map_start = 0;
1591 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001592 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001593
Chris Masond3977122009-01-05 21:25:51 -05001594 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001595 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001596 offset = p + mid * item_size;
1597
Chris Masona6591712011-07-19 12:04:14 -04001598 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001599 (offset + sizeof(struct btrfs_disk_key)) >
1600 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001601
1602 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001603 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001604 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001605
Chris Mason479965d2007-10-15 16:14:27 -04001606 if (!err) {
1607 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1608 map_start);
1609 } else {
1610 read_extent_buffer(eb, &unaligned,
1611 offset, sizeof(unaligned));
1612 tmp = &unaligned;
1613 }
1614
Chris Mason5f39d392007-10-15 16:14:19 -04001615 } else {
1616 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1617 map_start);
1618 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001619 ret = comp_keys(tmp, key);
1620
1621 if (ret < 0)
1622 low = mid + 1;
1623 else if (ret > 0)
1624 high = mid;
1625 else {
1626 *slot = mid;
1627 return 0;
1628 }
1629 }
1630 *slot = low;
1631 return 1;
1632}
1633
Chris Mason97571fd2007-02-24 13:39:08 -05001634/*
1635 * simple bin_search frontend that does the right thing for
1636 * leaves vs nodes
1637 */
Chris Mason5f39d392007-10-15 16:14:19 -04001638static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1639 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001640{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001641 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001642 return generic_bin_search(eb,
1643 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001644 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001645 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001646 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001647 else
Chris Mason5f39d392007-10-15 16:14:19 -04001648 return generic_bin_search(eb,
1649 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001650 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001651 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001652 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001653}
1654
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001655int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1656 int level, int *slot)
1657{
1658 return bin_search(eb, key, level, slot);
1659}
1660
Yan, Zhengf0486c62010-05-16 10:46:25 -04001661static void root_add_used(struct btrfs_root *root, u32 size)
1662{
1663 spin_lock(&root->accounting_lock);
1664 btrfs_set_root_used(&root->root_item,
1665 btrfs_root_used(&root->root_item) + size);
1666 spin_unlock(&root->accounting_lock);
1667}
1668
1669static void root_sub_used(struct btrfs_root *root, u32 size)
1670{
1671 spin_lock(&root->accounting_lock);
1672 btrfs_set_root_used(&root->root_item,
1673 btrfs_root_used(&root->root_item) - size);
1674 spin_unlock(&root->accounting_lock);
1675}
1676
Chris Masond352ac62008-09-29 15:18:18 -04001677/* given a node and slot number, this reads the blocks it points to. The
1678 * extent buffer is returned with a reference taken (but unlocked).
1679 * NULL is returned on error.
1680 */
Chris Masone02119d2008-09-05 16:13:11 -04001681static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001682 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001683{
Chris Masonca7a79a2008-05-12 12:59:19 -04001684 int level = btrfs_header_level(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001685 if (slot < 0)
1686 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001687 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -05001688 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -04001689
1690 BUG_ON(level == 0);
1691
Chris Masondb945352007-10-15 16:15:53 -04001692 return read_tree_block(root, btrfs_node_blockptr(parent, slot),
Chris Masonca7a79a2008-05-12 12:59:19 -04001693 btrfs_level_size(root, level - 1),
1694 btrfs_node_ptr_generation(parent, slot));
Chris Masonbb803952007-03-01 12:04:21 -05001695}
1696
Chris Masond352ac62008-09-29 15:18:18 -04001697/*
1698 * node level balancing, used to make sure nodes are in proper order for
1699 * item deletion. We balance from the top down, so we have to make sure
1700 * that a deletion won't leave an node completely empty later on.
1701 */
Chris Masone02119d2008-09-05 16:13:11 -04001702static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001703 struct btrfs_root *root,
1704 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001705{
Chris Mason5f39d392007-10-15 16:14:19 -04001706 struct extent_buffer *right = NULL;
1707 struct extent_buffer *mid;
1708 struct extent_buffer *left = NULL;
1709 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001710 int ret = 0;
1711 int wret;
1712 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001713 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001714 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001715
1716 if (level == 0)
1717 return 0;
1718
Chris Mason5f39d392007-10-15 16:14:19 -04001719 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001720
Chris Masonbd681512011-07-16 15:23:14 -04001721 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1722 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001723 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1724
Chris Mason1d4f8a02007-03-13 09:28:32 -04001725 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001726
Li Zefana05a9bb2011-09-06 16:55:34 +08001727 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001728 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001729 pslot = path->slots[level + 1];
1730 }
Chris Masonbb803952007-03-01 12:04:21 -05001731
Chris Mason40689472007-03-17 14:29:23 -04001732 /*
1733 * deal with the case where there is only one pointer in the root
1734 * by promoting the node below to a root
1735 */
Chris Mason5f39d392007-10-15 16:14:19 -04001736 if (!parent) {
1737 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001738
Chris Mason5f39d392007-10-15 16:14:19 -04001739 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001740 return 0;
1741
1742 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001743 child = read_node_slot(root, mid, 0);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001744 if (!child) {
1745 ret = -EROFS;
1746 btrfs_std_error(root->fs_info, ret);
1747 goto enospc;
1748 }
1749
Chris Mason925baed2008-06-25 16:01:30 -04001750 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001751 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001752 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001753 if (ret) {
1754 btrfs_tree_unlock(child);
1755 free_extent_buffer(child);
1756 goto enospc;
1757 }
Yan2f375ab2008-02-01 14:58:07 -05001758
Jan Schmidtba1bfbd2012-10-22 20:02:56 +02001759 tree_mod_log_free_eb(root->fs_info, root->node);
Jan Schmidtf2304752012-05-26 11:43:17 +02001760 tree_mod_log_set_root_pointer(root, child);
Chris Mason240f62c2011-03-23 14:54:42 -04001761 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001762
Chris Mason0b86a832008-03-24 15:01:56 -04001763 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001764 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001765
Chris Mason925baed2008-06-25 16:01:30 -04001766 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001767 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001768 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001769 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001770 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001771 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001772
1773 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001774 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001775 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001776 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001777 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001778 }
Chris Mason5f39d392007-10-15 16:14:19 -04001779 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001780 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001781 return 0;
1782
Chris Mason5f39d392007-10-15 16:14:19 -04001783 left = read_node_slot(root, parent, pslot - 1);
1784 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001785 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001786 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001787 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001788 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001789 if (wret) {
1790 ret = wret;
1791 goto enospc;
1792 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001793 }
Chris Mason5f39d392007-10-15 16:14:19 -04001794 right = read_node_slot(root, parent, pslot + 1);
1795 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001796 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001797 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001798 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001799 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001800 if (wret) {
1801 ret = wret;
1802 goto enospc;
1803 }
1804 }
1805
1806 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001807 if (left) {
1808 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001809 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001810 if (wret < 0)
1811 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001812 }
Chris Mason79f95c82007-03-01 15:16:26 -05001813
1814 /*
1815 * then try to empty the right most buffer into the middle
1816 */
Chris Mason5f39d392007-10-15 16:14:19 -04001817 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001818 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001819 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001820 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001821 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001822 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001823 btrfs_tree_unlock(right);
Liu Bo0e411ec2012-10-19 09:50:54 +00001824 del_ptr(trans, root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001825 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001826 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001827 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001828 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001829 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001830 struct btrfs_disk_key right_key;
1831 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02001832 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00001833 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001834 btrfs_set_node_key(parent, &right_key, pslot + 1);
1835 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001836 }
1837 }
Chris Mason5f39d392007-10-15 16:14:19 -04001838 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001839 /*
1840 * we're not allowed to leave a node with one item in the
1841 * tree during a delete. A deletion from lower in the tree
1842 * could try to delete the only pointer in this node.
1843 * So, pull some keys from the left.
1844 * There has to be a left pointer at this point because
1845 * otherwise we would have pulled some pointers from the
1846 * right
1847 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07001848 if (!left) {
1849 ret = -EROFS;
1850 btrfs_std_error(root->fs_info, ret);
1851 goto enospc;
1852 }
Chris Mason5f39d392007-10-15 16:14:19 -04001853 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001854 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001855 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001856 goto enospc;
1857 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001858 if (wret == 1) {
1859 wret = push_node_left(trans, root, left, mid, 1);
1860 if (wret < 0)
1861 ret = wret;
1862 }
Chris Mason79f95c82007-03-01 15:16:26 -05001863 BUG_ON(wret == 1);
1864 }
Chris Mason5f39d392007-10-15 16:14:19 -04001865 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001866 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001867 btrfs_tree_unlock(mid);
Liu Bo0e411ec2012-10-19 09:50:54 +00001868 del_ptr(trans, root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001869 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001870 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001871 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001872 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001873 } else {
1874 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001875 struct btrfs_disk_key mid_key;
1876 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00001877 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02001878 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001879 btrfs_set_node_key(parent, &mid_key, pslot);
1880 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001881 }
Chris Masonbb803952007-03-01 12:04:21 -05001882
Chris Mason79f95c82007-03-01 15:16:26 -05001883 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001884 if (left) {
1885 if (btrfs_header_nritems(left) > orig_slot) {
1886 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001887 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001888 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001889 path->slots[level + 1] -= 1;
1890 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001891 if (mid) {
1892 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001893 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001894 }
Chris Masonbb803952007-03-01 12:04:21 -05001895 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001896 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001897 path->slots[level] = orig_slot;
1898 }
1899 }
Chris Mason79f95c82007-03-01 15:16:26 -05001900 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04001901 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001902 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001903 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001904enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001905 if (right) {
1906 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001907 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001908 }
1909 if (left) {
1910 if (path->nodes[level] != left)
1911 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001912 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001913 }
Chris Masonbb803952007-03-01 12:04:21 -05001914 return ret;
1915}
1916
Chris Masond352ac62008-09-29 15:18:18 -04001917/* Node balancing for insertion. Here we only split or push nodes around
1918 * when they are completely full. This is also done top down, so we
1919 * have to be pessimistic.
1920 */
Chris Masond3977122009-01-05 21:25:51 -05001921static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001922 struct btrfs_root *root,
1923 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001924{
Chris Mason5f39d392007-10-15 16:14:19 -04001925 struct extent_buffer *right = NULL;
1926 struct extent_buffer *mid;
1927 struct extent_buffer *left = NULL;
1928 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001929 int ret = 0;
1930 int wret;
1931 int pslot;
1932 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04001933
1934 if (level == 0)
1935 return 1;
1936
Chris Mason5f39d392007-10-15 16:14:19 -04001937 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001938 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001939
Li Zefana05a9bb2011-09-06 16:55:34 +08001940 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001941 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001942 pslot = path->slots[level + 1];
1943 }
Chris Masone66f7092007-04-20 13:16:02 -04001944
Chris Mason5f39d392007-10-15 16:14:19 -04001945 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001946 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001947
Chris Mason5f39d392007-10-15 16:14:19 -04001948 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001949
1950 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001951 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001952 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001953
1954 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001955 btrfs_set_lock_blocking(left);
1956
Chris Mason5f39d392007-10-15 16:14:19 -04001957 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001958 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1959 wret = 1;
1960 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001961 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001962 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001963 if (ret)
1964 wret = 1;
1965 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001966 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001967 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001968 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001969 }
Chris Masone66f7092007-04-20 13:16:02 -04001970 if (wret < 0)
1971 ret = wret;
1972 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001973 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001974 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001975 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02001976 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00001977 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001978 btrfs_set_node_key(parent, &disk_key, pslot);
1979 btrfs_mark_buffer_dirty(parent);
1980 if (btrfs_header_nritems(left) > orig_slot) {
1981 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04001982 path->slots[level + 1] -= 1;
1983 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001984 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001985 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04001986 } else {
1987 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04001988 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04001989 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001990 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001991 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001992 }
Chris Masone66f7092007-04-20 13:16:02 -04001993 return 0;
1994 }
Chris Mason925baed2008-06-25 16:01:30 -04001995 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001996 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04001997 }
Chris Mason925baed2008-06-25 16:01:30 -04001998 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04001999
2000 /*
2001 * then try to empty the right most buffer into the middle
2002 */
Chris Mason5f39d392007-10-15 16:14:19 -04002003 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002004 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002005
Chris Mason925baed2008-06-25 16:01:30 -04002006 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002007 btrfs_set_lock_blocking(right);
2008
Chris Mason5f39d392007-10-15 16:14:19 -04002009 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002010 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2011 wret = 1;
2012 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002013 ret = btrfs_cow_block(trans, root, right,
2014 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002015 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002016 if (ret)
2017 wret = 1;
2018 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002019 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002020 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002021 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002022 }
Chris Masone66f7092007-04-20 13:16:02 -04002023 if (wret < 0)
2024 ret = wret;
2025 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002026 struct btrfs_disk_key disk_key;
2027
2028 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002029 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002030 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002031 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2032 btrfs_mark_buffer_dirty(parent);
2033
2034 if (btrfs_header_nritems(mid) <= orig_slot) {
2035 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002036 path->slots[level + 1] += 1;
2037 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002038 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002039 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002040 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002041 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002042 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002043 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002044 }
Chris Masone66f7092007-04-20 13:16:02 -04002045 return 0;
2046 }
Chris Mason925baed2008-06-25 16:01:30 -04002047 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002048 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002049 }
Chris Masone66f7092007-04-20 13:16:02 -04002050 return 1;
2051}
2052
Chris Mason74123bd2007-02-02 11:05:29 -05002053/*
Chris Masond352ac62008-09-29 15:18:18 -04002054 * readahead one full node of leaves, finding things that are close
2055 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002056 */
Chris Masonc8c42862009-04-03 10:14:18 -04002057static void reada_for_search(struct btrfs_root *root,
2058 struct btrfs_path *path,
2059 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002060{
Chris Mason5f39d392007-10-15 16:14:19 -04002061 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002062 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002063 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002064 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002065 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002066 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002067 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04002068 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04002069 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002070 u32 nr;
2071 u32 blocksize;
2072 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002073
Chris Masona6b6e752007-10-15 16:22:39 -04002074 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002075 return;
2076
Chris Mason6702ed42007-08-07 16:15:09 -04002077 if (!path->nodes[level])
2078 return;
2079
Chris Mason5f39d392007-10-15 16:14:19 -04002080 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002081
Chris Mason3c69fae2007-08-07 15:52:22 -04002082 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04002083 blocksize = btrfs_level_size(root, level - 1);
2084 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002085 if (eb) {
2086 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002087 return;
2088 }
2089
Chris Masona7175312009-01-22 09:23:10 -05002090 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002091
Chris Mason5f39d392007-10-15 16:14:19 -04002092 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002093 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002094
Chris Masond3977122009-01-05 21:25:51 -05002095 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04002096 if (direction < 0) {
2097 if (nr == 0)
2098 break;
2099 nr--;
2100 } else if (direction > 0) {
2101 nr++;
2102 if (nr >= nritems)
2103 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002104 }
Chris Mason01f46652007-12-21 16:24:26 -05002105 if (path->reada < 0 && objectid) {
2106 btrfs_node_key(node, &disk_key, nr);
2107 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2108 break;
2109 }
Chris Mason6b800532007-10-15 16:17:34 -04002110 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002111 if ((search <= target && target - search <= 65536) ||
2112 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002113 gen = btrfs_node_ptr_generation(node, nr);
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002114 readahead_tree_block(root, search, blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -04002115 nread += blocksize;
2116 }
2117 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002118 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002119 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002120 }
2121}
Chris Mason925baed2008-06-25 16:01:30 -04002122
Chris Masond352ac62008-09-29 15:18:18 -04002123/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002124 * returns -EAGAIN if it had to drop the path, or zero if everything was in
2125 * cache
2126 */
2127static noinline int reada_for_balance(struct btrfs_root *root,
2128 struct btrfs_path *path, int level)
2129{
2130 int slot;
2131 int nritems;
2132 struct extent_buffer *parent;
2133 struct extent_buffer *eb;
2134 u64 gen;
2135 u64 block1 = 0;
2136 u64 block2 = 0;
2137 int ret = 0;
2138 int blocksize;
2139
Chris Mason8c594ea2009-04-20 15:50:10 -04002140 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002141 if (!parent)
2142 return 0;
2143
2144 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002145 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002146 blocksize = btrfs_level_size(root, level);
2147
2148 if (slot > 0) {
2149 block1 = btrfs_node_blockptr(parent, slot - 1);
2150 gen = btrfs_node_ptr_generation(parent, slot - 1);
2151 eb = btrfs_find_tree_block(root, block1, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002152 /*
2153 * if we get -eagain from btrfs_buffer_uptodate, we
2154 * don't want to return eagain here. That will loop
2155 * forever
2156 */
2157 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002158 block1 = 0;
2159 free_extent_buffer(eb);
2160 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002161 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002162 block2 = btrfs_node_blockptr(parent, slot + 1);
2163 gen = btrfs_node_ptr_generation(parent, slot + 1);
2164 eb = btrfs_find_tree_block(root, block2, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002165 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002166 block2 = 0;
2167 free_extent_buffer(eb);
2168 }
2169 if (block1 || block2) {
2170 ret = -EAGAIN;
Chris Mason8c594ea2009-04-20 15:50:10 -04002171
2172 /* release the whole path */
David Sterbab3b4aa72011-04-21 01:20:15 +02002173 btrfs_release_path(path);
Chris Mason8c594ea2009-04-20 15:50:10 -04002174
2175 /* read the blocks */
Chris Masonb4ce94d2009-02-04 09:25:08 -05002176 if (block1)
2177 readahead_tree_block(root, block1, blocksize, 0);
2178 if (block2)
2179 readahead_tree_block(root, block2, blocksize, 0);
2180
2181 if (block1) {
2182 eb = read_tree_block(root, block1, blocksize, 0);
2183 free_extent_buffer(eb);
2184 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002185 if (block2) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002186 eb = read_tree_block(root, block2, blocksize, 0);
2187 free_extent_buffer(eb);
2188 }
2189 }
2190 return ret;
2191}
2192
2193
2194/*
Chris Masond3977122009-01-05 21:25:51 -05002195 * when we walk down the tree, it is usually safe to unlock the higher layers
2196 * in the tree. The exceptions are when our path goes through slot 0, because
2197 * operations on the tree might require changing key pointers higher up in the
2198 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002199 *
Chris Masond3977122009-01-05 21:25:51 -05002200 * callers might also have set path->keep_locks, which tells this code to keep
2201 * the lock if the path points to the last slot in the block. This is part of
2202 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002203 *
Chris Masond3977122009-01-05 21:25:51 -05002204 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2205 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002206 */
Chris Masone02119d2008-09-05 16:13:11 -04002207static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002208 int lowest_unlock, int min_write_lock_level,
2209 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002210{
2211 int i;
2212 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002213 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002214 struct extent_buffer *t;
2215
Josef Bacikd6393782012-12-12 17:00:01 -05002216 if (path->really_keep_locks)
2217 return;
2218
Chris Mason925baed2008-06-25 16:01:30 -04002219 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2220 if (!path->nodes[i])
2221 break;
2222 if (!path->locks[i])
2223 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002224 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002225 skip_level = i + 1;
2226 continue;
2227 }
Chris Mason051e1b92008-06-25 16:01:30 -04002228 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002229 u32 nritems;
2230 t = path->nodes[i];
2231 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002232 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002233 skip_level = i + 1;
2234 continue;
2235 }
2236 }
Chris Mason051e1b92008-06-25 16:01:30 -04002237 if (skip_level < i && i >= lowest_unlock)
2238 no_skips = 1;
2239
Chris Mason925baed2008-06-25 16:01:30 -04002240 t = path->nodes[i];
2241 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002242 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002243 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002244 if (write_lock_level &&
2245 i > min_write_lock_level &&
2246 i <= *write_lock_level) {
2247 *write_lock_level = i - 1;
2248 }
Chris Mason925baed2008-06-25 16:01:30 -04002249 }
2250 }
2251}
2252
Chris Mason3c69fae2007-08-07 15:52:22 -04002253/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002254 * This releases any locks held in the path starting at level and
2255 * going all the way up to the root.
2256 *
2257 * btrfs_search_slot will keep the lock held on higher nodes in a few
2258 * corner cases, such as COW of the block at slot zero in the node. This
2259 * ignores those rules, and it should only be called when there are no
2260 * more updates to be done higher up in the tree.
2261 */
2262noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2263{
2264 int i;
2265
Josef Bacikd6393782012-12-12 17:00:01 -05002266 if (path->keep_locks || path->really_keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002267 return;
2268
2269 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2270 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002271 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002272 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002273 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002274 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002275 path->locks[i] = 0;
2276 }
2277}
2278
2279/*
Chris Masonc8c42862009-04-03 10:14:18 -04002280 * helper function for btrfs_search_slot. The goal is to find a block
2281 * in cache without setting the path to blocking. If we find the block
2282 * we return zero and the path is unchanged.
2283 *
2284 * If we can't find the block, we set the path blocking and do some
2285 * reada. -EAGAIN is returned and the search must be repeated.
2286 */
2287static int
2288read_block_for_search(struct btrfs_trans_handle *trans,
2289 struct btrfs_root *root, struct btrfs_path *p,
2290 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002291 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002292{
2293 u64 blocknr;
2294 u64 gen;
2295 u32 blocksize;
2296 struct extent_buffer *b = *eb_ret;
2297 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002298 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002299
2300 blocknr = btrfs_node_blockptr(b, slot);
2301 gen = btrfs_node_ptr_generation(b, slot);
2302 blocksize = btrfs_level_size(root, level - 1);
2303
2304 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
Chris Masoncb449212010-10-24 11:01:27 -04002305 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002306 /* first we do an atomic uptodate check */
2307 if (btrfs_buffer_uptodate(tmp, 0, 1) > 0) {
2308 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
Chris Masoncb449212010-10-24 11:01:27 -04002309 /*
2310 * we found an up to date block without
2311 * sleeping, return
2312 * right away
2313 */
2314 *eb_ret = tmp;
2315 return 0;
2316 }
2317 /* the pages were up to date, but we failed
2318 * the generation number check. Do a full
2319 * read for the generation number that is correct.
2320 * We must do this without dropping locks so
2321 * we can trust our generation number
2322 */
2323 free_extent_buffer(tmp);
Chris Masonbd681512011-07-16 15:23:14 -04002324 btrfs_set_path_blocking(p);
2325
Chris Masonb9fab912012-05-06 07:23:47 -04002326 /* now we're allowed to do a blocking uptodate check */
Chris Masoncb449212010-10-24 11:01:27 -04002327 tmp = read_tree_block(root, blocknr, blocksize, gen);
Chris Masonb9fab912012-05-06 07:23:47 -04002328 if (tmp && btrfs_buffer_uptodate(tmp, gen, 0) > 0) {
Chris Masoncb449212010-10-24 11:01:27 -04002329 *eb_ret = tmp;
2330 return 0;
2331 }
2332 free_extent_buffer(tmp);
David Sterbab3b4aa72011-04-21 01:20:15 +02002333 btrfs_release_path(p);
Chris Masoncb449212010-10-24 11:01:27 -04002334 return -EIO;
2335 }
Chris Masonc8c42862009-04-03 10:14:18 -04002336 }
2337
2338 /*
2339 * reduce lock contention at high levels
2340 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002341 * we read. Don't release the lock on the current
2342 * level because we need to walk this node to figure
2343 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002344 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002345 btrfs_unlock_up_safe(p, level + 1);
2346 btrfs_set_path_blocking(p);
2347
Chris Masoncb449212010-10-24 11:01:27 -04002348 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04002349 if (p->reada)
2350 reada_for_search(root, p, level, slot, key->objectid);
2351
David Sterbab3b4aa72011-04-21 01:20:15 +02002352 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002353
2354 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04002355 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04002356 if (tmp) {
2357 /*
2358 * If the read above didn't mark this buffer up to date,
2359 * it will never end up being up to date. Set ret to EIO now
2360 * and give up so that our caller doesn't loop forever
2361 * on our EAGAINs.
2362 */
Chris Masonb9fab912012-05-06 07:23:47 -04002363 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002364 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002365 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002366 }
2367 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002368}
2369
2370/*
2371 * helper function for btrfs_search_slot. This does all of the checks
2372 * for node-level blocks and does any balancing required based on
2373 * the ins_len.
2374 *
2375 * If no extra work was required, zero is returned. If we had to
2376 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2377 * start over
2378 */
2379static int
2380setup_nodes_for_search(struct btrfs_trans_handle *trans,
2381 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002382 struct extent_buffer *b, int level, int ins_len,
2383 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002384{
2385 int ret;
2386 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2387 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2388 int sret;
2389
Chris Masonbd681512011-07-16 15:23:14 -04002390 if (*write_lock_level < level + 1) {
2391 *write_lock_level = level + 1;
2392 btrfs_release_path(p);
2393 goto again;
2394 }
2395
Chris Masonc8c42862009-04-03 10:14:18 -04002396 sret = reada_for_balance(root, p, level);
2397 if (sret)
2398 goto again;
2399
2400 btrfs_set_path_blocking(p);
2401 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002402 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002403
2404 BUG_ON(sret > 0);
2405 if (sret) {
2406 ret = sret;
2407 goto done;
2408 }
2409 b = p->nodes[level];
2410 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002411 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002412 int sret;
2413
Chris Masonbd681512011-07-16 15:23:14 -04002414 if (*write_lock_level < level + 1) {
2415 *write_lock_level = level + 1;
2416 btrfs_release_path(p);
2417 goto again;
2418 }
2419
Chris Masonc8c42862009-04-03 10:14:18 -04002420 sret = reada_for_balance(root, p, level);
2421 if (sret)
2422 goto again;
2423
2424 btrfs_set_path_blocking(p);
2425 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002426 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002427
2428 if (sret) {
2429 ret = sret;
2430 goto done;
2431 }
2432 b = p->nodes[level];
2433 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002434 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002435 goto again;
2436 }
2437 BUG_ON(btrfs_header_nritems(b) == 1);
2438 }
2439 return 0;
2440
2441again:
2442 ret = -EAGAIN;
2443done:
2444 return ret;
2445}
2446
2447/*
Chris Mason74123bd2007-02-02 11:05:29 -05002448 * look for key in the tree. path is filled in with nodes along the way
2449 * if key is found, we return zero and you can find the item in the leaf
2450 * level of the path (level 0)
2451 *
2452 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002453 * be inserted, and 1 is returned. If there are other errors during the
2454 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002455 *
2456 * if ins_len > 0, nodes and leaves will be split as we walk down the
2457 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2458 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002459 */
Chris Masone089f052007-03-16 16:20:31 -04002460int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2461 *root, struct btrfs_key *key, struct btrfs_path *p, int
2462 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002463{
Chris Mason5f39d392007-10-15 16:14:19 -04002464 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002465 int slot;
2466 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002467 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002468 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002469 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002470 int root_lock;
2471 /* everything at write_lock_level or lower must be write locked */
2472 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002473 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002474 int min_write_lock_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002475
Chris Mason6702ed42007-08-07 16:15:09 -04002476 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002477 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002478 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04002479
Chris Masonbd681512011-07-16 15:23:14 -04002480 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002481 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002482
Chris Masonbd681512011-07-16 15:23:14 -04002483 /* when we are removing items, we might have to go up to level
2484 * two as we update tree pointers Make sure we keep write
2485 * for those levels as well
2486 */
2487 write_lock_level = 2;
2488 } else if (ins_len > 0) {
2489 /*
2490 * for inserting items, make sure we have a write lock on
2491 * level 1 so we can update keys
2492 */
2493 write_lock_level = 1;
2494 }
2495
2496 if (!cow)
2497 write_lock_level = -1;
2498
Josef Bacikd6393782012-12-12 17:00:01 -05002499 if (cow && (p->really_keep_locks || p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002500 write_lock_level = BTRFS_MAX_LEVEL;
2501
Chris Masonf7c79f32012-03-19 15:54:38 -04002502 min_write_lock_level = write_lock_level;
2503
Chris Masonbb803952007-03-01 12:04:21 -05002504again:
Chris Masonbd681512011-07-16 15:23:14 -04002505 /*
2506 * we try very hard to do read locks on the root
2507 */
2508 root_lock = BTRFS_READ_LOCK;
2509 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002510 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002511 /*
2512 * the commit roots are read only
2513 * so we always do read locks
2514 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002515 b = root->commit_root;
2516 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002517 level = btrfs_header_level(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002518 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002519 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002520 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002521 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002522 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002523 level = btrfs_header_level(b);
2524 } else {
2525 /* we don't know the level of the root node
2526 * until we actually have it read locked
2527 */
2528 b = btrfs_read_lock_root_node(root);
2529 level = btrfs_header_level(b);
2530 if (level <= write_lock_level) {
2531 /* whoops, must trade for write lock */
2532 btrfs_tree_read_unlock(b);
2533 free_extent_buffer(b);
2534 b = btrfs_lock_root_node(root);
2535 root_lock = BTRFS_WRITE_LOCK;
2536
2537 /* the level might have changed, check again */
2538 level = btrfs_header_level(b);
2539 }
2540 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002541 }
Chris Masonbd681512011-07-16 15:23:14 -04002542 p->nodes[level] = b;
2543 if (!p->skip_locking)
2544 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002545
Chris Masoneb60cea2007-02-02 09:18:22 -05002546 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002547 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002548
2549 /*
2550 * setup the path here so we can release it under lock
2551 * contention with the cow code
2552 */
Chris Mason02217ed2007-03-02 16:08:05 -05002553 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04002554 /*
2555 * if we don't really need to cow this block
2556 * then we don't want to set the path blocking,
2557 * so we test it here
2558 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002559 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04002560 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002561
Chris Masonb4ce94d2009-02-04 09:25:08 -05002562 btrfs_set_path_blocking(p);
2563
Chris Masonbd681512011-07-16 15:23:14 -04002564 /*
2565 * must have write locks on this node and the
2566 * parent
2567 */
Josef Bacik5124e002012-11-07 13:44:13 -05002568 if (level > write_lock_level ||
2569 (level + 1 > write_lock_level &&
2570 level + 1 < BTRFS_MAX_LEVEL &&
2571 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002572 write_lock_level = level + 1;
2573 btrfs_release_path(p);
2574 goto again;
2575 }
2576
Yan Zheng33c66f42009-07-22 09:59:00 -04002577 err = btrfs_cow_block(trans, root, b,
2578 p->nodes[level + 1],
2579 p->slots[level + 1], &b);
2580 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002581 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002582 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002583 }
Chris Mason02217ed2007-03-02 16:08:05 -05002584 }
Chris Mason65b51a02008-08-01 15:11:20 -04002585cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05002586 BUG_ON(!cow && ins_len);
Chris Mason65b51a02008-08-01 15:11:20 -04002587
Chris Masoneb60cea2007-02-02 09:18:22 -05002588 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002589 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002590
2591 /*
2592 * we have a lock on b and as long as we aren't changing
2593 * the tree, there is no way to for the items in b to change.
2594 * It is safe to drop the lock on our parent before we
2595 * go through the expensive btree search on b.
2596 *
2597 * If cow is true, then we might be changing slot zero,
2598 * which may require changing the parent. So, we can't
2599 * drop the lock until after we know which slot we're
2600 * operating on.
2601 */
2602 if (!cow)
2603 btrfs_unlock_up_safe(p, level + 1);
2604
Chris Mason5f39d392007-10-15 16:14:19 -04002605 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002606
Chris Mason5f39d392007-10-15 16:14:19 -04002607 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002608 int dec = 0;
2609 if (ret && slot > 0) {
2610 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002611 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002612 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002613 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002614 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002615 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002616 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002617 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002618 if (err) {
2619 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002620 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002621 }
Chris Masonc8c42862009-04-03 10:14:18 -04002622 b = p->nodes[level];
2623 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002624
Chris Masonbd681512011-07-16 15:23:14 -04002625 /*
2626 * slot 0 is special, if we change the key
2627 * we have to update the parent pointer
2628 * which means we must have a write lock
2629 * on the parent
2630 */
2631 if (slot == 0 && cow &&
2632 write_lock_level < level + 1) {
2633 write_lock_level = level + 1;
2634 btrfs_release_path(p);
2635 goto again;
2636 }
2637
Chris Masonf7c79f32012-03-19 15:54:38 -04002638 unlock_up(p, level, lowest_unlock,
2639 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002640
Chris Mason925baed2008-06-25 16:01:30 -04002641 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002642 if (dec)
2643 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002644 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002645 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002646
Yan Zheng33c66f42009-07-22 09:59:00 -04002647 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002648 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002649 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002650 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002651 if (err) {
2652 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002653 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002654 }
Chris Mason76a05b32009-05-14 13:24:30 -04002655
Chris Masonb4ce94d2009-02-04 09:25:08 -05002656 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002657 level = btrfs_header_level(b);
2658 if (level <= write_lock_level) {
2659 err = btrfs_try_tree_write_lock(b);
2660 if (!err) {
2661 btrfs_set_path_blocking(p);
2662 btrfs_tree_lock(b);
2663 btrfs_clear_path_blocking(p, b,
2664 BTRFS_WRITE_LOCK);
2665 }
2666 p->locks[level] = BTRFS_WRITE_LOCK;
2667 } else {
2668 err = btrfs_try_tree_read_lock(b);
2669 if (!err) {
2670 btrfs_set_path_blocking(p);
2671 btrfs_tree_read_lock(b);
2672 btrfs_clear_path_blocking(p, b,
2673 BTRFS_READ_LOCK);
2674 }
2675 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002676 }
Chris Masonbd681512011-07-16 15:23:14 -04002677 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002678 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002679 } else {
2680 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002681 if (ins_len > 0 &&
2682 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002683 if (write_lock_level < 1) {
2684 write_lock_level = 1;
2685 btrfs_release_path(p);
2686 goto again;
2687 }
2688
Chris Masonb4ce94d2009-02-04 09:25:08 -05002689 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002690 err = split_leaf(trans, root, key,
2691 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002692 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002693
Yan Zheng33c66f42009-07-22 09:59:00 -04002694 BUG_ON(err > 0);
2695 if (err) {
2696 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002697 goto done;
2698 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002699 }
Chris Mason459931e2008-12-10 09:10:46 -05002700 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002701 unlock_up(p, level, lowest_unlock,
2702 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002703 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002704 }
2705 }
Chris Mason65b51a02008-08-01 15:11:20 -04002706 ret = 1;
2707done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002708 /*
2709 * we don't really know what they plan on doing with the path
2710 * from here on, so for now just mark it as blocking
2711 */
Chris Masonb9473432009-03-13 11:00:37 -04002712 if (!p->leave_spinning)
2713 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002714 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02002715 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002716 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002717}
2718
Chris Mason74123bd2007-02-02 11:05:29 -05002719/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002720 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2721 * current state of the tree together with the operations recorded in the tree
2722 * modification log to search for the key in a previous version of this tree, as
2723 * denoted by the time_seq parameter.
2724 *
2725 * Naturally, there is no support for insert, delete or cow operations.
2726 *
2727 * The resulting path and return value will be set up as if we called
2728 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2729 */
2730int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2731 struct btrfs_path *p, u64 time_seq)
2732{
2733 struct extent_buffer *b;
2734 int slot;
2735 int ret;
2736 int err;
2737 int level;
2738 int lowest_unlock = 1;
2739 u8 lowest_level = 0;
2740
2741 lowest_level = p->lowest_level;
2742 WARN_ON(p->nodes[0] != NULL);
2743
2744 if (p->search_commit_root) {
2745 BUG_ON(time_seq);
2746 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2747 }
2748
2749again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002750 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002751 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002752 p->locks[level] = BTRFS_READ_LOCK;
2753
2754 while (b) {
2755 level = btrfs_header_level(b);
2756 p->nodes[level] = b;
2757 btrfs_clear_path_blocking(p, NULL, 0);
2758
2759 /*
2760 * we have a lock on b and as long as we aren't changing
2761 * the tree, there is no way to for the items in b to change.
2762 * It is safe to drop the lock on our parent before we
2763 * go through the expensive btree search on b.
2764 */
2765 btrfs_unlock_up_safe(p, level + 1);
2766
2767 ret = bin_search(b, key, level, &slot);
2768
2769 if (level != 0) {
2770 int dec = 0;
2771 if (ret && slot > 0) {
2772 dec = 1;
2773 slot -= 1;
2774 }
2775 p->slots[level] = slot;
2776 unlock_up(p, level, lowest_unlock, 0, NULL);
2777
2778 if (level == lowest_level) {
2779 if (dec)
2780 p->slots[level]++;
2781 goto done;
2782 }
2783
2784 err = read_block_for_search(NULL, root, p, &b, level,
2785 slot, key, time_seq);
2786 if (err == -EAGAIN)
2787 goto again;
2788 if (err) {
2789 ret = err;
2790 goto done;
2791 }
2792
2793 level = btrfs_header_level(b);
2794 err = btrfs_try_tree_read_lock(b);
2795 if (!err) {
2796 btrfs_set_path_blocking(p);
2797 btrfs_tree_read_lock(b);
2798 btrfs_clear_path_blocking(p, b,
2799 BTRFS_READ_LOCK);
2800 }
2801 p->locks[level] = BTRFS_READ_LOCK;
2802 p->nodes[level] = b;
2803 b = tree_mod_log_rewind(root->fs_info, b, time_seq);
2804 if (b != p->nodes[level]) {
2805 btrfs_tree_unlock_rw(p->nodes[level],
2806 p->locks[level]);
2807 p->locks[level] = 0;
2808 p->nodes[level] = b;
2809 }
2810 } else {
2811 p->slots[level] = slot;
2812 unlock_up(p, level, lowest_unlock, 0, NULL);
2813 goto done;
2814 }
2815 }
2816 ret = 1;
2817done:
2818 if (!p->leave_spinning)
2819 btrfs_set_path_blocking(p);
2820 if (ret < 0)
2821 btrfs_release_path(p);
2822
2823 return ret;
2824}
2825
2826/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002827 * helper to use instead of search slot if no exact match is needed but
2828 * instead the next or previous item should be returned.
2829 * When find_higher is true, the next higher item is returned, the next lower
2830 * otherwise.
2831 * When return_any and find_higher are both true, and no higher item is found,
2832 * return the next lower instead.
2833 * When return_any is true and find_higher is false, and no lower item is found,
2834 * return the next higher instead.
2835 * It returns 0 if any item is found, 1 if none is found (tree empty), and
2836 * < 0 on error
2837 */
2838int btrfs_search_slot_for_read(struct btrfs_root *root,
2839 struct btrfs_key *key, struct btrfs_path *p,
2840 int find_higher, int return_any)
2841{
2842 int ret;
2843 struct extent_buffer *leaf;
2844
2845again:
2846 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
2847 if (ret <= 0)
2848 return ret;
2849 /*
2850 * a return value of 1 means the path is at the position where the
2851 * item should be inserted. Normally this is the next bigger item,
2852 * but in case the previous item is the last in a leaf, path points
2853 * to the first free slot in the previous leaf, i.e. at an invalid
2854 * item.
2855 */
2856 leaf = p->nodes[0];
2857
2858 if (find_higher) {
2859 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
2860 ret = btrfs_next_leaf(root, p);
2861 if (ret <= 0)
2862 return ret;
2863 if (!return_any)
2864 return 1;
2865 /*
2866 * no higher item found, return the next
2867 * lower instead
2868 */
2869 return_any = 0;
2870 find_higher = 0;
2871 btrfs_release_path(p);
2872 goto again;
2873 }
2874 } else {
Arne Jansene6793762011-09-13 11:18:10 +02002875 if (p->slots[0] == 0) {
2876 ret = btrfs_prev_leaf(root, p);
2877 if (ret < 0)
2878 return ret;
2879 if (!ret) {
2880 p->slots[0] = btrfs_header_nritems(leaf) - 1;
2881 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002882 }
Arne Jansene6793762011-09-13 11:18:10 +02002883 if (!return_any)
2884 return 1;
2885 /*
2886 * no lower item found, return the next
2887 * higher instead
2888 */
2889 return_any = 0;
2890 find_higher = 1;
2891 btrfs_release_path(p);
2892 goto again;
2893 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002894 --p->slots[0];
2895 }
2896 }
2897 return 0;
2898}
2899
2900/*
Chris Mason74123bd2007-02-02 11:05:29 -05002901 * adjust the pointers going up the tree, starting at level
2902 * making sure the right key of each node is points to 'key'.
2903 * This is used after shifting pointers to the left, so it stops
2904 * fixing up pointers when a given leaf/node is not in slot 0 of the
2905 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05002906 *
Chris Mason74123bd2007-02-02 11:05:29 -05002907 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002908static void fixup_low_keys(struct btrfs_trans_handle *trans,
2909 struct btrfs_root *root, struct btrfs_path *path,
2910 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002911{
2912 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04002913 struct extent_buffer *t;
2914
Chris Mason234b63a2007-03-13 10:46:10 -04002915 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05002916 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05002917 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05002918 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002919 t = path->nodes[i];
Liu Bo32adf092012-10-19 12:52:15 +00002920 tree_mod_log_set_node_key(root->fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002921 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04002922 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002923 if (tslot != 0)
2924 break;
2925 }
2926}
2927
Chris Mason74123bd2007-02-02 11:05:29 -05002928/*
Zheng Yan31840ae2008-09-23 13:14:14 -04002929 * update item key.
2930 *
2931 * This function isn't completely safe. It's the caller's responsibility
2932 * that the new key won't break the order
2933 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01002934void btrfs_set_item_key_safe(struct btrfs_trans_handle *trans,
2935 struct btrfs_root *root, struct btrfs_path *path,
2936 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04002937{
2938 struct btrfs_disk_key disk_key;
2939 struct extent_buffer *eb;
2940 int slot;
2941
2942 eb = path->nodes[0];
2943 slot = path->slots[0];
2944 if (slot > 0) {
2945 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01002946 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002947 }
2948 if (slot < btrfs_header_nritems(eb) - 1) {
2949 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01002950 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002951 }
2952
2953 btrfs_cpu_key_to_disk(&disk_key, new_key);
2954 btrfs_set_item_key(eb, &disk_key, slot);
2955 btrfs_mark_buffer_dirty(eb);
2956 if (slot == 0)
2957 fixup_low_keys(trans, root, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04002958}
2959
2960/*
Chris Mason74123bd2007-02-02 11:05:29 -05002961 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05002962 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002963 *
2964 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
2965 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05002966 */
Chris Mason98ed5172008-01-03 10:01:48 -05002967static int push_node_left(struct btrfs_trans_handle *trans,
2968 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04002969 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002970{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002971 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05002972 int src_nritems;
2973 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002974 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002975
Chris Mason5f39d392007-10-15 16:14:19 -04002976 src_nritems = btrfs_header_nritems(src);
2977 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002978 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05002979 WARN_ON(btrfs_header_generation(src) != trans->transid);
2980 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002981
Chris Masonbce4eae2008-04-24 14:42:46 -04002982 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04002983 return 1;
2984
Chris Masond3977122009-01-05 21:25:51 -05002985 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002986 return 1;
2987
Chris Masonbce4eae2008-04-24 14:42:46 -04002988 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04002989 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04002990 if (push_items < src_nritems) {
2991 /* leave at least 8 pointers in the node if
2992 * we aren't going to empty it
2993 */
2994 if (src_nritems - push_items < 8) {
2995 if (push_items <= 8)
2996 return 1;
2997 push_items -= 8;
2998 }
2999 }
3000 } else
3001 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003002
Jan Schmidtf2304752012-05-26 11:43:17 +02003003 tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
3004 push_items);
Chris Mason5f39d392007-10-15 16:14:19 -04003005 copy_extent_buffer(dst, src,
3006 btrfs_node_key_ptr_offset(dst_nritems),
3007 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003008 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003009
Chris Masonbb803952007-03-01 12:04:21 -05003010 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003011 /*
3012 * don't call tree_mod_log_eb_move here, key removal was already
3013 * fully logged by tree_mod_log_eb_copy above.
3014 */
Chris Mason5f39d392007-10-15 16:14:19 -04003015 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3016 btrfs_node_key_ptr_offset(push_items),
3017 (src_nritems - push_items) *
3018 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003019 }
Chris Mason5f39d392007-10-15 16:14:19 -04003020 btrfs_set_header_nritems(src, src_nritems - push_items);
3021 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3022 btrfs_mark_buffer_dirty(src);
3023 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003024
Chris Masonbb803952007-03-01 12:04:21 -05003025 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003026}
3027
Chris Mason97571fd2007-02-24 13:39:08 -05003028/*
Chris Mason79f95c82007-03-01 15:16:26 -05003029 * try to push data from one node into the next node right in the
3030 * tree.
3031 *
3032 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3033 * error, and > 0 if there was no room in the right hand block.
3034 *
3035 * this will only push up to 1/2 the contents of the left node over
3036 */
Chris Mason5f39d392007-10-15 16:14:19 -04003037static int balance_node_right(struct btrfs_trans_handle *trans,
3038 struct btrfs_root *root,
3039 struct extent_buffer *dst,
3040 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003041{
Chris Mason79f95c82007-03-01 15:16:26 -05003042 int push_items = 0;
3043 int max_push;
3044 int src_nritems;
3045 int dst_nritems;
3046 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003047
Chris Mason7bb86312007-12-11 09:25:06 -05003048 WARN_ON(btrfs_header_generation(src) != trans->transid);
3049 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3050
Chris Mason5f39d392007-10-15 16:14:19 -04003051 src_nritems = btrfs_header_nritems(src);
3052 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003053 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003054 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003055 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003056
Chris Masond3977122009-01-05 21:25:51 -05003057 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003058 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003059
3060 max_push = src_nritems / 2 + 1;
3061 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003062 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003063 return 1;
Yan252c38f2007-08-29 09:11:44 -04003064
Chris Mason79f95c82007-03-01 15:16:26 -05003065 if (max_push < push_items)
3066 push_items = max_push;
3067
Jan Schmidtf2304752012-05-26 11:43:17 +02003068 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003069 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3070 btrfs_node_key_ptr_offset(0),
3071 (dst_nritems) *
3072 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003073
Jan Schmidtf2304752012-05-26 11:43:17 +02003074 tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
3075 src_nritems - push_items, push_items);
Chris Mason5f39d392007-10-15 16:14:19 -04003076 copy_extent_buffer(dst, src,
3077 btrfs_node_key_ptr_offset(0),
3078 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003079 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003080
Chris Mason5f39d392007-10-15 16:14:19 -04003081 btrfs_set_header_nritems(src, src_nritems - push_items);
3082 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003083
Chris Mason5f39d392007-10-15 16:14:19 -04003084 btrfs_mark_buffer_dirty(src);
3085 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003086
Chris Mason79f95c82007-03-01 15:16:26 -05003087 return ret;
3088}
3089
3090/*
Chris Mason97571fd2007-02-24 13:39:08 -05003091 * helper function to insert a new root level in the tree.
3092 * A new node is allocated, and a single item is inserted to
3093 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003094 *
3095 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003096 */
Chris Masond3977122009-01-05 21:25:51 -05003097static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003098 struct btrfs_root *root,
3099 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003100{
Chris Mason7bb86312007-12-11 09:25:06 -05003101 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003102 struct extent_buffer *lower;
3103 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003104 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003105 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003106
3107 BUG_ON(path->nodes[level]);
3108 BUG_ON(path->nodes[level-1] != root->node);
3109
Chris Mason7bb86312007-12-11 09:25:06 -05003110 lower = path->nodes[level-1];
3111 if (level == 1)
3112 btrfs_item_key(lower, &lower_key, 0);
3113 else
3114 btrfs_node_key(lower, &lower_key, 0);
3115
Zheng Yan31840ae2008-09-23 13:14:14 -04003116 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003117 root->root_key.objectid, &lower_key,
Jan Schmidt5581a512012-05-16 17:04:52 +02003118 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003119 if (IS_ERR(c))
3120 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003121
Yan, Zhengf0486c62010-05-16 10:46:25 -04003122 root_add_used(root, root->nodesize);
3123
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003124 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003125 btrfs_set_header_nritems(c, 1);
3126 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003127 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003128 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003129 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003130 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003131
Chris Mason5f39d392007-10-15 16:14:19 -04003132 write_extent_buffer(c, root->fs_info->fsid,
3133 (unsigned long)btrfs_header_fsid(c),
3134 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003135
3136 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
3137 (unsigned long)btrfs_header_chunk_tree_uuid(c),
3138 BTRFS_UUID_SIZE);
3139
Chris Mason5f39d392007-10-15 16:14:19 -04003140 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003141 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003142 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003143 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003144
3145 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003146
3147 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003148
Chris Mason925baed2008-06-25 16:01:30 -04003149 old = root->node;
Jan Schmidtf2304752012-05-26 11:43:17 +02003150 tree_mod_log_set_root_pointer(root, c);
Chris Mason240f62c2011-03-23 14:54:42 -04003151 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003152
3153 /* the super has an extra ref to root->node */
3154 free_extent_buffer(old);
3155
Chris Mason0b86a832008-03-24 15:01:56 -04003156 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003157 extent_buffer_get(c);
3158 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04003159 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05003160 path->slots[level] = 0;
3161 return 0;
3162}
3163
Chris Mason74123bd2007-02-02 11:05:29 -05003164/*
3165 * worker function to insert a single pointer in a node.
3166 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003167 *
Chris Mason74123bd2007-02-02 11:05:29 -05003168 * slot and level indicate where you want the key to go, and
3169 * blocknr is the block the key points to.
3170 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003171static void insert_ptr(struct btrfs_trans_handle *trans,
3172 struct btrfs_root *root, struct btrfs_path *path,
3173 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003174 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003175{
Chris Mason5f39d392007-10-15 16:14:19 -04003176 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003177 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003178 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003179
3180 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003181 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003182 lower = path->nodes[level];
3183 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003184 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003185 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003186 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003187 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003188 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3189 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003190 memmove_extent_buffer(lower,
3191 btrfs_node_key_ptr_offset(slot + 1),
3192 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003193 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003194 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003195 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003196 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
3197 MOD_LOG_KEY_ADD);
3198 BUG_ON(ret < 0);
3199 }
Chris Mason5f39d392007-10-15 16:14:19 -04003200 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003201 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003202 WARN_ON(trans->transid == 0);
3203 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003204 btrfs_set_header_nritems(lower, nritems + 1);
3205 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003206}
3207
Chris Mason97571fd2007-02-24 13:39:08 -05003208/*
3209 * split the node at the specified level in path in two.
3210 * The path is corrected to point to the appropriate node after the split
3211 *
3212 * Before splitting this tries to make some room in the node by pushing
3213 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003214 *
3215 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003216 */
Chris Masone02119d2008-09-05 16:13:11 -04003217static noinline int split_node(struct btrfs_trans_handle *trans,
3218 struct btrfs_root *root,
3219 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003220{
Chris Mason5f39d392007-10-15 16:14:19 -04003221 struct extent_buffer *c;
3222 struct extent_buffer *split;
3223 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003224 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003225 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003226 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003227
Chris Mason5f39d392007-10-15 16:14:19 -04003228 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003229 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003230 if (c == root->node) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003231 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -04003232 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003233 if (ret)
3234 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003235 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003236 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003237 c = path->nodes[level];
3238 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003239 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003240 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003241 if (ret < 0)
3242 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003243 }
Chris Masone66f7092007-04-20 13:16:02 -04003244
Chris Mason5f39d392007-10-15 16:14:19 -04003245 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003246 mid = (c_nritems + 1) / 2;
3247 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003248
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003249 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04003250 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02003251 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003252 if (IS_ERR(split))
3253 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003254
Yan, Zhengf0486c62010-05-16 10:46:25 -04003255 root_add_used(root, root->nodesize);
3256
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003257 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003258 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003259 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003260 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003261 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003262 btrfs_set_header_owner(split, root->root_key.objectid);
3263 write_extent_buffer(split, root->fs_info->fsid,
3264 (unsigned long)btrfs_header_fsid(split),
3265 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003266 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
3267 (unsigned long)btrfs_header_chunk_tree_uuid(split),
3268 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003269
Jan Schmidtf2304752012-05-26 11:43:17 +02003270 tree_mod_log_eb_copy(root->fs_info, split, c, 0, mid, c_nritems - mid);
Chris Mason5f39d392007-10-15 16:14:19 -04003271 copy_extent_buffer(split, c,
3272 btrfs_node_key_ptr_offset(0),
3273 btrfs_node_key_ptr_offset(mid),
3274 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3275 btrfs_set_header_nritems(split, c_nritems - mid);
3276 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003277 ret = 0;
3278
Chris Mason5f39d392007-10-15 16:14:19 -04003279 btrfs_mark_buffer_dirty(c);
3280 btrfs_mark_buffer_dirty(split);
3281
Jeff Mahoney143bede2012-03-01 14:56:26 +01003282 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003283 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003284
Chris Mason5de08d72007-02-24 06:24:44 -05003285 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003286 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003287 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003288 free_extent_buffer(c);
3289 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003290 path->slots[level + 1] += 1;
3291 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003292 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003293 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003294 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003295 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003296}
3297
Chris Mason74123bd2007-02-02 11:05:29 -05003298/*
3299 * how many bytes are required to store the items in a leaf. start
3300 * and nr indicate which items in the leaf to check. This totals up the
3301 * space used both by the item structs and the item data
3302 */
Chris Mason5f39d392007-10-15 16:14:19 -04003303static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003304{
Josef Bacik41be1f32012-10-15 13:43:18 -04003305 struct btrfs_item *start_item;
3306 struct btrfs_item *end_item;
3307 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003308 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003309 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003310 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003311
3312 if (!nr)
3313 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003314 btrfs_init_map_token(&token);
3315 start_item = btrfs_item_nr(l, start);
3316 end_item = btrfs_item_nr(l, end);
3317 data_len = btrfs_token_item_offset(l, start_item, &token) +
3318 btrfs_token_item_size(l, start_item, &token);
3319 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003320 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003321 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003322 return data_len;
3323}
3324
Chris Mason74123bd2007-02-02 11:05:29 -05003325/*
Chris Masond4dbff92007-04-04 14:08:15 -04003326 * The space between the end of the leaf items and
3327 * the start of the leaf data. IOW, how much room
3328 * the leaf has left for both items and data
3329 */
Chris Masond3977122009-01-05 21:25:51 -05003330noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003331 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003332{
Chris Mason5f39d392007-10-15 16:14:19 -04003333 int nritems = btrfs_header_nritems(leaf);
3334 int ret;
3335 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3336 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05003337 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
3338 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04003339 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003340 leaf_space_used(leaf, 0, nritems), nritems);
3341 }
3342 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003343}
3344
Chris Mason99d8f832010-07-07 10:51:48 -04003345/*
3346 * min slot controls the lowest index we're willing to push to the
3347 * right. We'll push up to and including min_slot, but no lower
3348 */
Chris Mason44871b12009-03-13 10:04:31 -04003349static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3350 struct btrfs_root *root,
3351 struct btrfs_path *path,
3352 int data_size, int empty,
3353 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003354 int free_space, u32 left_nritems,
3355 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003356{
Chris Mason5f39d392007-10-15 16:14:19 -04003357 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003358 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003359 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003360 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003361 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003362 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003363 int push_space = 0;
3364 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003365 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003366 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003367 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003368 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003369 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003370
Chris Masoncfed81a2012-03-03 07:40:03 -05003371 btrfs_init_map_token(&token);
3372
Chris Mason34a38212007-11-07 13:31:03 -05003373 if (empty)
3374 nr = 0;
3375 else
Chris Mason99d8f832010-07-07 10:51:48 -04003376 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003377
Zheng Yan31840ae2008-09-23 13:14:14 -04003378 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003379 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003380
Chris Mason44871b12009-03-13 10:04:31 -04003381 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003382 i = left_nritems - 1;
3383 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04003384 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04003385
Zheng Yan31840ae2008-09-23 13:14:14 -04003386 if (!empty && push_items > 0) {
3387 if (path->slots[0] > i)
3388 break;
3389 if (path->slots[0] == i) {
3390 int space = btrfs_leaf_free_space(root, left);
3391 if (space + push_space * 2 > free_space)
3392 break;
3393 }
3394 }
3395
Chris Mason00ec4c52007-02-24 12:47:20 -05003396 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003397 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003398
Chris Masondb945352007-10-15 16:15:53 -04003399 this_item_size = btrfs_item_size(left, item);
3400 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003401 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003402
Chris Mason00ec4c52007-02-24 12:47:20 -05003403 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003404 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003405 if (i == 0)
3406 break;
3407 i--;
Chris Masondb945352007-10-15 16:15:53 -04003408 }
Chris Mason5f39d392007-10-15 16:14:19 -04003409
Chris Mason925baed2008-06-25 16:01:30 -04003410 if (push_items == 0)
3411 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003412
Julia Lawall6c1500f2012-11-03 20:30:18 +00003413 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003414
Chris Mason00ec4c52007-02-24 12:47:20 -05003415 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003416 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003417
Chris Mason5f39d392007-10-15 16:14:19 -04003418 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003419 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003420
Chris Mason00ec4c52007-02-24 12:47:20 -05003421 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003422 data_end = leaf_data_end(root, right);
3423 memmove_extent_buffer(right,
3424 btrfs_leaf_data(right) + data_end - push_space,
3425 btrfs_leaf_data(right) + data_end,
3426 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3427
Chris Mason00ec4c52007-02-24 12:47:20 -05003428 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003429 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003430 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3431 btrfs_leaf_data(left) + leaf_data_end(root, left),
3432 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003433
3434 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3435 btrfs_item_nr_offset(0),
3436 right_nritems * sizeof(struct btrfs_item));
3437
Chris Mason00ec4c52007-02-24 12:47:20 -05003438 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003439 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3440 btrfs_item_nr_offset(left_nritems - push_items),
3441 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003442
3443 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003444 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003445 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003446 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003447 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003448 item = btrfs_item_nr(right, i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003449 push_space -= btrfs_token_item_size(right, item, &token);
3450 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003451 }
3452
Chris Mason7518a232007-03-12 12:01:18 -04003453 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003454 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003455
Chris Mason34a38212007-11-07 13:31:03 -05003456 if (left_nritems)
3457 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003458 else
3459 clean_tree_block(trans, root, left);
3460
Chris Mason5f39d392007-10-15 16:14:19 -04003461 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003462
Chris Mason5f39d392007-10-15 16:14:19 -04003463 btrfs_item_key(right, &disk_key, 0);
3464 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003465 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003466
Chris Mason00ec4c52007-02-24 12:47:20 -05003467 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003468 if (path->slots[0] >= left_nritems) {
3469 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003470 if (btrfs_header_nritems(path->nodes[0]) == 0)
3471 clean_tree_block(trans, root, path->nodes[0]);
3472 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003473 free_extent_buffer(path->nodes[0]);
3474 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003475 path->slots[1] += 1;
3476 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003477 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003478 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003479 }
3480 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003481
3482out_unlock:
3483 btrfs_tree_unlock(right);
3484 free_extent_buffer(right);
3485 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003486}
Chris Mason925baed2008-06-25 16:01:30 -04003487
Chris Mason00ec4c52007-02-24 12:47:20 -05003488/*
Chris Mason44871b12009-03-13 10:04:31 -04003489 * push some data in the path leaf to the right, trying to free up at
3490 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3491 *
3492 * returns 1 if the push failed because the other node didn't have enough
3493 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003494 *
3495 * this will push starting from min_slot to the end of the leaf. It won't
3496 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003497 */
3498static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003499 *root, struct btrfs_path *path,
3500 int min_data_size, int data_size,
3501 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003502{
3503 struct extent_buffer *left = path->nodes[0];
3504 struct extent_buffer *right;
3505 struct extent_buffer *upper;
3506 int slot;
3507 int free_space;
3508 u32 left_nritems;
3509 int ret;
3510
3511 if (!path->nodes[1])
3512 return 1;
3513
3514 slot = path->slots[1];
3515 upper = path->nodes[1];
3516 if (slot >= btrfs_header_nritems(upper) - 1)
3517 return 1;
3518
3519 btrfs_assert_tree_locked(path->nodes[1]);
3520
3521 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003522 if (right == NULL)
3523 return 1;
3524
Chris Mason44871b12009-03-13 10:04:31 -04003525 btrfs_tree_lock(right);
3526 btrfs_set_lock_blocking(right);
3527
3528 free_space = btrfs_leaf_free_space(root, right);
3529 if (free_space < data_size)
3530 goto out_unlock;
3531
3532 /* cow and double check */
3533 ret = btrfs_cow_block(trans, root, right, upper,
3534 slot + 1, &right);
3535 if (ret)
3536 goto out_unlock;
3537
3538 free_space = btrfs_leaf_free_space(root, right);
3539 if (free_space < data_size)
3540 goto out_unlock;
3541
3542 left_nritems = btrfs_header_nritems(left);
3543 if (left_nritems == 0)
3544 goto out_unlock;
3545
Chris Mason99d8f832010-07-07 10:51:48 -04003546 return __push_leaf_right(trans, root, path, min_data_size, empty,
3547 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003548out_unlock:
3549 btrfs_tree_unlock(right);
3550 free_extent_buffer(right);
3551 return 1;
3552}
3553
3554/*
Chris Mason74123bd2007-02-02 11:05:29 -05003555 * push some data in the path leaf to the left, trying to free up at
3556 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003557 *
3558 * max_slot can put a limit on how far into the leaf we'll push items. The
3559 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3560 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003561 */
Chris Mason44871b12009-03-13 10:04:31 -04003562static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3563 struct btrfs_root *root,
3564 struct btrfs_path *path, int data_size,
3565 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003566 int free_space, u32 right_nritems,
3567 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003568{
Chris Mason5f39d392007-10-15 16:14:19 -04003569 struct btrfs_disk_key disk_key;
3570 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003571 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003572 int push_space = 0;
3573 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003574 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003575 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003576 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003577 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003578 u32 this_item_size;
3579 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003580 struct btrfs_map_token token;
3581
3582 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003583
Chris Mason34a38212007-11-07 13:31:03 -05003584 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003585 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003586 else
Chris Mason99d8f832010-07-07 10:51:48 -04003587 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003588
3589 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003590 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04003591
Zheng Yan31840ae2008-09-23 13:14:14 -04003592 if (!empty && push_items > 0) {
3593 if (path->slots[0] < i)
3594 break;
3595 if (path->slots[0] == i) {
3596 int space = btrfs_leaf_free_space(root, right);
3597 if (space + push_space * 2 > free_space)
3598 break;
3599 }
3600 }
3601
Chris Masonbe0e5c02007-01-26 15:51:26 -05003602 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003603 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003604
3605 this_item_size = btrfs_item_size(right, item);
3606 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003607 break;
Chris Masondb945352007-10-15 16:15:53 -04003608
Chris Masonbe0e5c02007-01-26 15:51:26 -05003609 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003610 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003611 }
Chris Masondb945352007-10-15 16:15:53 -04003612
Chris Masonbe0e5c02007-01-26 15:51:26 -05003613 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003614 ret = 1;
3615 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003616 }
Chris Mason34a38212007-11-07 13:31:03 -05003617 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04003618 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04003619
Chris Masonbe0e5c02007-01-26 15:51:26 -05003620 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003621 copy_extent_buffer(left, right,
3622 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3623 btrfs_item_nr_offset(0),
3624 push_items * sizeof(struct btrfs_item));
3625
Chris Mason123abc82007-03-14 14:14:43 -04003626 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003627 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003628
3629 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003630 leaf_data_end(root, left) - push_space,
3631 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003632 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003633 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003634 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003635 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003636
Chris Masondb945352007-10-15 16:15:53 -04003637 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003638 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003639 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003640
Chris Mason5f39d392007-10-15 16:14:19 -04003641 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04003642
Chris Masoncfed81a2012-03-03 07:40:03 -05003643 ioff = btrfs_token_item_offset(left, item, &token);
3644 btrfs_set_token_item_offset(left, item,
3645 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3646 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003647 }
Chris Mason5f39d392007-10-15 16:14:19 -04003648 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003649
3650 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003651 if (push_items > right_nritems)
3652 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003653 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003654
Chris Mason34a38212007-11-07 13:31:03 -05003655 if (push_items < right_nritems) {
3656 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3657 leaf_data_end(root, right);
3658 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3659 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3660 btrfs_leaf_data(right) +
3661 leaf_data_end(root, right), push_space);
3662
3663 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003664 btrfs_item_nr_offset(push_items),
3665 (btrfs_header_nritems(right) - push_items) *
3666 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003667 }
Yaneef1c492007-11-26 10:58:13 -05003668 right_nritems -= push_items;
3669 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003670 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003671 for (i = 0; i < right_nritems; i++) {
3672 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04003673
Chris Masoncfed81a2012-03-03 07:40:03 -05003674 push_space = push_space - btrfs_token_item_size(right,
3675 item, &token);
3676 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003677 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003678
Chris Mason5f39d392007-10-15 16:14:19 -04003679 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003680 if (right_nritems)
3681 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003682 else
3683 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003684
Chris Mason5f39d392007-10-15 16:14:19 -04003685 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003686 fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003687
3688 /* then fixup the leaf pointer in the path */
3689 if (path->slots[0] < push_items) {
3690 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003691 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003692 free_extent_buffer(path->nodes[0]);
3693 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003694 path->slots[1] -= 1;
3695 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003696 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003697 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003698 path->slots[0] -= push_items;
3699 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003700 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003701 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003702out:
3703 btrfs_tree_unlock(left);
3704 free_extent_buffer(left);
3705 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003706}
3707
Chris Mason74123bd2007-02-02 11:05:29 -05003708/*
Chris Mason44871b12009-03-13 10:04:31 -04003709 * push some data in the path leaf to the left, trying to free up at
3710 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003711 *
3712 * max_slot can put a limit on how far into the leaf we'll push items. The
3713 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3714 * items
Chris Mason44871b12009-03-13 10:04:31 -04003715 */
3716static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003717 *root, struct btrfs_path *path, int min_data_size,
3718 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003719{
3720 struct extent_buffer *right = path->nodes[0];
3721 struct extent_buffer *left;
3722 int slot;
3723 int free_space;
3724 u32 right_nritems;
3725 int ret = 0;
3726
3727 slot = path->slots[1];
3728 if (slot == 0)
3729 return 1;
3730 if (!path->nodes[1])
3731 return 1;
3732
3733 right_nritems = btrfs_header_nritems(right);
3734 if (right_nritems == 0)
3735 return 1;
3736
3737 btrfs_assert_tree_locked(path->nodes[1]);
3738
3739 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003740 if (left == NULL)
3741 return 1;
3742
Chris Mason44871b12009-03-13 10:04:31 -04003743 btrfs_tree_lock(left);
3744 btrfs_set_lock_blocking(left);
3745
3746 free_space = btrfs_leaf_free_space(root, left);
3747 if (free_space < data_size) {
3748 ret = 1;
3749 goto out;
3750 }
3751
3752 /* cow and double check */
3753 ret = btrfs_cow_block(trans, root, left,
3754 path->nodes[1], slot - 1, &left);
3755 if (ret) {
3756 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003757 if (ret == -ENOSPC)
3758 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003759 goto out;
3760 }
3761
3762 free_space = btrfs_leaf_free_space(root, left);
3763 if (free_space < data_size) {
3764 ret = 1;
3765 goto out;
3766 }
3767
Chris Mason99d8f832010-07-07 10:51:48 -04003768 return __push_leaf_left(trans, root, path, min_data_size,
3769 empty, left, free_space, right_nritems,
3770 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003771out:
3772 btrfs_tree_unlock(left);
3773 free_extent_buffer(left);
3774 return ret;
3775}
3776
3777/*
Chris Mason74123bd2007-02-02 11:05:29 -05003778 * split the path's leaf in two, making sure there is at least data_size
3779 * available for the resulting leaf level of the path.
3780 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003781static noinline void copy_for_split(struct btrfs_trans_handle *trans,
3782 struct btrfs_root *root,
3783 struct btrfs_path *path,
3784 struct extent_buffer *l,
3785 struct extent_buffer *right,
3786 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003787{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003788 int data_copy_size;
3789 int rt_data_off;
3790 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04003791 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05003792 struct btrfs_map_token token;
3793
3794 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003795
Chris Mason5f39d392007-10-15 16:14:19 -04003796 nritems = nritems - mid;
3797 btrfs_set_header_nritems(right, nritems);
3798 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
3799
3800 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
3801 btrfs_item_nr_offset(mid),
3802 nritems * sizeof(struct btrfs_item));
3803
3804 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04003805 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
3806 data_copy_size, btrfs_leaf_data(l) +
3807 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05003808
Chris Mason5f39d392007-10-15 16:14:19 -04003809 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
3810 btrfs_item_end_nr(l, mid);
3811
3812 for (i = 0; i < nritems; i++) {
3813 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04003814 u32 ioff;
3815
Chris Masoncfed81a2012-03-03 07:40:03 -05003816 ioff = btrfs_token_item_offset(right, item, &token);
3817 btrfs_set_token_item_offset(right, item,
3818 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003819 }
Chris Mason74123bd2007-02-02 11:05:29 -05003820
Chris Mason5f39d392007-10-15 16:14:19 -04003821 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04003822 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003823 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003824 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003825
3826 btrfs_mark_buffer_dirty(right);
3827 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05003828 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003829
Chris Masonbe0e5c02007-01-26 15:51:26 -05003830 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04003831 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003832 free_extent_buffer(path->nodes[0]);
3833 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003834 path->slots[0] -= mid;
3835 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04003836 } else {
3837 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003838 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04003839 }
Chris Mason5f39d392007-10-15 16:14:19 -04003840
Chris Masoneb60cea2007-02-02 09:18:22 -05003841 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04003842}
3843
3844/*
Chris Mason99d8f832010-07-07 10:51:48 -04003845 * double splits happen when we need to insert a big item in the middle
3846 * of a leaf. A double split can leave us with 3 mostly empty leaves:
3847 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
3848 * A B C
3849 *
3850 * We avoid this by trying to push the items on either side of our target
3851 * into the adjacent leaves. If all goes well we can avoid the double split
3852 * completely.
3853 */
3854static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
3855 struct btrfs_root *root,
3856 struct btrfs_path *path,
3857 int data_size)
3858{
3859 int ret;
3860 int progress = 0;
3861 int slot;
3862 u32 nritems;
3863
3864 slot = path->slots[0];
3865
3866 /*
3867 * try to push all the items after our slot into the
3868 * right leaf
3869 */
3870 ret = push_leaf_right(trans, root, path, 1, data_size, 0, slot);
3871 if (ret < 0)
3872 return ret;
3873
3874 if (ret == 0)
3875 progress++;
3876
3877 nritems = btrfs_header_nritems(path->nodes[0]);
3878 /*
3879 * our goal is to get our slot at the start or end of a leaf. If
3880 * we've done so we're done
3881 */
3882 if (path->slots[0] == 0 || path->slots[0] == nritems)
3883 return 0;
3884
3885 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
3886 return 0;
3887
3888 /* try to push all the items before our slot into the next leaf */
3889 slot = path->slots[0];
3890 ret = push_leaf_left(trans, root, path, 1, data_size, 0, slot);
3891 if (ret < 0)
3892 return ret;
3893
3894 if (ret == 0)
3895 progress++;
3896
3897 if (progress)
3898 return 0;
3899 return 1;
3900}
3901
3902/*
Chris Mason44871b12009-03-13 10:04:31 -04003903 * split the path's leaf in two, making sure there is at least data_size
3904 * available for the resulting leaf level of the path.
3905 *
3906 * returns 0 if all went well and < 0 on failure.
3907 */
3908static noinline int split_leaf(struct btrfs_trans_handle *trans,
3909 struct btrfs_root *root,
3910 struct btrfs_key *ins_key,
3911 struct btrfs_path *path, int data_size,
3912 int extend)
3913{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003914 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003915 struct extent_buffer *l;
3916 u32 nritems;
3917 int mid;
3918 int slot;
3919 struct extent_buffer *right;
3920 int ret = 0;
3921 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003922 int split;
Chris Mason44871b12009-03-13 10:04:31 -04003923 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04003924 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04003925
Yan, Zhenga5719522009-09-24 09:17:31 -04003926 l = path->nodes[0];
3927 slot = path->slots[0];
3928 if (extend && data_size + btrfs_item_size_nr(l, slot) +
3929 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
3930 return -EOVERFLOW;
3931
Chris Mason44871b12009-03-13 10:04:31 -04003932 /* first try to make some room by pushing left and right */
Chris Mason99d8f832010-07-07 10:51:48 -04003933 if (data_size) {
3934 wret = push_leaf_right(trans, root, path, data_size,
3935 data_size, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04003936 if (wret < 0)
3937 return wret;
3938 if (wret) {
Chris Mason99d8f832010-07-07 10:51:48 -04003939 wret = push_leaf_left(trans, root, path, data_size,
3940 data_size, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04003941 if (wret < 0)
3942 return wret;
3943 }
3944 l = path->nodes[0];
3945
3946 /* did the pushes work? */
3947 if (btrfs_leaf_free_space(root, l) >= data_size)
3948 return 0;
3949 }
3950
3951 if (!path->nodes[1]) {
3952 ret = insert_new_root(trans, root, path, 1);
3953 if (ret)
3954 return ret;
3955 }
3956again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003957 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003958 l = path->nodes[0];
3959 slot = path->slots[0];
3960 nritems = btrfs_header_nritems(l);
3961 mid = (nritems + 1) / 2;
3962
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003963 if (mid <= slot) {
3964 if (nritems == 1 ||
3965 leaf_space_used(l, mid, nritems - mid) + data_size >
3966 BTRFS_LEAF_DATA_SIZE(root)) {
3967 if (slot >= nritems) {
3968 split = 0;
3969 } else {
3970 mid = slot;
3971 if (mid != nritems &&
3972 leaf_space_used(l, mid, nritems - mid) +
3973 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04003974 if (data_size && !tried_avoid_double)
3975 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003976 split = 2;
3977 }
3978 }
3979 }
3980 } else {
3981 if (leaf_space_used(l, 0, mid) + data_size >
3982 BTRFS_LEAF_DATA_SIZE(root)) {
3983 if (!extend && data_size && slot == 0) {
3984 split = 0;
3985 } else if ((extend || !data_size) && slot == 0) {
3986 mid = 1;
3987 } else {
3988 mid = slot;
3989 if (mid != nritems &&
3990 leaf_space_used(l, mid, nritems - mid) +
3991 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04003992 if (data_size && !tried_avoid_double)
3993 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003994 split = 2 ;
3995 }
3996 }
3997 }
3998 }
3999
4000 if (split == 0)
4001 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4002 else
4003 btrfs_item_key(l, &disk_key, mid);
4004
4005 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04004006 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02004007 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004008 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004009 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004010
4011 root_add_used(root, root->leafsize);
Chris Mason44871b12009-03-13 10:04:31 -04004012
4013 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4014 btrfs_set_header_bytenr(right, right->start);
4015 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004016 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004017 btrfs_set_header_owner(right, root->root_key.objectid);
4018 btrfs_set_header_level(right, 0);
4019 write_extent_buffer(right, root->fs_info->fsid,
4020 (unsigned long)btrfs_header_fsid(right),
4021 BTRFS_FSID_SIZE);
4022
4023 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
4024 (unsigned long)btrfs_header_chunk_tree_uuid(right),
4025 BTRFS_UUID_SIZE);
4026
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004027 if (split == 0) {
4028 if (mid <= slot) {
4029 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004030 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004031 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004032 btrfs_tree_unlock(path->nodes[0]);
4033 free_extent_buffer(path->nodes[0]);
4034 path->nodes[0] = right;
4035 path->slots[0] = 0;
4036 path->slots[1] += 1;
4037 } else {
4038 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004039 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004040 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004041 btrfs_tree_unlock(path->nodes[0]);
4042 free_extent_buffer(path->nodes[0]);
4043 path->nodes[0] = right;
4044 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004045 if (path->slots[1] == 0)
4046 fixup_low_keys(trans, root, path,
4047 &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004048 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004049 btrfs_mark_buffer_dirty(right);
4050 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004051 }
4052
Jeff Mahoney143bede2012-03-01 14:56:26 +01004053 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004054
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004055 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004056 BUG_ON(num_doubles != 0);
4057 num_doubles++;
4058 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004059 }
Chris Mason44871b12009-03-13 10:04:31 -04004060
Jeff Mahoney143bede2012-03-01 14:56:26 +01004061 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004062
4063push_for_double:
4064 push_for_double_split(trans, root, path, data_size);
4065 tried_avoid_double = 1;
4066 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4067 return 0;
4068 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004069}
4070
Yan, Zhengad48fd752009-11-12 09:33:58 +00004071static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4072 struct btrfs_root *root,
4073 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004074{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004075 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004076 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004077 struct btrfs_file_extent_item *fi;
4078 u64 extent_len = 0;
4079 u32 item_size;
4080 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004081
4082 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004083 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4084
4085 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4086 key.type != BTRFS_EXTENT_CSUM_KEY);
4087
4088 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4089 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004090
4091 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004092 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4093 fi = btrfs_item_ptr(leaf, path->slots[0],
4094 struct btrfs_file_extent_item);
4095 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4096 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004097 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004098
Chris Mason459931e2008-12-10 09:10:46 -05004099 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004100 path->search_for_split = 1;
4101 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004102 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004103 if (ret < 0)
4104 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004105
Yan, Zhengad48fd752009-11-12 09:33:58 +00004106 ret = -EAGAIN;
4107 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05004108 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00004109 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4110 goto err;
4111
Chris Mason109f6ae2010-04-02 09:20:18 -04004112 /* the leaf has changed, it now has room. return now */
4113 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4114 goto err;
4115
Yan, Zhengad48fd752009-11-12 09:33:58 +00004116 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4117 fi = btrfs_item_ptr(leaf, path->slots[0],
4118 struct btrfs_file_extent_item);
4119 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4120 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004121 }
4122
Chris Masonb9473432009-03-13 11:00:37 -04004123 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004124 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004125 if (ret)
4126 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004127
Yan, Zhengad48fd752009-11-12 09:33:58 +00004128 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004129 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004130 return 0;
4131err:
4132 path->keep_locks = 0;
4133 return ret;
4134}
4135
4136static noinline int split_item(struct btrfs_trans_handle *trans,
4137 struct btrfs_root *root,
4138 struct btrfs_path *path,
4139 struct btrfs_key *new_key,
4140 unsigned long split_offset)
4141{
4142 struct extent_buffer *leaf;
4143 struct btrfs_item *item;
4144 struct btrfs_item *new_item;
4145 int slot;
4146 char *buf;
4147 u32 nritems;
4148 u32 item_size;
4149 u32 orig_offset;
4150 struct btrfs_disk_key disk_key;
4151
Chris Masonb9473432009-03-13 11:00:37 -04004152 leaf = path->nodes[0];
4153 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4154
Chris Masonb4ce94d2009-02-04 09:25:08 -05004155 btrfs_set_path_blocking(path);
4156
Chris Mason459931e2008-12-10 09:10:46 -05004157 item = btrfs_item_nr(leaf, path->slots[0]);
4158 orig_offset = btrfs_item_offset(leaf, item);
4159 item_size = btrfs_item_size(leaf, item);
4160
Chris Mason459931e2008-12-10 09:10:46 -05004161 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004162 if (!buf)
4163 return -ENOMEM;
4164
Chris Mason459931e2008-12-10 09:10:46 -05004165 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4166 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004167
Chris Mason459931e2008-12-10 09:10:46 -05004168 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004169 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004170 if (slot != nritems) {
4171 /* shift the items */
4172 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004173 btrfs_item_nr_offset(slot),
4174 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004175 }
4176
4177 btrfs_cpu_key_to_disk(&disk_key, new_key);
4178 btrfs_set_item_key(leaf, &disk_key, slot);
4179
4180 new_item = btrfs_item_nr(leaf, slot);
4181
4182 btrfs_set_item_offset(leaf, new_item, orig_offset);
4183 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4184
4185 btrfs_set_item_offset(leaf, item,
4186 orig_offset + item_size - split_offset);
4187 btrfs_set_item_size(leaf, item, split_offset);
4188
4189 btrfs_set_header_nritems(leaf, nritems + 1);
4190
4191 /* write the data for the start of the original item */
4192 write_extent_buffer(leaf, buf,
4193 btrfs_item_ptr_offset(leaf, path->slots[0]),
4194 split_offset);
4195
4196 /* write the data for the new item */
4197 write_extent_buffer(leaf, buf + split_offset,
4198 btrfs_item_ptr_offset(leaf, slot),
4199 item_size - split_offset);
4200 btrfs_mark_buffer_dirty(leaf);
4201
Yan, Zhengad48fd752009-11-12 09:33:58 +00004202 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004203 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004204 return 0;
4205}
4206
4207/*
4208 * This function splits a single item into two items,
4209 * giving 'new_key' to the new item and splitting the
4210 * old one at split_offset (from the start of the item).
4211 *
4212 * The path may be released by this operation. After
4213 * the split, the path is pointing to the old item. The
4214 * new item is going to be in the same node as the old one.
4215 *
4216 * Note, the item being split must be smaller enough to live alone on
4217 * a tree block with room for one extra struct btrfs_item
4218 *
4219 * This allows us to split the item in place, keeping a lock on the
4220 * leaf the entire time.
4221 */
4222int btrfs_split_item(struct btrfs_trans_handle *trans,
4223 struct btrfs_root *root,
4224 struct btrfs_path *path,
4225 struct btrfs_key *new_key,
4226 unsigned long split_offset)
4227{
4228 int ret;
4229 ret = setup_leaf_for_split(trans, root, path,
4230 sizeof(struct btrfs_item));
4231 if (ret)
4232 return ret;
4233
4234 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004235 return ret;
4236}
4237
4238/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004239 * This function duplicate a item, giving 'new_key' to the new item.
4240 * It guarantees both items live in the same tree leaf and the new item
4241 * is contiguous with the original item.
4242 *
4243 * This allows us to split file extent in place, keeping a lock on the
4244 * leaf the entire time.
4245 */
4246int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4247 struct btrfs_root *root,
4248 struct btrfs_path *path,
4249 struct btrfs_key *new_key)
4250{
4251 struct extent_buffer *leaf;
4252 int ret;
4253 u32 item_size;
4254
4255 leaf = path->nodes[0];
4256 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4257 ret = setup_leaf_for_split(trans, root, path,
4258 item_size + sizeof(struct btrfs_item));
4259 if (ret)
4260 return ret;
4261
4262 path->slots[0]++;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004263 setup_items_for_insert(trans, root, path, new_key, &item_size,
4264 item_size, item_size +
4265 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004266 leaf = path->nodes[0];
4267 memcpy_extent_buffer(leaf,
4268 btrfs_item_ptr_offset(leaf, path->slots[0]),
4269 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4270 item_size);
4271 return 0;
4272}
4273
4274/*
Chris Masond352ac62008-09-29 15:18:18 -04004275 * make the item pointed to by the path smaller. new_size indicates
4276 * how small to make it, and from_end tells us if we just chop bytes
4277 * off the end of the item or if we shift the item to chop bytes off
4278 * the front.
4279 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004280void btrfs_truncate_item(struct btrfs_trans_handle *trans,
4281 struct btrfs_root *root,
4282 struct btrfs_path *path,
4283 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004284{
Chris Masonb18c6682007-04-17 13:26:50 -04004285 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004286 struct extent_buffer *leaf;
4287 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004288 u32 nritems;
4289 unsigned int data_end;
4290 unsigned int old_data_start;
4291 unsigned int old_size;
4292 unsigned int size_diff;
4293 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004294 struct btrfs_map_token token;
4295
4296 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004297
Chris Mason5f39d392007-10-15 16:14:19 -04004298 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004299 slot = path->slots[0];
4300
4301 old_size = btrfs_item_size_nr(leaf, slot);
4302 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004303 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004304
Chris Mason5f39d392007-10-15 16:14:19 -04004305 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004306 data_end = leaf_data_end(root, leaf);
4307
Chris Mason5f39d392007-10-15 16:14:19 -04004308 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004309
Chris Masonb18c6682007-04-17 13:26:50 -04004310 size_diff = old_size - new_size;
4311
4312 BUG_ON(slot < 0);
4313 BUG_ON(slot >= nritems);
4314
4315 /*
4316 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4317 */
4318 /* first correct the data pointers */
4319 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004320 u32 ioff;
4321 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04004322
Chris Masoncfed81a2012-03-03 07:40:03 -05004323 ioff = btrfs_token_item_offset(leaf, item, &token);
4324 btrfs_set_token_item_offset(leaf, item,
4325 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004326 }
Chris Masondb945352007-10-15 16:15:53 -04004327
Chris Masonb18c6682007-04-17 13:26:50 -04004328 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004329 if (from_end) {
4330 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4331 data_end + size_diff, btrfs_leaf_data(leaf) +
4332 data_end, old_data_start + new_size - data_end);
4333 } else {
4334 struct btrfs_disk_key disk_key;
4335 u64 offset;
4336
4337 btrfs_item_key(leaf, &disk_key, slot);
4338
4339 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4340 unsigned long ptr;
4341 struct btrfs_file_extent_item *fi;
4342
4343 fi = btrfs_item_ptr(leaf, slot,
4344 struct btrfs_file_extent_item);
4345 fi = (struct btrfs_file_extent_item *)(
4346 (unsigned long)fi - size_diff);
4347
4348 if (btrfs_file_extent_type(leaf, fi) ==
4349 BTRFS_FILE_EXTENT_INLINE) {
4350 ptr = btrfs_item_ptr_offset(leaf, slot);
4351 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004352 (unsigned long)fi,
4353 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04004354 disk_bytenr));
4355 }
4356 }
4357
4358 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4359 data_end + size_diff, btrfs_leaf_data(leaf) +
4360 data_end, old_data_start - data_end);
4361
4362 offset = btrfs_disk_key_offset(&disk_key);
4363 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4364 btrfs_set_item_key(leaf, &disk_key, slot);
4365 if (slot == 0)
4366 fixup_low_keys(trans, root, path, &disk_key, 1);
4367 }
Chris Mason5f39d392007-10-15 16:14:19 -04004368
4369 item = btrfs_item_nr(leaf, slot);
4370 btrfs_set_item_size(leaf, item, new_size);
4371 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004372
Chris Mason5f39d392007-10-15 16:14:19 -04004373 if (btrfs_leaf_free_space(root, leaf) < 0) {
4374 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004375 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004376 }
Chris Masonb18c6682007-04-17 13:26:50 -04004377}
4378
Chris Masond352ac62008-09-29 15:18:18 -04004379/*
4380 * make the item pointed to by the path bigger, data_size is the new size.
4381 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004382void btrfs_extend_item(struct btrfs_trans_handle *trans,
4383 struct btrfs_root *root, struct btrfs_path *path,
4384 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004385{
Chris Mason6567e832007-04-16 09:22:45 -04004386 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004387 struct extent_buffer *leaf;
4388 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004389 u32 nritems;
4390 unsigned int data_end;
4391 unsigned int old_data;
4392 unsigned int old_size;
4393 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004394 struct btrfs_map_token token;
4395
4396 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004397
Chris Mason5f39d392007-10-15 16:14:19 -04004398 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004399
Chris Mason5f39d392007-10-15 16:14:19 -04004400 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004401 data_end = leaf_data_end(root, leaf);
4402
Chris Mason5f39d392007-10-15 16:14:19 -04004403 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4404 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004405 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004406 }
Chris Mason6567e832007-04-16 09:22:45 -04004407 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004408 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004409
4410 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004411 if (slot >= nritems) {
4412 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004413 printk(KERN_CRIT "slot %d too large, nritems %d\n",
4414 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004415 BUG_ON(1);
4416 }
Chris Mason6567e832007-04-16 09:22:45 -04004417
4418 /*
4419 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4420 */
4421 /* first correct the data pointers */
4422 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004423 u32 ioff;
4424 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04004425
Chris Masoncfed81a2012-03-03 07:40:03 -05004426 ioff = btrfs_token_item_offset(leaf, item, &token);
4427 btrfs_set_token_item_offset(leaf, item,
4428 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004429 }
Chris Mason5f39d392007-10-15 16:14:19 -04004430
Chris Mason6567e832007-04-16 09:22:45 -04004431 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004432 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004433 data_end - data_size, btrfs_leaf_data(leaf) +
4434 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004435
Chris Mason6567e832007-04-16 09:22:45 -04004436 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004437 old_size = btrfs_item_size_nr(leaf, slot);
4438 item = btrfs_item_nr(leaf, slot);
4439 btrfs_set_item_size(leaf, item, old_size + data_size);
4440 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004441
Chris Mason5f39d392007-10-15 16:14:19 -04004442 if (btrfs_leaf_free_space(root, leaf) < 0) {
4443 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004444 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004445 }
Chris Mason6567e832007-04-16 09:22:45 -04004446}
4447
Chris Mason74123bd2007-02-02 11:05:29 -05004448/*
Chris Mason44871b12009-03-13 10:04:31 -04004449 * this is a helper for btrfs_insert_empty_items, the main goal here is
4450 * to save stack depth by doing the bulk of the work in a function
4451 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004452 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004453void setup_items_for_insert(struct btrfs_trans_handle *trans,
4454 struct btrfs_root *root, struct btrfs_path *path,
4455 struct btrfs_key *cpu_key, u32 *data_size,
4456 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004457{
Chris Mason5f39d392007-10-15 16:14:19 -04004458 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004459 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004460 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004461 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004462 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004463 struct extent_buffer *leaf;
4464 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004465 struct btrfs_map_token token;
4466
4467 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004468
Chris Mason5f39d392007-10-15 16:14:19 -04004469 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004470 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004471
Chris Mason5f39d392007-10-15 16:14:19 -04004472 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004473 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004474
Chris Masonf25956c2008-09-12 15:32:53 -04004475 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004476 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004477 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05004478 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004479 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004480 }
Chris Mason5f39d392007-10-15 16:14:19 -04004481
Chris Masonbe0e5c02007-01-26 15:51:26 -05004482 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004483 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004484
Chris Mason5f39d392007-10-15 16:14:19 -04004485 if (old_data < data_end) {
4486 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004487 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04004488 slot, old_data, data_end);
4489 BUG_ON(1);
4490 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004491 /*
4492 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4493 */
4494 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004495 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004496 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004497
Chris Mason5f39d392007-10-15 16:14:19 -04004498 item = btrfs_item_nr(leaf, i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004499 ioff = btrfs_token_item_offset(leaf, item, &token);
4500 btrfs_set_token_item_offset(leaf, item,
4501 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004502 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004503 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004504 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004505 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004506 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004507
4508 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004509 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004510 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004511 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004512 data_end = old_data;
4513 }
Chris Mason5f39d392007-10-15 16:14:19 -04004514
Chris Mason62e27492007-03-15 12:56:47 -04004515 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004516 for (i = 0; i < nr; i++) {
4517 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4518 btrfs_set_item_key(leaf, &disk_key, slot + i);
4519 item = btrfs_item_nr(leaf, slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004520 btrfs_set_token_item_offset(leaf, item,
4521 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004522 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004523 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004524 }
Chris Mason44871b12009-03-13 10:04:31 -04004525
Chris Mason9c583092008-01-29 15:15:18 -05004526 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004527
Chris Mason5a01a2e2008-01-30 11:43:54 -05004528 if (slot == 0) {
4529 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004530 fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05004531 }
Chris Masonb9473432009-03-13 11:00:37 -04004532 btrfs_unlock_up_safe(path, 1);
4533 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004534
Chris Mason5f39d392007-10-15 16:14:19 -04004535 if (btrfs_leaf_free_space(root, leaf) < 0) {
4536 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004537 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004538 }
Chris Mason44871b12009-03-13 10:04:31 -04004539}
4540
4541/*
4542 * Given a key and some data, insert items into the tree.
4543 * This does all the path init required, making room in the tree if needed.
4544 */
4545int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4546 struct btrfs_root *root,
4547 struct btrfs_path *path,
4548 struct btrfs_key *cpu_key, u32 *data_size,
4549 int nr)
4550{
Chris Mason44871b12009-03-13 10:04:31 -04004551 int ret = 0;
4552 int slot;
4553 int i;
4554 u32 total_size = 0;
4555 u32 total_data = 0;
4556
4557 for (i = 0; i < nr; i++)
4558 total_data += data_size[i];
4559
4560 total_size = total_data + (nr * sizeof(struct btrfs_item));
4561 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4562 if (ret == 0)
4563 return -EEXIST;
4564 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004565 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004566
Chris Mason44871b12009-03-13 10:04:31 -04004567 slot = path->slots[0];
4568 BUG_ON(slot < 0);
4569
Jeff Mahoney143bede2012-03-01 14:56:26 +01004570 setup_items_for_insert(trans, root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004571 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004572 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004573}
4574
4575/*
4576 * Given a key and some data, insert an item into the tree.
4577 * This does all the path init required, making room in the tree if needed.
4578 */
Chris Masone089f052007-03-16 16:20:31 -04004579int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4580 *root, struct btrfs_key *cpu_key, void *data, u32
4581 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004582{
4583 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004584 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004585 struct extent_buffer *leaf;
4586 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004587
Chris Mason2c90e5d2007-04-02 10:50:19 -04004588 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004589 if (!path)
4590 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004591 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004592 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004593 leaf = path->nodes[0];
4594 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4595 write_extent_buffer(leaf, data, ptr, data_size);
4596 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004597 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004598 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004599 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004600}
4601
Chris Mason74123bd2007-02-02 11:05:29 -05004602/*
Chris Mason5de08d72007-02-24 06:24:44 -05004603 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004604 *
Chris Masond352ac62008-09-29 15:18:18 -04004605 * the tree should have been previously balanced so the deletion does not
4606 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004607 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004608static void del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Liu Bo0e411ec2012-10-19 09:50:54 +00004609 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004610{
Chris Mason5f39d392007-10-15 16:14:19 -04004611 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004612 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004613 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004614
Chris Mason5f39d392007-10-15 16:14:19 -04004615 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004616 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004617 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004618 tree_mod_log_eb_move(root->fs_info, parent, slot,
4619 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004620 memmove_extent_buffer(parent,
4621 btrfs_node_key_ptr_offset(slot),
4622 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004623 sizeof(struct btrfs_key_ptr) *
4624 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004625 } else if (level) {
4626 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
4627 MOD_LOG_KEY_REMOVE);
4628 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004629 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004630
Chris Mason7518a232007-03-12 12:01:18 -04004631 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004632 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004633 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004634 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004635 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004636 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004637 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004638 struct btrfs_disk_key disk_key;
4639
4640 btrfs_node_key(parent, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004641 fixup_low_keys(trans, root, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004642 }
Chris Masond6025572007-03-30 14:27:56 -04004643 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004644}
4645
Chris Mason74123bd2007-02-02 11:05:29 -05004646/*
Chris Mason323ac952008-10-01 19:05:46 -04004647 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004648 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004649 *
4650 * This deletes the pointer in path->nodes[1] and frees the leaf
4651 * block extent. zero is returned if it all worked out, < 0 otherwise.
4652 *
4653 * The path must have already been setup for deleting the leaf, including
4654 * all the proper balancing. path->nodes[1] must be locked.
4655 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004656static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4657 struct btrfs_root *root,
4658 struct btrfs_path *path,
4659 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004660{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004661 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Liu Bo0e411ec2012-10-19 09:50:54 +00004662 del_ptr(trans, root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004663
Chris Mason4d081c42009-02-04 09:31:28 -05004664 /*
4665 * btrfs_free_extent is expensive, we want to make sure we
4666 * aren't holding any locks when we call it
4667 */
4668 btrfs_unlock_up_safe(path, 0);
4669
Yan, Zhengf0486c62010-05-16 10:46:25 -04004670 root_sub_used(root, leaf->len);
4671
Josef Bacik3083ee22012-03-09 16:01:49 -05004672 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004673 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004674 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004675}
4676/*
Chris Mason74123bd2007-02-02 11:05:29 -05004677 * delete the item at the leaf level in path. If that empties
4678 * the leaf, remove it from the tree
4679 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004680int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4681 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004682{
Chris Mason5f39d392007-10-15 16:14:19 -04004683 struct extent_buffer *leaf;
4684 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004685 int last_off;
4686 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004687 int ret = 0;
4688 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004689 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004690 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004691 struct btrfs_map_token token;
4692
4693 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004694
Chris Mason5f39d392007-10-15 16:14:19 -04004695 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004696 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4697
4698 for (i = 0; i < nr; i++)
4699 dsize += btrfs_item_size_nr(leaf, slot + i);
4700
Chris Mason5f39d392007-10-15 16:14:19 -04004701 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004702
Chris Mason85e21ba2008-01-29 15:11:36 -05004703 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004704 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004705
4706 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004707 data_end + dsize,
4708 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004709 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004710
Chris Mason85e21ba2008-01-29 15:11:36 -05004711 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004712 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004713
Chris Mason5f39d392007-10-15 16:14:19 -04004714 item = btrfs_item_nr(leaf, i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004715 ioff = btrfs_token_item_offset(leaf, item, &token);
4716 btrfs_set_token_item_offset(leaf, item,
4717 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004718 }
Chris Masondb945352007-10-15 16:15:53 -04004719
Chris Mason5f39d392007-10-15 16:14:19 -04004720 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004721 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004722 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004723 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004724 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004725 btrfs_set_header_nritems(leaf, nritems - nr);
4726 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004727
Chris Mason74123bd2007-02-02 11:05:29 -05004728 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004729 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004730 if (leaf == root->node) {
4731 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004732 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004733 btrfs_set_path_blocking(path);
4734 clean_tree_block(trans, root, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004735 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004736 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004737 } else {
Chris Mason7518a232007-03-12 12:01:18 -04004738 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004739 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004740 struct btrfs_disk_key disk_key;
4741
4742 btrfs_item_key(leaf, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004743 fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004744 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004745
Chris Mason74123bd2007-02-02 11:05:29 -05004746 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04004747 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05004748 /* push_leaf_left fixes the path.
4749 * make sure the path still points to our leaf
4750 * for possible call to del_ptr below
4751 */
Chris Mason4920c9a2007-01-26 16:38:42 -05004752 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04004753 extent_buffer_get(leaf);
4754
Chris Masonb9473432009-03-13 11:00:37 -04004755 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04004756 wret = push_leaf_left(trans, root, path, 1, 1,
4757 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004758 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05004759 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04004760
4761 if (path->nodes[0] == leaf &&
4762 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004763 wret = push_leaf_right(trans, root, path, 1,
4764 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04004765 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05004766 ret = wret;
4767 }
Chris Mason5f39d392007-10-15 16:14:19 -04004768
4769 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04004770 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004771 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004772 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004773 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05004774 } else {
Chris Mason925baed2008-06-25 16:01:30 -04004775 /* if we're still in the path, make sure
4776 * we're dirty. Otherwise, one of the
4777 * push_leaf functions must have already
4778 * dirtied this buffer
4779 */
4780 if (path->nodes[0] == leaf)
4781 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004782 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004783 }
Chris Masond5719762007-03-23 10:01:08 -04004784 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04004785 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004786 }
4787 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004788 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004789}
4790
Chris Mason97571fd2007-02-24 13:39:08 -05004791/*
Chris Mason925baed2008-06-25 16:01:30 -04004792 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05004793 * returns 0 if it found something or 1 if there are no lesser leaves.
4794 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04004795 *
4796 * This may release the path, and so you may lose any locks held at the
4797 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05004798 */
4799int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
4800{
Chris Mason925baed2008-06-25 16:01:30 -04004801 struct btrfs_key key;
4802 struct btrfs_disk_key found_key;
4803 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05004804
Chris Mason925baed2008-06-25 16:01:30 -04004805 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05004806
Chris Mason925baed2008-06-25 16:01:30 -04004807 if (key.offset > 0)
4808 key.offset--;
4809 else if (key.type > 0)
4810 key.type--;
4811 else if (key.objectid > 0)
4812 key.objectid--;
4813 else
4814 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05004815
David Sterbab3b4aa72011-04-21 01:20:15 +02004816 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04004817 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4818 if (ret < 0)
4819 return ret;
4820 btrfs_item_key(path->nodes[0], &found_key, 0);
4821 ret = comp_keys(&found_key, &key);
4822 if (ret < 0)
4823 return 0;
4824 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05004825}
4826
Chris Mason3f157a22008-06-25 16:01:31 -04004827/*
4828 * A helper function to walk down the tree starting at min_key, and looking
4829 * for nodes or leaves that are either in cache or have a minimum
Chris Masond352ac62008-09-29 15:18:18 -04004830 * transaction id. This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04004831 *
4832 * This does not cow, but it does stuff the starting key it finds back
4833 * into min_key, so you can call btrfs_search_slot with cow=1 on the
4834 * key and get a writable path.
4835 *
4836 * This does lock as it descends, and path->keep_locks should be set
4837 * to 1 by the caller.
4838 *
4839 * This honors path->lowest_level to prevent descent past a given level
4840 * of the tree.
4841 *
Chris Masond352ac62008-09-29 15:18:18 -04004842 * min_trans indicates the oldest transaction that you are interested
4843 * in walking through. Any nodes or leaves older than min_trans are
4844 * skipped over (without reading them).
4845 *
Chris Mason3f157a22008-06-25 16:01:31 -04004846 * returns zero if something useful was found, < 0 on error and 1 if there
4847 * was nothing in the tree that matched the search criteria.
4848 */
4849int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04004850 struct btrfs_key *max_key,
Chris Mason3f157a22008-06-25 16:01:31 -04004851 struct btrfs_path *path, int cache_only,
4852 u64 min_trans)
4853{
4854 struct extent_buffer *cur;
4855 struct btrfs_key found_key;
4856 int slot;
Yan96524802008-07-24 12:19:49 -04004857 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04004858 u32 nritems;
4859 int level;
4860 int ret = 1;
4861
Chris Mason934d3752008-12-08 16:43:10 -05004862 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04004863again:
Chris Masonbd681512011-07-16 15:23:14 -04004864 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04004865 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04004866 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04004867 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04004868 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004869
4870 if (btrfs_header_generation(cur) < min_trans) {
4871 ret = 1;
4872 goto out;
4873 }
Chris Masond3977122009-01-05 21:25:51 -05004874 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04004875 nritems = btrfs_header_nritems(cur);
4876 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04004877 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004878
Chris Mason323ac952008-10-01 19:05:46 -04004879 /* at the lowest level, we're done, setup the path and exit */
4880 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04004881 if (slot >= nritems)
4882 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04004883 ret = 0;
4884 path->slots[level] = slot;
4885 btrfs_item_key_to_cpu(cur, &found_key, slot);
4886 goto out;
4887 }
Yan96524802008-07-24 12:19:49 -04004888 if (sret && slot > 0)
4889 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04004890 /*
4891 * check this node pointer against the cache_only and
4892 * min_trans parameters. If it isn't in cache or is too
4893 * old, skip to the next one.
4894 */
Chris Masond3977122009-01-05 21:25:51 -05004895 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04004896 u64 blockptr;
4897 u64 gen;
4898 struct extent_buffer *tmp;
Chris Masone02119d2008-09-05 16:13:11 -04004899 struct btrfs_disk_key disk_key;
4900
Chris Mason3f157a22008-06-25 16:01:31 -04004901 blockptr = btrfs_node_blockptr(cur, slot);
4902 gen = btrfs_node_ptr_generation(cur, slot);
4903 if (gen < min_trans) {
4904 slot++;
4905 continue;
4906 }
4907 if (!cache_only)
4908 break;
4909
Chris Masone02119d2008-09-05 16:13:11 -04004910 if (max_key) {
4911 btrfs_node_key(cur, &disk_key, slot);
4912 if (comp_keys(&disk_key, max_key) >= 0) {
4913 ret = 1;
4914 goto out;
4915 }
4916 }
4917
Chris Mason3f157a22008-06-25 16:01:31 -04004918 tmp = btrfs_find_tree_block(root, blockptr,
4919 btrfs_level_size(root, level - 1));
4920
Chris Masonb9fab912012-05-06 07:23:47 -04004921 if (tmp && btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04004922 free_extent_buffer(tmp);
4923 break;
4924 }
4925 if (tmp)
4926 free_extent_buffer(tmp);
4927 slot++;
4928 }
Chris Masone02119d2008-09-05 16:13:11 -04004929find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04004930 /*
4931 * we didn't find a candidate key in this node, walk forward
4932 * and find another one
4933 */
4934 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04004935 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004936 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04004937 sret = btrfs_find_next_key(root, path, min_key, level,
Chris Mason3f157a22008-06-25 16:01:31 -04004938 cache_only, min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004939 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004940 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004941 goto again;
4942 } else {
4943 goto out;
4944 }
4945 }
4946 /* save our key for returning back */
4947 btrfs_node_key_to_cpu(cur, &found_key, slot);
4948 path->slots[level] = slot;
4949 if (level == path->lowest_level) {
4950 ret = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04004951 unlock_up(path, level, 1, 0, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004952 goto out;
4953 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004954 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004955 cur = read_node_slot(root, cur, slot);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004956 BUG_ON(!cur); /* -ENOMEM */
Chris Mason3f157a22008-06-25 16:01:31 -04004957
Chris Masonbd681512011-07-16 15:23:14 -04004958 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004959
Chris Masonbd681512011-07-16 15:23:14 -04004960 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004961 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04004962 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04004963 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04004964 }
4965out:
4966 if (ret == 0)
4967 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004968 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004969 return ret;
4970}
4971
Alexander Block70698302012-06-05 21:07:48 +02004972static void tree_move_down(struct btrfs_root *root,
4973 struct btrfs_path *path,
4974 int *level, int root_level)
4975{
Chris Mason74dd17f2012-08-07 16:25:13 -04004976 BUG_ON(*level == 0);
Alexander Block70698302012-06-05 21:07:48 +02004977 path->nodes[*level - 1] = read_node_slot(root, path->nodes[*level],
4978 path->slots[*level]);
4979 path->slots[*level - 1] = 0;
4980 (*level)--;
4981}
4982
4983static int tree_move_next_or_upnext(struct btrfs_root *root,
4984 struct btrfs_path *path,
4985 int *level, int root_level)
4986{
4987 int ret = 0;
4988 int nritems;
4989 nritems = btrfs_header_nritems(path->nodes[*level]);
4990
4991 path->slots[*level]++;
4992
Chris Mason74dd17f2012-08-07 16:25:13 -04004993 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02004994 if (*level == root_level)
4995 return -1;
4996
4997 /* move upnext */
4998 path->slots[*level] = 0;
4999 free_extent_buffer(path->nodes[*level]);
5000 path->nodes[*level] = NULL;
5001 (*level)++;
5002 path->slots[*level]++;
5003
5004 nritems = btrfs_header_nritems(path->nodes[*level]);
5005 ret = 1;
5006 }
5007 return ret;
5008}
5009
5010/*
5011 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5012 * or down.
5013 */
5014static int tree_advance(struct btrfs_root *root,
5015 struct btrfs_path *path,
5016 int *level, int root_level,
5017 int allow_down,
5018 struct btrfs_key *key)
5019{
5020 int ret;
5021
5022 if (*level == 0 || !allow_down) {
5023 ret = tree_move_next_or_upnext(root, path, level, root_level);
5024 } else {
5025 tree_move_down(root, path, level, root_level);
5026 ret = 0;
5027 }
5028 if (ret >= 0) {
5029 if (*level == 0)
5030 btrfs_item_key_to_cpu(path->nodes[*level], key,
5031 path->slots[*level]);
5032 else
5033 btrfs_node_key_to_cpu(path->nodes[*level], key,
5034 path->slots[*level]);
5035 }
5036 return ret;
5037}
5038
5039static int tree_compare_item(struct btrfs_root *left_root,
5040 struct btrfs_path *left_path,
5041 struct btrfs_path *right_path,
5042 char *tmp_buf)
5043{
5044 int cmp;
5045 int len1, len2;
5046 unsigned long off1, off2;
5047
5048 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5049 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5050 if (len1 != len2)
5051 return 1;
5052
5053 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5054 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5055 right_path->slots[0]);
5056
5057 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5058
5059 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5060 if (cmp)
5061 return 1;
5062 return 0;
5063}
5064
5065#define ADVANCE 1
5066#define ADVANCE_ONLY_NEXT -1
5067
5068/*
5069 * This function compares two trees and calls the provided callback for
5070 * every changed/new/deleted item it finds.
5071 * If shared tree blocks are encountered, whole subtrees are skipped, making
5072 * the compare pretty fast on snapshotted subvolumes.
5073 *
5074 * This currently works on commit roots only. As commit roots are read only,
5075 * we don't do any locking. The commit roots are protected with transactions.
5076 * Transactions are ended and rejoined when a commit is tried in between.
5077 *
5078 * This function checks for modifications done to the trees while comparing.
5079 * If it detects a change, it aborts immediately.
5080 */
5081int btrfs_compare_trees(struct btrfs_root *left_root,
5082 struct btrfs_root *right_root,
5083 btrfs_changed_cb_t changed_cb, void *ctx)
5084{
5085 int ret;
5086 int cmp;
5087 struct btrfs_trans_handle *trans = NULL;
5088 struct btrfs_path *left_path = NULL;
5089 struct btrfs_path *right_path = NULL;
5090 struct btrfs_key left_key;
5091 struct btrfs_key right_key;
5092 char *tmp_buf = NULL;
5093 int left_root_level;
5094 int right_root_level;
5095 int left_level;
5096 int right_level;
5097 int left_end_reached;
5098 int right_end_reached;
5099 int advance_left;
5100 int advance_right;
5101 u64 left_blockptr;
5102 u64 right_blockptr;
5103 u64 left_start_ctransid;
5104 u64 right_start_ctransid;
5105 u64 ctransid;
5106
5107 left_path = btrfs_alloc_path();
5108 if (!left_path) {
5109 ret = -ENOMEM;
5110 goto out;
5111 }
5112 right_path = btrfs_alloc_path();
5113 if (!right_path) {
5114 ret = -ENOMEM;
5115 goto out;
5116 }
5117
5118 tmp_buf = kmalloc(left_root->leafsize, GFP_NOFS);
5119 if (!tmp_buf) {
5120 ret = -ENOMEM;
5121 goto out;
5122 }
5123
5124 left_path->search_commit_root = 1;
5125 left_path->skip_locking = 1;
5126 right_path->search_commit_root = 1;
5127 right_path->skip_locking = 1;
5128
Anand Jain5f3ab902012-12-07 09:28:54 +00005129 spin_lock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005130 left_start_ctransid = btrfs_root_ctransid(&left_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005131 spin_unlock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005132
Anand Jain5f3ab902012-12-07 09:28:54 +00005133 spin_lock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005134 right_start_ctransid = btrfs_root_ctransid(&right_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005135 spin_unlock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005136
5137 trans = btrfs_join_transaction(left_root);
5138 if (IS_ERR(trans)) {
5139 ret = PTR_ERR(trans);
5140 trans = NULL;
5141 goto out;
5142 }
5143
5144 /*
5145 * Strategy: Go to the first items of both trees. Then do
5146 *
5147 * If both trees are at level 0
5148 * Compare keys of current items
5149 * If left < right treat left item as new, advance left tree
5150 * and repeat
5151 * If left > right treat right item as deleted, advance right tree
5152 * and repeat
5153 * If left == right do deep compare of items, treat as changed if
5154 * needed, advance both trees and repeat
5155 * If both trees are at the same level but not at level 0
5156 * Compare keys of current nodes/leafs
5157 * If left < right advance left tree and repeat
5158 * If left > right advance right tree and repeat
5159 * If left == right compare blockptrs of the next nodes/leafs
5160 * If they match advance both trees but stay at the same level
5161 * and repeat
5162 * If they don't match advance both trees while allowing to go
5163 * deeper and repeat
5164 * If tree levels are different
5165 * Advance the tree that needs it and repeat
5166 *
5167 * Advancing a tree means:
5168 * If we are at level 0, try to go to the next slot. If that's not
5169 * possible, go one level up and repeat. Stop when we found a level
5170 * where we could go to the next slot. We may at this point be on a
5171 * node or a leaf.
5172 *
5173 * If we are not at level 0 and not on shared tree blocks, go one
5174 * level deeper.
5175 *
5176 * If we are not at level 0 and on shared tree blocks, go one slot to
5177 * the right if possible or go up and right.
5178 */
5179
5180 left_level = btrfs_header_level(left_root->commit_root);
5181 left_root_level = left_level;
5182 left_path->nodes[left_level] = left_root->commit_root;
5183 extent_buffer_get(left_path->nodes[left_level]);
5184
5185 right_level = btrfs_header_level(right_root->commit_root);
5186 right_root_level = right_level;
5187 right_path->nodes[right_level] = right_root->commit_root;
5188 extent_buffer_get(right_path->nodes[right_level]);
5189
5190 if (left_level == 0)
5191 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5192 &left_key, left_path->slots[left_level]);
5193 else
5194 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5195 &left_key, left_path->slots[left_level]);
5196 if (right_level == 0)
5197 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5198 &right_key, right_path->slots[right_level]);
5199 else
5200 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5201 &right_key, right_path->slots[right_level]);
5202
5203 left_end_reached = right_end_reached = 0;
5204 advance_left = advance_right = 0;
5205
5206 while (1) {
5207 /*
5208 * We need to make sure the transaction does not get committed
5209 * while we do anything on commit roots. This means, we need to
5210 * join and leave transactions for every item that we process.
5211 */
5212 if (trans && btrfs_should_end_transaction(trans, left_root)) {
5213 btrfs_release_path(left_path);
5214 btrfs_release_path(right_path);
5215
5216 ret = btrfs_end_transaction(trans, left_root);
5217 trans = NULL;
5218 if (ret < 0)
5219 goto out;
5220 }
5221 /* now rejoin the transaction */
5222 if (!trans) {
5223 trans = btrfs_join_transaction(left_root);
5224 if (IS_ERR(trans)) {
5225 ret = PTR_ERR(trans);
5226 trans = NULL;
5227 goto out;
5228 }
5229
Anand Jain5f3ab902012-12-07 09:28:54 +00005230 spin_lock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005231 ctransid = btrfs_root_ctransid(&left_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005232 spin_unlock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005233 if (ctransid != left_start_ctransid)
5234 left_start_ctransid = 0;
5235
Anand Jain5f3ab902012-12-07 09:28:54 +00005236 spin_lock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005237 ctransid = btrfs_root_ctransid(&right_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005238 spin_unlock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005239 if (ctransid != right_start_ctransid)
5240 right_start_ctransid = 0;
5241
5242 if (!left_start_ctransid || !right_start_ctransid) {
5243 WARN(1, KERN_WARNING
5244 "btrfs: btrfs_compare_tree detected "
5245 "a change in one of the trees while "
5246 "iterating. This is probably a "
5247 "bug.\n");
5248 ret = -EIO;
5249 goto out;
5250 }
5251
5252 /*
5253 * the commit root may have changed, so start again
5254 * where we stopped
5255 */
5256 left_path->lowest_level = left_level;
5257 right_path->lowest_level = right_level;
5258 ret = btrfs_search_slot(NULL, left_root,
5259 &left_key, left_path, 0, 0);
5260 if (ret < 0)
5261 goto out;
5262 ret = btrfs_search_slot(NULL, right_root,
5263 &right_key, right_path, 0, 0);
5264 if (ret < 0)
5265 goto out;
5266 }
5267
5268 if (advance_left && !left_end_reached) {
5269 ret = tree_advance(left_root, left_path, &left_level,
5270 left_root_level,
5271 advance_left != ADVANCE_ONLY_NEXT,
5272 &left_key);
5273 if (ret < 0)
5274 left_end_reached = ADVANCE;
5275 advance_left = 0;
5276 }
5277 if (advance_right && !right_end_reached) {
5278 ret = tree_advance(right_root, right_path, &right_level,
5279 right_root_level,
5280 advance_right != ADVANCE_ONLY_NEXT,
5281 &right_key);
5282 if (ret < 0)
5283 right_end_reached = ADVANCE;
5284 advance_right = 0;
5285 }
5286
5287 if (left_end_reached && right_end_reached) {
5288 ret = 0;
5289 goto out;
5290 } else if (left_end_reached) {
5291 if (right_level == 0) {
5292 ret = changed_cb(left_root, right_root,
5293 left_path, right_path,
5294 &right_key,
5295 BTRFS_COMPARE_TREE_DELETED,
5296 ctx);
5297 if (ret < 0)
5298 goto out;
5299 }
5300 advance_right = ADVANCE;
5301 continue;
5302 } else if (right_end_reached) {
5303 if (left_level == 0) {
5304 ret = changed_cb(left_root, right_root,
5305 left_path, right_path,
5306 &left_key,
5307 BTRFS_COMPARE_TREE_NEW,
5308 ctx);
5309 if (ret < 0)
5310 goto out;
5311 }
5312 advance_left = ADVANCE;
5313 continue;
5314 }
5315
5316 if (left_level == 0 && right_level == 0) {
5317 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5318 if (cmp < 0) {
5319 ret = changed_cb(left_root, right_root,
5320 left_path, right_path,
5321 &left_key,
5322 BTRFS_COMPARE_TREE_NEW,
5323 ctx);
5324 if (ret < 0)
5325 goto out;
5326 advance_left = ADVANCE;
5327 } else if (cmp > 0) {
5328 ret = changed_cb(left_root, right_root,
5329 left_path, right_path,
5330 &right_key,
5331 BTRFS_COMPARE_TREE_DELETED,
5332 ctx);
5333 if (ret < 0)
5334 goto out;
5335 advance_right = ADVANCE;
5336 } else {
Chris Mason74dd17f2012-08-07 16:25:13 -04005337 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005338 ret = tree_compare_item(left_root, left_path,
5339 right_path, tmp_buf);
5340 if (ret) {
Chris Mason74dd17f2012-08-07 16:25:13 -04005341 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005342 ret = changed_cb(left_root, right_root,
5343 left_path, right_path,
5344 &left_key,
5345 BTRFS_COMPARE_TREE_CHANGED,
5346 ctx);
5347 if (ret < 0)
5348 goto out;
5349 }
5350 advance_left = ADVANCE;
5351 advance_right = ADVANCE;
5352 }
5353 } else if (left_level == right_level) {
5354 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5355 if (cmp < 0) {
5356 advance_left = ADVANCE;
5357 } else if (cmp > 0) {
5358 advance_right = ADVANCE;
5359 } else {
5360 left_blockptr = btrfs_node_blockptr(
5361 left_path->nodes[left_level],
5362 left_path->slots[left_level]);
5363 right_blockptr = btrfs_node_blockptr(
5364 right_path->nodes[right_level],
5365 right_path->slots[right_level]);
5366 if (left_blockptr == right_blockptr) {
5367 /*
5368 * As we're on a shared block, don't
5369 * allow to go deeper.
5370 */
5371 advance_left = ADVANCE_ONLY_NEXT;
5372 advance_right = ADVANCE_ONLY_NEXT;
5373 } else {
5374 advance_left = ADVANCE;
5375 advance_right = ADVANCE;
5376 }
5377 }
5378 } else if (left_level < right_level) {
5379 advance_right = ADVANCE;
5380 } else {
5381 advance_left = ADVANCE;
5382 }
5383 }
5384
5385out:
5386 btrfs_free_path(left_path);
5387 btrfs_free_path(right_path);
5388 kfree(tmp_buf);
5389
5390 if (trans) {
5391 if (!ret)
5392 ret = btrfs_end_transaction(trans, left_root);
5393 else
5394 btrfs_end_transaction(trans, left_root);
5395 }
5396
5397 return ret;
5398}
5399
Chris Mason3f157a22008-06-25 16:01:31 -04005400/*
5401 * this is similar to btrfs_next_leaf, but does not try to preserve
5402 * and fixup the path. It looks for and returns the next key in the
5403 * tree based on the current path and the cache_only and min_trans
5404 * parameters.
5405 *
5406 * 0 is returned if another key is found, < 0 if there are any errors
5407 * and 1 is returned if there are no higher keys in the tree
5408 *
5409 * path->keep_locks should be set to 1 on the search made before
5410 * calling this function.
5411 */
Chris Masone7a84562008-06-25 16:01:31 -04005412int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Yan Zheng33c66f42009-07-22 09:59:00 -04005413 struct btrfs_key *key, int level,
Chris Mason3f157a22008-06-25 16:01:31 -04005414 int cache_only, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005415{
Chris Masone7a84562008-06-25 16:01:31 -04005416 int slot;
5417 struct extent_buffer *c;
5418
Chris Mason934d3752008-12-08 16:43:10 -05005419 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005420 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005421 if (!path->nodes[level])
5422 return 1;
5423
5424 slot = path->slots[level] + 1;
5425 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005426next:
Chris Masone7a84562008-06-25 16:01:31 -04005427 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005428 int ret;
5429 int orig_lowest;
5430 struct btrfs_key cur_key;
5431 if (level + 1 >= BTRFS_MAX_LEVEL ||
5432 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005433 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005434
5435 if (path->locks[level + 1]) {
5436 level++;
5437 continue;
5438 }
5439
5440 slot = btrfs_header_nritems(c) - 1;
5441 if (level == 0)
5442 btrfs_item_key_to_cpu(c, &cur_key, slot);
5443 else
5444 btrfs_node_key_to_cpu(c, &cur_key, slot);
5445
5446 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005447 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005448 path->lowest_level = level;
5449 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5450 0, 0);
5451 path->lowest_level = orig_lowest;
5452 if (ret < 0)
5453 return ret;
5454
5455 c = path->nodes[level];
5456 slot = path->slots[level];
5457 if (ret == 0)
5458 slot++;
5459 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005460 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005461
Chris Masone7a84562008-06-25 16:01:31 -04005462 if (level == 0)
5463 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005464 else {
5465 u64 blockptr = btrfs_node_blockptr(c, slot);
5466 u64 gen = btrfs_node_ptr_generation(c, slot);
5467
5468 if (cache_only) {
5469 struct extent_buffer *cur;
5470 cur = btrfs_find_tree_block(root, blockptr,
5471 btrfs_level_size(root, level - 1));
Chris Masonb9fab912012-05-06 07:23:47 -04005472 if (!cur ||
5473 btrfs_buffer_uptodate(cur, gen, 1) <= 0) {
Chris Mason3f157a22008-06-25 16:01:31 -04005474 slot++;
5475 if (cur)
5476 free_extent_buffer(cur);
5477 goto next;
5478 }
5479 free_extent_buffer(cur);
5480 }
5481 if (gen < min_trans) {
5482 slot++;
5483 goto next;
5484 }
Chris Masone7a84562008-06-25 16:01:31 -04005485 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005486 }
Chris Masone7a84562008-06-25 16:01:31 -04005487 return 0;
5488 }
5489 return 1;
5490}
5491
Chris Mason7bb86312007-12-11 09:25:06 -05005492/*
Chris Mason925baed2008-06-25 16:01:30 -04005493 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005494 * returns 0 if it found something or 1 if there are no greater leaves.
5495 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005496 */
Chris Mason234b63a2007-03-13 10:46:10 -04005497int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005498{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005499 return btrfs_next_old_leaf(root, path, 0);
5500}
5501
Josef Bacik70c8a912012-10-11 16:54:30 -04005502/* Release the path up to but not including the given level */
5503static void btrfs_release_level(struct btrfs_path *path, int level)
5504{
5505 int i;
5506
5507 for (i = 0; i < level; i++) {
5508 path->slots[i] = 0;
5509 if (!path->nodes[i])
5510 continue;
5511 if (path->locks[i]) {
5512 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
5513 path->locks[i] = 0;
5514 }
5515 free_extent_buffer(path->nodes[i]);
5516 path->nodes[i] = NULL;
5517 }
5518}
5519
5520/*
5521 * This function assumes 2 things
5522 *
5523 * 1) You are using path->keep_locks
5524 * 2) You are not inserting items.
5525 *
5526 * If either of these are not true do not use this function. If you need a next
5527 * leaf with either of these not being true then this function can be easily
5528 * adapted to do that, but at the moment these are the limitations.
5529 */
5530int btrfs_next_leaf_write(struct btrfs_trans_handle *trans,
5531 struct btrfs_root *root, struct btrfs_path *path,
5532 int del)
5533{
5534 struct extent_buffer *b;
5535 struct btrfs_key key;
5536 u32 nritems;
5537 int level = 1;
5538 int slot;
5539 int ret = 1;
5540 int write_lock_level = BTRFS_MAX_LEVEL;
5541 int ins_len = del ? -1 : 0;
5542
5543 WARN_ON(!(path->keep_locks || path->really_keep_locks));
5544
5545 nritems = btrfs_header_nritems(path->nodes[0]);
5546 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5547
5548 while (path->nodes[level]) {
5549 nritems = btrfs_header_nritems(path->nodes[level]);
5550 if (!(path->locks[level] & BTRFS_WRITE_LOCK)) {
5551search:
5552 btrfs_release_path(path);
5553 ret = btrfs_search_slot(trans, root, &key, path,
5554 ins_len, 1);
5555 if (ret < 0)
5556 goto out;
5557 level = 1;
5558 continue;
5559 }
5560
5561 if (path->slots[level] >= nritems - 1) {
5562 level++;
5563 continue;
5564 }
5565
5566 btrfs_release_level(path, level);
5567 break;
5568 }
5569
5570 if (!path->nodes[level]) {
5571 ret = 1;
5572 goto out;
5573 }
5574
5575 path->slots[level]++;
5576 b = path->nodes[level];
5577
5578 while (b) {
5579 level = btrfs_header_level(b);
5580
5581 if (!should_cow_block(trans, root, b))
5582 goto cow_done;
5583
5584 btrfs_set_path_blocking(path);
5585 ret = btrfs_cow_block(trans, root, b,
5586 path->nodes[level + 1],
5587 path->slots[level + 1], &b);
5588 if (ret)
5589 goto out;
5590cow_done:
5591 path->nodes[level] = b;
5592 btrfs_clear_path_blocking(path, NULL, 0);
5593 if (level != 0) {
5594 ret = setup_nodes_for_search(trans, root, path, b,
5595 level, ins_len,
5596 &write_lock_level);
5597 if (ret == -EAGAIN)
5598 goto search;
5599 if (ret)
5600 goto out;
5601
5602 b = path->nodes[level];
5603 slot = path->slots[level];
5604
5605 ret = read_block_for_search(trans, root, path,
5606 &b, level, slot, &key, 0);
5607 if (ret == -EAGAIN)
5608 goto search;
5609 if (ret)
5610 goto out;
5611 level = btrfs_header_level(b);
5612 if (!btrfs_try_tree_write_lock(b)) {
5613 btrfs_set_path_blocking(path);
5614 btrfs_tree_lock(b);
5615 btrfs_clear_path_blocking(path, b,
5616 BTRFS_WRITE_LOCK);
5617 }
5618 path->locks[level] = BTRFS_WRITE_LOCK;
5619 path->nodes[level] = b;
5620 path->slots[level] = 0;
5621 } else {
5622 path->slots[level] = 0;
5623 ret = 0;
5624 break;
5625 }
5626 }
5627
5628out:
5629 if (ret)
5630 btrfs_release_path(path);
5631
5632 return ret;
5633}
5634
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005635int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5636 u64 time_seq)
5637{
Chris Masond97e63b2007-02-20 16:40:44 -05005638 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005639 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005640 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005641 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005642 struct btrfs_key key;
5643 u32 nritems;
5644 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005645 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005646 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005647
5648 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005649 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005650 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005651
Chris Mason8e73f272009-04-03 10:14:18 -04005652 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5653again:
5654 level = 1;
5655 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005656 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005657 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005658
Chris Masona2135012008-06-25 16:01:30 -04005659 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005660 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005661
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005662 if (time_seq)
5663 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5664 else
5665 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005666 path->keep_locks = 0;
5667
5668 if (ret < 0)
5669 return ret;
5670
Chris Masona2135012008-06-25 16:01:30 -04005671 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005672 /*
5673 * by releasing the path above we dropped all our locks. A balance
5674 * could have added more items next to the key that used to be
5675 * at the very end of the block. So, check again here and
5676 * advance the path if there are now more items available.
5677 */
Chris Masona2135012008-06-25 16:01:30 -04005678 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005679 if (ret == 0)
5680 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005681 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005682 goto done;
5683 }
Chris Masond97e63b2007-02-20 16:40:44 -05005684
Chris Masond3977122009-01-05 21:25:51 -05005685 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005686 if (!path->nodes[level]) {
5687 ret = 1;
5688 goto done;
5689 }
Chris Mason5f39d392007-10-15 16:14:19 -04005690
Chris Masond97e63b2007-02-20 16:40:44 -05005691 slot = path->slots[level] + 1;
5692 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005693 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005694 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005695 if (level == BTRFS_MAX_LEVEL) {
5696 ret = 1;
5697 goto done;
5698 }
Chris Masond97e63b2007-02-20 16:40:44 -05005699 continue;
5700 }
Chris Mason5f39d392007-10-15 16:14:19 -04005701
Chris Mason925baed2008-06-25 16:01:30 -04005702 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005703 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005704 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005705 }
Chris Mason5f39d392007-10-15 16:14:19 -04005706
Chris Mason8e73f272009-04-03 10:14:18 -04005707 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005708 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005709 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005710 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005711 if (ret == -EAGAIN)
5712 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005713
Chris Mason76a05b32009-05-14 13:24:30 -04005714 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005715 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005716 goto done;
5717 }
5718
Chris Mason5cd57b22008-06-25 16:01:30 -04005719 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005720 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005721 if (!ret && time_seq) {
5722 /*
5723 * If we don't get the lock, we may be racing
5724 * with push_leaf_left, holding that lock while
5725 * itself waiting for the leaf we've currently
5726 * locked. To solve this situation, we give up
5727 * on our lock and cycle.
5728 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005729 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005730 btrfs_release_path(path);
5731 cond_resched();
5732 goto again;
5733 }
Chris Mason8e73f272009-04-03 10:14:18 -04005734 if (!ret) {
5735 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005736 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005737 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005738 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005739 }
Chris Mason31533fb2011-07-26 16:01:59 -04005740 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005741 }
Chris Masond97e63b2007-02-20 16:40:44 -05005742 break;
5743 }
5744 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005745 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005746 level--;
5747 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005748 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005749 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005750
Chris Mason5f39d392007-10-15 16:14:19 -04005751 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005752 path->nodes[level] = next;
5753 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005754 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005755 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005756 if (!level)
5757 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005758
Chris Mason8e73f272009-04-03 10:14:18 -04005759 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005760 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005761 if (ret == -EAGAIN)
5762 goto again;
5763
Chris Mason76a05b32009-05-14 13:24:30 -04005764 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005765 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005766 goto done;
5767 }
5768
Chris Mason5cd57b22008-06-25 16:01:30 -04005769 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005770 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005771 if (!ret) {
5772 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005773 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005774 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005775 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005776 }
Chris Mason31533fb2011-07-26 16:01:59 -04005777 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005778 }
Chris Masond97e63b2007-02-20 16:40:44 -05005779 }
Chris Mason8e73f272009-04-03 10:14:18 -04005780 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005781done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005782 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005783 path->leave_spinning = old_spinning;
5784 if (!old_spinning)
5785 btrfs_set_path_blocking(path);
5786
5787 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005788}
Chris Mason0b86a832008-03-24 15:01:56 -04005789
Chris Mason3f157a22008-06-25 16:01:31 -04005790/*
5791 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5792 * searching until it gets past min_objectid or finds an item of 'type'
5793 *
5794 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5795 */
Chris Mason0b86a832008-03-24 15:01:56 -04005796int btrfs_previous_item(struct btrfs_root *root,
5797 struct btrfs_path *path, u64 min_objectid,
5798 int type)
5799{
5800 struct btrfs_key found_key;
5801 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005802 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005803 int ret;
5804
Chris Masond3977122009-01-05 21:25:51 -05005805 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005806 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005807 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005808 ret = btrfs_prev_leaf(root, path);
5809 if (ret != 0)
5810 return ret;
5811 } else {
5812 path->slots[0]--;
5813 }
5814 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005815 nritems = btrfs_header_nritems(leaf);
5816 if (nritems == 0)
5817 return 1;
5818 if (path->slots[0] == nritems)
5819 path->slots[0]--;
5820
Chris Mason0b86a832008-03-24 15:01:56 -04005821 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005822 if (found_key.objectid < min_objectid)
5823 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005824 if (found_key.type == type)
5825 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005826 if (found_key.objectid == min_objectid &&
5827 found_key.type < type)
5828 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005829 }
5830 return 1;
5831}