blob: 6932686b61cf0508a79f452b91120819a3b6cbbb [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);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +000040static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
41 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);
Eric Sandeen48a3b632013-04-25 20:41:01 +000044static int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path);
Chris Masond97e63b2007-02-20 16:40:44 -050045
Chris Mason2c90e5d2007-04-02 10:50:19 -040046struct btrfs_path *btrfs_alloc_path(void)
47{
Chris Masondf24a2b2007-04-04 09:36:31 -040048 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050049 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Masondf24a2b2007-04-04 09:36:31 -040050 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040051}
52
Chris Masonb4ce94d2009-02-04 09:25:08 -050053/*
54 * set all locked nodes in the path to blocking locks. This should
55 * be done before scheduling
56 */
57noinline void btrfs_set_path_blocking(struct btrfs_path *p)
58{
59 int i;
60 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040061 if (!p->nodes[i] || !p->locks[i])
62 continue;
63 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
64 if (p->locks[i] == BTRFS_READ_LOCK)
65 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
66 else if (p->locks[i] == BTRFS_WRITE_LOCK)
67 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050068 }
69}
70
71/*
72 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050073 *
74 * held is used to keep lockdep happy, when lockdep is enabled
75 * we set held to a blocking lock before we go around and
76 * retake all the spinlocks in the path. You can safely use NULL
77 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050078 */
Chris Mason4008c042009-02-12 14:09:45 -050079noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040080 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050081{
82 int i;
Chris Mason4008c042009-02-12 14:09:45 -050083
84#ifdef CONFIG_DEBUG_LOCK_ALLOC
85 /* lockdep really cares that we take all of these spinlocks
86 * in the right order. If any of the locks in the path are not
87 * currently blocking, it is going to complain. So, make really
88 * really sure by forcing the path to blocking before we clear
89 * the path blocking.
90 */
Chris Masonbd681512011-07-16 15:23:14 -040091 if (held) {
92 btrfs_set_lock_blocking_rw(held, held_rw);
93 if (held_rw == BTRFS_WRITE_LOCK)
94 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
95 else if (held_rw == BTRFS_READ_LOCK)
96 held_rw = BTRFS_READ_LOCK_BLOCKING;
97 }
Chris Mason4008c042009-02-12 14:09:45 -050098 btrfs_set_path_blocking(p);
99#endif
100
101 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -0400102 if (p->nodes[i] && p->locks[i]) {
103 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
104 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
105 p->locks[i] = BTRFS_WRITE_LOCK;
106 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
107 p->locks[i] = BTRFS_READ_LOCK;
108 }
Chris Masonb4ce94d2009-02-04 09:25:08 -0500109 }
Chris Mason4008c042009-02-12 14:09:45 -0500110
111#ifdef CONFIG_DEBUG_LOCK_ALLOC
112 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400113 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Mason4008c042009-02-12 14:09:45 -0500114#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -0500115}
116
Chris Masond352ac62008-09-29 15:18:18 -0400117/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400118void btrfs_free_path(struct btrfs_path *p)
119{
Jesper Juhlff175d52010-12-25 21:22:30 +0000120 if (!p)
121 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200122 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400123 kmem_cache_free(btrfs_path_cachep, p);
124}
125
Chris Masond352ac62008-09-29 15:18:18 -0400126/*
127 * path release drops references on the extent buffers in the path
128 * and it drops any locks held by this path
129 *
130 * It is safe to call this on paths that no locks or extent buffers held.
131 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200132noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500133{
134 int i;
Chris Masona2135012008-06-25 16:01:30 -0400135
Chris Mason234b63a2007-03-13 10:46:10 -0400136 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400137 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500138 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400139 continue;
140 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400141 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400142 p->locks[i] = 0;
143 }
Chris Mason5f39d392007-10-15 16:14:19 -0400144 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400145 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500146 }
147}
148
Chris Masond352ac62008-09-29 15:18:18 -0400149/*
150 * safely gets a reference on the root node of a tree. A lock
151 * is not taken, so a concurrent writer may put a different node
152 * at the root of the tree. See btrfs_lock_root_node for the
153 * looping required.
154 *
155 * The extent buffer returned by this has a reference taken, so
156 * it won't disappear. It may stop being the root of the tree
157 * at any time because there are no locks held.
158 */
Chris Mason925baed2008-06-25 16:01:30 -0400159struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
160{
161 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400162
Josef Bacik3083ee22012-03-09 16:01:49 -0500163 while (1) {
164 rcu_read_lock();
165 eb = rcu_dereference(root->node);
166
167 /*
168 * RCU really hurts here, we could free up the root node because
169 * it was cow'ed but we may not get the new root node yet so do
170 * the inc_not_zero dance and if it doesn't work then
171 * synchronize_rcu and try again.
172 */
173 if (atomic_inc_not_zero(&eb->refs)) {
174 rcu_read_unlock();
175 break;
176 }
177 rcu_read_unlock();
178 synchronize_rcu();
179 }
Chris Mason925baed2008-06-25 16:01:30 -0400180 return eb;
181}
182
Chris Masond352ac62008-09-29 15:18:18 -0400183/* loop around taking references on and locking the root node of the
184 * tree until you end up with a lock on the root. A locked buffer
185 * is returned, with a reference held.
186 */
Chris Mason925baed2008-06-25 16:01:30 -0400187struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
188{
189 struct extent_buffer *eb;
190
Chris Masond3977122009-01-05 21:25:51 -0500191 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400192 eb = btrfs_root_node(root);
193 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400194 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400195 break;
Chris Mason925baed2008-06-25 16:01:30 -0400196 btrfs_tree_unlock(eb);
197 free_extent_buffer(eb);
198 }
199 return eb;
200}
201
Chris Masonbd681512011-07-16 15:23:14 -0400202/* loop around taking references on and locking the root node of the
203 * tree until you end up with a lock on the root. A locked buffer
204 * is returned, with a reference held.
205 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000206static struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400207{
208 struct extent_buffer *eb;
209
210 while (1) {
211 eb = btrfs_root_node(root);
212 btrfs_tree_read_lock(eb);
213 if (eb == root->node)
214 break;
215 btrfs_tree_read_unlock(eb);
216 free_extent_buffer(eb);
217 }
218 return eb;
219}
220
Chris Masond352ac62008-09-29 15:18:18 -0400221/* cowonly root (everything not a reference counted cow subvolume), just get
222 * put onto a simple dirty list. transaction.c walks this to make sure they
223 * get properly updated on disk.
224 */
Chris Mason0b86a832008-03-24 15:01:56 -0400225static void add_root_to_dirty_list(struct btrfs_root *root)
226{
Chris Masone5846fc2012-05-03 12:08:48 -0400227 spin_lock(&root->fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400228 if (root->track_dirty && list_empty(&root->dirty_list)) {
229 list_add(&root->dirty_list,
230 &root->fs_info->dirty_cowonly_roots);
231 }
Chris Masone5846fc2012-05-03 12:08:48 -0400232 spin_unlock(&root->fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400233}
234
Chris Masond352ac62008-09-29 15:18:18 -0400235/*
236 * used by snapshot creation to make a copy of a root for a tree with
237 * a given objectid. The buffer with the new root node is returned in
238 * cow_ret, and this func returns zero on success or a negative error code.
239 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500240int btrfs_copy_root(struct btrfs_trans_handle *trans,
241 struct btrfs_root *root,
242 struct extent_buffer *buf,
243 struct extent_buffer **cow_ret, u64 new_root_objectid)
244{
245 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500246 int ret = 0;
247 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400248 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500249
250 WARN_ON(root->ref_cows && trans->transid !=
251 root->fs_info->running_transaction->transid);
252 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
253
254 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400255 if (level == 0)
256 btrfs_item_key(buf, &disk_key, 0);
257 else
258 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400259
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400260 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
261 new_root_objectid, &disk_key, level,
Jan Schmidt5581a512012-05-16 17:04:52 +0200262 buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400263 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500264 return PTR_ERR(cow);
265
266 copy_extent_buffer(cow, buf, 0, 0, cow->len);
267 btrfs_set_header_bytenr(cow, cow->start);
268 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400269 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
270 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
271 BTRFS_HEADER_FLAG_RELOC);
272 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
273 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
274 else
275 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500276
Geert Uytterhoevenfba6aa72013-08-20 13:20:14 +0200277 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(cow),
Yan Zheng2b820322008-11-17 21:11:30 -0500278 BTRFS_FSID_SIZE);
279
Chris Masonbe20aa92007-12-17 20:14:01 -0500280 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400281 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200282 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400283 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200284 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Chris Mason4aec2b52007-12-18 16:25:45 -0500285
Chris Masonbe20aa92007-12-17 20:14:01 -0500286 if (ret)
287 return ret;
288
289 btrfs_mark_buffer_dirty(cow);
290 *cow_ret = cow;
291 return 0;
292}
293
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200294enum mod_log_op {
295 MOD_LOG_KEY_REPLACE,
296 MOD_LOG_KEY_ADD,
297 MOD_LOG_KEY_REMOVE,
298 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
299 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
300 MOD_LOG_MOVE_KEYS,
301 MOD_LOG_ROOT_REPLACE,
302};
303
304struct tree_mod_move {
305 int dst_slot;
306 int nr_items;
307};
308
309struct tree_mod_root {
310 u64 logical;
311 u8 level;
312};
313
314struct tree_mod_elem {
315 struct rb_node node;
316 u64 index; /* shifted logical */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200317 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200318 enum mod_log_op op;
319
320 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
321 int slot;
322
323 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
324 u64 generation;
325
326 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
327 struct btrfs_disk_key key;
328 u64 blockptr;
329
330 /* this is used for op == MOD_LOG_MOVE_KEYS */
331 struct tree_mod_move move;
332
333 /* this is used for op == MOD_LOG_ROOT_REPLACE */
334 struct tree_mod_root old_root;
335};
336
Jan Schmidt097b8a72012-06-21 11:08:04 +0200337static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200338{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200339 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200340}
341
Jan Schmidt097b8a72012-06-21 11:08:04 +0200342static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200343{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200344 read_unlock(&fs_info->tree_mod_log_lock);
345}
346
347static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
348{
349 write_lock(&fs_info->tree_mod_log_lock);
350}
351
352static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
353{
354 write_unlock(&fs_info->tree_mod_log_lock);
355}
356
357/*
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000358 * Increment the upper half of tree_mod_seq, set lower half zero.
359 *
360 * Must be called with fs_info->tree_mod_seq_lock held.
361 */
362static inline u64 btrfs_inc_tree_mod_seq_major(struct btrfs_fs_info *fs_info)
363{
364 u64 seq = atomic64_read(&fs_info->tree_mod_seq);
365 seq &= 0xffffffff00000000ull;
366 seq += 1ull << 32;
367 atomic64_set(&fs_info->tree_mod_seq, seq);
368 return seq;
369}
370
371/*
372 * Increment the lower half of tree_mod_seq.
373 *
374 * Must be called with fs_info->tree_mod_seq_lock held. The way major numbers
375 * are generated should not technically require a spin lock here. (Rationale:
376 * incrementing the minor while incrementing the major seq number is between its
377 * atomic64_read and atomic64_set calls doesn't duplicate sequence numbers, it
378 * just returns a unique sequence number as usual.) We have decided to leave
379 * that requirement in here and rethink it once we notice it really imposes a
380 * problem on some workload.
381 */
382static inline u64 btrfs_inc_tree_mod_seq_minor(struct btrfs_fs_info *fs_info)
383{
384 return atomic64_inc_return(&fs_info->tree_mod_seq);
385}
386
387/*
388 * return the last minor in the previous major tree_mod_seq number
389 */
390u64 btrfs_tree_mod_seq_prev(u64 seq)
391{
392 return (seq & 0xffffffff00000000ull) - 1ull;
393}
394
395/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200396 * This adds a new blocker to the tree mod log's blocker list if the @elem
397 * passed does not already have a sequence number set. So when a caller expects
398 * to record tree modifications, it should ensure to set elem->seq to zero
399 * before calling btrfs_get_tree_mod_seq.
400 * Returns a fresh, unused tree log modification sequence number, even if no new
401 * blocker was added.
402 */
403u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
404 struct seq_list *elem)
405{
406 u64 seq;
407
408 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200409 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200410 if (!elem->seq) {
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000411 elem->seq = btrfs_inc_tree_mod_seq_major(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200412 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
413 }
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000414 seq = btrfs_inc_tree_mod_seq_minor(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200415 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200416 tree_mod_log_write_unlock(fs_info);
417
418 return seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200419}
420
421void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
422 struct seq_list *elem)
423{
424 struct rb_root *tm_root;
425 struct rb_node *node;
426 struct rb_node *next;
427 struct seq_list *cur_elem;
428 struct tree_mod_elem *tm;
429 u64 min_seq = (u64)-1;
430 u64 seq_putting = elem->seq;
431
432 if (!seq_putting)
433 return;
434
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200435 spin_lock(&fs_info->tree_mod_seq_lock);
436 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200437 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200438
439 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200440 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200441 if (seq_putting > cur_elem->seq) {
442 /*
443 * blocker with lower sequence number exists, we
444 * cannot remove anything from the log
445 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200446 spin_unlock(&fs_info->tree_mod_seq_lock);
447 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200448 }
449 min_seq = cur_elem->seq;
450 }
451 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200452 spin_unlock(&fs_info->tree_mod_seq_lock);
453
454 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200455 * anything that's lower than the lowest existing (read: blocked)
456 * sequence number can be removed from the tree.
457 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200458 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200459 tm_root = &fs_info->tree_mod_log;
460 for (node = rb_first(tm_root); node; node = next) {
461 next = rb_next(node);
462 tm = container_of(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200463 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200464 continue;
465 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200466 kfree(tm);
467 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200468 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200469}
470
471/*
472 * key order of the log:
473 * index -> sequence
474 *
475 * the index is the shifted logical of the *new* root node for root replace
476 * operations, or the shifted logical of the affected block for all other
477 * operations.
478 */
479static noinline int
480__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
481{
482 struct rb_root *tm_root;
483 struct rb_node **new;
484 struct rb_node *parent = NULL;
485 struct tree_mod_elem *cur;
Josef Bacikc8cc6342013-07-01 16:18:19 -0400486 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200487
Josef Bacikc8cc6342013-07-01 16:18:19 -0400488 BUG_ON(!tm);
489
490 tree_mod_log_write_lock(fs_info);
491 if (list_empty(&fs_info->tree_mod_seq_list)) {
492 tree_mod_log_write_unlock(fs_info);
493 /*
494 * Ok we no longer care about logging modifications, free up tm
495 * and return 0. Any callers shouldn't be using tm after
496 * calling tree_mod_log_insert, but if they do we can just
497 * change this to return a special error code to let the callers
498 * do their own thing.
499 */
500 kfree(tm);
501 return 0;
502 }
503
504 spin_lock(&fs_info->tree_mod_seq_lock);
505 tm->seq = btrfs_inc_tree_mod_seq_minor(fs_info);
506 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200507
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200508 tm_root = &fs_info->tree_mod_log;
509 new = &tm_root->rb_node;
510 while (*new) {
511 cur = container_of(*new, struct tree_mod_elem, node);
512 parent = *new;
513 if (cur->index < tm->index)
514 new = &((*new)->rb_left);
515 else if (cur->index > tm->index)
516 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200517 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200518 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200519 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200520 new = &((*new)->rb_right);
521 else {
Josef Bacikc8cc6342013-07-01 16:18:19 -0400522 ret = -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200523 kfree(tm);
Josef Bacikc8cc6342013-07-01 16:18:19 -0400524 goto out;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200525 }
526 }
527
528 rb_link_node(&tm->node, parent, new);
529 rb_insert_color(&tm->node, tm_root);
Josef Bacikc8cc6342013-07-01 16:18:19 -0400530out:
531 tree_mod_log_write_unlock(fs_info);
532 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200533}
534
Jan Schmidt097b8a72012-06-21 11:08:04 +0200535/*
536 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
537 * returns zero with the tree_mod_log_lock acquired. The caller must hold
538 * this until all tree mod log insertions are recorded in the rb tree and then
539 * call tree_mod_log_write_unlock() to release.
540 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200541static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
542 struct extent_buffer *eb) {
543 smp_mb();
544 if (list_empty(&(fs_info)->tree_mod_seq_list))
545 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200546 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200547 return 1;
548 return 0;
549}
550
Jan Schmidt097b8a72012-06-21 11:08:04 +0200551static inline int
552__tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
553 struct extent_buffer *eb, int slot,
554 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200555{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200556 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200557
Josef Bacikc8cc6342013-07-01 16:18:19 -0400558 tm = kzalloc(sizeof(*tm), flags);
559 if (!tm)
560 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200561
562 tm->index = eb->start >> PAGE_CACHE_SHIFT;
563 if (op != MOD_LOG_KEY_ADD) {
564 btrfs_node_key(eb, &tm->key, slot);
565 tm->blockptr = btrfs_node_blockptr(eb, slot);
566 }
567 tm->op = op;
568 tm->slot = slot;
569 tm->generation = btrfs_node_ptr_generation(eb, slot);
570
Jan Schmidt097b8a72012-06-21 11:08:04 +0200571 return __tree_mod_log_insert(fs_info, tm);
572}
573
574static noinline int
Josef Bacikc8cc6342013-07-01 16:18:19 -0400575tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
576 struct extent_buffer *eb, int slot,
577 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200578{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200579 if (tree_mod_dont_log(fs_info, eb))
580 return 0;
581
Josef Bacikc8cc6342013-07-01 16:18:19 -0400582 return __tree_mod_log_insert_key(fs_info, eb, slot, op, flags);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200583}
584
585static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200586tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
587 struct extent_buffer *eb, int dst_slot, int src_slot,
588 int nr_items, gfp_t flags)
589{
590 struct tree_mod_elem *tm;
591 int ret;
592 int i;
593
Jan Schmidtf3956942012-05-31 15:02:32 +0200594 if (tree_mod_dont_log(fs_info, eb))
595 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200596
Jan Schmidt01763a22012-10-23 15:02:12 +0200597 /*
598 * When we override something during the move, we log these removals.
599 * This can only happen when we move towards the beginning of the
600 * buffer, i.e. dst_slot < src_slot.
601 */
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200602 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
Josef Bacikc8cc6342013-07-01 16:18:19 -0400603 ret = __tree_mod_log_insert_key(fs_info, eb, i + dst_slot,
604 MOD_LOG_KEY_REMOVE_WHILE_MOVING, GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200605 BUG_ON(ret < 0);
606 }
607
Josef Bacikc8cc6342013-07-01 16:18:19 -0400608 tm = kzalloc(sizeof(*tm), flags);
609 if (!tm)
610 return -ENOMEM;
Jan Schmidtf3956942012-05-31 15:02:32 +0200611
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200612 tm->index = eb->start >> PAGE_CACHE_SHIFT;
613 tm->slot = src_slot;
614 tm->move.dst_slot = dst_slot;
615 tm->move.nr_items = nr_items;
616 tm->op = MOD_LOG_MOVE_KEYS;
617
Josef Bacikc8cc6342013-07-01 16:18:19 -0400618 return __tree_mod_log_insert(fs_info, tm);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200619}
620
Jan Schmidt097b8a72012-06-21 11:08:04 +0200621static inline void
622__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
623{
624 int i;
625 u32 nritems;
626 int ret;
627
Chris Masonb12a3b12012-08-07 15:34:49 -0400628 if (btrfs_header_level(eb) == 0)
629 return;
630
Jan Schmidt097b8a72012-06-21 11:08:04 +0200631 nritems = btrfs_header_nritems(eb);
632 for (i = nritems - 1; i >= 0; i--) {
Josef Bacikc8cc6342013-07-01 16:18:19 -0400633 ret = __tree_mod_log_insert_key(fs_info, eb, i,
634 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200635 BUG_ON(ret < 0);
636 }
637}
638
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200639static noinline int
640tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
641 struct extent_buffer *old_root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000642 struct extent_buffer *new_root, gfp_t flags,
643 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200644{
645 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200646
Jan Schmidt097b8a72012-06-21 11:08:04 +0200647 if (tree_mod_dont_log(fs_info, NULL))
648 return 0;
649
Jan Schmidt90f8d622013-04-13 13:19:53 +0000650 if (log_removal)
651 __tree_mod_log_free_eb(fs_info, old_root);
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000652
Josef Bacikc8cc6342013-07-01 16:18:19 -0400653 tm = kzalloc(sizeof(*tm), flags);
654 if (!tm)
655 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200656
657 tm->index = new_root->start >> PAGE_CACHE_SHIFT;
658 tm->old_root.logical = old_root->start;
659 tm->old_root.level = btrfs_header_level(old_root);
660 tm->generation = btrfs_header_generation(old_root);
661 tm->op = MOD_LOG_ROOT_REPLACE;
662
Josef Bacikc8cc6342013-07-01 16:18:19 -0400663 return __tree_mod_log_insert(fs_info, tm);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200664}
665
666static struct tree_mod_elem *
667__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
668 int smallest)
669{
670 struct rb_root *tm_root;
671 struct rb_node *node;
672 struct tree_mod_elem *cur = NULL;
673 struct tree_mod_elem *found = NULL;
674 u64 index = start >> PAGE_CACHE_SHIFT;
675
Jan Schmidt097b8a72012-06-21 11:08:04 +0200676 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200677 tm_root = &fs_info->tree_mod_log;
678 node = tm_root->rb_node;
679 while (node) {
680 cur = container_of(node, struct tree_mod_elem, node);
681 if (cur->index < index) {
682 node = node->rb_left;
683 } else if (cur->index > index) {
684 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200685 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200686 node = node->rb_left;
687 } else if (!smallest) {
688 /* we want the node with the highest seq */
689 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200690 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200691 found = cur;
692 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200693 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200694 /* we want the node with the smallest seq */
695 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200696 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200697 found = cur;
698 node = node->rb_right;
699 } else {
700 found = cur;
701 break;
702 }
703 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200704 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200705
706 return found;
707}
708
709/*
710 * this returns the element from the log with the smallest time sequence
711 * value that's in the log (the oldest log item). any element with a time
712 * sequence lower than min_seq will be ignored.
713 */
714static struct tree_mod_elem *
715tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
716 u64 min_seq)
717{
718 return __tree_mod_log_search(fs_info, start, min_seq, 1);
719}
720
721/*
722 * this returns the element from the log with the largest time sequence
723 * value that's in the log (the most recent log item). any element with
724 * a time sequence lower than min_seq will be ignored.
725 */
726static struct tree_mod_elem *
727tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
728{
729 return __tree_mod_log_search(fs_info, start, min_seq, 0);
730}
731
Jan Schmidt097b8a72012-06-21 11:08:04 +0200732static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200733tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
734 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000735 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200736{
737 int ret;
738 int i;
739
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200740 if (tree_mod_dont_log(fs_info, NULL))
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200741 return;
742
Josef Bacikc8cc6342013-07-01 16:18:19 -0400743 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200744 return;
745
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200746 for (i = 0; i < nr_items; i++) {
Josef Bacikc8cc6342013-07-01 16:18:19 -0400747 ret = __tree_mod_log_insert_key(fs_info, src,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000748 i + src_offset,
Josef Bacikc8cc6342013-07-01 16:18:19 -0400749 MOD_LOG_KEY_REMOVE, GFP_NOFS);
Jan Schmidt90f8d622013-04-13 13:19:53 +0000750 BUG_ON(ret < 0);
Josef Bacikc8cc6342013-07-01 16:18:19 -0400751 ret = __tree_mod_log_insert_key(fs_info, dst,
Jan Schmidt097b8a72012-06-21 11:08:04 +0200752 i + dst_offset,
Josef Bacikc8cc6342013-07-01 16:18:19 -0400753 MOD_LOG_KEY_ADD,
754 GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200755 BUG_ON(ret < 0);
756 }
757}
758
759static inline void
760tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
761 int dst_offset, int src_offset, int nr_items)
762{
763 int ret;
764 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
765 nr_items, GFP_NOFS);
766 BUG_ON(ret < 0);
767}
768
Jan Schmidt097b8a72012-06-21 11:08:04 +0200769static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200770tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000771 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200772{
773 int ret;
774
Josef Bacikc8cc6342013-07-01 16:18:19 -0400775 ret = __tree_mod_log_insert_key(fs_info, eb, slot,
776 MOD_LOG_KEY_REPLACE,
777 atomic ? GFP_ATOMIC : GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200778 BUG_ON(ret < 0);
779}
780
Jan Schmidt097b8a72012-06-21 11:08:04 +0200781static noinline void
782tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200783{
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200784 if (tree_mod_dont_log(fs_info, eb))
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200785 return;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200786 __tree_mod_log_free_eb(fs_info, eb);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200787}
788
Jan Schmidt097b8a72012-06-21 11:08:04 +0200789static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200790tree_mod_log_set_root_pointer(struct btrfs_root *root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000791 struct extent_buffer *new_root_node,
792 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200793{
794 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200795 ret = tree_mod_log_insert_root(root->fs_info, root->node,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000796 new_root_node, GFP_NOFS, log_removal);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200797 BUG_ON(ret < 0);
798}
799
Chris Masond352ac62008-09-29 15:18:18 -0400800/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400801 * check if the tree block can be shared by multiple trees
802 */
803int btrfs_block_can_be_shared(struct btrfs_root *root,
804 struct extent_buffer *buf)
805{
806 /*
807 * Tree blocks not in refernece counted trees and tree roots
808 * are never shared. If a block was allocated after the last
809 * snapshot and the block was not allocated by tree relocation,
810 * we know the block is not shared.
811 */
812 if (root->ref_cows &&
813 buf != root->node && buf != root->commit_root &&
814 (btrfs_header_generation(buf) <=
815 btrfs_root_last_snapshot(&root->root_item) ||
816 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
817 return 1;
818#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
819 if (root->ref_cows &&
820 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
821 return 1;
822#endif
823 return 0;
824}
825
826static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
827 struct btrfs_root *root,
828 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400829 struct extent_buffer *cow,
830 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400831{
832 u64 refs;
833 u64 owner;
834 u64 flags;
835 u64 new_flags = 0;
836 int ret;
837
838 /*
839 * Backrefs update rules:
840 *
841 * Always use full backrefs for extent pointers in tree block
842 * allocated by tree relocation.
843 *
844 * If a shared tree block is no longer referenced by its owner
845 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
846 * use full backrefs for extent pointers in tree block.
847 *
848 * If a tree block is been relocating
849 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
850 * use full backrefs for extent pointers in tree block.
851 * The reason for this is some operations (such as drop tree)
852 * are only allowed for blocks use full backrefs.
853 */
854
855 if (btrfs_block_can_be_shared(root, buf)) {
856 ret = btrfs_lookup_extent_info(trans, root, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -0500857 btrfs_header_level(buf), 1,
858 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700859 if (ret)
860 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -0700861 if (refs == 0) {
862 ret = -EROFS;
863 btrfs_std_error(root->fs_info, ret);
864 return ret;
865 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400866 } else {
867 refs = 1;
868 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
869 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
870 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
871 else
872 flags = 0;
873 }
874
875 owner = btrfs_header_owner(buf);
876 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
877 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
878
879 if (refs > 1) {
880 if ((owner == root->root_key.objectid ||
881 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
882 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200883 ret = btrfs_inc_ref(trans, root, buf, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100884 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400885
886 if (root->root_key.objectid ==
887 BTRFS_TREE_RELOC_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200888 ret = btrfs_dec_ref(trans, root, buf, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100889 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200890 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100891 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400892 }
893 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
894 } else {
895
896 if (root->root_key.objectid ==
897 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200898 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400899 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200900 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100901 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400902 }
903 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -0400904 int level = btrfs_header_level(buf);
905
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400906 ret = btrfs_set_disk_extent_flags(trans, root,
907 buf->start,
908 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -0400909 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700910 if (ret)
911 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400912 }
913 } else {
914 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
915 if (root->root_key.objectid ==
916 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200917 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400918 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200919 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100920 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200921 ret = btrfs_dec_ref(trans, root, buf, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100922 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400923 }
924 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400925 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400926 }
927 return 0;
928}
929
930/*
Chris Masond3977122009-01-05 21:25:51 -0500931 * does the dirty work in cow of a single block. The parent block (if
932 * supplied) is updated to point to the new cow copy. The new buffer is marked
933 * dirty and returned locked. If you modify the block it needs to be marked
934 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400935 *
936 * search_start -- an allocation hint for the new block
937 *
Chris Masond3977122009-01-05 21:25:51 -0500938 * empty_size -- a hint that you plan on doing more cow. This is the size in
939 * bytes the allocator should try to find free next to the block it returns.
940 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400941 */
Chris Masond3977122009-01-05 21:25:51 -0500942static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400943 struct btrfs_root *root,
944 struct extent_buffer *buf,
945 struct extent_buffer *parent, int parent_slot,
946 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400947 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400948{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400950 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -0700951 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -0400952 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -0400953 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400954 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -0400955
Chris Mason925baed2008-06-25 16:01:30 -0400956 if (*cow_ret == buf)
957 unlock_orig = 1;
958
Chris Masonb9447ef82009-03-09 11:45:38 -0400959 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -0400960
Chris Mason7bb86312007-12-11 09:25:06 -0500961 WARN_ON(root->ref_cows && trans->transid !=
962 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -0400963 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -0400964
Chris Mason7bb86312007-12-11 09:25:06 -0500965 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -0400966
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400967 if (level == 0)
968 btrfs_item_key(buf, &disk_key, 0);
969 else
970 btrfs_node_key(buf, &disk_key, 0);
971
972 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
973 if (parent)
974 parent_start = parent->start;
975 else
976 parent_start = 0;
977 } else
978 parent_start = 0;
979
980 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
981 root->root_key.objectid, &disk_key,
Jan Schmidt5581a512012-05-16 17:04:52 +0200982 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -0400983 if (IS_ERR(cow))
984 return PTR_ERR(cow);
985
Chris Masonb4ce94d2009-02-04 09:25:08 -0500986 /* cow is set to blocking by btrfs_init_new_buffer */
987
Chris Mason5f39d392007-10-15 16:14:19 -0400988 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -0400989 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -0400990 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400991 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
992 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
993 BTRFS_HEADER_FLAG_RELOC);
994 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
995 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
996 else
997 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -0400998
Geert Uytterhoevenfba6aa72013-08-20 13:20:14 +0200999 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(cow),
Yan Zheng2b820322008-11-17 21:11:30 -05001000 BTRFS_FSID_SIZE);
1001
Mark Fashehbe1a5562011-08-08 13:20:18 -07001002 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001003 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001004 btrfs_abort_transaction(trans, root, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001005 return ret;
1006 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001007
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001008 if (root->ref_cows) {
1009 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
1010 if (ret)
1011 return ret;
1012 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001013
Chris Mason6702ed42007-08-07 16:15:09 -04001014 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001015 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001016 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1017 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1018 parent_start = buf->start;
1019 else
1020 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001021
Chris Mason5f39d392007-10-15 16:14:19 -04001022 extent_buffer_get(cow);
Jan Schmidt90f8d622013-04-13 13:19:53 +00001023 tree_mod_log_set_root_pointer(root, cow, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001024 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001025
Yan, Zhengf0486c62010-05-16 10:46:25 -04001026 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001027 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001028 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001029 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001030 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001031 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1032 parent_start = parent->start;
1033 else
1034 parent_start = 0;
1035
1036 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001037 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001038 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001039 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001040 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001041 btrfs_set_node_ptr_generation(parent, parent_slot,
1042 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001043 btrfs_mark_buffer_dirty(parent);
Josef Bacik7fb7d76f2013-07-01 16:10:16 -04001044 if (last_ref)
1045 tree_mod_log_free_eb(root->fs_info, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001046 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001047 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001048 }
Chris Mason925baed2008-06-25 16:01:30 -04001049 if (unlock_orig)
1050 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001051 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001052 btrfs_mark_buffer_dirty(cow);
1053 *cow_ret = cow;
1054 return 0;
1055}
1056
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001057/*
1058 * returns the logical address of the oldest predecessor of the given root.
1059 * entries older than time_seq are ignored.
1060 */
1061static struct tree_mod_elem *
1062__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
Jan Schmidt30b04632013-04-13 13:19:54 +00001063 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001064{
1065 struct tree_mod_elem *tm;
1066 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001067 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001068 int looped = 0;
1069
1070 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001071 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001072
1073 /*
1074 * the very last operation that's logged for a root is the replacement
1075 * operation (if it is replaced at all). this has the index of the *new*
1076 * root, making it the very first operation that's logged for this root.
1077 */
1078 while (1) {
1079 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1080 time_seq);
1081 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001082 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001083 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001084 * if there are no tree operation for the oldest root, we simply
1085 * return it. this should only happen if that (old) root is at
1086 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001087 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001088 if (!tm)
1089 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001090
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001091 /*
1092 * if there's an operation that's not a root replacement, we
1093 * found the oldest version of our root. normally, we'll find a
1094 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1095 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001096 if (tm->op != MOD_LOG_ROOT_REPLACE)
1097 break;
1098
1099 found = tm;
1100 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001101 looped = 1;
1102 }
1103
Jan Schmidta95236d2012-06-05 16:41:24 +02001104 /* if there's no old root to return, return what we found instead */
1105 if (!found)
1106 found = tm;
1107
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001108 return found;
1109}
1110
1111/*
1112 * tm is a pointer to the first operation to rewind within eb. then, all
1113 * previous operations will be rewinded (until we reach something older than
1114 * time_seq).
1115 */
1116static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001117__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1118 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001119{
1120 u32 n;
1121 struct rb_node *next;
1122 struct tree_mod_elem *tm = first_tm;
1123 unsigned long o_dst;
1124 unsigned long o_src;
1125 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1126
1127 n = btrfs_header_nritems(eb);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001128 tree_mod_log_read_lock(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001129 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001130 /*
1131 * all the operations are recorded with the operator used for
1132 * the modification. as we're going backwards, we do the
1133 * opposite of each operation here.
1134 */
1135 switch (tm->op) {
1136 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1137 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001138 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001139 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001140 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001141 btrfs_set_node_key(eb, &tm->key, tm->slot);
1142 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1143 btrfs_set_node_ptr_generation(eb, tm->slot,
1144 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001145 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001146 break;
1147 case MOD_LOG_KEY_REPLACE:
1148 BUG_ON(tm->slot >= n);
1149 btrfs_set_node_key(eb, &tm->key, tm->slot);
1150 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1151 btrfs_set_node_ptr_generation(eb, tm->slot,
1152 tm->generation);
1153 break;
1154 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001155 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001156 n--;
1157 break;
1158 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001159 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1160 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1161 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001162 tm->move.nr_items * p_size);
1163 break;
1164 case MOD_LOG_ROOT_REPLACE:
1165 /*
1166 * this operation is special. for roots, this must be
1167 * handled explicitly before rewinding.
1168 * for non-roots, this operation may exist if the node
1169 * was a root: root A -> child B; then A gets empty and
1170 * B is promoted to the new root. in the mod log, we'll
1171 * have a root-replace operation for B, a tree block
1172 * that is no root. we simply ignore that operation.
1173 */
1174 break;
1175 }
1176 next = rb_next(&tm->node);
1177 if (!next)
1178 break;
1179 tm = container_of(next, struct tree_mod_elem, node);
1180 if (tm->index != first_tm->index)
1181 break;
1182 }
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001183 tree_mod_log_read_unlock(fs_info);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001184 btrfs_set_header_nritems(eb, n);
1185}
1186
Jan Schmidt47fb0912013-04-13 13:19:55 +00001187/*
1188 * Called with eb read locked. If the buffer cannot be rewinded, the same buffer
1189 * is returned. If rewind operations happen, a fresh buffer is returned. The
1190 * returned buffer is always read-locked. If the returned buffer is not the
1191 * input buffer, the lock on the input buffer is released and the input buffer
1192 * is freed (its refcount is decremented).
1193 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001194static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001195tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1196 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001197{
1198 struct extent_buffer *eb_rewin;
1199 struct tree_mod_elem *tm;
1200
1201 if (!time_seq)
1202 return eb;
1203
1204 if (btrfs_header_level(eb) == 0)
1205 return eb;
1206
1207 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1208 if (!tm)
1209 return eb;
1210
Josef Bacik9ec72672013-08-07 16:57:23 -04001211 btrfs_set_path_blocking(path);
1212 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1213
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001214 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1215 BUG_ON(tm->slot != 0);
1216 eb_rewin = alloc_dummy_extent_buffer(eb->start,
1217 fs_info->tree_root->nodesize);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001218 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001219 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001220 free_extent_buffer(eb);
1221 return NULL;
1222 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001223 btrfs_set_header_bytenr(eb_rewin, eb->start);
1224 btrfs_set_header_backref_rev(eb_rewin,
1225 btrfs_header_backref_rev(eb));
1226 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001227 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001228 } else {
1229 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001230 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001231 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001232 free_extent_buffer(eb);
1233 return NULL;
1234 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001235 }
1236
Josef Bacik9ec72672013-08-07 16:57:23 -04001237 btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1238 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001239 free_extent_buffer(eb);
1240
Jan Schmidt47fb0912013-04-13 13:19:55 +00001241 extent_buffer_get(eb_rewin);
1242 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001243 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001244 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001245 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001246
1247 return eb_rewin;
1248}
1249
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001250/*
1251 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1252 * value. If there are no changes, the current root->root_node is returned. If
1253 * anything changed in between, there's a fresh buffer allocated on which the
1254 * rewind operations are done. In any case, the returned buffer is read locked.
1255 * Returns NULL on error (with no locks held).
1256 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001257static inline struct extent_buffer *
1258get_old_root(struct btrfs_root *root, u64 time_seq)
1259{
1260 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001261 struct extent_buffer *eb = NULL;
1262 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001263 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001264 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001265 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001266 u64 logical;
Jan Schmidt834328a2012-10-23 11:27:33 +02001267 u32 blocksize;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001268
Jan Schmidt30b04632013-04-13 13:19:54 +00001269 eb_root = btrfs_read_lock_root_node(root);
1270 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001271 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001272 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001273
Jan Schmidta95236d2012-06-05 16:41:24 +02001274 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1275 old_root = &tm->old_root;
1276 old_generation = tm->generation;
1277 logical = old_root->logical;
1278 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001279 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001280 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001281
Jan Schmidta95236d2012-06-05 16:41:24 +02001282 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001283 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001284 btrfs_tree_read_unlock(eb_root);
1285 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001286 blocksize = btrfs_level_size(root, old_root->level);
Liu Bo7bfdcf72012-10-25 07:30:19 -06001287 old = read_tree_block(root, logical, blocksize, 0);
Josef Bacik416bc652013-04-23 14:17:42 -04001288 if (!old || !extent_buffer_uptodate(old)) {
1289 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001290 pr_warn("btrfs: failed to read tree block %llu from get_old_root\n",
1291 logical);
1292 WARN_ON(1);
1293 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001294 eb = btrfs_clone_extent_buffer(old);
1295 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001296 }
1297 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001298 btrfs_tree_read_unlock(eb_root);
1299 free_extent_buffer(eb_root);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001300 eb = alloc_dummy_extent_buffer(logical, root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001301 } else {
Josef Bacik9ec72672013-08-07 16:57:23 -04001302 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
Jan Schmidt30b04632013-04-13 13:19:54 +00001303 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001304 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001305 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001306 }
1307
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001308 if (!eb)
1309 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001310 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001311 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001312 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001313 btrfs_set_header_bytenr(eb, eb->start);
1314 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001315 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001316 btrfs_set_header_level(eb, old_root->level);
1317 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001318 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001319 if (tm)
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001320 __tree_mod_log_rewind(root->fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001321 else
1322 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001323 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001324
1325 return eb;
1326}
1327
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001328int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1329{
1330 struct tree_mod_elem *tm;
1331 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001332 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001333
Jan Schmidt30b04632013-04-13 13:19:54 +00001334 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001335 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1336 level = tm->old_root.level;
1337 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001338 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001339 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001340 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001341
1342 return level;
1343}
1344
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001345static inline int should_cow_block(struct btrfs_trans_handle *trans,
1346 struct btrfs_root *root,
1347 struct extent_buffer *buf)
1348{
Liu Bof1ebcc72011-11-14 20:48:06 -05001349 /* ensure we can see the force_cow */
1350 smp_rmb();
1351
1352 /*
1353 * We do not need to cow a block if
1354 * 1) this block is not created or changed in this transaction;
1355 * 2) this block does not belong to TREE_RELOC tree;
1356 * 3) the root is not forced COW.
1357 *
1358 * What is forced COW:
1359 * when we create snapshot during commiting the transaction,
1360 * after we've finished coping src root, we must COW the shared
1361 * block to ensure the metadata consistency.
1362 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001363 if (btrfs_header_generation(buf) == trans->transid &&
1364 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1365 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001366 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
1367 !root->force_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001368 return 0;
1369 return 1;
1370}
1371
Chris Masond352ac62008-09-29 15:18:18 -04001372/*
1373 * cows a single block, see __btrfs_cow_block for the real work.
1374 * This version of it has extra checks so that a block isn't cow'd more than
1375 * once per transaction, as long as it hasn't been written yet
1376 */
Chris Masond3977122009-01-05 21:25:51 -05001377noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001378 struct btrfs_root *root, struct extent_buffer *buf,
1379 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001380 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001381{
Chris Mason6702ed42007-08-07 16:15:09 -04001382 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001383 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001384
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001385 if (trans->transaction != root->fs_info->running_transaction)
1386 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001387 trans->transid,
Chris Masonccd467d2007-06-28 15:57:36 -04001388 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001389
1390 if (trans->transid != root->fs_info->generation)
1391 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001392 trans->transid, root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001393
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001394 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -05001395 *cow_ret = buf;
1396 return 0;
1397 }
Chris Masonc4876852009-02-04 09:24:25 -05001398
Chris Mason0b86a832008-03-24 15:01:56 -04001399 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001400
1401 if (parent)
1402 btrfs_set_lock_blocking(parent);
1403 btrfs_set_lock_blocking(buf);
1404
Chris Masonf510cfe2007-10-15 16:14:48 -04001405 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001406 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001407
1408 trace_btrfs_cow_block(root, buf, *cow_ret);
1409
Chris Masonf510cfe2007-10-15 16:14:48 -04001410 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001411}
1412
Chris Masond352ac62008-09-29 15:18:18 -04001413/*
1414 * helper function for defrag to decide if two blocks pointed to by a
1415 * node are actually close by
1416 */
Chris Mason6b800532007-10-15 16:17:34 -04001417static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001418{
Chris Mason6b800532007-10-15 16:17:34 -04001419 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001420 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001421 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001422 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001423 return 0;
1424}
1425
Chris Mason081e9572007-11-06 10:26:24 -05001426/*
1427 * compare two keys in a memcmp fashion
1428 */
1429static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1430{
1431 struct btrfs_key k1;
1432
1433 btrfs_disk_key_to_cpu(&k1, disk);
1434
Diego Calleja20736ab2009-07-24 11:06:52 -04001435 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001436}
1437
Josef Bacikf3465ca2008-11-12 14:19:50 -05001438/*
1439 * same as comp_keys only with two btrfs_key's
1440 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001441int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001442{
1443 if (k1->objectid > k2->objectid)
1444 return 1;
1445 if (k1->objectid < k2->objectid)
1446 return -1;
1447 if (k1->type > k2->type)
1448 return 1;
1449 if (k1->type < k2->type)
1450 return -1;
1451 if (k1->offset > k2->offset)
1452 return 1;
1453 if (k1->offset < k2->offset)
1454 return -1;
1455 return 0;
1456}
Chris Mason081e9572007-11-06 10:26:24 -05001457
Chris Masond352ac62008-09-29 15:18:18 -04001458/*
1459 * this is used by the defrag code to go through all the
1460 * leaves pointed to by a node and reallocate them so that
1461 * disk order is close to key order
1462 */
Chris Mason6702ed42007-08-07 16:15:09 -04001463int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001464 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001465 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001466 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001467{
Chris Mason6b800532007-10-15 16:17:34 -04001468 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001469 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001470 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001471 u64 search_start = *last_ret;
1472 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001473 u64 other;
1474 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001475 int end_slot;
1476 int i;
1477 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001478 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001479 int uptodate;
1480 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001481 int progress_passed = 0;
1482 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001483
Chris Mason5708b952007-10-25 15:43:18 -04001484 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001485
Julia Lawall6c1500f2012-11-03 20:30:18 +00001486 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1487 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001488
Chris Mason6b800532007-10-15 16:17:34 -04001489 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -04001490 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -04001491 end_slot = parent_nritems;
1492
1493 if (parent_nritems == 1)
1494 return 0;
1495
Chris Masonb4ce94d2009-02-04 09:25:08 -05001496 btrfs_set_lock_blocking(parent);
1497
Chris Mason6702ed42007-08-07 16:15:09 -04001498 for (i = start_slot; i < end_slot; i++) {
1499 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001500
Chris Mason081e9572007-11-06 10:26:24 -05001501 btrfs_node_key(parent, &disk_key, i);
1502 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1503 continue;
1504
1505 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001506 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001507 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001508 if (last_block == 0)
1509 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001510
Chris Mason6702ed42007-08-07 16:15:09 -04001511 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001512 other = btrfs_node_blockptr(parent, i - 1);
1513 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001514 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001515 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -04001516 other = btrfs_node_blockptr(parent, i + 1);
1517 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001518 }
Chris Masone9d0b132007-08-10 14:06:19 -04001519 if (close) {
1520 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001521 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001522 }
Chris Mason6702ed42007-08-07 16:15:09 -04001523
Chris Mason6b800532007-10-15 16:17:34 -04001524 cur = btrfs_find_tree_block(root, blocknr, blocksize);
1525 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001526 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001527 else
1528 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001529 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001530 if (!cur) {
1531 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -04001532 blocksize, gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001533 if (!cur || !extent_buffer_uptodate(cur)) {
1534 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001535 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001536 }
Chris Mason6b800532007-10-15 16:17:34 -04001537 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001538 err = btrfs_read_buffer(cur, gen);
1539 if (err) {
1540 free_extent_buffer(cur);
1541 return err;
1542 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001543 }
Chris Mason6702ed42007-08-07 16:15:09 -04001544 }
Chris Masone9d0b132007-08-10 14:06:19 -04001545 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001546 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001547
Chris Masone7a84562008-06-25 16:01:31 -04001548 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001549 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001550 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001551 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001552 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001553 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001554 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001555 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001556 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001557 break;
Yan252c38f2007-08-29 09:11:44 -04001558 }
Chris Masone7a84562008-06-25 16:01:31 -04001559 search_start = cur->start;
1560 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001561 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001562 btrfs_tree_unlock(cur);
1563 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001564 }
1565 return err;
1566}
1567
Chris Mason74123bd2007-02-02 11:05:29 -05001568/*
1569 * The leaf data grows from end-to-front in the node.
1570 * this returns the address of the start of the last item,
1571 * which is the stop of the leaf data stack
1572 */
Chris Mason123abc82007-03-14 14:14:43 -04001573static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001574 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001575{
Chris Mason5f39d392007-10-15 16:14:19 -04001576 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001577 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -04001578 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001579 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001580}
1581
Chris Masonaa5d6be2007-02-28 16:35:06 -05001582
Chris Mason74123bd2007-02-02 11:05:29 -05001583/*
Chris Mason5f39d392007-10-15 16:14:19 -04001584 * search for key in the extent_buffer. The items start at offset p,
1585 * and they are item_size apart. There are 'max' items in p.
1586 *
Chris Mason74123bd2007-02-02 11:05:29 -05001587 * the slot in the array is returned via slot, and it points to
1588 * the place where you would insert key if it is not found in
1589 * the array.
1590 *
1591 * slot may point to max if the key is bigger than all of the keys
1592 */
Chris Masone02119d2008-09-05 16:13:11 -04001593static noinline int generic_bin_search(struct extent_buffer *eb,
1594 unsigned long p,
1595 int item_size, struct btrfs_key *key,
1596 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001597{
1598 int low = 0;
1599 int high = max;
1600 int mid;
1601 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001602 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001603 struct btrfs_disk_key unaligned;
1604 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001605 char *kaddr = NULL;
1606 unsigned long map_start = 0;
1607 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001608 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001609
Chris Masond3977122009-01-05 21:25:51 -05001610 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001611 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001612 offset = p + mid * item_size;
1613
Chris Masona6591712011-07-19 12:04:14 -04001614 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001615 (offset + sizeof(struct btrfs_disk_key)) >
1616 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001617
1618 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001619 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001620 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001621
Chris Mason479965d2007-10-15 16:14:27 -04001622 if (!err) {
1623 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1624 map_start);
1625 } else {
1626 read_extent_buffer(eb, &unaligned,
1627 offset, sizeof(unaligned));
1628 tmp = &unaligned;
1629 }
1630
Chris Mason5f39d392007-10-15 16:14:19 -04001631 } else {
1632 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1633 map_start);
1634 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001635 ret = comp_keys(tmp, key);
1636
1637 if (ret < 0)
1638 low = mid + 1;
1639 else if (ret > 0)
1640 high = mid;
1641 else {
1642 *slot = mid;
1643 return 0;
1644 }
1645 }
1646 *slot = low;
1647 return 1;
1648}
1649
Chris Mason97571fd2007-02-24 13:39:08 -05001650/*
1651 * simple bin_search frontend that does the right thing for
1652 * leaves vs nodes
1653 */
Chris Mason5f39d392007-10-15 16:14:19 -04001654static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1655 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001656{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001657 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001658 return generic_bin_search(eb,
1659 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001660 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001661 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001662 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001663 else
Chris Mason5f39d392007-10-15 16:14:19 -04001664 return generic_bin_search(eb,
1665 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001666 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001667 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001668 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001669}
1670
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001671int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1672 int level, int *slot)
1673{
1674 return bin_search(eb, key, level, slot);
1675}
1676
Yan, Zhengf0486c62010-05-16 10:46:25 -04001677static void root_add_used(struct btrfs_root *root, u32 size)
1678{
1679 spin_lock(&root->accounting_lock);
1680 btrfs_set_root_used(&root->root_item,
1681 btrfs_root_used(&root->root_item) + size);
1682 spin_unlock(&root->accounting_lock);
1683}
1684
1685static void root_sub_used(struct btrfs_root *root, u32 size)
1686{
1687 spin_lock(&root->accounting_lock);
1688 btrfs_set_root_used(&root->root_item,
1689 btrfs_root_used(&root->root_item) - size);
1690 spin_unlock(&root->accounting_lock);
1691}
1692
Chris Masond352ac62008-09-29 15:18:18 -04001693/* given a node and slot number, this reads the blocks it points to. The
1694 * extent buffer is returned with a reference taken (but unlocked).
1695 * NULL is returned on error.
1696 */
Chris Masone02119d2008-09-05 16:13:11 -04001697static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001698 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001699{
Chris Masonca7a79a2008-05-12 12:59:19 -04001700 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001701 struct extent_buffer *eb;
1702
Chris Masonbb803952007-03-01 12:04:21 -05001703 if (slot < 0)
1704 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001705 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -05001706 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -04001707
1708 BUG_ON(level == 0);
1709
Josef Bacik416bc652013-04-23 14:17:42 -04001710 eb = read_tree_block(root, btrfs_node_blockptr(parent, slot),
1711 btrfs_level_size(root, level - 1),
1712 btrfs_node_ptr_generation(parent, slot));
1713 if (eb && !extent_buffer_uptodate(eb)) {
1714 free_extent_buffer(eb);
1715 eb = NULL;
1716 }
1717
1718 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001719}
1720
Chris Masond352ac62008-09-29 15:18:18 -04001721/*
1722 * node level balancing, used to make sure nodes are in proper order for
1723 * item deletion. We balance from the top down, so we have to make sure
1724 * that a deletion won't leave an node completely empty later on.
1725 */
Chris Masone02119d2008-09-05 16:13:11 -04001726static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001727 struct btrfs_root *root,
1728 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001729{
Chris Mason5f39d392007-10-15 16:14:19 -04001730 struct extent_buffer *right = NULL;
1731 struct extent_buffer *mid;
1732 struct extent_buffer *left = NULL;
1733 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001734 int ret = 0;
1735 int wret;
1736 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001737 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001738 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001739
1740 if (level == 0)
1741 return 0;
1742
Chris Mason5f39d392007-10-15 16:14:19 -04001743 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001744
Chris Masonbd681512011-07-16 15:23:14 -04001745 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1746 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001747 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1748
Chris Mason1d4f8a02007-03-13 09:28:32 -04001749 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001750
Li Zefana05a9bb2011-09-06 16:55:34 +08001751 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001752 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001753 pslot = path->slots[level + 1];
1754 }
Chris Masonbb803952007-03-01 12:04:21 -05001755
Chris Mason40689472007-03-17 14:29:23 -04001756 /*
1757 * deal with the case where there is only one pointer in the root
1758 * by promoting the node below to a root
1759 */
Chris Mason5f39d392007-10-15 16:14:19 -04001760 if (!parent) {
1761 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001762
Chris Mason5f39d392007-10-15 16:14:19 -04001763 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001764 return 0;
1765
1766 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001767 child = read_node_slot(root, mid, 0);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001768 if (!child) {
1769 ret = -EROFS;
1770 btrfs_std_error(root->fs_info, ret);
1771 goto enospc;
1772 }
1773
Chris Mason925baed2008-06-25 16:01:30 -04001774 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001775 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001776 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001777 if (ret) {
1778 btrfs_tree_unlock(child);
1779 free_extent_buffer(child);
1780 goto enospc;
1781 }
Yan2f375ab2008-02-01 14:58:07 -05001782
Jan Schmidt90f8d622013-04-13 13:19:53 +00001783 tree_mod_log_set_root_pointer(root, child, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001784 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001785
Chris Mason0b86a832008-03-24 15:01:56 -04001786 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001787 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001788
Chris Mason925baed2008-06-25 16:01:30 -04001789 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001790 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001791 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001792 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001793 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001794 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001795
1796 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001797 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001798 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001799 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001800 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001801 }
Chris Mason5f39d392007-10-15 16:14:19 -04001802 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001803 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001804 return 0;
1805
Chris Mason5f39d392007-10-15 16:14:19 -04001806 left = read_node_slot(root, parent, pslot - 1);
1807 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001808 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001809 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001810 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001811 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001812 if (wret) {
1813 ret = wret;
1814 goto enospc;
1815 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001816 }
Chris Mason5f39d392007-10-15 16:14:19 -04001817 right = read_node_slot(root, parent, pslot + 1);
1818 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001819 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001820 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001821 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001822 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001823 if (wret) {
1824 ret = wret;
1825 goto enospc;
1826 }
1827 }
1828
1829 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001830 if (left) {
1831 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001832 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001833 if (wret < 0)
1834 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001835 }
Chris Mason79f95c82007-03-01 15:16:26 -05001836
1837 /*
1838 * then try to empty the right most buffer into the middle
1839 */
Chris Mason5f39d392007-10-15 16:14:19 -04001840 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001841 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001842 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001843 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001844 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001845 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001846 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001847 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001848 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001849 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001850 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001851 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001852 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001853 struct btrfs_disk_key right_key;
1854 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02001855 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00001856 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001857 btrfs_set_node_key(parent, &right_key, pslot + 1);
1858 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001859 }
1860 }
Chris Mason5f39d392007-10-15 16:14:19 -04001861 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001862 /*
1863 * we're not allowed to leave a node with one item in the
1864 * tree during a delete. A deletion from lower in the tree
1865 * could try to delete the only pointer in this node.
1866 * So, pull some keys from the left.
1867 * There has to be a left pointer at this point because
1868 * otherwise we would have pulled some pointers from the
1869 * right
1870 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07001871 if (!left) {
1872 ret = -EROFS;
1873 btrfs_std_error(root->fs_info, ret);
1874 goto enospc;
1875 }
Chris Mason5f39d392007-10-15 16:14:19 -04001876 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001877 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001878 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001879 goto enospc;
1880 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001881 if (wret == 1) {
1882 wret = push_node_left(trans, root, left, mid, 1);
1883 if (wret < 0)
1884 ret = wret;
1885 }
Chris Mason79f95c82007-03-01 15:16:26 -05001886 BUG_ON(wret == 1);
1887 }
Chris Mason5f39d392007-10-15 16:14:19 -04001888 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001889 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001890 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001891 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001892 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001893 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001894 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001895 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001896 } else {
1897 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001898 struct btrfs_disk_key mid_key;
1899 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00001900 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02001901 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001902 btrfs_set_node_key(parent, &mid_key, pslot);
1903 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001904 }
Chris Masonbb803952007-03-01 12:04:21 -05001905
Chris Mason79f95c82007-03-01 15:16:26 -05001906 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001907 if (left) {
1908 if (btrfs_header_nritems(left) > orig_slot) {
1909 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001910 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001911 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001912 path->slots[level + 1] -= 1;
1913 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001914 if (mid) {
1915 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001916 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001917 }
Chris Masonbb803952007-03-01 12:04:21 -05001918 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001919 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001920 path->slots[level] = orig_slot;
1921 }
1922 }
Chris Mason79f95c82007-03-01 15:16:26 -05001923 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04001924 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001925 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001926 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001927enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001928 if (right) {
1929 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001930 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001931 }
1932 if (left) {
1933 if (path->nodes[level] != left)
1934 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001935 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001936 }
Chris Masonbb803952007-03-01 12:04:21 -05001937 return ret;
1938}
1939
Chris Masond352ac62008-09-29 15:18:18 -04001940/* Node balancing for insertion. Here we only split or push nodes around
1941 * when they are completely full. This is also done top down, so we
1942 * have to be pessimistic.
1943 */
Chris Masond3977122009-01-05 21:25:51 -05001944static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001945 struct btrfs_root *root,
1946 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001947{
Chris Mason5f39d392007-10-15 16:14:19 -04001948 struct extent_buffer *right = NULL;
1949 struct extent_buffer *mid;
1950 struct extent_buffer *left = NULL;
1951 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001952 int ret = 0;
1953 int wret;
1954 int pslot;
1955 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04001956
1957 if (level == 0)
1958 return 1;
1959
Chris Mason5f39d392007-10-15 16:14:19 -04001960 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001961 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04001962
Li Zefana05a9bb2011-09-06 16:55:34 +08001963 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001964 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001965 pslot = path->slots[level + 1];
1966 }
Chris Masone66f7092007-04-20 13:16:02 -04001967
Chris Mason5f39d392007-10-15 16:14:19 -04001968 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04001969 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04001970
Chris Mason5f39d392007-10-15 16:14:19 -04001971 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04001972
1973 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001974 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04001975 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04001976
1977 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001978 btrfs_set_lock_blocking(left);
1979
Chris Mason5f39d392007-10-15 16:14:19 -04001980 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04001981 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
1982 wret = 1;
1983 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001984 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001985 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001986 if (ret)
1987 wret = 1;
1988 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04001989 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04001990 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001991 }
Chris Mason33ade1f2007-04-20 13:48:57 -04001992 }
Chris Masone66f7092007-04-20 13:16:02 -04001993 if (wret < 0)
1994 ret = wret;
1995 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001996 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04001997 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04001998 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02001999 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002000 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002001 btrfs_set_node_key(parent, &disk_key, pslot);
2002 btrfs_mark_buffer_dirty(parent);
2003 if (btrfs_header_nritems(left) > orig_slot) {
2004 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002005 path->slots[level + 1] -= 1;
2006 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002007 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002008 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002009 } else {
2010 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002011 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002012 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002013 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002014 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002015 }
Chris Masone66f7092007-04-20 13:16:02 -04002016 return 0;
2017 }
Chris Mason925baed2008-06-25 16:01:30 -04002018 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002019 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002020 }
Chris Mason925baed2008-06-25 16:01:30 -04002021 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04002022
2023 /*
2024 * then try to empty the right most buffer into the middle
2025 */
Chris Mason5f39d392007-10-15 16:14:19 -04002026 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002027 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002028
Chris Mason925baed2008-06-25 16:01:30 -04002029 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002030 btrfs_set_lock_blocking(right);
2031
Chris Mason5f39d392007-10-15 16:14:19 -04002032 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002033 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2034 wret = 1;
2035 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002036 ret = btrfs_cow_block(trans, root, right,
2037 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002038 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002039 if (ret)
2040 wret = 1;
2041 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002042 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002043 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002044 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002045 }
Chris Masone66f7092007-04-20 13:16:02 -04002046 if (wret < 0)
2047 ret = wret;
2048 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002049 struct btrfs_disk_key disk_key;
2050
2051 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002052 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002053 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002054 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2055 btrfs_mark_buffer_dirty(parent);
2056
2057 if (btrfs_header_nritems(mid) <= orig_slot) {
2058 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002059 path->slots[level + 1] += 1;
2060 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002061 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002062 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002063 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002064 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002065 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002066 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002067 }
Chris Masone66f7092007-04-20 13:16:02 -04002068 return 0;
2069 }
Chris Mason925baed2008-06-25 16:01:30 -04002070 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002071 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002072 }
Chris Masone66f7092007-04-20 13:16:02 -04002073 return 1;
2074}
2075
Chris Mason74123bd2007-02-02 11:05:29 -05002076/*
Chris Masond352ac62008-09-29 15:18:18 -04002077 * readahead one full node of leaves, finding things that are close
2078 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002079 */
Chris Masonc8c42862009-04-03 10:14:18 -04002080static void reada_for_search(struct btrfs_root *root,
2081 struct btrfs_path *path,
2082 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002083{
Chris Mason5f39d392007-10-15 16:14:19 -04002084 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002085 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002086 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002087 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002088 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002089 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002090 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04002091 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04002092 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002093 u32 nr;
2094 u32 blocksize;
2095 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002096
Chris Masona6b6e752007-10-15 16:22:39 -04002097 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002098 return;
2099
Chris Mason6702ed42007-08-07 16:15:09 -04002100 if (!path->nodes[level])
2101 return;
2102
Chris Mason5f39d392007-10-15 16:14:19 -04002103 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002104
Chris Mason3c69fae2007-08-07 15:52:22 -04002105 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04002106 blocksize = btrfs_level_size(root, level - 1);
2107 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002108 if (eb) {
2109 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002110 return;
2111 }
2112
Chris Masona7175312009-01-22 09:23:10 -05002113 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002114
Chris Mason5f39d392007-10-15 16:14:19 -04002115 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002116 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002117
Chris Masond3977122009-01-05 21:25:51 -05002118 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04002119 if (direction < 0) {
2120 if (nr == 0)
2121 break;
2122 nr--;
2123 } else if (direction > 0) {
2124 nr++;
2125 if (nr >= nritems)
2126 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002127 }
Chris Mason01f46652007-12-21 16:24:26 -05002128 if (path->reada < 0 && objectid) {
2129 btrfs_node_key(node, &disk_key, nr);
2130 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2131 break;
2132 }
Chris Mason6b800532007-10-15 16:17:34 -04002133 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002134 if ((search <= target && target - search <= 65536) ||
2135 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002136 gen = btrfs_node_ptr_generation(node, nr);
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002137 readahead_tree_block(root, search, blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -04002138 nread += blocksize;
2139 }
2140 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002141 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002142 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002143 }
2144}
Chris Mason925baed2008-06-25 16:01:30 -04002145
Josef Bacik0b088512013-06-17 14:23:02 -04002146static noinline void reada_for_balance(struct btrfs_root *root,
2147 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002148{
2149 int slot;
2150 int nritems;
2151 struct extent_buffer *parent;
2152 struct extent_buffer *eb;
2153 u64 gen;
2154 u64 block1 = 0;
2155 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002156 int blocksize;
2157
Chris Mason8c594ea2009-04-20 15:50:10 -04002158 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002159 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002160 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002161
2162 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002163 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002164 blocksize = btrfs_level_size(root, level);
2165
2166 if (slot > 0) {
2167 block1 = btrfs_node_blockptr(parent, slot - 1);
2168 gen = btrfs_node_ptr_generation(parent, slot - 1);
2169 eb = btrfs_find_tree_block(root, block1, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002170 /*
2171 * if we get -eagain from btrfs_buffer_uptodate, we
2172 * don't want to return eagain here. That will loop
2173 * forever
2174 */
2175 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002176 block1 = 0;
2177 free_extent_buffer(eb);
2178 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002179 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002180 block2 = btrfs_node_blockptr(parent, slot + 1);
2181 gen = btrfs_node_ptr_generation(parent, slot + 1);
2182 eb = btrfs_find_tree_block(root, block2, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002183 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002184 block2 = 0;
2185 free_extent_buffer(eb);
2186 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002187
Josef Bacik0b088512013-06-17 14:23:02 -04002188 if (block1)
2189 readahead_tree_block(root, block1, blocksize, 0);
2190 if (block2)
2191 readahead_tree_block(root, block2, blocksize, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002192}
2193
2194
2195/*
Chris Masond3977122009-01-05 21:25:51 -05002196 * when we walk down the tree, it is usually safe to unlock the higher layers
2197 * in the tree. The exceptions are when our path goes through slot 0, because
2198 * operations on the tree might require changing key pointers higher up in the
2199 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002200 *
Chris Masond3977122009-01-05 21:25:51 -05002201 * callers might also have set path->keep_locks, which tells this code to keep
2202 * the lock if the path points to the last slot in the block. This is part of
2203 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002204 *
Chris Masond3977122009-01-05 21:25:51 -05002205 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2206 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002207 */
Chris Masone02119d2008-09-05 16:13:11 -04002208static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002209 int lowest_unlock, int min_write_lock_level,
2210 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002211{
2212 int i;
2213 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002214 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002215 struct extent_buffer *t;
2216
2217 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2218 if (!path->nodes[i])
2219 break;
2220 if (!path->locks[i])
2221 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002222 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002223 skip_level = i + 1;
2224 continue;
2225 }
Chris Mason051e1b92008-06-25 16:01:30 -04002226 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002227 u32 nritems;
2228 t = path->nodes[i];
2229 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002230 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002231 skip_level = i + 1;
2232 continue;
2233 }
2234 }
Chris Mason051e1b92008-06-25 16:01:30 -04002235 if (skip_level < i && i >= lowest_unlock)
2236 no_skips = 1;
2237
Chris Mason925baed2008-06-25 16:01:30 -04002238 t = path->nodes[i];
2239 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002240 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002241 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002242 if (write_lock_level &&
2243 i > min_write_lock_level &&
2244 i <= *write_lock_level) {
2245 *write_lock_level = i - 1;
2246 }
Chris Mason925baed2008-06-25 16:01:30 -04002247 }
2248 }
2249}
2250
Chris Mason3c69fae2007-08-07 15:52:22 -04002251/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002252 * This releases any locks held in the path starting at level and
2253 * going all the way up to the root.
2254 *
2255 * btrfs_search_slot will keep the lock held on higher nodes in a few
2256 * corner cases, such as COW of the block at slot zero in the node. This
2257 * ignores those rules, and it should only be called when there are no
2258 * more updates to be done higher up in the tree.
2259 */
2260noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2261{
2262 int i;
2263
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002264 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002265 return;
2266
2267 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2268 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002269 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002270 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002271 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002272 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002273 path->locks[i] = 0;
2274 }
2275}
2276
2277/*
Chris Masonc8c42862009-04-03 10:14:18 -04002278 * helper function for btrfs_search_slot. The goal is to find a block
2279 * in cache without setting the path to blocking. If we find the block
2280 * we return zero and the path is unchanged.
2281 *
2282 * If we can't find the block, we set the path blocking and do some
2283 * reada. -EAGAIN is returned and the search must be repeated.
2284 */
2285static int
2286read_block_for_search(struct btrfs_trans_handle *trans,
2287 struct btrfs_root *root, struct btrfs_path *p,
2288 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002289 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002290{
2291 u64 blocknr;
2292 u64 gen;
2293 u32 blocksize;
2294 struct extent_buffer *b = *eb_ret;
2295 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002296 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002297
2298 blocknr = btrfs_node_blockptr(b, slot);
2299 gen = btrfs_node_ptr_generation(b, slot);
2300 blocksize = btrfs_level_size(root, level - 1);
2301
2302 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
Chris Masoncb449212010-10-24 11:01:27 -04002303 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002304 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002305 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2306 *eb_ret = tmp;
2307 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002308 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002309
2310 /* the pages were up to date, but we failed
2311 * the generation number check. Do a full
2312 * read for the generation number that is correct.
2313 * We must do this without dropping locks so
2314 * we can trust our generation number
2315 */
2316 btrfs_set_path_blocking(p);
2317
2318 /* now we're allowed to do a blocking uptodate check */
2319 ret = btrfs_read_buffer(tmp, gen);
2320 if (!ret) {
2321 *eb_ret = tmp;
2322 return 0;
2323 }
2324 free_extent_buffer(tmp);
2325 btrfs_release_path(p);
2326 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002327 }
2328
2329 /*
2330 * reduce lock contention at high levels
2331 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002332 * we read. Don't release the lock on the current
2333 * level because we need to walk this node to figure
2334 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002335 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002336 btrfs_unlock_up_safe(p, level + 1);
2337 btrfs_set_path_blocking(p);
2338
Chris Masoncb449212010-10-24 11:01:27 -04002339 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04002340 if (p->reada)
2341 reada_for_search(root, p, level, slot, key->objectid);
2342
David Sterbab3b4aa72011-04-21 01:20:15 +02002343 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002344
2345 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04002346 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04002347 if (tmp) {
2348 /*
2349 * If the read above didn't mark this buffer up to date,
2350 * it will never end up being up to date. Set ret to EIO now
2351 * and give up so that our caller doesn't loop forever
2352 * on our EAGAINs.
2353 */
Chris Masonb9fab912012-05-06 07:23:47 -04002354 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002355 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002356 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002357 }
2358 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002359}
2360
2361/*
2362 * helper function for btrfs_search_slot. This does all of the checks
2363 * for node-level blocks and does any balancing required based on
2364 * the ins_len.
2365 *
2366 * If no extra work was required, zero is returned. If we had to
2367 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2368 * start over
2369 */
2370static int
2371setup_nodes_for_search(struct btrfs_trans_handle *trans,
2372 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002373 struct extent_buffer *b, int level, int ins_len,
2374 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002375{
2376 int ret;
2377 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2378 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2379 int sret;
2380
Chris Masonbd681512011-07-16 15:23:14 -04002381 if (*write_lock_level < level + 1) {
2382 *write_lock_level = level + 1;
2383 btrfs_release_path(p);
2384 goto again;
2385 }
2386
Chris Masonc8c42862009-04-03 10:14:18 -04002387 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002388 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002389 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002390 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002391
2392 BUG_ON(sret > 0);
2393 if (sret) {
2394 ret = sret;
2395 goto done;
2396 }
2397 b = p->nodes[level];
2398 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002399 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002400 int sret;
2401
Chris Masonbd681512011-07-16 15:23:14 -04002402 if (*write_lock_level < level + 1) {
2403 *write_lock_level = level + 1;
2404 btrfs_release_path(p);
2405 goto again;
2406 }
2407
Chris Masonc8c42862009-04-03 10:14:18 -04002408 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002409 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002410 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002411 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002412
2413 if (sret) {
2414 ret = sret;
2415 goto done;
2416 }
2417 b = p->nodes[level];
2418 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002419 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002420 goto again;
2421 }
2422 BUG_ON(btrfs_header_nritems(b) == 1);
2423 }
2424 return 0;
2425
2426again:
2427 ret = -EAGAIN;
2428done:
2429 return ret;
2430}
2431
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002432static void key_search_validate(struct extent_buffer *b,
2433 struct btrfs_key *key,
2434 int level)
2435{
2436#ifdef CONFIG_BTRFS_ASSERT
2437 struct btrfs_disk_key disk_key;
2438
2439 btrfs_cpu_key_to_disk(&disk_key, key);
2440
2441 if (level == 0)
2442 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2443 offsetof(struct btrfs_leaf, items[0].key),
2444 sizeof(disk_key)));
2445 else
2446 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2447 offsetof(struct btrfs_node, ptrs[0].key),
2448 sizeof(disk_key)));
2449#endif
2450}
2451
2452static int key_search(struct extent_buffer *b, struct btrfs_key *key,
2453 int level, int *prev_cmp, int *slot)
2454{
2455 if (*prev_cmp != 0) {
2456 *prev_cmp = bin_search(b, key, level, slot);
2457 return *prev_cmp;
2458 }
2459
2460 key_search_validate(b, key, level);
2461 *slot = 0;
2462
2463 return 0;
2464}
2465
Chris Masonc8c42862009-04-03 10:14:18 -04002466/*
Chris Mason74123bd2007-02-02 11:05:29 -05002467 * look for key in the tree. path is filled in with nodes along the way
2468 * if key is found, we return zero and you can find the item in the leaf
2469 * level of the path (level 0)
2470 *
2471 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002472 * be inserted, and 1 is returned. If there are other errors during the
2473 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002474 *
2475 * if ins_len > 0, nodes and leaves will be split as we walk down the
2476 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2477 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002478 */
Chris Masone089f052007-03-16 16:20:31 -04002479int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2480 *root, struct btrfs_key *key, struct btrfs_path *p, int
2481 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002482{
Chris Mason5f39d392007-10-15 16:14:19 -04002483 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002484 int slot;
2485 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002486 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002487 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002488 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002489 int root_lock;
2490 /* everything at write_lock_level or lower must be write locked */
2491 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002492 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002493 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002494 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002495
Chris Mason6702ed42007-08-07 16:15:09 -04002496 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002497 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002498 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04002499
Chris Masonbd681512011-07-16 15:23:14 -04002500 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002501 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002502
Chris Masonbd681512011-07-16 15:23:14 -04002503 /* when we are removing items, we might have to go up to level
2504 * two as we update tree pointers Make sure we keep write
2505 * for those levels as well
2506 */
2507 write_lock_level = 2;
2508 } else if (ins_len > 0) {
2509 /*
2510 * for inserting items, make sure we have a write lock on
2511 * level 1 so we can update keys
2512 */
2513 write_lock_level = 1;
2514 }
2515
2516 if (!cow)
2517 write_lock_level = -1;
2518
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002519 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002520 write_lock_level = BTRFS_MAX_LEVEL;
2521
Chris Masonf7c79f32012-03-19 15:54:38 -04002522 min_write_lock_level = write_lock_level;
2523
Chris Masonbb803952007-03-01 12:04:21 -05002524again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002525 prev_cmp = -1;
Chris Masonbd681512011-07-16 15:23:14 -04002526 /*
2527 * we try very hard to do read locks on the root
2528 */
2529 root_lock = BTRFS_READ_LOCK;
2530 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002531 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002532 /*
2533 * the commit roots are read only
2534 * so we always do read locks
2535 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002536 b = root->commit_root;
2537 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002538 level = btrfs_header_level(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002539 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002540 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002541 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002542 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002543 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002544 level = btrfs_header_level(b);
2545 } else {
2546 /* we don't know the level of the root node
2547 * until we actually have it read locked
2548 */
2549 b = btrfs_read_lock_root_node(root);
2550 level = btrfs_header_level(b);
2551 if (level <= write_lock_level) {
2552 /* whoops, must trade for write lock */
2553 btrfs_tree_read_unlock(b);
2554 free_extent_buffer(b);
2555 b = btrfs_lock_root_node(root);
2556 root_lock = BTRFS_WRITE_LOCK;
2557
2558 /* the level might have changed, check again */
2559 level = btrfs_header_level(b);
2560 }
2561 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002562 }
Chris Masonbd681512011-07-16 15:23:14 -04002563 p->nodes[level] = b;
2564 if (!p->skip_locking)
2565 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002566
Chris Masoneb60cea2007-02-02 09:18:22 -05002567 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002568 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002569
2570 /*
2571 * setup the path here so we can release it under lock
2572 * contention with the cow code
2573 */
Chris Mason02217ed2007-03-02 16:08:05 -05002574 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04002575 /*
2576 * if we don't really need to cow this block
2577 * then we don't want to set the path blocking,
2578 * so we test it here
2579 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002580 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04002581 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002582
Chris Masonb4ce94d2009-02-04 09:25:08 -05002583 btrfs_set_path_blocking(p);
2584
Chris Masonbd681512011-07-16 15:23:14 -04002585 /*
2586 * must have write locks on this node and the
2587 * parent
2588 */
Josef Bacik5124e002012-11-07 13:44:13 -05002589 if (level > write_lock_level ||
2590 (level + 1 > write_lock_level &&
2591 level + 1 < BTRFS_MAX_LEVEL &&
2592 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002593 write_lock_level = level + 1;
2594 btrfs_release_path(p);
2595 goto again;
2596 }
2597
Yan Zheng33c66f42009-07-22 09:59:00 -04002598 err = btrfs_cow_block(trans, root, b,
2599 p->nodes[level + 1],
2600 p->slots[level + 1], &b);
2601 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002602 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002603 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002604 }
Chris Mason02217ed2007-03-02 16:08:05 -05002605 }
Chris Mason65b51a02008-08-01 15:11:20 -04002606cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05002607 BUG_ON(!cow && ins_len);
Chris Mason65b51a02008-08-01 15:11:20 -04002608
Chris Masoneb60cea2007-02-02 09:18:22 -05002609 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002610 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002611
2612 /*
2613 * we have a lock on b and as long as we aren't changing
2614 * the tree, there is no way to for the items in b to change.
2615 * It is safe to drop the lock on our parent before we
2616 * go through the expensive btree search on b.
2617 *
2618 * If cow is true, then we might be changing slot zero,
2619 * which may require changing the parent. So, we can't
2620 * drop the lock until after we know which slot we're
2621 * operating on.
2622 */
2623 if (!cow)
2624 btrfs_unlock_up_safe(p, level + 1);
2625
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002626 ret = key_search(b, key, level, &prev_cmp, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002627
Chris Mason5f39d392007-10-15 16:14:19 -04002628 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002629 int dec = 0;
2630 if (ret && slot > 0) {
2631 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002632 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002633 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002634 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002635 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002636 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002637 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002638 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002639 if (err) {
2640 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002641 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002642 }
Chris Masonc8c42862009-04-03 10:14:18 -04002643 b = p->nodes[level];
2644 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002645
Chris Masonbd681512011-07-16 15:23:14 -04002646 /*
2647 * slot 0 is special, if we change the key
2648 * we have to update the parent pointer
2649 * which means we must have a write lock
2650 * on the parent
2651 */
2652 if (slot == 0 && cow &&
2653 write_lock_level < level + 1) {
2654 write_lock_level = level + 1;
2655 btrfs_release_path(p);
2656 goto again;
2657 }
2658
Chris Masonf7c79f32012-03-19 15:54:38 -04002659 unlock_up(p, level, lowest_unlock,
2660 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002661
Chris Mason925baed2008-06-25 16:01:30 -04002662 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002663 if (dec)
2664 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002665 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002666 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002667
Yan Zheng33c66f42009-07-22 09:59:00 -04002668 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002669 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002670 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002671 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002672 if (err) {
2673 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002674 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002675 }
Chris Mason76a05b32009-05-14 13:24:30 -04002676
Chris Masonb4ce94d2009-02-04 09:25:08 -05002677 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002678 level = btrfs_header_level(b);
2679 if (level <= write_lock_level) {
2680 err = btrfs_try_tree_write_lock(b);
2681 if (!err) {
2682 btrfs_set_path_blocking(p);
2683 btrfs_tree_lock(b);
2684 btrfs_clear_path_blocking(p, b,
2685 BTRFS_WRITE_LOCK);
2686 }
2687 p->locks[level] = BTRFS_WRITE_LOCK;
2688 } else {
2689 err = btrfs_try_tree_read_lock(b);
2690 if (!err) {
2691 btrfs_set_path_blocking(p);
2692 btrfs_tree_read_lock(b);
2693 btrfs_clear_path_blocking(p, b,
2694 BTRFS_READ_LOCK);
2695 }
2696 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002697 }
Chris Masonbd681512011-07-16 15:23:14 -04002698 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002699 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002700 } else {
2701 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002702 if (ins_len > 0 &&
2703 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002704 if (write_lock_level < 1) {
2705 write_lock_level = 1;
2706 btrfs_release_path(p);
2707 goto again;
2708 }
2709
Chris Masonb4ce94d2009-02-04 09:25:08 -05002710 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002711 err = split_leaf(trans, root, key,
2712 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002713 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002714
Yan Zheng33c66f42009-07-22 09:59:00 -04002715 BUG_ON(err > 0);
2716 if (err) {
2717 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002718 goto done;
2719 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002720 }
Chris Mason459931e2008-12-10 09:10:46 -05002721 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002722 unlock_up(p, level, lowest_unlock,
2723 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002724 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002725 }
2726 }
Chris Mason65b51a02008-08-01 15:11:20 -04002727 ret = 1;
2728done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002729 /*
2730 * we don't really know what they plan on doing with the path
2731 * from here on, so for now just mark it as blocking
2732 */
Chris Masonb9473432009-03-13 11:00:37 -04002733 if (!p->leave_spinning)
2734 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002735 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02002736 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002737 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002738}
2739
Chris Mason74123bd2007-02-02 11:05:29 -05002740/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002741 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2742 * current state of the tree together with the operations recorded in the tree
2743 * modification log to search for the key in a previous version of this tree, as
2744 * denoted by the time_seq parameter.
2745 *
2746 * Naturally, there is no support for insert, delete or cow operations.
2747 *
2748 * The resulting path and return value will be set up as if we called
2749 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2750 */
2751int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2752 struct btrfs_path *p, u64 time_seq)
2753{
2754 struct extent_buffer *b;
2755 int slot;
2756 int ret;
2757 int err;
2758 int level;
2759 int lowest_unlock = 1;
2760 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002761 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002762
2763 lowest_level = p->lowest_level;
2764 WARN_ON(p->nodes[0] != NULL);
2765
2766 if (p->search_commit_root) {
2767 BUG_ON(time_seq);
2768 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2769 }
2770
2771again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002772 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002773 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002774 p->locks[level] = BTRFS_READ_LOCK;
2775
2776 while (b) {
2777 level = btrfs_header_level(b);
2778 p->nodes[level] = b;
2779 btrfs_clear_path_blocking(p, NULL, 0);
2780
2781 /*
2782 * we have a lock on b and as long as we aren't changing
2783 * the tree, there is no way to for the items in b to change.
2784 * It is safe to drop the lock on our parent before we
2785 * go through the expensive btree search on b.
2786 */
2787 btrfs_unlock_up_safe(p, level + 1);
2788
Josef Bacikd4b40872013-09-24 14:09:34 -04002789 /*
2790 * Since we can unwind eb's we want to do a real search every
2791 * time.
2792 */
2793 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002794 ret = key_search(b, key, level, &prev_cmp, &slot);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002795
2796 if (level != 0) {
2797 int dec = 0;
2798 if (ret && slot > 0) {
2799 dec = 1;
2800 slot -= 1;
2801 }
2802 p->slots[level] = slot;
2803 unlock_up(p, level, lowest_unlock, 0, NULL);
2804
2805 if (level == lowest_level) {
2806 if (dec)
2807 p->slots[level]++;
2808 goto done;
2809 }
2810
2811 err = read_block_for_search(NULL, root, p, &b, level,
2812 slot, key, time_seq);
2813 if (err == -EAGAIN)
2814 goto again;
2815 if (err) {
2816 ret = err;
2817 goto done;
2818 }
2819
2820 level = btrfs_header_level(b);
2821 err = btrfs_try_tree_read_lock(b);
2822 if (!err) {
2823 btrfs_set_path_blocking(p);
2824 btrfs_tree_read_lock(b);
2825 btrfs_clear_path_blocking(p, b,
2826 BTRFS_READ_LOCK);
2827 }
Josef Bacik9ec72672013-08-07 16:57:23 -04002828 b = tree_mod_log_rewind(root->fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04002829 if (!b) {
2830 ret = -ENOMEM;
2831 goto done;
2832 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002833 p->locks[level] = BTRFS_READ_LOCK;
2834 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002835 } else {
2836 p->slots[level] = slot;
2837 unlock_up(p, level, lowest_unlock, 0, NULL);
2838 goto done;
2839 }
2840 }
2841 ret = 1;
2842done:
2843 if (!p->leave_spinning)
2844 btrfs_set_path_blocking(p);
2845 if (ret < 0)
2846 btrfs_release_path(p);
2847
2848 return ret;
2849}
2850
2851/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002852 * helper to use instead of search slot if no exact match is needed but
2853 * instead the next or previous item should be returned.
2854 * When find_higher is true, the next higher item is returned, the next lower
2855 * otherwise.
2856 * When return_any and find_higher are both true, and no higher item is found,
2857 * return the next lower instead.
2858 * When return_any is true and find_higher is false, and no lower item is found,
2859 * return the next higher instead.
2860 * It returns 0 if any item is found, 1 if none is found (tree empty), and
2861 * < 0 on error
2862 */
2863int btrfs_search_slot_for_read(struct btrfs_root *root,
2864 struct btrfs_key *key, struct btrfs_path *p,
2865 int find_higher, int return_any)
2866{
2867 int ret;
2868 struct extent_buffer *leaf;
2869
2870again:
2871 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
2872 if (ret <= 0)
2873 return ret;
2874 /*
2875 * a return value of 1 means the path is at the position where the
2876 * item should be inserted. Normally this is the next bigger item,
2877 * but in case the previous item is the last in a leaf, path points
2878 * to the first free slot in the previous leaf, i.e. at an invalid
2879 * item.
2880 */
2881 leaf = p->nodes[0];
2882
2883 if (find_higher) {
2884 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
2885 ret = btrfs_next_leaf(root, p);
2886 if (ret <= 0)
2887 return ret;
2888 if (!return_any)
2889 return 1;
2890 /*
2891 * no higher item found, return the next
2892 * lower instead
2893 */
2894 return_any = 0;
2895 find_higher = 0;
2896 btrfs_release_path(p);
2897 goto again;
2898 }
2899 } else {
Arne Jansene6793762011-09-13 11:18:10 +02002900 if (p->slots[0] == 0) {
2901 ret = btrfs_prev_leaf(root, p);
2902 if (ret < 0)
2903 return ret;
2904 if (!ret) {
2905 p->slots[0] = btrfs_header_nritems(leaf) - 1;
2906 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002907 }
Arne Jansene6793762011-09-13 11:18:10 +02002908 if (!return_any)
2909 return 1;
2910 /*
2911 * no lower item found, return the next
2912 * higher instead
2913 */
2914 return_any = 0;
2915 find_higher = 1;
2916 btrfs_release_path(p);
2917 goto again;
2918 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002919 --p->slots[0];
2920 }
2921 }
2922 return 0;
2923}
2924
2925/*
Chris Mason74123bd2007-02-02 11:05:29 -05002926 * adjust the pointers going up the tree, starting at level
2927 * making sure the right key of each node is points to 'key'.
2928 * This is used after shifting pointers to the left, so it stops
2929 * fixing up pointers when a given leaf/node is not in slot 0 of the
2930 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05002931 *
Chris Mason74123bd2007-02-02 11:05:29 -05002932 */
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00002933static void fixup_low_keys(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01002934 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002935{
2936 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04002937 struct extent_buffer *t;
2938
Chris Mason234b63a2007-03-13 10:46:10 -04002939 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05002940 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05002941 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05002942 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002943 t = path->nodes[i];
Liu Bo32adf092012-10-19 12:52:15 +00002944 tree_mod_log_set_node_key(root->fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002945 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04002946 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002947 if (tslot != 0)
2948 break;
2949 }
2950}
2951
Chris Mason74123bd2007-02-02 11:05:29 -05002952/*
Zheng Yan31840ae2008-09-23 13:14:14 -04002953 * update item key.
2954 *
2955 * This function isn't completely safe. It's the caller's responsibility
2956 * that the new key won't break the order
2957 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002958void btrfs_set_item_key_safe(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01002959 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04002960{
2961 struct btrfs_disk_key disk_key;
2962 struct extent_buffer *eb;
2963 int slot;
2964
2965 eb = path->nodes[0];
2966 slot = path->slots[0];
2967 if (slot > 0) {
2968 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01002969 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002970 }
2971 if (slot < btrfs_header_nritems(eb) - 1) {
2972 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01002973 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002974 }
2975
2976 btrfs_cpu_key_to_disk(&disk_key, new_key);
2977 btrfs_set_item_key(eb, &disk_key, slot);
2978 btrfs_mark_buffer_dirty(eb);
2979 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00002980 fixup_low_keys(root, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04002981}
2982
2983/*
Chris Mason74123bd2007-02-02 11:05:29 -05002984 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05002985 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002986 *
2987 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
2988 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05002989 */
Chris Mason98ed5172008-01-03 10:01:48 -05002990static int push_node_left(struct btrfs_trans_handle *trans,
2991 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04002992 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002993{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002994 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05002995 int src_nritems;
2996 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002997 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002998
Chris Mason5f39d392007-10-15 16:14:19 -04002999 src_nritems = btrfs_header_nritems(src);
3000 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003001 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003002 WARN_ON(btrfs_header_generation(src) != trans->transid);
3003 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003004
Chris Masonbce4eae2008-04-24 14:42:46 -04003005 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003006 return 1;
3007
Chris Masond3977122009-01-05 21:25:51 -05003008 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003009 return 1;
3010
Chris Masonbce4eae2008-04-24 14:42:46 -04003011 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003012 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003013 if (push_items < src_nritems) {
3014 /* leave at least 8 pointers in the node if
3015 * we aren't going to empty it
3016 */
3017 if (src_nritems - push_items < 8) {
3018 if (push_items <= 8)
3019 return 1;
3020 push_items -= 8;
3021 }
3022 }
3023 } else
3024 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003025
Jan Schmidtf2304752012-05-26 11:43:17 +02003026 tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
Jan Schmidt90f8d622013-04-13 13:19:53 +00003027 push_items);
Chris Mason5f39d392007-10-15 16:14:19 -04003028 copy_extent_buffer(dst, src,
3029 btrfs_node_key_ptr_offset(dst_nritems),
3030 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003031 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003032
Chris Masonbb803952007-03-01 12:04:21 -05003033 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003034 /*
3035 * don't call tree_mod_log_eb_move here, key removal was already
3036 * fully logged by tree_mod_log_eb_copy above.
3037 */
Chris Mason5f39d392007-10-15 16:14:19 -04003038 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3039 btrfs_node_key_ptr_offset(push_items),
3040 (src_nritems - push_items) *
3041 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003042 }
Chris Mason5f39d392007-10-15 16:14:19 -04003043 btrfs_set_header_nritems(src, src_nritems - push_items);
3044 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3045 btrfs_mark_buffer_dirty(src);
3046 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003047
Chris Masonbb803952007-03-01 12:04:21 -05003048 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003049}
3050
Chris Mason97571fd2007-02-24 13:39:08 -05003051/*
Chris Mason79f95c82007-03-01 15:16:26 -05003052 * try to push data from one node into the next node right in the
3053 * tree.
3054 *
3055 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3056 * error, and > 0 if there was no room in the right hand block.
3057 *
3058 * this will only push up to 1/2 the contents of the left node over
3059 */
Chris Mason5f39d392007-10-15 16:14:19 -04003060static int balance_node_right(struct btrfs_trans_handle *trans,
3061 struct btrfs_root *root,
3062 struct extent_buffer *dst,
3063 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003064{
Chris Mason79f95c82007-03-01 15:16:26 -05003065 int push_items = 0;
3066 int max_push;
3067 int src_nritems;
3068 int dst_nritems;
3069 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003070
Chris Mason7bb86312007-12-11 09:25:06 -05003071 WARN_ON(btrfs_header_generation(src) != trans->transid);
3072 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3073
Chris Mason5f39d392007-10-15 16:14:19 -04003074 src_nritems = btrfs_header_nritems(src);
3075 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003076 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003077 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003078 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003079
Chris Masond3977122009-01-05 21:25:51 -05003080 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003081 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003082
3083 max_push = src_nritems / 2 + 1;
3084 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003085 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003086 return 1;
Yan252c38f2007-08-29 09:11:44 -04003087
Chris Mason79f95c82007-03-01 15:16:26 -05003088 if (max_push < push_items)
3089 push_items = max_push;
3090
Jan Schmidtf2304752012-05-26 11:43:17 +02003091 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003092 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3093 btrfs_node_key_ptr_offset(0),
3094 (dst_nritems) *
3095 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003096
Jan Schmidtf2304752012-05-26 11:43:17 +02003097 tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
Jan Schmidt90f8d622013-04-13 13:19:53 +00003098 src_nritems - push_items, push_items);
Chris Mason5f39d392007-10-15 16:14:19 -04003099 copy_extent_buffer(dst, src,
3100 btrfs_node_key_ptr_offset(0),
3101 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003102 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003103
Chris Mason5f39d392007-10-15 16:14:19 -04003104 btrfs_set_header_nritems(src, src_nritems - push_items);
3105 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003106
Chris Mason5f39d392007-10-15 16:14:19 -04003107 btrfs_mark_buffer_dirty(src);
3108 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003109
Chris Mason79f95c82007-03-01 15:16:26 -05003110 return ret;
3111}
3112
3113/*
Chris Mason97571fd2007-02-24 13:39:08 -05003114 * helper function to insert a new root level in the tree.
3115 * A new node is allocated, and a single item is inserted to
3116 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003117 *
3118 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003119 */
Chris Masond3977122009-01-05 21:25:51 -05003120static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003121 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003122 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003123{
Chris Mason7bb86312007-12-11 09:25:06 -05003124 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003125 struct extent_buffer *lower;
3126 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003127 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003128 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003129
3130 BUG_ON(path->nodes[level]);
3131 BUG_ON(path->nodes[level-1] != root->node);
3132
Chris Mason7bb86312007-12-11 09:25:06 -05003133 lower = path->nodes[level-1];
3134 if (level == 1)
3135 btrfs_item_key(lower, &lower_key, 0);
3136 else
3137 btrfs_node_key(lower, &lower_key, 0);
3138
Zheng Yan31840ae2008-09-23 13:14:14 -04003139 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003140 root->root_key.objectid, &lower_key,
Jan Schmidt5581a512012-05-16 17:04:52 +02003141 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003142 if (IS_ERR(c))
3143 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003144
Yan, Zhengf0486c62010-05-16 10:46:25 -04003145 root_add_used(root, root->nodesize);
3146
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003147 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003148 btrfs_set_header_nritems(c, 1);
3149 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003150 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003151 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003152 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003153 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003154
Geert Uytterhoevenfba6aa72013-08-20 13:20:14 +02003155 write_extent_buffer(c, root->fs_info->fsid, btrfs_header_fsid(c),
Chris Mason5f39d392007-10-15 16:14:19 -04003156 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003157
3158 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003159 btrfs_header_chunk_tree_uuid(c), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003160
Chris Mason5f39d392007-10-15 16:14:19 -04003161 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003162 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003163 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003164 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003165
3166 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003167
3168 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003169
Chris Mason925baed2008-06-25 16:01:30 -04003170 old = root->node;
Liu Bofdd99c72013-05-22 12:06:51 +00003171 tree_mod_log_set_root_pointer(root, c, 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003172 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003173
3174 /* the super has an extra ref to root->node */
3175 free_extent_buffer(old);
3176
Chris Mason0b86a832008-03-24 15:01:56 -04003177 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003178 extent_buffer_get(c);
3179 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04003180 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05003181 path->slots[level] = 0;
3182 return 0;
3183}
3184
Chris Mason74123bd2007-02-02 11:05:29 -05003185/*
3186 * worker function to insert a single pointer in a node.
3187 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003188 *
Chris Mason74123bd2007-02-02 11:05:29 -05003189 * slot and level indicate where you want the key to go, and
3190 * blocknr is the block the key points to.
3191 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003192static void insert_ptr(struct btrfs_trans_handle *trans,
3193 struct btrfs_root *root, struct btrfs_path *path,
3194 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003195 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003196{
Chris Mason5f39d392007-10-15 16:14:19 -04003197 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003198 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003199 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003200
3201 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003202 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003203 lower = path->nodes[level];
3204 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003205 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003206 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003207 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003208 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003209 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3210 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003211 memmove_extent_buffer(lower,
3212 btrfs_node_key_ptr_offset(slot + 1),
3213 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003214 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003215 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003216 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003217 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04003218 MOD_LOG_KEY_ADD, GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003219 BUG_ON(ret < 0);
3220 }
Chris Mason5f39d392007-10-15 16:14:19 -04003221 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003222 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003223 WARN_ON(trans->transid == 0);
3224 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003225 btrfs_set_header_nritems(lower, nritems + 1);
3226 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003227}
3228
Chris Mason97571fd2007-02-24 13:39:08 -05003229/*
3230 * split the node at the specified level in path in two.
3231 * The path is corrected to point to the appropriate node after the split
3232 *
3233 * Before splitting this tries to make some room in the node by pushing
3234 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003235 *
3236 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003237 */
Chris Masone02119d2008-09-05 16:13:11 -04003238static noinline int split_node(struct btrfs_trans_handle *trans,
3239 struct btrfs_root *root,
3240 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003241{
Chris Mason5f39d392007-10-15 16:14:19 -04003242 struct extent_buffer *c;
3243 struct extent_buffer *split;
3244 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003245 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003246 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003247 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003248
Chris Mason5f39d392007-10-15 16:14:19 -04003249 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003250 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003251 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003252 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003253 * trying to split the root, lets make a new one
3254 *
Liu Bofdd99c72013-05-22 12:06:51 +00003255 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003256 * insert_new_root, because that root buffer will be kept as a
3257 * normal node. We are going to log removal of half of the
3258 * elements below with tree_mod_log_eb_copy. We're holding a
3259 * tree lock on the buffer, which is why we cannot race with
3260 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003261 */
Liu Bofdd99c72013-05-22 12:06:51 +00003262 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003263 if (ret)
3264 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003265 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003266 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003267 c = path->nodes[level];
3268 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003269 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003270 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003271 if (ret < 0)
3272 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003273 }
Chris Masone66f7092007-04-20 13:16:02 -04003274
Chris Mason5f39d392007-10-15 16:14:19 -04003275 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003276 mid = (c_nritems + 1) / 2;
3277 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003278
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003279 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04003280 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02003281 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003282 if (IS_ERR(split))
3283 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003284
Yan, Zhengf0486c62010-05-16 10:46:25 -04003285 root_add_used(root, root->nodesize);
3286
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003287 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003288 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003289 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003290 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003291 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003292 btrfs_set_header_owner(split, root->root_key.objectid);
3293 write_extent_buffer(split, root->fs_info->fsid,
Geert Uytterhoevenfba6aa72013-08-20 13:20:14 +02003294 btrfs_header_fsid(split), BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003295 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003296 btrfs_header_chunk_tree_uuid(split),
Chris Masone17cade2008-04-15 15:41:47 -04003297 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003298
Jan Schmidt90f8d622013-04-13 13:19:53 +00003299 tree_mod_log_eb_copy(root->fs_info, split, c, 0, mid, c_nritems - mid);
Chris Mason5f39d392007-10-15 16:14:19 -04003300 copy_extent_buffer(split, c,
3301 btrfs_node_key_ptr_offset(0),
3302 btrfs_node_key_ptr_offset(mid),
3303 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3304 btrfs_set_header_nritems(split, c_nritems - mid);
3305 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003306 ret = 0;
3307
Chris Mason5f39d392007-10-15 16:14:19 -04003308 btrfs_mark_buffer_dirty(c);
3309 btrfs_mark_buffer_dirty(split);
3310
Jeff Mahoney143bede2012-03-01 14:56:26 +01003311 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003312 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003313
Chris Mason5de08d72007-02-24 06:24:44 -05003314 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003315 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003316 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003317 free_extent_buffer(c);
3318 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003319 path->slots[level + 1] += 1;
3320 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003321 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003322 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003323 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003324 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003325}
3326
Chris Mason74123bd2007-02-02 11:05:29 -05003327/*
3328 * how many bytes are required to store the items in a leaf. start
3329 * and nr indicate which items in the leaf to check. This totals up the
3330 * space used both by the item structs and the item data
3331 */
Chris Mason5f39d392007-10-15 16:14:19 -04003332static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003333{
Josef Bacik41be1f32012-10-15 13:43:18 -04003334 struct btrfs_item *start_item;
3335 struct btrfs_item *end_item;
3336 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003337 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003338 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003339 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003340
3341 if (!nr)
3342 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003343 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003344 start_item = btrfs_item_nr(start);
3345 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003346 data_len = btrfs_token_item_offset(l, start_item, &token) +
3347 btrfs_token_item_size(l, start_item, &token);
3348 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003349 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003350 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003351 return data_len;
3352}
3353
Chris Mason74123bd2007-02-02 11:05:29 -05003354/*
Chris Masond4dbff92007-04-04 14:08:15 -04003355 * The space between the end of the leaf items and
3356 * the start of the leaf data. IOW, how much room
3357 * the leaf has left for both items and data
3358 */
Chris Masond3977122009-01-05 21:25:51 -05003359noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003360 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003361{
Chris Mason5f39d392007-10-15 16:14:19 -04003362 int nritems = btrfs_header_nritems(leaf);
3363 int ret;
3364 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3365 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05003366 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
3367 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04003368 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003369 leaf_space_used(leaf, 0, nritems), nritems);
3370 }
3371 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003372}
3373
Chris Mason99d8f832010-07-07 10:51:48 -04003374/*
3375 * min slot controls the lowest index we're willing to push to the
3376 * right. We'll push up to and including min_slot, but no lower
3377 */
Chris Mason44871b12009-03-13 10:04:31 -04003378static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3379 struct btrfs_root *root,
3380 struct btrfs_path *path,
3381 int data_size, int empty,
3382 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003383 int free_space, u32 left_nritems,
3384 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003385{
Chris Mason5f39d392007-10-15 16:14:19 -04003386 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003387 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003388 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003389 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003390 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003391 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003392 int push_space = 0;
3393 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003394 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003395 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003396 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003397 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003398 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003399
Chris Masoncfed81a2012-03-03 07:40:03 -05003400 btrfs_init_map_token(&token);
3401
Chris Mason34a38212007-11-07 13:31:03 -05003402 if (empty)
3403 nr = 0;
3404 else
Chris Mason99d8f832010-07-07 10:51:48 -04003405 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003406
Zheng Yan31840ae2008-09-23 13:14:14 -04003407 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003408 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003409
Chris Mason44871b12009-03-13 10:04:31 -04003410 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003411 i = left_nritems - 1;
3412 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003413 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003414
Zheng Yan31840ae2008-09-23 13:14:14 -04003415 if (!empty && push_items > 0) {
3416 if (path->slots[0] > i)
3417 break;
3418 if (path->slots[0] == i) {
3419 int space = btrfs_leaf_free_space(root, left);
3420 if (space + push_space * 2 > free_space)
3421 break;
3422 }
3423 }
3424
Chris Mason00ec4c52007-02-24 12:47:20 -05003425 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003426 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003427
Chris Masondb945352007-10-15 16:15:53 -04003428 this_item_size = btrfs_item_size(left, item);
3429 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003430 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003431
Chris Mason00ec4c52007-02-24 12:47:20 -05003432 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003433 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003434 if (i == 0)
3435 break;
3436 i--;
Chris Masondb945352007-10-15 16:15:53 -04003437 }
Chris Mason5f39d392007-10-15 16:14:19 -04003438
Chris Mason925baed2008-06-25 16:01:30 -04003439 if (push_items == 0)
3440 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003441
Julia Lawall6c1500f2012-11-03 20:30:18 +00003442 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003443
Chris Mason00ec4c52007-02-24 12:47:20 -05003444 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003445 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003446
Chris Mason5f39d392007-10-15 16:14:19 -04003447 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003448 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003449
Chris Mason00ec4c52007-02-24 12:47:20 -05003450 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003451 data_end = leaf_data_end(root, right);
3452 memmove_extent_buffer(right,
3453 btrfs_leaf_data(right) + data_end - push_space,
3454 btrfs_leaf_data(right) + data_end,
3455 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3456
Chris Mason00ec4c52007-02-24 12:47:20 -05003457 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003458 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003459 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3460 btrfs_leaf_data(left) + leaf_data_end(root, left),
3461 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003462
3463 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3464 btrfs_item_nr_offset(0),
3465 right_nritems * sizeof(struct btrfs_item));
3466
Chris Mason00ec4c52007-02-24 12:47:20 -05003467 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003468 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3469 btrfs_item_nr_offset(left_nritems - push_items),
3470 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003471
3472 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003473 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003474 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003475 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003476 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003477 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003478 push_space -= btrfs_token_item_size(right, item, &token);
3479 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003480 }
3481
Chris Mason7518a232007-03-12 12:01:18 -04003482 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003483 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003484
Chris Mason34a38212007-11-07 13:31:03 -05003485 if (left_nritems)
3486 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003487 else
3488 clean_tree_block(trans, root, left);
3489
Chris Mason5f39d392007-10-15 16:14:19 -04003490 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003491
Chris Mason5f39d392007-10-15 16:14:19 -04003492 btrfs_item_key(right, &disk_key, 0);
3493 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003494 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003495
Chris Mason00ec4c52007-02-24 12:47:20 -05003496 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003497 if (path->slots[0] >= left_nritems) {
3498 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003499 if (btrfs_header_nritems(path->nodes[0]) == 0)
3500 clean_tree_block(trans, root, path->nodes[0]);
3501 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003502 free_extent_buffer(path->nodes[0]);
3503 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003504 path->slots[1] += 1;
3505 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003506 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003507 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003508 }
3509 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003510
3511out_unlock:
3512 btrfs_tree_unlock(right);
3513 free_extent_buffer(right);
3514 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003515}
Chris Mason925baed2008-06-25 16:01:30 -04003516
Chris Mason00ec4c52007-02-24 12:47:20 -05003517/*
Chris Mason44871b12009-03-13 10:04:31 -04003518 * push some data in the path leaf to the right, trying to free up at
3519 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3520 *
3521 * returns 1 if the push failed because the other node didn't have enough
3522 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003523 *
3524 * this will push starting from min_slot to the end of the leaf. It won't
3525 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003526 */
3527static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003528 *root, struct btrfs_path *path,
3529 int min_data_size, int data_size,
3530 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003531{
3532 struct extent_buffer *left = path->nodes[0];
3533 struct extent_buffer *right;
3534 struct extent_buffer *upper;
3535 int slot;
3536 int free_space;
3537 u32 left_nritems;
3538 int ret;
3539
3540 if (!path->nodes[1])
3541 return 1;
3542
3543 slot = path->slots[1];
3544 upper = path->nodes[1];
3545 if (slot >= btrfs_header_nritems(upper) - 1)
3546 return 1;
3547
3548 btrfs_assert_tree_locked(path->nodes[1]);
3549
3550 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003551 if (right == NULL)
3552 return 1;
3553
Chris Mason44871b12009-03-13 10:04:31 -04003554 btrfs_tree_lock(right);
3555 btrfs_set_lock_blocking(right);
3556
3557 free_space = btrfs_leaf_free_space(root, right);
3558 if (free_space < data_size)
3559 goto out_unlock;
3560
3561 /* cow and double check */
3562 ret = btrfs_cow_block(trans, root, right, upper,
3563 slot + 1, &right);
3564 if (ret)
3565 goto out_unlock;
3566
3567 free_space = btrfs_leaf_free_space(root, right);
3568 if (free_space < data_size)
3569 goto out_unlock;
3570
3571 left_nritems = btrfs_header_nritems(left);
3572 if (left_nritems == 0)
3573 goto out_unlock;
3574
Chris Mason99d8f832010-07-07 10:51:48 -04003575 return __push_leaf_right(trans, root, path, min_data_size, empty,
3576 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003577out_unlock:
3578 btrfs_tree_unlock(right);
3579 free_extent_buffer(right);
3580 return 1;
3581}
3582
3583/*
Chris Mason74123bd2007-02-02 11:05:29 -05003584 * push some data in the path leaf to the left, trying to free up at
3585 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003586 *
3587 * max_slot can put a limit on how far into the leaf we'll push items. The
3588 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3589 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003590 */
Chris Mason44871b12009-03-13 10:04:31 -04003591static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3592 struct btrfs_root *root,
3593 struct btrfs_path *path, int data_size,
3594 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003595 int free_space, u32 right_nritems,
3596 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003597{
Chris Mason5f39d392007-10-15 16:14:19 -04003598 struct btrfs_disk_key disk_key;
3599 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003600 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003601 int push_space = 0;
3602 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003603 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003604 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003605 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003606 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003607 u32 this_item_size;
3608 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003609 struct btrfs_map_token token;
3610
3611 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003612
Chris Mason34a38212007-11-07 13:31:03 -05003613 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003614 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003615 else
Chris Mason99d8f832010-07-07 10:51:48 -04003616 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003617
3618 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003619 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003620
Zheng Yan31840ae2008-09-23 13:14:14 -04003621 if (!empty && push_items > 0) {
3622 if (path->slots[0] < i)
3623 break;
3624 if (path->slots[0] == i) {
3625 int space = btrfs_leaf_free_space(root, right);
3626 if (space + push_space * 2 > free_space)
3627 break;
3628 }
3629 }
3630
Chris Masonbe0e5c02007-01-26 15:51:26 -05003631 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003632 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003633
3634 this_item_size = btrfs_item_size(right, item);
3635 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003636 break;
Chris Masondb945352007-10-15 16:15:53 -04003637
Chris Masonbe0e5c02007-01-26 15:51:26 -05003638 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003639 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003640 }
Chris Masondb945352007-10-15 16:15:53 -04003641
Chris Masonbe0e5c02007-01-26 15:51:26 -05003642 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003643 ret = 1;
3644 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003645 }
Chris Mason34a38212007-11-07 13:31:03 -05003646 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04003647 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04003648
Chris Masonbe0e5c02007-01-26 15:51:26 -05003649 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003650 copy_extent_buffer(left, right,
3651 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3652 btrfs_item_nr_offset(0),
3653 push_items * sizeof(struct btrfs_item));
3654
Chris Mason123abc82007-03-14 14:14:43 -04003655 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003656 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003657
3658 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003659 leaf_data_end(root, left) - push_space,
3660 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003661 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003662 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003663 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003664 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003665
Chris Masondb945352007-10-15 16:15:53 -04003666 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003667 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003668 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003669
Ross Kirkdd3cc162013-09-16 15:58:09 +01003670 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003671
Chris Masoncfed81a2012-03-03 07:40:03 -05003672 ioff = btrfs_token_item_offset(left, item, &token);
3673 btrfs_set_token_item_offset(left, item,
3674 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3675 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003676 }
Chris Mason5f39d392007-10-15 16:14:19 -04003677 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003678
3679 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003680 if (push_items > right_nritems)
3681 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003682 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003683
Chris Mason34a38212007-11-07 13:31:03 -05003684 if (push_items < right_nritems) {
3685 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3686 leaf_data_end(root, right);
3687 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3688 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3689 btrfs_leaf_data(right) +
3690 leaf_data_end(root, right), push_space);
3691
3692 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003693 btrfs_item_nr_offset(push_items),
3694 (btrfs_header_nritems(right) - push_items) *
3695 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003696 }
Yaneef1c492007-11-26 10:58:13 -05003697 right_nritems -= push_items;
3698 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003699 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003700 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003701 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003702
Chris Masoncfed81a2012-03-03 07:40:03 -05003703 push_space = push_space - btrfs_token_item_size(right,
3704 item, &token);
3705 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003706 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003707
Chris Mason5f39d392007-10-15 16:14:19 -04003708 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003709 if (right_nritems)
3710 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003711 else
3712 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003713
Chris Mason5f39d392007-10-15 16:14:19 -04003714 btrfs_item_key(right, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003715 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003716
3717 /* then fixup the leaf pointer in the path */
3718 if (path->slots[0] < push_items) {
3719 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003720 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003721 free_extent_buffer(path->nodes[0]);
3722 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003723 path->slots[1] -= 1;
3724 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003725 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003726 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003727 path->slots[0] -= push_items;
3728 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003729 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003730 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003731out:
3732 btrfs_tree_unlock(left);
3733 free_extent_buffer(left);
3734 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003735}
3736
Chris Mason74123bd2007-02-02 11:05:29 -05003737/*
Chris Mason44871b12009-03-13 10:04:31 -04003738 * push some data in the path leaf to the left, trying to free up at
3739 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003740 *
3741 * max_slot can put a limit on how far into the leaf we'll push items. The
3742 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3743 * items
Chris Mason44871b12009-03-13 10:04:31 -04003744 */
3745static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003746 *root, struct btrfs_path *path, int min_data_size,
3747 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003748{
3749 struct extent_buffer *right = path->nodes[0];
3750 struct extent_buffer *left;
3751 int slot;
3752 int free_space;
3753 u32 right_nritems;
3754 int ret = 0;
3755
3756 slot = path->slots[1];
3757 if (slot == 0)
3758 return 1;
3759 if (!path->nodes[1])
3760 return 1;
3761
3762 right_nritems = btrfs_header_nritems(right);
3763 if (right_nritems == 0)
3764 return 1;
3765
3766 btrfs_assert_tree_locked(path->nodes[1]);
3767
3768 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003769 if (left == NULL)
3770 return 1;
3771
Chris Mason44871b12009-03-13 10:04:31 -04003772 btrfs_tree_lock(left);
3773 btrfs_set_lock_blocking(left);
3774
3775 free_space = btrfs_leaf_free_space(root, left);
3776 if (free_space < data_size) {
3777 ret = 1;
3778 goto out;
3779 }
3780
3781 /* cow and double check */
3782 ret = btrfs_cow_block(trans, root, left,
3783 path->nodes[1], slot - 1, &left);
3784 if (ret) {
3785 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003786 if (ret == -ENOSPC)
3787 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003788 goto out;
3789 }
3790
3791 free_space = btrfs_leaf_free_space(root, left);
3792 if (free_space < data_size) {
3793 ret = 1;
3794 goto out;
3795 }
3796
Chris Mason99d8f832010-07-07 10:51:48 -04003797 return __push_leaf_left(trans, root, path, min_data_size,
3798 empty, left, free_space, right_nritems,
3799 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003800out:
3801 btrfs_tree_unlock(left);
3802 free_extent_buffer(left);
3803 return ret;
3804}
3805
3806/*
Chris Mason74123bd2007-02-02 11:05:29 -05003807 * split the path's leaf in two, making sure there is at least data_size
3808 * available for the resulting leaf level of the path.
3809 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003810static noinline void copy_for_split(struct btrfs_trans_handle *trans,
3811 struct btrfs_root *root,
3812 struct btrfs_path *path,
3813 struct extent_buffer *l,
3814 struct extent_buffer *right,
3815 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003816{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003817 int data_copy_size;
3818 int rt_data_off;
3819 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04003820 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05003821 struct btrfs_map_token token;
3822
3823 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003824
Chris Mason5f39d392007-10-15 16:14:19 -04003825 nritems = nritems - mid;
3826 btrfs_set_header_nritems(right, nritems);
3827 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
3828
3829 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
3830 btrfs_item_nr_offset(mid),
3831 nritems * sizeof(struct btrfs_item));
3832
3833 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04003834 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
3835 data_copy_size, btrfs_leaf_data(l) +
3836 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05003837
Chris Mason5f39d392007-10-15 16:14:19 -04003838 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
3839 btrfs_item_end_nr(l, mid);
3840
3841 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003842 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003843 u32 ioff;
3844
Chris Masoncfed81a2012-03-03 07:40:03 -05003845 ioff = btrfs_token_item_offset(right, item, &token);
3846 btrfs_set_token_item_offset(right, item,
3847 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003848 }
Chris Mason74123bd2007-02-02 11:05:29 -05003849
Chris Mason5f39d392007-10-15 16:14:19 -04003850 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04003851 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003852 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003853 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003854
3855 btrfs_mark_buffer_dirty(right);
3856 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05003857 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003858
Chris Masonbe0e5c02007-01-26 15:51:26 -05003859 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04003860 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003861 free_extent_buffer(path->nodes[0]);
3862 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003863 path->slots[0] -= mid;
3864 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04003865 } else {
3866 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003867 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04003868 }
Chris Mason5f39d392007-10-15 16:14:19 -04003869
Chris Masoneb60cea2007-02-02 09:18:22 -05003870 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04003871}
3872
3873/*
Chris Mason99d8f832010-07-07 10:51:48 -04003874 * double splits happen when we need to insert a big item in the middle
3875 * of a leaf. A double split can leave us with 3 mostly empty leaves:
3876 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
3877 * A B C
3878 *
3879 * We avoid this by trying to push the items on either side of our target
3880 * into the adjacent leaves. If all goes well we can avoid the double split
3881 * completely.
3882 */
3883static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
3884 struct btrfs_root *root,
3885 struct btrfs_path *path,
3886 int data_size)
3887{
3888 int ret;
3889 int progress = 0;
3890 int slot;
3891 u32 nritems;
3892
3893 slot = path->slots[0];
3894
3895 /*
3896 * try to push all the items after our slot into the
3897 * right leaf
3898 */
3899 ret = push_leaf_right(trans, root, path, 1, data_size, 0, slot);
3900 if (ret < 0)
3901 return ret;
3902
3903 if (ret == 0)
3904 progress++;
3905
3906 nritems = btrfs_header_nritems(path->nodes[0]);
3907 /*
3908 * our goal is to get our slot at the start or end of a leaf. If
3909 * we've done so we're done
3910 */
3911 if (path->slots[0] == 0 || path->slots[0] == nritems)
3912 return 0;
3913
3914 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
3915 return 0;
3916
3917 /* try to push all the items before our slot into the next leaf */
3918 slot = path->slots[0];
3919 ret = push_leaf_left(trans, root, path, 1, data_size, 0, slot);
3920 if (ret < 0)
3921 return ret;
3922
3923 if (ret == 0)
3924 progress++;
3925
3926 if (progress)
3927 return 0;
3928 return 1;
3929}
3930
3931/*
Chris Mason44871b12009-03-13 10:04:31 -04003932 * split the path's leaf in two, making sure there is at least data_size
3933 * available for the resulting leaf level of the path.
3934 *
3935 * returns 0 if all went well and < 0 on failure.
3936 */
3937static noinline int split_leaf(struct btrfs_trans_handle *trans,
3938 struct btrfs_root *root,
3939 struct btrfs_key *ins_key,
3940 struct btrfs_path *path, int data_size,
3941 int extend)
3942{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003943 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003944 struct extent_buffer *l;
3945 u32 nritems;
3946 int mid;
3947 int slot;
3948 struct extent_buffer *right;
3949 int ret = 0;
3950 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003951 int split;
Chris Mason44871b12009-03-13 10:04:31 -04003952 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04003953 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04003954
Yan, Zhenga5719522009-09-24 09:17:31 -04003955 l = path->nodes[0];
3956 slot = path->slots[0];
3957 if (extend && data_size + btrfs_item_size_nr(l, slot) +
3958 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
3959 return -EOVERFLOW;
3960
Chris Mason44871b12009-03-13 10:04:31 -04003961 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00003962 if (data_size && path->nodes[1]) {
Chris Mason99d8f832010-07-07 10:51:48 -04003963 wret = push_leaf_right(trans, root, path, data_size,
3964 data_size, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04003965 if (wret < 0)
3966 return wret;
3967 if (wret) {
Chris Mason99d8f832010-07-07 10:51:48 -04003968 wret = push_leaf_left(trans, root, path, data_size,
3969 data_size, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04003970 if (wret < 0)
3971 return wret;
3972 }
3973 l = path->nodes[0];
3974
3975 /* did the pushes work? */
3976 if (btrfs_leaf_free_space(root, l) >= data_size)
3977 return 0;
3978 }
3979
3980 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00003981 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04003982 if (ret)
3983 return ret;
3984 }
3985again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003986 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003987 l = path->nodes[0];
3988 slot = path->slots[0];
3989 nritems = btrfs_header_nritems(l);
3990 mid = (nritems + 1) / 2;
3991
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003992 if (mid <= slot) {
3993 if (nritems == 1 ||
3994 leaf_space_used(l, mid, nritems - mid) + data_size >
3995 BTRFS_LEAF_DATA_SIZE(root)) {
3996 if (slot >= nritems) {
3997 split = 0;
3998 } else {
3999 mid = slot;
4000 if (mid != nritems &&
4001 leaf_space_used(l, mid, nritems - mid) +
4002 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004003 if (data_size && !tried_avoid_double)
4004 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004005 split = 2;
4006 }
4007 }
4008 }
4009 } else {
4010 if (leaf_space_used(l, 0, mid) + data_size >
4011 BTRFS_LEAF_DATA_SIZE(root)) {
4012 if (!extend && data_size && slot == 0) {
4013 split = 0;
4014 } else if ((extend || !data_size) && slot == 0) {
4015 mid = 1;
4016 } else {
4017 mid = slot;
4018 if (mid != nritems &&
4019 leaf_space_used(l, mid, nritems - mid) +
4020 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004021 if (data_size && !tried_avoid_double)
4022 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004023 split = 2 ;
4024 }
4025 }
4026 }
4027 }
4028
4029 if (split == 0)
4030 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4031 else
4032 btrfs_item_key(l, &disk_key, mid);
4033
4034 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04004035 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02004036 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004037 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004038 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004039
4040 root_add_used(root, root->leafsize);
Chris Mason44871b12009-03-13 10:04:31 -04004041
4042 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4043 btrfs_set_header_bytenr(right, right->start);
4044 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004045 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004046 btrfs_set_header_owner(right, root->root_key.objectid);
4047 btrfs_set_header_level(right, 0);
4048 write_extent_buffer(right, root->fs_info->fsid,
Geert Uytterhoevenfba6aa72013-08-20 13:20:14 +02004049 btrfs_header_fsid(right), BTRFS_FSID_SIZE);
Chris Mason44871b12009-03-13 10:04:31 -04004050
4051 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02004052 btrfs_header_chunk_tree_uuid(right),
Chris Mason44871b12009-03-13 10:04:31 -04004053 BTRFS_UUID_SIZE);
4054
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004055 if (split == 0) {
4056 if (mid <= slot) {
4057 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004058 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004059 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004060 btrfs_tree_unlock(path->nodes[0]);
4061 free_extent_buffer(path->nodes[0]);
4062 path->nodes[0] = right;
4063 path->slots[0] = 0;
4064 path->slots[1] += 1;
4065 } else {
4066 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004067 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004068 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004069 btrfs_tree_unlock(path->nodes[0]);
4070 free_extent_buffer(path->nodes[0]);
4071 path->nodes[0] = right;
4072 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004073 if (path->slots[1] == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004074 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004075 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004076 btrfs_mark_buffer_dirty(right);
4077 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004078 }
4079
Jeff Mahoney143bede2012-03-01 14:56:26 +01004080 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004081
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004082 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004083 BUG_ON(num_doubles != 0);
4084 num_doubles++;
4085 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004086 }
Chris Mason44871b12009-03-13 10:04:31 -04004087
Jeff Mahoney143bede2012-03-01 14:56:26 +01004088 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004089
4090push_for_double:
4091 push_for_double_split(trans, root, path, data_size);
4092 tried_avoid_double = 1;
4093 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4094 return 0;
4095 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004096}
4097
Yan, Zhengad48fd752009-11-12 09:33:58 +00004098static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4099 struct btrfs_root *root,
4100 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004101{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004102 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004103 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004104 struct btrfs_file_extent_item *fi;
4105 u64 extent_len = 0;
4106 u32 item_size;
4107 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004108
4109 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004110 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4111
4112 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4113 key.type != BTRFS_EXTENT_CSUM_KEY);
4114
4115 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4116 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004117
4118 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004119 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4120 fi = btrfs_item_ptr(leaf, path->slots[0],
4121 struct btrfs_file_extent_item);
4122 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4123 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004124 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004125
Chris Mason459931e2008-12-10 09:10:46 -05004126 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004127 path->search_for_split = 1;
4128 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004129 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004130 if (ret < 0)
4131 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004132
Yan, Zhengad48fd752009-11-12 09:33:58 +00004133 ret = -EAGAIN;
4134 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05004135 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00004136 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4137 goto err;
4138
Chris Mason109f6ae2010-04-02 09:20:18 -04004139 /* the leaf has changed, it now has room. return now */
4140 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4141 goto err;
4142
Yan, Zhengad48fd752009-11-12 09:33:58 +00004143 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4144 fi = btrfs_item_ptr(leaf, path->slots[0],
4145 struct btrfs_file_extent_item);
4146 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4147 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004148 }
4149
Chris Masonb9473432009-03-13 11:00:37 -04004150 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004151 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004152 if (ret)
4153 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004154
Yan, Zhengad48fd752009-11-12 09:33:58 +00004155 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004156 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004157 return 0;
4158err:
4159 path->keep_locks = 0;
4160 return ret;
4161}
4162
4163static noinline int split_item(struct btrfs_trans_handle *trans,
4164 struct btrfs_root *root,
4165 struct btrfs_path *path,
4166 struct btrfs_key *new_key,
4167 unsigned long split_offset)
4168{
4169 struct extent_buffer *leaf;
4170 struct btrfs_item *item;
4171 struct btrfs_item *new_item;
4172 int slot;
4173 char *buf;
4174 u32 nritems;
4175 u32 item_size;
4176 u32 orig_offset;
4177 struct btrfs_disk_key disk_key;
4178
Chris Masonb9473432009-03-13 11:00:37 -04004179 leaf = path->nodes[0];
4180 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4181
Chris Masonb4ce94d2009-02-04 09:25:08 -05004182 btrfs_set_path_blocking(path);
4183
Ross Kirkdd3cc162013-09-16 15:58:09 +01004184 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004185 orig_offset = btrfs_item_offset(leaf, item);
4186 item_size = btrfs_item_size(leaf, item);
4187
Chris Mason459931e2008-12-10 09:10:46 -05004188 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004189 if (!buf)
4190 return -ENOMEM;
4191
Chris Mason459931e2008-12-10 09:10:46 -05004192 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4193 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004194
Chris Mason459931e2008-12-10 09:10:46 -05004195 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004196 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004197 if (slot != nritems) {
4198 /* shift the items */
4199 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004200 btrfs_item_nr_offset(slot),
4201 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004202 }
4203
4204 btrfs_cpu_key_to_disk(&disk_key, new_key);
4205 btrfs_set_item_key(leaf, &disk_key, slot);
4206
Ross Kirkdd3cc162013-09-16 15:58:09 +01004207 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004208
4209 btrfs_set_item_offset(leaf, new_item, orig_offset);
4210 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4211
4212 btrfs_set_item_offset(leaf, item,
4213 orig_offset + item_size - split_offset);
4214 btrfs_set_item_size(leaf, item, split_offset);
4215
4216 btrfs_set_header_nritems(leaf, nritems + 1);
4217
4218 /* write the data for the start of the original item */
4219 write_extent_buffer(leaf, buf,
4220 btrfs_item_ptr_offset(leaf, path->slots[0]),
4221 split_offset);
4222
4223 /* write the data for the new item */
4224 write_extent_buffer(leaf, buf + split_offset,
4225 btrfs_item_ptr_offset(leaf, slot),
4226 item_size - split_offset);
4227 btrfs_mark_buffer_dirty(leaf);
4228
Yan, Zhengad48fd752009-11-12 09:33:58 +00004229 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004230 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004231 return 0;
4232}
4233
4234/*
4235 * This function splits a single item into two items,
4236 * giving 'new_key' to the new item and splitting the
4237 * old one at split_offset (from the start of the item).
4238 *
4239 * The path may be released by this operation. After
4240 * the split, the path is pointing to the old item. The
4241 * new item is going to be in the same node as the old one.
4242 *
4243 * Note, the item being split must be smaller enough to live alone on
4244 * a tree block with room for one extra struct btrfs_item
4245 *
4246 * This allows us to split the item in place, keeping a lock on the
4247 * leaf the entire time.
4248 */
4249int btrfs_split_item(struct btrfs_trans_handle *trans,
4250 struct btrfs_root *root,
4251 struct btrfs_path *path,
4252 struct btrfs_key *new_key,
4253 unsigned long split_offset)
4254{
4255 int ret;
4256 ret = setup_leaf_for_split(trans, root, path,
4257 sizeof(struct btrfs_item));
4258 if (ret)
4259 return ret;
4260
4261 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004262 return ret;
4263}
4264
4265/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004266 * This function duplicate a item, giving 'new_key' to the new item.
4267 * It guarantees both items live in the same tree leaf and the new item
4268 * is contiguous with the original item.
4269 *
4270 * This allows us to split file extent in place, keeping a lock on the
4271 * leaf the entire time.
4272 */
4273int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4274 struct btrfs_root *root,
4275 struct btrfs_path *path,
4276 struct btrfs_key *new_key)
4277{
4278 struct extent_buffer *leaf;
4279 int ret;
4280 u32 item_size;
4281
4282 leaf = path->nodes[0];
4283 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4284 ret = setup_leaf_for_split(trans, root, path,
4285 item_size + sizeof(struct btrfs_item));
4286 if (ret)
4287 return ret;
4288
4289 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004290 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004291 item_size, item_size +
4292 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004293 leaf = path->nodes[0];
4294 memcpy_extent_buffer(leaf,
4295 btrfs_item_ptr_offset(leaf, path->slots[0]),
4296 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4297 item_size);
4298 return 0;
4299}
4300
4301/*
Chris Masond352ac62008-09-29 15:18:18 -04004302 * make the item pointed to by the path smaller. new_size indicates
4303 * how small to make it, and from_end tells us if we just chop bytes
4304 * off the end of the item or if we shift the item to chop bytes off
4305 * the front.
4306 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004307void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004308 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004309{
Chris Masonb18c6682007-04-17 13:26:50 -04004310 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004311 struct extent_buffer *leaf;
4312 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004313 u32 nritems;
4314 unsigned int data_end;
4315 unsigned int old_data_start;
4316 unsigned int old_size;
4317 unsigned int size_diff;
4318 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004319 struct btrfs_map_token token;
4320
4321 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004322
Chris Mason5f39d392007-10-15 16:14:19 -04004323 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004324 slot = path->slots[0];
4325
4326 old_size = btrfs_item_size_nr(leaf, slot);
4327 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004328 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004329
Chris Mason5f39d392007-10-15 16:14:19 -04004330 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004331 data_end = leaf_data_end(root, leaf);
4332
Chris Mason5f39d392007-10-15 16:14:19 -04004333 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004334
Chris Masonb18c6682007-04-17 13:26:50 -04004335 size_diff = old_size - new_size;
4336
4337 BUG_ON(slot < 0);
4338 BUG_ON(slot >= nritems);
4339
4340 /*
4341 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4342 */
4343 /* first correct the data pointers */
4344 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004345 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004346 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004347
Chris Masoncfed81a2012-03-03 07:40:03 -05004348 ioff = btrfs_token_item_offset(leaf, item, &token);
4349 btrfs_set_token_item_offset(leaf, item,
4350 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004351 }
Chris Masondb945352007-10-15 16:15:53 -04004352
Chris Masonb18c6682007-04-17 13:26:50 -04004353 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004354 if (from_end) {
4355 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4356 data_end + size_diff, btrfs_leaf_data(leaf) +
4357 data_end, old_data_start + new_size - data_end);
4358 } else {
4359 struct btrfs_disk_key disk_key;
4360 u64 offset;
4361
4362 btrfs_item_key(leaf, &disk_key, slot);
4363
4364 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4365 unsigned long ptr;
4366 struct btrfs_file_extent_item *fi;
4367
4368 fi = btrfs_item_ptr(leaf, slot,
4369 struct btrfs_file_extent_item);
4370 fi = (struct btrfs_file_extent_item *)(
4371 (unsigned long)fi - size_diff);
4372
4373 if (btrfs_file_extent_type(leaf, fi) ==
4374 BTRFS_FILE_EXTENT_INLINE) {
4375 ptr = btrfs_item_ptr_offset(leaf, slot);
4376 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004377 (unsigned long)fi,
4378 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04004379 disk_bytenr));
4380 }
4381 }
4382
4383 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4384 data_end + size_diff, btrfs_leaf_data(leaf) +
4385 data_end, old_data_start - data_end);
4386
4387 offset = btrfs_disk_key_offset(&disk_key);
4388 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4389 btrfs_set_item_key(leaf, &disk_key, slot);
4390 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004391 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004392 }
Chris Mason5f39d392007-10-15 16:14:19 -04004393
Ross Kirkdd3cc162013-09-16 15:58:09 +01004394 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004395 btrfs_set_item_size(leaf, item, new_size);
4396 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004397
Chris Mason5f39d392007-10-15 16:14:19 -04004398 if (btrfs_leaf_free_space(root, leaf) < 0) {
4399 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004400 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004401 }
Chris Masonb18c6682007-04-17 13:26:50 -04004402}
4403
Chris Masond352ac62008-09-29 15:18:18 -04004404/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004405 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004406 */
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00004407void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004408 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004409{
Chris Mason6567e832007-04-16 09:22:45 -04004410 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004411 struct extent_buffer *leaf;
4412 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004413 u32 nritems;
4414 unsigned int data_end;
4415 unsigned int old_data;
4416 unsigned int old_size;
4417 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004418 struct btrfs_map_token token;
4419
4420 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004421
Chris Mason5f39d392007-10-15 16:14:19 -04004422 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004423
Chris Mason5f39d392007-10-15 16:14:19 -04004424 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004425 data_end = leaf_data_end(root, leaf);
4426
Chris Mason5f39d392007-10-15 16:14:19 -04004427 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4428 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004429 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004430 }
Chris Mason6567e832007-04-16 09:22:45 -04004431 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004432 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004433
4434 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004435 if (slot >= nritems) {
4436 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004437 printk(KERN_CRIT "slot %d too large, nritems %d\n",
4438 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004439 BUG_ON(1);
4440 }
Chris Mason6567e832007-04-16 09:22:45 -04004441
4442 /*
4443 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4444 */
4445 /* first correct the data pointers */
4446 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004447 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004448 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004449
Chris Masoncfed81a2012-03-03 07:40:03 -05004450 ioff = btrfs_token_item_offset(leaf, item, &token);
4451 btrfs_set_token_item_offset(leaf, item,
4452 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004453 }
Chris Mason5f39d392007-10-15 16:14:19 -04004454
Chris Mason6567e832007-04-16 09:22:45 -04004455 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004456 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004457 data_end - data_size, btrfs_leaf_data(leaf) +
4458 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004459
Chris Mason6567e832007-04-16 09:22:45 -04004460 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004461 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004462 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004463 btrfs_set_item_size(leaf, item, old_size + data_size);
4464 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004465
Chris Mason5f39d392007-10-15 16:14:19 -04004466 if (btrfs_leaf_free_space(root, leaf) < 0) {
4467 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004468 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004469 }
Chris Mason6567e832007-04-16 09:22:45 -04004470}
4471
Chris Mason74123bd2007-02-02 11:05:29 -05004472/*
Chris Mason44871b12009-03-13 10:04:31 -04004473 * this is a helper for btrfs_insert_empty_items, the main goal here is
4474 * to save stack depth by doing the bulk of the work in a function
4475 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004476 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004477void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004478 struct btrfs_key *cpu_key, u32 *data_size,
4479 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004480{
Chris Mason5f39d392007-10-15 16:14:19 -04004481 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004482 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004483 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004484 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004485 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004486 struct extent_buffer *leaf;
4487 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004488 struct btrfs_map_token token;
4489
4490 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004491
Chris Mason5f39d392007-10-15 16:14:19 -04004492 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004493 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004494
Chris Mason5f39d392007-10-15 16:14:19 -04004495 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004496 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004497
Chris Masonf25956c2008-09-12 15:32:53 -04004498 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004499 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004500 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05004501 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004502 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004503 }
Chris Mason5f39d392007-10-15 16:14:19 -04004504
Chris Masonbe0e5c02007-01-26 15:51:26 -05004505 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004506 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004507
Chris Mason5f39d392007-10-15 16:14:19 -04004508 if (old_data < data_end) {
4509 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004510 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04004511 slot, old_data, data_end);
4512 BUG_ON(1);
4513 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004514 /*
4515 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4516 */
4517 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004518 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004519 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004520
Ross Kirkdd3cc162013-09-16 15:58:09 +01004521 item = btrfs_item_nr( i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004522 ioff = btrfs_token_item_offset(leaf, item, &token);
4523 btrfs_set_token_item_offset(leaf, item,
4524 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004525 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004526 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004527 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004528 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004529 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004530
4531 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004532 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004533 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004534 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004535 data_end = old_data;
4536 }
Chris Mason5f39d392007-10-15 16:14:19 -04004537
Chris Mason62e27492007-03-15 12:56:47 -04004538 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004539 for (i = 0; i < nr; i++) {
4540 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4541 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004542 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004543 btrfs_set_token_item_offset(leaf, item,
4544 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004545 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004546 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004547 }
Chris Mason44871b12009-03-13 10:04:31 -04004548
Chris Mason9c583092008-01-29 15:15:18 -05004549 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004550
Chris Mason5a01a2e2008-01-30 11:43:54 -05004551 if (slot == 0) {
4552 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004553 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05004554 }
Chris Masonb9473432009-03-13 11:00:37 -04004555 btrfs_unlock_up_safe(path, 1);
4556 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004557
Chris Mason5f39d392007-10-15 16:14:19 -04004558 if (btrfs_leaf_free_space(root, leaf) < 0) {
4559 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004560 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004561 }
Chris Mason44871b12009-03-13 10:04:31 -04004562}
4563
4564/*
4565 * Given a key and some data, insert items into the tree.
4566 * This does all the path init required, making room in the tree if needed.
4567 */
4568int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4569 struct btrfs_root *root,
4570 struct btrfs_path *path,
4571 struct btrfs_key *cpu_key, u32 *data_size,
4572 int nr)
4573{
Chris Mason44871b12009-03-13 10:04:31 -04004574 int ret = 0;
4575 int slot;
4576 int i;
4577 u32 total_size = 0;
4578 u32 total_data = 0;
4579
4580 for (i = 0; i < nr; i++)
4581 total_data += data_size[i];
4582
4583 total_size = total_data + (nr * sizeof(struct btrfs_item));
4584 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4585 if (ret == 0)
4586 return -EEXIST;
4587 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004588 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004589
Chris Mason44871b12009-03-13 10:04:31 -04004590 slot = path->slots[0];
4591 BUG_ON(slot < 0);
4592
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004593 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004594 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004595 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004596}
4597
4598/*
4599 * Given a key and some data, insert an item into the tree.
4600 * This does all the path init required, making room in the tree if needed.
4601 */
Chris Masone089f052007-03-16 16:20:31 -04004602int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4603 *root, struct btrfs_key *cpu_key, void *data, u32
4604 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004605{
4606 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004607 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004608 struct extent_buffer *leaf;
4609 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004610
Chris Mason2c90e5d2007-04-02 10:50:19 -04004611 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004612 if (!path)
4613 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004614 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004615 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004616 leaf = path->nodes[0];
4617 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4618 write_extent_buffer(leaf, data, ptr, data_size);
4619 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004620 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004621 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004622 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004623}
4624
Chris Mason74123bd2007-02-02 11:05:29 -05004625/*
Chris Mason5de08d72007-02-24 06:24:44 -05004626 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004627 *
Chris Masond352ac62008-09-29 15:18:18 -04004628 * the tree should have been previously balanced so the deletion does not
4629 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004630 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004631static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4632 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004633{
Chris Mason5f39d392007-10-15 16:14:19 -04004634 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004635 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004636 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004637
Chris Mason5f39d392007-10-15 16:14:19 -04004638 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004639 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004640 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004641 tree_mod_log_eb_move(root->fs_info, parent, slot,
4642 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004643 memmove_extent_buffer(parent,
4644 btrfs_node_key_ptr_offset(slot),
4645 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004646 sizeof(struct btrfs_key_ptr) *
4647 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004648 } else if (level) {
4649 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04004650 MOD_LOG_KEY_REMOVE, GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004651 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004652 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004653
Chris Mason7518a232007-03-12 12:01:18 -04004654 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004655 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004656 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004657 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004658 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004659 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004660 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004661 struct btrfs_disk_key disk_key;
4662
4663 btrfs_node_key(parent, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004664 fixup_low_keys(root, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004665 }
Chris Masond6025572007-03-30 14:27:56 -04004666 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004667}
4668
Chris Mason74123bd2007-02-02 11:05:29 -05004669/*
Chris Mason323ac952008-10-01 19:05:46 -04004670 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004671 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004672 *
4673 * This deletes the pointer in path->nodes[1] and frees the leaf
4674 * block extent. zero is returned if it all worked out, < 0 otherwise.
4675 *
4676 * The path must have already been setup for deleting the leaf, including
4677 * all the proper balancing. path->nodes[1] must be locked.
4678 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004679static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4680 struct btrfs_root *root,
4681 struct btrfs_path *path,
4682 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004683{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004684 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004685 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004686
Chris Mason4d081c42009-02-04 09:31:28 -05004687 /*
4688 * btrfs_free_extent is expensive, we want to make sure we
4689 * aren't holding any locks when we call it
4690 */
4691 btrfs_unlock_up_safe(path, 0);
4692
Yan, Zhengf0486c62010-05-16 10:46:25 -04004693 root_sub_used(root, leaf->len);
4694
Josef Bacik3083ee22012-03-09 16:01:49 -05004695 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004696 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004697 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004698}
4699/*
Chris Mason74123bd2007-02-02 11:05:29 -05004700 * delete the item at the leaf level in path. If that empties
4701 * the leaf, remove it from the tree
4702 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004703int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4704 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004705{
Chris Mason5f39d392007-10-15 16:14:19 -04004706 struct extent_buffer *leaf;
4707 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004708 int last_off;
4709 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004710 int ret = 0;
4711 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004712 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004713 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004714 struct btrfs_map_token token;
4715
4716 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004717
Chris Mason5f39d392007-10-15 16:14:19 -04004718 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004719 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4720
4721 for (i = 0; i < nr; i++)
4722 dsize += btrfs_item_size_nr(leaf, slot + i);
4723
Chris Mason5f39d392007-10-15 16:14:19 -04004724 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004725
Chris Mason85e21ba2008-01-29 15:11:36 -05004726 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004727 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004728
4729 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004730 data_end + dsize,
4731 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004732 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004733
Chris Mason85e21ba2008-01-29 15:11:36 -05004734 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004735 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004736
Ross Kirkdd3cc162013-09-16 15:58:09 +01004737 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004738 ioff = btrfs_token_item_offset(leaf, item, &token);
4739 btrfs_set_token_item_offset(leaf, item,
4740 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004741 }
Chris Masondb945352007-10-15 16:15:53 -04004742
Chris Mason5f39d392007-10-15 16:14:19 -04004743 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004744 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004745 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004746 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004747 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004748 btrfs_set_header_nritems(leaf, nritems - nr);
4749 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004750
Chris Mason74123bd2007-02-02 11:05:29 -05004751 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004752 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004753 if (leaf == root->node) {
4754 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004755 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004756 btrfs_set_path_blocking(path);
4757 clean_tree_block(trans, root, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004758 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004759 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004760 } else {
Chris Mason7518a232007-03-12 12:01:18 -04004761 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004762 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004763 struct btrfs_disk_key disk_key;
4764
4765 btrfs_item_key(leaf, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004766 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004767 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004768
Chris Mason74123bd2007-02-02 11:05:29 -05004769 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04004770 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05004771 /* push_leaf_left fixes the path.
4772 * make sure the path still points to our leaf
4773 * for possible call to del_ptr below
4774 */
Chris Mason4920c9a2007-01-26 16:38:42 -05004775 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04004776 extent_buffer_get(leaf);
4777
Chris Masonb9473432009-03-13 11:00:37 -04004778 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04004779 wret = push_leaf_left(trans, root, path, 1, 1,
4780 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004781 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05004782 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04004783
4784 if (path->nodes[0] == leaf &&
4785 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004786 wret = push_leaf_right(trans, root, path, 1,
4787 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04004788 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05004789 ret = wret;
4790 }
Chris Mason5f39d392007-10-15 16:14:19 -04004791
4792 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04004793 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004794 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004795 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004796 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05004797 } else {
Chris Mason925baed2008-06-25 16:01:30 -04004798 /* if we're still in the path, make sure
4799 * we're dirty. Otherwise, one of the
4800 * push_leaf functions must have already
4801 * dirtied this buffer
4802 */
4803 if (path->nodes[0] == leaf)
4804 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004805 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004806 }
Chris Masond5719762007-03-23 10:01:08 -04004807 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04004808 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004809 }
4810 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004811 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004812}
4813
Chris Mason97571fd2007-02-24 13:39:08 -05004814/*
Chris Mason925baed2008-06-25 16:01:30 -04004815 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05004816 * returns 0 if it found something or 1 if there are no lesser leaves.
4817 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04004818 *
4819 * This may release the path, and so you may lose any locks held at the
4820 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05004821 */
Stefan Behrens35a36212013-08-14 18:12:25 +02004822static int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05004823{
Chris Mason925baed2008-06-25 16:01:30 -04004824 struct btrfs_key key;
4825 struct btrfs_disk_key found_key;
4826 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05004827
Chris Mason925baed2008-06-25 16:01:30 -04004828 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05004829
Chris Mason925baed2008-06-25 16:01:30 -04004830 if (key.offset > 0)
4831 key.offset--;
4832 else if (key.type > 0)
4833 key.type--;
4834 else if (key.objectid > 0)
4835 key.objectid--;
4836 else
4837 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05004838
David Sterbab3b4aa72011-04-21 01:20:15 +02004839 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04004840 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4841 if (ret < 0)
4842 return ret;
4843 btrfs_item_key(path->nodes[0], &found_key, 0);
4844 ret = comp_keys(&found_key, &key);
4845 if (ret < 0)
4846 return 0;
4847 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05004848}
4849
Chris Mason3f157a22008-06-25 16:01:31 -04004850/*
4851 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00004852 * for nodes or leaves that are have a minimum transaction id.
4853 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04004854 *
4855 * This does not cow, but it does stuff the starting key it finds back
4856 * into min_key, so you can call btrfs_search_slot with cow=1 on the
4857 * key and get a writable path.
4858 *
4859 * This does lock as it descends, and path->keep_locks should be set
4860 * to 1 by the caller.
4861 *
4862 * This honors path->lowest_level to prevent descent past a given level
4863 * of the tree.
4864 *
Chris Masond352ac62008-09-29 15:18:18 -04004865 * min_trans indicates the oldest transaction that you are interested
4866 * in walking through. Any nodes or leaves older than min_trans are
4867 * skipped over (without reading them).
4868 *
Chris Mason3f157a22008-06-25 16:01:31 -04004869 * returns zero if something useful was found, < 0 on error and 1 if there
4870 * was nothing in the tree that matched the search criteria.
4871 */
4872int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04004873 struct btrfs_key *max_key,
Eric Sandeende78b512013-01-31 18:21:12 +00004874 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04004875 u64 min_trans)
4876{
4877 struct extent_buffer *cur;
4878 struct btrfs_key found_key;
4879 int slot;
Yan96524802008-07-24 12:19:49 -04004880 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04004881 u32 nritems;
4882 int level;
4883 int ret = 1;
4884
Chris Mason934d3752008-12-08 16:43:10 -05004885 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04004886again:
Chris Masonbd681512011-07-16 15:23:14 -04004887 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04004888 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04004889 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04004890 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04004891 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004892
4893 if (btrfs_header_generation(cur) < min_trans) {
4894 ret = 1;
4895 goto out;
4896 }
Chris Masond3977122009-01-05 21:25:51 -05004897 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04004898 nritems = btrfs_header_nritems(cur);
4899 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04004900 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004901
Chris Mason323ac952008-10-01 19:05:46 -04004902 /* at the lowest level, we're done, setup the path and exit */
4903 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04004904 if (slot >= nritems)
4905 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04004906 ret = 0;
4907 path->slots[level] = slot;
4908 btrfs_item_key_to_cpu(cur, &found_key, slot);
4909 goto out;
4910 }
Yan96524802008-07-24 12:19:49 -04004911 if (sret && slot > 0)
4912 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04004913 /*
Eric Sandeende78b512013-01-31 18:21:12 +00004914 * check this node pointer against the min_trans parameters.
4915 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04004916 */
Chris Masond3977122009-01-05 21:25:51 -05004917 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04004918 u64 blockptr;
4919 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04004920
Chris Mason3f157a22008-06-25 16:01:31 -04004921 blockptr = btrfs_node_blockptr(cur, slot);
4922 gen = btrfs_node_ptr_generation(cur, slot);
4923 if (gen < min_trans) {
4924 slot++;
4925 continue;
4926 }
Eric Sandeende78b512013-01-31 18:21:12 +00004927 break;
Chris Mason3f157a22008-06-25 16:01:31 -04004928 }
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,
Eric Sandeende78b512013-01-31 18:21:12 +00004938 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 {
Josef Bacikba5e8f22013-08-16 16:52:55 -04005337 enum btrfs_compare_tree_result cmp;
5338
Chris Mason74dd17f2012-08-07 16:25:13 -04005339 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005340 ret = tree_compare_item(left_root, left_path,
5341 right_path, tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005342 if (ret)
5343 cmp = BTRFS_COMPARE_TREE_CHANGED;
5344 else
5345 cmp = BTRFS_COMPARE_TREE_SAME;
5346 ret = changed_cb(left_root, right_root,
5347 left_path, right_path,
5348 &left_key, cmp, ctx);
5349 if (ret < 0)
5350 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005351 advance_left = ADVANCE;
5352 advance_right = ADVANCE;
5353 }
5354 } else if (left_level == right_level) {
5355 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5356 if (cmp < 0) {
5357 advance_left = ADVANCE;
5358 } else if (cmp > 0) {
5359 advance_right = ADVANCE;
5360 } else {
5361 left_blockptr = btrfs_node_blockptr(
5362 left_path->nodes[left_level],
5363 left_path->slots[left_level]);
5364 right_blockptr = btrfs_node_blockptr(
5365 right_path->nodes[right_level],
5366 right_path->slots[right_level]);
5367 if (left_blockptr == right_blockptr) {
5368 /*
5369 * As we're on a shared block, don't
5370 * allow to go deeper.
5371 */
5372 advance_left = ADVANCE_ONLY_NEXT;
5373 advance_right = ADVANCE_ONLY_NEXT;
5374 } else {
5375 advance_left = ADVANCE;
5376 advance_right = ADVANCE;
5377 }
5378 }
5379 } else if (left_level < right_level) {
5380 advance_right = ADVANCE;
5381 } else {
5382 advance_left = ADVANCE;
5383 }
5384 }
5385
5386out:
5387 btrfs_free_path(left_path);
5388 btrfs_free_path(right_path);
5389 kfree(tmp_buf);
5390
5391 if (trans) {
5392 if (!ret)
5393 ret = btrfs_end_transaction(trans, left_root);
5394 else
5395 btrfs_end_transaction(trans, left_root);
5396 }
5397
5398 return ret;
5399}
5400
Chris Mason3f157a22008-06-25 16:01:31 -04005401/*
5402 * this is similar to btrfs_next_leaf, but does not try to preserve
5403 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005404 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005405 *
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,
Eric Sandeende78b512013-01-31 18:21:12 +00005413 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005414{
Chris Masone7a84562008-06-25 16:01:31 -04005415 int slot;
5416 struct extent_buffer *c;
5417
Chris Mason934d3752008-12-08 16:43:10 -05005418 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005419 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005420 if (!path->nodes[level])
5421 return 1;
5422
5423 slot = path->slots[level] + 1;
5424 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005425next:
Chris Masone7a84562008-06-25 16:01:31 -04005426 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005427 int ret;
5428 int orig_lowest;
5429 struct btrfs_key cur_key;
5430 if (level + 1 >= BTRFS_MAX_LEVEL ||
5431 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005432 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005433
5434 if (path->locks[level + 1]) {
5435 level++;
5436 continue;
5437 }
5438
5439 slot = btrfs_header_nritems(c) - 1;
5440 if (level == 0)
5441 btrfs_item_key_to_cpu(c, &cur_key, slot);
5442 else
5443 btrfs_node_key_to_cpu(c, &cur_key, slot);
5444
5445 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005446 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005447 path->lowest_level = level;
5448 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5449 0, 0);
5450 path->lowest_level = orig_lowest;
5451 if (ret < 0)
5452 return ret;
5453
5454 c = path->nodes[level];
5455 slot = path->slots[level];
5456 if (ret == 0)
5457 slot++;
5458 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005459 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005460
Chris Masone7a84562008-06-25 16:01:31 -04005461 if (level == 0)
5462 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005463 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005464 u64 gen = btrfs_node_ptr_generation(c, slot);
5465
Chris Mason3f157a22008-06-25 16:01:31 -04005466 if (gen < min_trans) {
5467 slot++;
5468 goto next;
5469 }
Chris Masone7a84562008-06-25 16:01:31 -04005470 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005471 }
Chris Masone7a84562008-06-25 16:01:31 -04005472 return 0;
5473 }
5474 return 1;
5475}
5476
Chris Mason7bb86312007-12-11 09:25:06 -05005477/*
Chris Mason925baed2008-06-25 16:01:30 -04005478 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005479 * returns 0 if it found something or 1 if there are no greater leaves.
5480 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005481 */
Chris Mason234b63a2007-03-13 10:46:10 -04005482int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005483{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005484 return btrfs_next_old_leaf(root, path, 0);
5485}
5486
5487int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5488 u64 time_seq)
5489{
Chris Masond97e63b2007-02-20 16:40:44 -05005490 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005491 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005492 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005493 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005494 struct btrfs_key key;
5495 u32 nritems;
5496 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005497 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005498 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005499
5500 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005501 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005502 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005503
Chris Mason8e73f272009-04-03 10:14:18 -04005504 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5505again:
5506 level = 1;
5507 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005508 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005509 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005510
Chris Masona2135012008-06-25 16:01:30 -04005511 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005512 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005513
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005514 if (time_seq)
5515 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5516 else
5517 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005518 path->keep_locks = 0;
5519
5520 if (ret < 0)
5521 return ret;
5522
Chris Masona2135012008-06-25 16:01:30 -04005523 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005524 /*
5525 * by releasing the path above we dropped all our locks. A balance
5526 * could have added more items next to the key that used to be
5527 * at the very end of the block. So, check again here and
5528 * advance the path if there are now more items available.
5529 */
Chris Masona2135012008-06-25 16:01:30 -04005530 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005531 if (ret == 0)
5532 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005533 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005534 goto done;
5535 }
Chris Masond97e63b2007-02-20 16:40:44 -05005536
Chris Masond3977122009-01-05 21:25:51 -05005537 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005538 if (!path->nodes[level]) {
5539 ret = 1;
5540 goto done;
5541 }
Chris Mason5f39d392007-10-15 16:14:19 -04005542
Chris Masond97e63b2007-02-20 16:40:44 -05005543 slot = path->slots[level] + 1;
5544 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005545 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005546 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005547 if (level == BTRFS_MAX_LEVEL) {
5548 ret = 1;
5549 goto done;
5550 }
Chris Masond97e63b2007-02-20 16:40:44 -05005551 continue;
5552 }
Chris Mason5f39d392007-10-15 16:14:19 -04005553
Chris Mason925baed2008-06-25 16:01:30 -04005554 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005555 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005556 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005557 }
Chris Mason5f39d392007-10-15 16:14:19 -04005558
Chris Mason8e73f272009-04-03 10:14:18 -04005559 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005560 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005561 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005562 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005563 if (ret == -EAGAIN)
5564 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005565
Chris Mason76a05b32009-05-14 13:24:30 -04005566 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005567 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005568 goto done;
5569 }
5570
Chris Mason5cd57b22008-06-25 16:01:30 -04005571 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005572 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005573 if (!ret && time_seq) {
5574 /*
5575 * If we don't get the lock, we may be racing
5576 * with push_leaf_left, holding that lock while
5577 * itself waiting for the leaf we've currently
5578 * locked. To solve this situation, we give up
5579 * on our lock and cycle.
5580 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005581 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005582 btrfs_release_path(path);
5583 cond_resched();
5584 goto again;
5585 }
Chris Mason8e73f272009-04-03 10:14:18 -04005586 if (!ret) {
5587 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005588 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005589 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005590 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005591 }
Chris Mason31533fb2011-07-26 16:01:59 -04005592 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005593 }
Chris Masond97e63b2007-02-20 16:40:44 -05005594 break;
5595 }
5596 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005597 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005598 level--;
5599 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005600 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005601 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005602
Chris Mason5f39d392007-10-15 16:14:19 -04005603 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005604 path->nodes[level] = next;
5605 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005606 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005607 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005608 if (!level)
5609 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005610
Chris Mason8e73f272009-04-03 10:14:18 -04005611 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005612 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005613 if (ret == -EAGAIN)
5614 goto again;
5615
Chris Mason76a05b32009-05-14 13:24:30 -04005616 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005617 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005618 goto done;
5619 }
5620
Chris Mason5cd57b22008-06-25 16:01:30 -04005621 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005622 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005623 if (!ret) {
5624 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005625 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005626 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005627 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005628 }
Chris Mason31533fb2011-07-26 16:01:59 -04005629 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005630 }
Chris Masond97e63b2007-02-20 16:40:44 -05005631 }
Chris Mason8e73f272009-04-03 10:14:18 -04005632 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005633done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005634 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005635 path->leave_spinning = old_spinning;
5636 if (!old_spinning)
5637 btrfs_set_path_blocking(path);
5638
5639 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005640}
Chris Mason0b86a832008-03-24 15:01:56 -04005641
Chris Mason3f157a22008-06-25 16:01:31 -04005642/*
5643 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5644 * searching until it gets past min_objectid or finds an item of 'type'
5645 *
5646 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5647 */
Chris Mason0b86a832008-03-24 15:01:56 -04005648int btrfs_previous_item(struct btrfs_root *root,
5649 struct btrfs_path *path, u64 min_objectid,
5650 int type)
5651{
5652 struct btrfs_key found_key;
5653 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005654 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005655 int ret;
5656
Chris Masond3977122009-01-05 21:25:51 -05005657 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005658 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005659 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005660 ret = btrfs_prev_leaf(root, path);
5661 if (ret != 0)
5662 return ret;
5663 } else {
5664 path->slots[0]--;
5665 }
5666 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005667 nritems = btrfs_header_nritems(leaf);
5668 if (nritems == 0)
5669 return 1;
5670 if (path->slots[0] == nritems)
5671 path->slots[0]--;
5672
Chris Mason0b86a832008-03-24 15:01:56 -04005673 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005674 if (found_key.objectid < min_objectid)
5675 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005676 if (found_key.type == type)
5677 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005678 if (found_key.objectid == min_objectid &&
5679 found_key.type < type)
5680 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005681 }
5682 return 1;
5683}