blob: 5bf4c39e2ad625f2e90bfbbc765fd4e13db47a2b [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
Yan Zheng2b820322008-11-17 21:11:30 -0500277 write_extent_buffer(cow, root->fs_info->fsid,
278 (unsigned long)btrfs_header_fsid(cow),
279 BTRFS_FSID_SIZE);
280
Chris Masonbe20aa92007-12-17 20:14:01 -0500281 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400282 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200283 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400284 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200285 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Chris Mason4aec2b52007-12-18 16:25:45 -0500286
Chris Masonbe20aa92007-12-17 20:14:01 -0500287 if (ret)
288 return ret;
289
290 btrfs_mark_buffer_dirty(cow);
291 *cow_ret = cow;
292 return 0;
293}
294
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200295enum mod_log_op {
296 MOD_LOG_KEY_REPLACE,
297 MOD_LOG_KEY_ADD,
298 MOD_LOG_KEY_REMOVE,
299 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
300 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
301 MOD_LOG_MOVE_KEYS,
302 MOD_LOG_ROOT_REPLACE,
303};
304
305struct tree_mod_move {
306 int dst_slot;
307 int nr_items;
308};
309
310struct tree_mod_root {
311 u64 logical;
312 u8 level;
313};
314
315struct tree_mod_elem {
316 struct rb_node node;
317 u64 index; /* shifted logical */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200318 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200319 enum mod_log_op op;
320
321 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
322 int slot;
323
324 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
325 u64 generation;
326
327 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
328 struct btrfs_disk_key key;
329 u64 blockptr;
330
331 /* this is used for op == MOD_LOG_MOVE_KEYS */
332 struct tree_mod_move move;
333
334 /* this is used for op == MOD_LOG_ROOT_REPLACE */
335 struct tree_mod_root old_root;
336};
337
Jan Schmidt097b8a72012-06-21 11:08:04 +0200338static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200339{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200340 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200341}
342
Jan Schmidt097b8a72012-06-21 11:08:04 +0200343static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200344{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200345 read_unlock(&fs_info->tree_mod_log_lock);
346}
347
348static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
349{
350 write_lock(&fs_info->tree_mod_log_lock);
351}
352
353static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
354{
355 write_unlock(&fs_info->tree_mod_log_lock);
356}
357
358/*
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000359 * Increment the upper half of tree_mod_seq, set lower half zero.
360 *
361 * Must be called with fs_info->tree_mod_seq_lock held.
362 */
363static inline u64 btrfs_inc_tree_mod_seq_major(struct btrfs_fs_info *fs_info)
364{
365 u64 seq = atomic64_read(&fs_info->tree_mod_seq);
366 seq &= 0xffffffff00000000ull;
367 seq += 1ull << 32;
368 atomic64_set(&fs_info->tree_mod_seq, seq);
369 return seq;
370}
371
372/*
373 * Increment the lower half of tree_mod_seq.
374 *
375 * Must be called with fs_info->tree_mod_seq_lock held. The way major numbers
376 * are generated should not technically require a spin lock here. (Rationale:
377 * incrementing the minor while incrementing the major seq number is between its
378 * atomic64_read and atomic64_set calls doesn't duplicate sequence numbers, it
379 * just returns a unique sequence number as usual.) We have decided to leave
380 * that requirement in here and rethink it once we notice it really imposes a
381 * problem on some workload.
382 */
383static inline u64 btrfs_inc_tree_mod_seq_minor(struct btrfs_fs_info *fs_info)
384{
385 return atomic64_inc_return(&fs_info->tree_mod_seq);
386}
387
388/*
389 * return the last minor in the previous major tree_mod_seq number
390 */
391u64 btrfs_tree_mod_seq_prev(u64 seq)
392{
393 return (seq & 0xffffffff00000000ull) - 1ull;
394}
395
396/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200397 * This adds a new blocker to the tree mod log's blocker list if the @elem
398 * passed does not already have a sequence number set. So when a caller expects
399 * to record tree modifications, it should ensure to set elem->seq to zero
400 * before calling btrfs_get_tree_mod_seq.
401 * Returns a fresh, unused tree log modification sequence number, even if no new
402 * blocker was added.
403 */
404u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
405 struct seq_list *elem)
406{
407 u64 seq;
408
409 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200410 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200411 if (!elem->seq) {
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000412 elem->seq = btrfs_inc_tree_mod_seq_major(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200413 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
414 }
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000415 seq = btrfs_inc_tree_mod_seq_minor(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200416 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200417 tree_mod_log_write_unlock(fs_info);
418
419 return seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200420}
421
422void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
423 struct seq_list *elem)
424{
425 struct rb_root *tm_root;
426 struct rb_node *node;
427 struct rb_node *next;
428 struct seq_list *cur_elem;
429 struct tree_mod_elem *tm;
430 u64 min_seq = (u64)-1;
431 u64 seq_putting = elem->seq;
432
433 if (!seq_putting)
434 return;
435
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200436 spin_lock(&fs_info->tree_mod_seq_lock);
437 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200438 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200439
440 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200441 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200442 if (seq_putting > cur_elem->seq) {
443 /*
444 * blocker with lower sequence number exists, we
445 * cannot remove anything from the log
446 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200447 spin_unlock(&fs_info->tree_mod_seq_lock);
448 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200449 }
450 min_seq = cur_elem->seq;
451 }
452 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200453 spin_unlock(&fs_info->tree_mod_seq_lock);
454
455 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200456 * anything that's lower than the lowest existing (read: blocked)
457 * sequence number can be removed from the tree.
458 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200459 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200460 tm_root = &fs_info->tree_mod_log;
461 for (node = rb_first(tm_root); node; node = next) {
462 next = rb_next(node);
463 tm = container_of(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200464 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200465 continue;
466 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200467 kfree(tm);
468 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200469 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200470}
471
472/*
473 * key order of the log:
474 * index -> sequence
475 *
476 * the index is the shifted logical of the *new* root node for root replace
477 * operations, or the shifted logical of the affected block for all other
478 * operations.
479 */
480static noinline int
481__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
482{
483 struct rb_root *tm_root;
484 struct rb_node **new;
485 struct rb_node *parent = NULL;
486 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200487
Jan Schmidt097b8a72012-06-21 11:08:04 +0200488 BUG_ON(!tm || !tm->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200489
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200490 tm_root = &fs_info->tree_mod_log;
491 new = &tm_root->rb_node;
492 while (*new) {
493 cur = container_of(*new, struct tree_mod_elem, node);
494 parent = *new;
495 if (cur->index < tm->index)
496 new = &((*new)->rb_left);
497 else if (cur->index > tm->index)
498 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200499 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200500 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200501 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200502 new = &((*new)->rb_right);
503 else {
504 kfree(tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200505 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200506 }
507 }
508
509 rb_link_node(&tm->node, parent, new);
510 rb_insert_color(&tm->node, tm_root);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200511 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200512}
513
Jan Schmidt097b8a72012-06-21 11:08:04 +0200514/*
515 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
516 * returns zero with the tree_mod_log_lock acquired. The caller must hold
517 * this until all tree mod log insertions are recorded in the rb tree and then
518 * call tree_mod_log_write_unlock() to release.
519 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200520static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
521 struct extent_buffer *eb) {
522 smp_mb();
523 if (list_empty(&(fs_info)->tree_mod_seq_list))
524 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200525 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200526 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200527
528 tree_mod_log_write_lock(fs_info);
529 if (list_empty(&fs_info->tree_mod_seq_list)) {
530 /*
531 * someone emptied the list while we were waiting for the lock.
532 * we must not add to the list when no blocker exists.
533 */
534 tree_mod_log_write_unlock(fs_info);
535 return 1;
536 }
537
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200538 return 0;
539}
540
Jan Schmidt3310c362012-06-11 10:52:38 +0200541/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200542 * This allocates memory and gets a tree modification sequence number.
Jan Schmidt3310c362012-06-11 10:52:38 +0200543 *
Jan Schmidt097b8a72012-06-21 11:08:04 +0200544 * Returns <0 on error.
545 * Returns >0 (the added sequence number) on success.
Jan Schmidt3310c362012-06-11 10:52:38 +0200546 */
Jan Schmidt926dd8a2012-05-31 14:00:15 +0200547static inline int tree_mod_alloc(struct btrfs_fs_info *fs_info, gfp_t flags,
548 struct tree_mod_elem **tm_ret)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200549{
550 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200551
Jan Schmidt097b8a72012-06-21 11:08:04 +0200552 /*
553 * once we switch from spin locks to something different, we should
554 * honor the flags parameter here.
555 */
556 tm = *tm_ret = kzalloc(sizeof(*tm), GFP_ATOMIC);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200557 if (!tm)
558 return -ENOMEM;
559
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000560 spin_lock(&fs_info->tree_mod_seq_lock);
561 tm->seq = btrfs_inc_tree_mod_seq_minor(fs_info);
562 spin_unlock(&fs_info->tree_mod_seq_lock);
563
Jan Schmidt097b8a72012-06-21 11:08:04 +0200564 return tm->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200565}
566
Jan Schmidt097b8a72012-06-21 11:08:04 +0200567static inline int
568__tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
569 struct extent_buffer *eb, int slot,
570 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200571{
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200572 int ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200573 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200574
575 ret = tree_mod_alloc(fs_info, flags, &tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200576 if (ret < 0)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200577 return ret;
578
579 tm->index = eb->start >> PAGE_CACHE_SHIFT;
580 if (op != MOD_LOG_KEY_ADD) {
581 btrfs_node_key(eb, &tm->key, slot);
582 tm->blockptr = btrfs_node_blockptr(eb, slot);
583 }
584 tm->op = op;
585 tm->slot = slot;
586 tm->generation = btrfs_node_ptr_generation(eb, slot);
587
Jan Schmidt097b8a72012-06-21 11:08:04 +0200588 return __tree_mod_log_insert(fs_info, tm);
589}
590
591static noinline int
592tree_mod_log_insert_key_mask(struct btrfs_fs_info *fs_info,
593 struct extent_buffer *eb, int slot,
594 enum mod_log_op op, gfp_t flags)
595{
596 int ret;
597
598 if (tree_mod_dont_log(fs_info, eb))
599 return 0;
600
601 ret = __tree_mod_log_insert_key(fs_info, eb, slot, op, flags);
602
603 tree_mod_log_write_unlock(fs_info);
Jan Schmidt3310c362012-06-11 10:52:38 +0200604 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200605}
606
607static noinline int
608tree_mod_log_insert_key(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
609 int slot, enum mod_log_op op)
610{
611 return tree_mod_log_insert_key_mask(fs_info, eb, slot, op, GFP_NOFS);
612}
613
614static noinline int
Jan Schmidt097b8a72012-06-21 11:08:04 +0200615tree_mod_log_insert_key_locked(struct btrfs_fs_info *fs_info,
616 struct extent_buffer *eb, int slot,
617 enum mod_log_op op)
618{
619 return __tree_mod_log_insert_key(fs_info, eb, slot, op, GFP_NOFS);
620}
621
622static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200623tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
624 struct extent_buffer *eb, int dst_slot, int src_slot,
625 int nr_items, gfp_t flags)
626{
627 struct tree_mod_elem *tm;
628 int ret;
629 int i;
630
Jan Schmidtf3956942012-05-31 15:02:32 +0200631 if (tree_mod_dont_log(fs_info, eb))
632 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200633
Jan Schmidt01763a22012-10-23 15:02:12 +0200634 /*
635 * When we override something during the move, we log these removals.
636 * This can only happen when we move towards the beginning of the
637 * buffer, i.e. dst_slot < src_slot.
638 */
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200639 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200640 ret = tree_mod_log_insert_key_locked(fs_info, eb, i + dst_slot,
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200641 MOD_LOG_KEY_REMOVE_WHILE_MOVING);
642 BUG_ON(ret < 0);
643 }
644
Jan Schmidtf3956942012-05-31 15:02:32 +0200645 ret = tree_mod_alloc(fs_info, flags, &tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200646 if (ret < 0)
647 goto out;
Jan Schmidtf3956942012-05-31 15:02:32 +0200648
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200649 tm->index = eb->start >> PAGE_CACHE_SHIFT;
650 tm->slot = src_slot;
651 tm->move.dst_slot = dst_slot;
652 tm->move.nr_items = nr_items;
653 tm->op = MOD_LOG_MOVE_KEYS;
654
Jan Schmidt3310c362012-06-11 10:52:38 +0200655 ret = __tree_mod_log_insert(fs_info, tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200656out:
657 tree_mod_log_write_unlock(fs_info);
Jan Schmidt3310c362012-06-11 10:52:38 +0200658 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200659}
660
Jan Schmidt097b8a72012-06-21 11:08:04 +0200661static inline void
662__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
663{
664 int i;
665 u32 nritems;
666 int ret;
667
Chris Masonb12a3b12012-08-07 15:34:49 -0400668 if (btrfs_header_level(eb) == 0)
669 return;
670
Jan Schmidt097b8a72012-06-21 11:08:04 +0200671 nritems = btrfs_header_nritems(eb);
672 for (i = nritems - 1; i >= 0; i--) {
673 ret = tree_mod_log_insert_key_locked(fs_info, eb, i,
674 MOD_LOG_KEY_REMOVE_WHILE_FREEING);
675 BUG_ON(ret < 0);
676 }
677}
678
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200679static noinline int
680tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
681 struct extent_buffer *old_root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000682 struct extent_buffer *new_root, gfp_t flags,
683 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200684{
685 struct tree_mod_elem *tm;
686 int ret;
687
Jan Schmidt097b8a72012-06-21 11:08:04 +0200688 if (tree_mod_dont_log(fs_info, NULL))
689 return 0;
690
Jan Schmidt90f8d622013-04-13 13:19:53 +0000691 if (log_removal)
692 __tree_mod_log_free_eb(fs_info, old_root);
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000693
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200694 ret = tree_mod_alloc(fs_info, flags, &tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200695 if (ret < 0)
696 goto out;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200697
698 tm->index = new_root->start >> PAGE_CACHE_SHIFT;
699 tm->old_root.logical = old_root->start;
700 tm->old_root.level = btrfs_header_level(old_root);
701 tm->generation = btrfs_header_generation(old_root);
702 tm->op = MOD_LOG_ROOT_REPLACE;
703
Jan Schmidt3310c362012-06-11 10:52:38 +0200704 ret = __tree_mod_log_insert(fs_info, tm);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200705out:
706 tree_mod_log_write_unlock(fs_info);
Jan Schmidt3310c362012-06-11 10:52:38 +0200707 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200708}
709
710static struct tree_mod_elem *
711__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
712 int smallest)
713{
714 struct rb_root *tm_root;
715 struct rb_node *node;
716 struct tree_mod_elem *cur = NULL;
717 struct tree_mod_elem *found = NULL;
718 u64 index = start >> PAGE_CACHE_SHIFT;
719
Jan Schmidt097b8a72012-06-21 11:08:04 +0200720 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200721 tm_root = &fs_info->tree_mod_log;
722 node = tm_root->rb_node;
723 while (node) {
724 cur = container_of(node, struct tree_mod_elem, node);
725 if (cur->index < index) {
726 node = node->rb_left;
727 } else if (cur->index > index) {
728 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200729 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200730 node = node->rb_left;
731 } else if (!smallest) {
732 /* we want the node with the highest seq */
733 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200734 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200735 found = cur;
736 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200737 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200738 /* we want the node with the smallest seq */
739 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200740 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200741 found = cur;
742 node = node->rb_right;
743 } else {
744 found = cur;
745 break;
746 }
747 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200748 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200749
750 return found;
751}
752
753/*
754 * this returns the element from the log with the smallest time sequence
755 * value that's in the log (the oldest log item). any element with a time
756 * sequence lower than min_seq will be ignored.
757 */
758static struct tree_mod_elem *
759tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
760 u64 min_seq)
761{
762 return __tree_mod_log_search(fs_info, start, min_seq, 1);
763}
764
765/*
766 * this returns the element from the log with the largest time sequence
767 * value that's in the log (the most recent log item). any element with
768 * a time sequence lower than min_seq will be ignored.
769 */
770static struct tree_mod_elem *
771tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
772{
773 return __tree_mod_log_search(fs_info, start, min_seq, 0);
774}
775
Jan Schmidt097b8a72012-06-21 11:08:04 +0200776static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200777tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
778 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000779 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200780{
781 int ret;
782 int i;
783
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200784 if (tree_mod_dont_log(fs_info, NULL))
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200785 return;
786
Jan Schmidt097b8a72012-06-21 11:08:04 +0200787 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0) {
788 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200789 return;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200790 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200791
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200792 for (i = 0; i < nr_items; i++) {
Jan Schmidt90f8d622013-04-13 13:19:53 +0000793 ret = tree_mod_log_insert_key_locked(fs_info, src,
794 i + src_offset,
795 MOD_LOG_KEY_REMOVE);
796 BUG_ON(ret < 0);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200797 ret = tree_mod_log_insert_key_locked(fs_info, dst,
798 i + dst_offset,
799 MOD_LOG_KEY_ADD);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200800 BUG_ON(ret < 0);
801 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200802
803 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200804}
805
806static inline void
807tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
808 int dst_offset, int src_offset, int nr_items)
809{
810 int ret;
811 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
812 nr_items, GFP_NOFS);
813 BUG_ON(ret < 0);
814}
815
Jan Schmidt097b8a72012-06-21 11:08:04 +0200816static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200817tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000818 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200819{
820 int ret;
821
822 ret = tree_mod_log_insert_key_mask(fs_info, eb, slot,
823 MOD_LOG_KEY_REPLACE,
824 atomic ? GFP_ATOMIC : GFP_NOFS);
825 BUG_ON(ret < 0);
826}
827
Jan Schmidt097b8a72012-06-21 11:08:04 +0200828static noinline void
829tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200830{
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200831 if (tree_mod_dont_log(fs_info, eb))
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200832 return;
833
Jan Schmidt097b8a72012-06-21 11:08:04 +0200834 __tree_mod_log_free_eb(fs_info, eb);
835
836 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200837}
838
Jan Schmidt097b8a72012-06-21 11:08:04 +0200839static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200840tree_mod_log_set_root_pointer(struct btrfs_root *root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000841 struct extent_buffer *new_root_node,
842 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200843{
844 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200845 ret = tree_mod_log_insert_root(root->fs_info, root->node,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000846 new_root_node, GFP_NOFS, log_removal);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200847 BUG_ON(ret < 0);
848}
849
Chris Masond352ac62008-09-29 15:18:18 -0400850/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400851 * check if the tree block can be shared by multiple trees
852 */
853int btrfs_block_can_be_shared(struct btrfs_root *root,
854 struct extent_buffer *buf)
855{
856 /*
857 * Tree blocks not in refernece counted trees and tree roots
858 * are never shared. If a block was allocated after the last
859 * snapshot and the block was not allocated by tree relocation,
860 * we know the block is not shared.
861 */
862 if (root->ref_cows &&
863 buf != root->node && buf != root->commit_root &&
864 (btrfs_header_generation(buf) <=
865 btrfs_root_last_snapshot(&root->root_item) ||
866 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
867 return 1;
868#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
869 if (root->ref_cows &&
870 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
871 return 1;
872#endif
873 return 0;
874}
875
876static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
877 struct btrfs_root *root,
878 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400879 struct extent_buffer *cow,
880 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400881{
882 u64 refs;
883 u64 owner;
884 u64 flags;
885 u64 new_flags = 0;
886 int ret;
887
888 /*
889 * Backrefs update rules:
890 *
891 * Always use full backrefs for extent pointers in tree block
892 * allocated by tree relocation.
893 *
894 * If a shared tree block is no longer referenced by its owner
895 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
896 * use full backrefs for extent pointers in tree block.
897 *
898 * If a tree block is been relocating
899 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
900 * use full backrefs for extent pointers in tree block.
901 * The reason for this is some operations (such as drop tree)
902 * are only allowed for blocks use full backrefs.
903 */
904
905 if (btrfs_block_can_be_shared(root, buf)) {
906 ret = btrfs_lookup_extent_info(trans, root, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -0500907 btrfs_header_level(buf), 1,
908 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700909 if (ret)
910 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -0700911 if (refs == 0) {
912 ret = -EROFS;
913 btrfs_std_error(root->fs_info, ret);
914 return ret;
915 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400916 } else {
917 refs = 1;
918 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
919 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
920 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
921 else
922 flags = 0;
923 }
924
925 owner = btrfs_header_owner(buf);
926 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
927 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
928
929 if (refs > 1) {
930 if ((owner == root->root_key.objectid ||
931 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
932 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200933 ret = btrfs_inc_ref(trans, root, buf, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100934 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400935
936 if (root->root_key.objectid ==
937 BTRFS_TREE_RELOC_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200938 ret = btrfs_dec_ref(trans, root, buf, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100939 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200940 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100941 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400942 }
943 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
944 } else {
945
946 if (root->root_key.objectid ==
947 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200948 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200950 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100951 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400952 }
953 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -0400954 int level = btrfs_header_level(buf);
955
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 ret = btrfs_set_disk_extent_flags(trans, root,
957 buf->start,
958 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -0400959 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700960 if (ret)
961 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400962 }
963 } else {
964 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
965 if (root->root_key.objectid ==
966 BTRFS_TREE_RELOC_OBJECTID)
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200967 ret = btrfs_inc_ref(trans, root, cow, 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400968 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200969 ret = btrfs_inc_ref(trans, root, cow, 0, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100970 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200971 ret = btrfs_dec_ref(trans, root, buf, 1, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100972 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400973 }
974 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400975 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400976 }
977 return 0;
978}
979
980/*
Chris Masond3977122009-01-05 21:25:51 -0500981 * does the dirty work in cow of a single block. The parent block (if
982 * supplied) is updated to point to the new cow copy. The new buffer is marked
983 * dirty and returned locked. If you modify the block it needs to be marked
984 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -0400985 *
986 * search_start -- an allocation hint for the new block
987 *
Chris Masond3977122009-01-05 21:25:51 -0500988 * empty_size -- a hint that you plan on doing more cow. This is the size in
989 * bytes the allocator should try to find free next to the block it returns.
990 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -0400991 */
Chris Masond3977122009-01-05 21:25:51 -0500992static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -0400993 struct btrfs_root *root,
994 struct extent_buffer *buf,
995 struct extent_buffer *parent, int parent_slot,
996 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -0400997 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -0400998{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400999 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001000 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001001 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001002 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001003 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001004 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -04001005
Chris Mason925baed2008-06-25 16:01:30 -04001006 if (*cow_ret == buf)
1007 unlock_orig = 1;
1008
Chris Masonb9447ef2009-03-09 11:45:38 -04001009 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001010
Chris Mason7bb86312007-12-11 09:25:06 -05001011 WARN_ON(root->ref_cows && trans->transid !=
1012 root->fs_info->running_transaction->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001013 WARN_ON(root->ref_cows && trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001014
Chris Mason7bb86312007-12-11 09:25:06 -05001015 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001016
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001017 if (level == 0)
1018 btrfs_item_key(buf, &disk_key, 0);
1019 else
1020 btrfs_node_key(buf, &disk_key, 0);
1021
1022 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
1023 if (parent)
1024 parent_start = parent->start;
1025 else
1026 parent_start = 0;
1027 } else
1028 parent_start = 0;
1029
1030 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
1031 root->root_key.objectid, &disk_key,
Jan Schmidt5581a512012-05-16 17:04:52 +02001032 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001033 if (IS_ERR(cow))
1034 return PTR_ERR(cow);
1035
Chris Masonb4ce94d2009-02-04 09:25:08 -05001036 /* cow is set to blocking by btrfs_init_new_buffer */
1037
Chris Mason5f39d392007-10-15 16:14:19 -04001038 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -04001039 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001040 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1042 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1043 BTRFS_HEADER_FLAG_RELOC);
1044 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1045 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1046 else
1047 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001048
Yan Zheng2b820322008-11-17 21:11:30 -05001049 write_extent_buffer(cow, root->fs_info->fsid,
1050 (unsigned long)btrfs_header_fsid(cow),
1051 BTRFS_FSID_SIZE);
1052
Mark Fashehbe1a5562011-08-08 13:20:18 -07001053 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001054 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001055 btrfs_abort_transaction(trans, root, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001056 return ret;
1057 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001058
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001059 if (root->ref_cows)
1060 btrfs_reloc_cow_block(trans, root, buf, cow);
1061
Chris Mason6702ed42007-08-07 16:15:09 -04001062 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001063 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001064 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1065 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1066 parent_start = buf->start;
1067 else
1068 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001069
Chris Mason5f39d392007-10-15 16:14:19 -04001070 extent_buffer_get(cow);
Jan Schmidt90f8d622013-04-13 13:19:53 +00001071 tree_mod_log_set_root_pointer(root, cow, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001072 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001073
Yan, Zhengf0486c62010-05-16 10:46:25 -04001074 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001075 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001076 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001077 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001078 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001079 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1080 parent_start = parent->start;
1081 else
1082 parent_start = 0;
1083
1084 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001085 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
1086 MOD_LOG_KEY_REPLACE);
Chris Mason5f39d392007-10-15 16:14:19 -04001087 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001088 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001089 btrfs_set_node_ptr_generation(parent, parent_slot,
1090 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001091 btrfs_mark_buffer_dirty(parent);
Josef Bacik7fb7d76f2013-07-01 16:10:16 -04001092 if (last_ref)
1093 tree_mod_log_free_eb(root->fs_info, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001094 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001095 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001096 }
Chris Mason925baed2008-06-25 16:01:30 -04001097 if (unlock_orig)
1098 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001099 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001100 btrfs_mark_buffer_dirty(cow);
1101 *cow_ret = cow;
1102 return 0;
1103}
1104
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001105/*
1106 * returns the logical address of the oldest predecessor of the given root.
1107 * entries older than time_seq are ignored.
1108 */
1109static struct tree_mod_elem *
1110__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
Jan Schmidt30b04632013-04-13 13:19:54 +00001111 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001112{
1113 struct tree_mod_elem *tm;
1114 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001115 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001116 int looped = 0;
1117
1118 if (!time_seq)
1119 return 0;
1120
1121 /*
1122 * the very last operation that's logged for a root is the replacement
1123 * operation (if it is replaced at all). this has the index of the *new*
1124 * root, making it the very first operation that's logged for this root.
1125 */
1126 while (1) {
1127 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1128 time_seq);
1129 if (!looped && !tm)
1130 return 0;
1131 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001132 * if there are no tree operation for the oldest root, we simply
1133 * return it. this should only happen if that (old) root is at
1134 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001135 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001136 if (!tm)
1137 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001138
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001139 /*
1140 * if there's an operation that's not a root replacement, we
1141 * found the oldest version of our root. normally, we'll find a
1142 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1143 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001144 if (tm->op != MOD_LOG_ROOT_REPLACE)
1145 break;
1146
1147 found = tm;
1148 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001149 looped = 1;
1150 }
1151
Jan Schmidta95236d2012-06-05 16:41:24 +02001152 /* if there's no old root to return, return what we found instead */
1153 if (!found)
1154 found = tm;
1155
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001156 return found;
1157}
1158
1159/*
1160 * tm is a pointer to the first operation to rewind within eb. then, all
1161 * previous operations will be rewinded (until we reach something older than
1162 * time_seq).
1163 */
1164static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001165__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1166 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001167{
1168 u32 n;
1169 struct rb_node *next;
1170 struct tree_mod_elem *tm = first_tm;
1171 unsigned long o_dst;
1172 unsigned long o_src;
1173 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1174
1175 n = btrfs_header_nritems(eb);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001176 tree_mod_log_read_lock(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001177 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001178 /*
1179 * all the operations are recorded with the operator used for
1180 * the modification. as we're going backwards, we do the
1181 * opposite of each operation here.
1182 */
1183 switch (tm->op) {
1184 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1185 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001186 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001187 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001188 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001189 btrfs_set_node_key(eb, &tm->key, tm->slot);
1190 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1191 btrfs_set_node_ptr_generation(eb, tm->slot,
1192 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001193 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001194 break;
1195 case MOD_LOG_KEY_REPLACE:
1196 BUG_ON(tm->slot >= n);
1197 btrfs_set_node_key(eb, &tm->key, tm->slot);
1198 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1199 btrfs_set_node_ptr_generation(eb, tm->slot,
1200 tm->generation);
1201 break;
1202 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001203 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001204 n--;
1205 break;
1206 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001207 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1208 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1209 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001210 tm->move.nr_items * p_size);
1211 break;
1212 case MOD_LOG_ROOT_REPLACE:
1213 /*
1214 * this operation is special. for roots, this must be
1215 * handled explicitly before rewinding.
1216 * for non-roots, this operation may exist if the node
1217 * was a root: root A -> child B; then A gets empty and
1218 * B is promoted to the new root. in the mod log, we'll
1219 * have a root-replace operation for B, a tree block
1220 * that is no root. we simply ignore that operation.
1221 */
1222 break;
1223 }
1224 next = rb_next(&tm->node);
1225 if (!next)
1226 break;
1227 tm = container_of(next, struct tree_mod_elem, node);
1228 if (tm->index != first_tm->index)
1229 break;
1230 }
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001231 tree_mod_log_read_unlock(fs_info);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001232 btrfs_set_header_nritems(eb, n);
1233}
1234
Jan Schmidt47fb0912013-04-13 13:19:55 +00001235/*
1236 * Called with eb read locked. If the buffer cannot be rewinded, the same buffer
1237 * is returned. If rewind operations happen, a fresh buffer is returned. The
1238 * returned buffer is always read-locked. If the returned buffer is not the
1239 * input buffer, the lock on the input buffer is released and the input buffer
1240 * is freed (its refcount is decremented).
1241 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001242static struct extent_buffer *
1243tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1244 u64 time_seq)
1245{
1246 struct extent_buffer *eb_rewin;
1247 struct tree_mod_elem *tm;
1248
1249 if (!time_seq)
1250 return eb;
1251
1252 if (btrfs_header_level(eb) == 0)
1253 return eb;
1254
1255 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1256 if (!tm)
1257 return eb;
1258
1259 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1260 BUG_ON(tm->slot != 0);
1261 eb_rewin = alloc_dummy_extent_buffer(eb->start,
1262 fs_info->tree_root->nodesize);
1263 BUG_ON(!eb_rewin);
1264 btrfs_set_header_bytenr(eb_rewin, eb->start);
1265 btrfs_set_header_backref_rev(eb_rewin,
1266 btrfs_header_backref_rev(eb));
1267 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001268 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001269 } else {
1270 eb_rewin = btrfs_clone_extent_buffer(eb);
1271 BUG_ON(!eb_rewin);
1272 }
1273
1274 extent_buffer_get(eb_rewin);
Jan Schmidt47fb0912013-04-13 13:19:55 +00001275 btrfs_tree_read_unlock(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001276 free_extent_buffer(eb);
1277
Jan Schmidt47fb0912013-04-13 13:19:55 +00001278 extent_buffer_get(eb_rewin);
1279 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001280 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001281 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001282 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001283
1284 return eb_rewin;
1285}
1286
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001287/*
1288 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1289 * value. If there are no changes, the current root->root_node is returned. If
1290 * anything changed in between, there's a fresh buffer allocated on which the
1291 * rewind operations are done. In any case, the returned buffer is read locked.
1292 * Returns NULL on error (with no locks held).
1293 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001294static inline struct extent_buffer *
1295get_old_root(struct btrfs_root *root, u64 time_seq)
1296{
1297 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001298 struct extent_buffer *eb = NULL;
1299 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001300 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001301 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001302 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001303 u64 logical;
Jan Schmidt834328a2012-10-23 11:27:33 +02001304 u32 blocksize;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001305
Jan Schmidt30b04632013-04-13 13:19:54 +00001306 eb_root = btrfs_read_lock_root_node(root);
1307 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001308 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001309 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001310
Jan Schmidta95236d2012-06-05 16:41:24 +02001311 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1312 old_root = &tm->old_root;
1313 old_generation = tm->generation;
1314 logical = old_root->logical;
1315 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001316 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001317 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001318
Jan Schmidta95236d2012-06-05 16:41:24 +02001319 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001320 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001321 btrfs_tree_read_unlock(eb_root);
1322 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001323 blocksize = btrfs_level_size(root, old_root->level);
Liu Bo7bfdcf72012-10-25 07:30:19 -06001324 old = read_tree_block(root, logical, blocksize, 0);
Josef Bacik416bc652013-04-23 14:17:42 -04001325 if (!old || !extent_buffer_uptodate(old)) {
1326 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001327 pr_warn("btrfs: failed to read tree block %llu from get_old_root\n",
1328 logical);
1329 WARN_ON(1);
1330 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001331 eb = btrfs_clone_extent_buffer(old);
1332 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001333 }
1334 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001335 btrfs_tree_read_unlock(eb_root);
1336 free_extent_buffer(eb_root);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001337 eb = alloc_dummy_extent_buffer(logical, root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001338 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001339 eb = btrfs_clone_extent_buffer(eb_root);
1340 btrfs_tree_read_unlock(eb_root);
1341 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001342 }
1343
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001344 if (!eb)
1345 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001346 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001347 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001348 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001349 btrfs_set_header_bytenr(eb, eb->start);
1350 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001351 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001352 btrfs_set_header_level(eb, old_root->level);
1353 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001354 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001355 if (tm)
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001356 __tree_mod_log_rewind(root->fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001357 else
1358 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001359 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001360
1361 return eb;
1362}
1363
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001364int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1365{
1366 struct tree_mod_elem *tm;
1367 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001368 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001369
Jan Schmidt30b04632013-04-13 13:19:54 +00001370 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001371 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1372 level = tm->old_root.level;
1373 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001374 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001375 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001376 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001377
1378 return level;
1379}
1380
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001381static inline int should_cow_block(struct btrfs_trans_handle *trans,
1382 struct btrfs_root *root,
1383 struct extent_buffer *buf)
1384{
Liu Bof1ebcc72011-11-14 20:48:06 -05001385 /* ensure we can see the force_cow */
1386 smp_rmb();
1387
1388 /*
1389 * We do not need to cow a block if
1390 * 1) this block is not created or changed in this transaction;
1391 * 2) this block does not belong to TREE_RELOC tree;
1392 * 3) the root is not forced COW.
1393 *
1394 * What is forced COW:
1395 * when we create snapshot during commiting the transaction,
1396 * after we've finished coping src root, we must COW the shared
1397 * block to ensure the metadata consistency.
1398 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001399 if (btrfs_header_generation(buf) == trans->transid &&
1400 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1401 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001402 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
1403 !root->force_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001404 return 0;
1405 return 1;
1406}
1407
Chris Masond352ac62008-09-29 15:18:18 -04001408/*
1409 * cows a single block, see __btrfs_cow_block for the real work.
1410 * This version of it has extra checks so that a block isn't cow'd more than
1411 * once per transaction, as long as it hasn't been written yet
1412 */
Chris Masond3977122009-01-05 21:25:51 -05001413noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001414 struct btrfs_root *root, struct extent_buffer *buf,
1415 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001416 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001417{
Chris Mason6702ed42007-08-07 16:15:09 -04001418 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001419 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001420
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001421 if (trans->transaction != root->fs_info->running_transaction)
1422 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05001423 (unsigned long long)trans->transid,
1424 (unsigned long long)
Chris Masonccd467d2007-06-28 15:57:36 -04001425 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001426
1427 if (trans->transid != root->fs_info->generation)
1428 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05001429 (unsigned long long)trans->transid,
1430 (unsigned long long)root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001431
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001432 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -05001433 *cow_ret = buf;
1434 return 0;
1435 }
Chris Masonc4876852009-02-04 09:24:25 -05001436
Chris Mason0b86a832008-03-24 15:01:56 -04001437 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001438
1439 if (parent)
1440 btrfs_set_lock_blocking(parent);
1441 btrfs_set_lock_blocking(buf);
1442
Chris Masonf510cfe2007-10-15 16:14:48 -04001443 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001444 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001445
1446 trace_btrfs_cow_block(root, buf, *cow_ret);
1447
Chris Masonf510cfe2007-10-15 16:14:48 -04001448 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001449}
1450
Chris Masond352ac62008-09-29 15:18:18 -04001451/*
1452 * helper function for defrag to decide if two blocks pointed to by a
1453 * node are actually close by
1454 */
Chris Mason6b800532007-10-15 16:17:34 -04001455static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001456{
Chris Mason6b800532007-10-15 16:17:34 -04001457 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001458 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001459 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001460 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001461 return 0;
1462}
1463
Chris Mason081e9572007-11-06 10:26:24 -05001464/*
1465 * compare two keys in a memcmp fashion
1466 */
1467static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1468{
1469 struct btrfs_key k1;
1470
1471 btrfs_disk_key_to_cpu(&k1, disk);
1472
Diego Calleja20736ab2009-07-24 11:06:52 -04001473 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001474}
1475
Josef Bacikf3465ca2008-11-12 14:19:50 -05001476/*
1477 * same as comp_keys only with two btrfs_key's
1478 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001479int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001480{
1481 if (k1->objectid > k2->objectid)
1482 return 1;
1483 if (k1->objectid < k2->objectid)
1484 return -1;
1485 if (k1->type > k2->type)
1486 return 1;
1487 if (k1->type < k2->type)
1488 return -1;
1489 if (k1->offset > k2->offset)
1490 return 1;
1491 if (k1->offset < k2->offset)
1492 return -1;
1493 return 0;
1494}
Chris Mason081e9572007-11-06 10:26:24 -05001495
Chris Masond352ac62008-09-29 15:18:18 -04001496/*
1497 * this is used by the defrag code to go through all the
1498 * leaves pointed to by a node and reallocate them so that
1499 * disk order is close to key order
1500 */
Chris Mason6702ed42007-08-07 16:15:09 -04001501int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001502 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001503 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001504 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001505{
Chris Mason6b800532007-10-15 16:17:34 -04001506 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001507 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001508 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001509 u64 search_start = *last_ret;
1510 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001511 u64 other;
1512 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001513 int end_slot;
1514 int i;
1515 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001516 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001517 int uptodate;
1518 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001519 int progress_passed = 0;
1520 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001521
Chris Mason5708b952007-10-25 15:43:18 -04001522 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001523
Julia Lawall6c1500f2012-11-03 20:30:18 +00001524 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1525 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001526
Chris Mason6b800532007-10-15 16:17:34 -04001527 parent_nritems = btrfs_header_nritems(parent);
Chris Mason6b800532007-10-15 16:17:34 -04001528 blocksize = btrfs_level_size(root, parent_level - 1);
Chris Mason6702ed42007-08-07 16:15:09 -04001529 end_slot = parent_nritems;
1530
1531 if (parent_nritems == 1)
1532 return 0;
1533
Chris Masonb4ce94d2009-02-04 09:25:08 -05001534 btrfs_set_lock_blocking(parent);
1535
Chris Mason6702ed42007-08-07 16:15:09 -04001536 for (i = start_slot; i < end_slot; i++) {
1537 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001538
Chris Mason081e9572007-11-06 10:26:24 -05001539 btrfs_node_key(parent, &disk_key, i);
1540 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1541 continue;
1542
1543 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001544 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001545 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001546 if (last_block == 0)
1547 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001548
Chris Mason6702ed42007-08-07 16:15:09 -04001549 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001550 other = btrfs_node_blockptr(parent, i - 1);
1551 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001552 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001553 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -04001554 other = btrfs_node_blockptr(parent, i + 1);
1555 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001556 }
Chris Masone9d0b132007-08-10 14:06:19 -04001557 if (close) {
1558 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001559 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001560 }
Chris Mason6702ed42007-08-07 16:15:09 -04001561
Chris Mason6b800532007-10-15 16:17:34 -04001562 cur = btrfs_find_tree_block(root, blocknr, blocksize);
1563 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001564 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001565 else
1566 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001567 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001568 if (!cur) {
1569 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -04001570 blocksize, gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001571 if (!cur || !extent_buffer_uptodate(cur)) {
1572 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001573 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001574 }
Chris Mason6b800532007-10-15 16:17:34 -04001575 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001576 err = btrfs_read_buffer(cur, gen);
1577 if (err) {
1578 free_extent_buffer(cur);
1579 return err;
1580 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001581 }
Chris Mason6702ed42007-08-07 16:15:09 -04001582 }
Chris Masone9d0b132007-08-10 14:06:19 -04001583 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001584 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001585
Chris Masone7a84562008-06-25 16:01:31 -04001586 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001587 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001588 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001589 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001590 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001591 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001592 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001593 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001594 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001595 break;
Yan252c38f2007-08-29 09:11:44 -04001596 }
Chris Masone7a84562008-06-25 16:01:31 -04001597 search_start = cur->start;
1598 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001599 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001600 btrfs_tree_unlock(cur);
1601 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001602 }
1603 return err;
1604}
1605
Chris Mason74123bd2007-02-02 11:05:29 -05001606/*
1607 * The leaf data grows from end-to-front in the node.
1608 * this returns the address of the start of the last item,
1609 * which is the stop of the leaf data stack
1610 */
Chris Mason123abc82007-03-14 14:14:43 -04001611static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001612 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001613{
Chris Mason5f39d392007-10-15 16:14:19 -04001614 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001615 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -04001616 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001617 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001618}
1619
Chris Masonaa5d6be2007-02-28 16:35:06 -05001620
Chris Mason74123bd2007-02-02 11:05:29 -05001621/*
Chris Mason5f39d392007-10-15 16:14:19 -04001622 * search for key in the extent_buffer. The items start at offset p,
1623 * and they are item_size apart. There are 'max' items in p.
1624 *
Chris Mason74123bd2007-02-02 11:05:29 -05001625 * the slot in the array is returned via slot, and it points to
1626 * the place where you would insert key if it is not found in
1627 * the array.
1628 *
1629 * slot may point to max if the key is bigger than all of the keys
1630 */
Chris Masone02119d2008-09-05 16:13:11 -04001631static noinline int generic_bin_search(struct extent_buffer *eb,
1632 unsigned long p,
1633 int item_size, struct btrfs_key *key,
1634 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001635{
1636 int low = 0;
1637 int high = max;
1638 int mid;
1639 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001640 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001641 struct btrfs_disk_key unaligned;
1642 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001643 char *kaddr = NULL;
1644 unsigned long map_start = 0;
1645 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001646 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001647
Chris Masond3977122009-01-05 21:25:51 -05001648 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001649 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001650 offset = p + mid * item_size;
1651
Chris Masona6591712011-07-19 12:04:14 -04001652 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001653 (offset + sizeof(struct btrfs_disk_key)) >
1654 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001655
1656 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001657 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001658 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001659
Chris Mason479965d2007-10-15 16:14:27 -04001660 if (!err) {
1661 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1662 map_start);
1663 } else {
1664 read_extent_buffer(eb, &unaligned,
1665 offset, sizeof(unaligned));
1666 tmp = &unaligned;
1667 }
1668
Chris Mason5f39d392007-10-15 16:14:19 -04001669 } else {
1670 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1671 map_start);
1672 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001673 ret = comp_keys(tmp, key);
1674
1675 if (ret < 0)
1676 low = mid + 1;
1677 else if (ret > 0)
1678 high = mid;
1679 else {
1680 *slot = mid;
1681 return 0;
1682 }
1683 }
1684 *slot = low;
1685 return 1;
1686}
1687
Chris Mason97571fd2007-02-24 13:39:08 -05001688/*
1689 * simple bin_search frontend that does the right thing for
1690 * leaves vs nodes
1691 */
Chris Mason5f39d392007-10-15 16:14:19 -04001692static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1693 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001694{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001695 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001696 return generic_bin_search(eb,
1697 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001698 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001699 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001700 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001701 else
Chris Mason5f39d392007-10-15 16:14:19 -04001702 return generic_bin_search(eb,
1703 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001704 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001705 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001706 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001707}
1708
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001709int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1710 int level, int *slot)
1711{
1712 return bin_search(eb, key, level, slot);
1713}
1714
Yan, Zhengf0486c62010-05-16 10:46:25 -04001715static void root_add_used(struct btrfs_root *root, u32 size)
1716{
1717 spin_lock(&root->accounting_lock);
1718 btrfs_set_root_used(&root->root_item,
1719 btrfs_root_used(&root->root_item) + size);
1720 spin_unlock(&root->accounting_lock);
1721}
1722
1723static void root_sub_used(struct btrfs_root *root, u32 size)
1724{
1725 spin_lock(&root->accounting_lock);
1726 btrfs_set_root_used(&root->root_item,
1727 btrfs_root_used(&root->root_item) - size);
1728 spin_unlock(&root->accounting_lock);
1729}
1730
Chris Masond352ac62008-09-29 15:18:18 -04001731/* given a node and slot number, this reads the blocks it points to. The
1732 * extent buffer is returned with a reference taken (but unlocked).
1733 * NULL is returned on error.
1734 */
Chris Masone02119d2008-09-05 16:13:11 -04001735static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001736 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001737{
Chris Masonca7a79a2008-05-12 12:59:19 -04001738 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001739 struct extent_buffer *eb;
1740
Chris Masonbb803952007-03-01 12:04:21 -05001741 if (slot < 0)
1742 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001743 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -05001744 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -04001745
1746 BUG_ON(level == 0);
1747
Josef Bacik416bc652013-04-23 14:17:42 -04001748 eb = read_tree_block(root, btrfs_node_blockptr(parent, slot),
1749 btrfs_level_size(root, level - 1),
1750 btrfs_node_ptr_generation(parent, slot));
1751 if (eb && !extent_buffer_uptodate(eb)) {
1752 free_extent_buffer(eb);
1753 eb = NULL;
1754 }
1755
1756 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001757}
1758
Chris Masond352ac62008-09-29 15:18:18 -04001759/*
1760 * node level balancing, used to make sure nodes are in proper order for
1761 * item deletion. We balance from the top down, so we have to make sure
1762 * that a deletion won't leave an node completely empty later on.
1763 */
Chris Masone02119d2008-09-05 16:13:11 -04001764static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001765 struct btrfs_root *root,
1766 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001767{
Chris Mason5f39d392007-10-15 16:14:19 -04001768 struct extent_buffer *right = NULL;
1769 struct extent_buffer *mid;
1770 struct extent_buffer *left = NULL;
1771 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001772 int ret = 0;
1773 int wret;
1774 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001775 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001776 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001777
1778 if (level == 0)
1779 return 0;
1780
Chris Mason5f39d392007-10-15 16:14:19 -04001781 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001782
Chris Masonbd681512011-07-16 15:23:14 -04001783 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1784 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001785 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1786
Chris Mason1d4f8a02007-03-13 09:28:32 -04001787 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001788
Li Zefana05a9bb2011-09-06 16:55:34 +08001789 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001790 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001791 pslot = path->slots[level + 1];
1792 }
Chris Masonbb803952007-03-01 12:04:21 -05001793
Chris Mason40689472007-03-17 14:29:23 -04001794 /*
1795 * deal with the case where there is only one pointer in the root
1796 * by promoting the node below to a root
1797 */
Chris Mason5f39d392007-10-15 16:14:19 -04001798 if (!parent) {
1799 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001800
Chris Mason5f39d392007-10-15 16:14:19 -04001801 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001802 return 0;
1803
1804 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001805 child = read_node_slot(root, mid, 0);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001806 if (!child) {
1807 ret = -EROFS;
1808 btrfs_std_error(root->fs_info, ret);
1809 goto enospc;
1810 }
1811
Chris Mason925baed2008-06-25 16:01:30 -04001812 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001813 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001814 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001815 if (ret) {
1816 btrfs_tree_unlock(child);
1817 free_extent_buffer(child);
1818 goto enospc;
1819 }
Yan2f375ab2008-02-01 14:58:07 -05001820
Jan Schmidt90f8d622013-04-13 13:19:53 +00001821 tree_mod_log_set_root_pointer(root, child, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001822 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001823
Chris Mason0b86a832008-03-24 15:01:56 -04001824 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001825 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001826
Chris Mason925baed2008-06-25 16:01:30 -04001827 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001828 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001829 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001830 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001831 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001832 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001833
1834 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001835 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001836 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001837 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001838 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001839 }
Chris Mason5f39d392007-10-15 16:14:19 -04001840 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001841 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001842 return 0;
1843
Chris Mason5f39d392007-10-15 16:14:19 -04001844 left = read_node_slot(root, parent, pslot - 1);
1845 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001846 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001847 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001848 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001849 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001850 if (wret) {
1851 ret = wret;
1852 goto enospc;
1853 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001854 }
Chris Mason5f39d392007-10-15 16:14:19 -04001855 right = read_node_slot(root, parent, pslot + 1);
1856 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001857 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001858 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001859 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001860 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001861 if (wret) {
1862 ret = wret;
1863 goto enospc;
1864 }
1865 }
1866
1867 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001868 if (left) {
1869 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001870 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001871 if (wret < 0)
1872 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001873 }
Chris Mason79f95c82007-03-01 15:16:26 -05001874
1875 /*
1876 * then try to empty the right most buffer into the middle
1877 */
Chris Mason5f39d392007-10-15 16:14:19 -04001878 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001879 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001880 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001881 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001882 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001883 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04001884 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001885 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001886 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001887 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001888 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001889 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001890 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001891 struct btrfs_disk_key right_key;
1892 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02001893 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00001894 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001895 btrfs_set_node_key(parent, &right_key, pslot + 1);
1896 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001897 }
1898 }
Chris Mason5f39d392007-10-15 16:14:19 -04001899 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001900 /*
1901 * we're not allowed to leave a node with one item in the
1902 * tree during a delete. A deletion from lower in the tree
1903 * could try to delete the only pointer in this node.
1904 * So, pull some keys from the left.
1905 * There has to be a left pointer at this point because
1906 * otherwise we would have pulled some pointers from the
1907 * right
1908 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07001909 if (!left) {
1910 ret = -EROFS;
1911 btrfs_std_error(root->fs_info, ret);
1912 goto enospc;
1913 }
Chris Mason5f39d392007-10-15 16:14:19 -04001914 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001915 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001916 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001917 goto enospc;
1918 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001919 if (wret == 1) {
1920 wret = push_node_left(trans, root, left, mid, 1);
1921 if (wret < 0)
1922 ret = wret;
1923 }
Chris Mason79f95c82007-03-01 15:16:26 -05001924 BUG_ON(wret == 1);
1925 }
Chris Mason5f39d392007-10-15 16:14:19 -04001926 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04001927 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001928 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001929 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001930 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001931 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001932 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001933 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001934 } else {
1935 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001936 struct btrfs_disk_key mid_key;
1937 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00001938 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02001939 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001940 btrfs_set_node_key(parent, &mid_key, pslot);
1941 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001942 }
Chris Masonbb803952007-03-01 12:04:21 -05001943
Chris Mason79f95c82007-03-01 15:16:26 -05001944 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001945 if (left) {
1946 if (btrfs_header_nritems(left) > orig_slot) {
1947 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04001948 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04001949 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05001950 path->slots[level + 1] -= 1;
1951 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04001952 if (mid) {
1953 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04001954 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001955 }
Chris Masonbb803952007-03-01 12:04:21 -05001956 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001957 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05001958 path->slots[level] = orig_slot;
1959 }
1960 }
Chris Mason79f95c82007-03-01 15:16:26 -05001961 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04001962 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04001963 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05001964 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04001965enospc:
Chris Mason925baed2008-06-25 16:01:30 -04001966 if (right) {
1967 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001968 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04001969 }
1970 if (left) {
1971 if (path->nodes[level] != left)
1972 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001973 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04001974 }
Chris Masonbb803952007-03-01 12:04:21 -05001975 return ret;
1976}
1977
Chris Masond352ac62008-09-29 15:18:18 -04001978/* Node balancing for insertion. Here we only split or push nodes around
1979 * when they are completely full. This is also done top down, so we
1980 * have to be pessimistic.
1981 */
Chris Masond3977122009-01-05 21:25:51 -05001982static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001983 struct btrfs_root *root,
1984 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04001985{
Chris Mason5f39d392007-10-15 16:14:19 -04001986 struct extent_buffer *right = NULL;
1987 struct extent_buffer *mid;
1988 struct extent_buffer *left = NULL;
1989 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04001990 int ret = 0;
1991 int wret;
1992 int pslot;
1993 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04001994
1995 if (level == 0)
1996 return 1;
1997
Chris Mason5f39d392007-10-15 16:14:19 -04001998 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05001999 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002000
Li Zefana05a9bb2011-09-06 16:55:34 +08002001 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002002 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002003 pslot = path->slots[level + 1];
2004 }
Chris Masone66f7092007-04-20 13:16:02 -04002005
Chris Mason5f39d392007-10-15 16:14:19 -04002006 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002007 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002008
Chris Mason5f39d392007-10-15 16:14:19 -04002009 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04002010
2011 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002012 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002013 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002014
2015 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002016 btrfs_set_lock_blocking(left);
2017
Chris Mason5f39d392007-10-15 16:14:19 -04002018 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04002019 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2020 wret = 1;
2021 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002022 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002023 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002024 if (ret)
2025 wret = 1;
2026 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002027 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04002028 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002029 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002030 }
Chris Masone66f7092007-04-20 13:16:02 -04002031 if (wret < 0)
2032 ret = wret;
2033 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002034 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002035 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002036 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002037 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002038 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002039 btrfs_set_node_key(parent, &disk_key, pslot);
2040 btrfs_mark_buffer_dirty(parent);
2041 if (btrfs_header_nritems(left) > orig_slot) {
2042 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002043 path->slots[level + 1] -= 1;
2044 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002045 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002046 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002047 } else {
2048 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002049 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002050 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002051 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002052 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002053 }
Chris Masone66f7092007-04-20 13:16:02 -04002054 return 0;
2055 }
Chris Mason925baed2008-06-25 16:01:30 -04002056 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002057 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002058 }
Chris Mason925baed2008-06-25 16:01:30 -04002059 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04002060
2061 /*
2062 * then try to empty the right most buffer into the middle
2063 */
Chris Mason5f39d392007-10-15 16:14:19 -04002064 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002065 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002066
Chris Mason925baed2008-06-25 16:01:30 -04002067 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002068 btrfs_set_lock_blocking(right);
2069
Chris Mason5f39d392007-10-15 16:14:19 -04002070 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002071 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2072 wret = 1;
2073 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002074 ret = btrfs_cow_block(trans, root, right,
2075 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002076 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002077 if (ret)
2078 wret = 1;
2079 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002080 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002081 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002082 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002083 }
Chris Masone66f7092007-04-20 13:16:02 -04002084 if (wret < 0)
2085 ret = wret;
2086 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002087 struct btrfs_disk_key disk_key;
2088
2089 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002090 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002091 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002092 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2093 btrfs_mark_buffer_dirty(parent);
2094
2095 if (btrfs_header_nritems(mid) <= orig_slot) {
2096 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002097 path->slots[level + 1] += 1;
2098 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002099 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002100 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002101 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002102 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002103 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002104 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002105 }
Chris Masone66f7092007-04-20 13:16:02 -04002106 return 0;
2107 }
Chris Mason925baed2008-06-25 16:01:30 -04002108 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002109 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002110 }
Chris Masone66f7092007-04-20 13:16:02 -04002111 return 1;
2112}
2113
Chris Mason74123bd2007-02-02 11:05:29 -05002114/*
Chris Masond352ac62008-09-29 15:18:18 -04002115 * readahead one full node of leaves, finding things that are close
2116 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002117 */
Chris Masonc8c42862009-04-03 10:14:18 -04002118static void reada_for_search(struct btrfs_root *root,
2119 struct btrfs_path *path,
2120 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002121{
Chris Mason5f39d392007-10-15 16:14:19 -04002122 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002123 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002124 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002125 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002126 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002127 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002128 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04002129 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04002130 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002131 u32 nr;
2132 u32 blocksize;
2133 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002134
Chris Masona6b6e752007-10-15 16:22:39 -04002135 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002136 return;
2137
Chris Mason6702ed42007-08-07 16:15:09 -04002138 if (!path->nodes[level])
2139 return;
2140
Chris Mason5f39d392007-10-15 16:14:19 -04002141 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002142
Chris Mason3c69fae2007-08-07 15:52:22 -04002143 search = btrfs_node_blockptr(node, slot);
Chris Mason6b800532007-10-15 16:17:34 -04002144 blocksize = btrfs_level_size(root, level - 1);
2145 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002146 if (eb) {
2147 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002148 return;
2149 }
2150
Chris Masona7175312009-01-22 09:23:10 -05002151 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002152
Chris Mason5f39d392007-10-15 16:14:19 -04002153 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002154 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002155
Chris Masond3977122009-01-05 21:25:51 -05002156 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04002157 if (direction < 0) {
2158 if (nr == 0)
2159 break;
2160 nr--;
2161 } else if (direction > 0) {
2162 nr++;
2163 if (nr >= nritems)
2164 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002165 }
Chris Mason01f46652007-12-21 16:24:26 -05002166 if (path->reada < 0 && objectid) {
2167 btrfs_node_key(node, &disk_key, nr);
2168 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2169 break;
2170 }
Chris Mason6b800532007-10-15 16:17:34 -04002171 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002172 if ((search <= target && target - search <= 65536) ||
2173 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002174 gen = btrfs_node_ptr_generation(node, nr);
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002175 readahead_tree_block(root, search, blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -04002176 nread += blocksize;
2177 }
2178 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002179 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002180 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002181 }
2182}
Chris Mason925baed2008-06-25 16:01:30 -04002183
Josef Bacik0b088512013-06-17 14:23:02 -04002184static noinline void reada_for_balance(struct btrfs_root *root,
2185 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002186{
2187 int slot;
2188 int nritems;
2189 struct extent_buffer *parent;
2190 struct extent_buffer *eb;
2191 u64 gen;
2192 u64 block1 = 0;
2193 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002194 int blocksize;
2195
Chris Mason8c594ea2009-04-20 15:50:10 -04002196 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002197 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002198 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002199
2200 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002201 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002202 blocksize = btrfs_level_size(root, level);
2203
2204 if (slot > 0) {
2205 block1 = btrfs_node_blockptr(parent, slot - 1);
2206 gen = btrfs_node_ptr_generation(parent, slot - 1);
2207 eb = btrfs_find_tree_block(root, block1, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002208 /*
2209 * if we get -eagain from btrfs_buffer_uptodate, we
2210 * don't want to return eagain here. That will loop
2211 * forever
2212 */
2213 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002214 block1 = 0;
2215 free_extent_buffer(eb);
2216 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002217 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002218 block2 = btrfs_node_blockptr(parent, slot + 1);
2219 gen = btrfs_node_ptr_generation(parent, slot + 1);
2220 eb = btrfs_find_tree_block(root, block2, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002221 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002222 block2 = 0;
2223 free_extent_buffer(eb);
2224 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002225
Josef Bacik0b088512013-06-17 14:23:02 -04002226 if (block1)
2227 readahead_tree_block(root, block1, blocksize, 0);
2228 if (block2)
2229 readahead_tree_block(root, block2, blocksize, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002230}
2231
2232
2233/*
Chris Masond3977122009-01-05 21:25:51 -05002234 * when we walk down the tree, it is usually safe to unlock the higher layers
2235 * in the tree. The exceptions are when our path goes through slot 0, because
2236 * operations on the tree might require changing key pointers higher up in the
2237 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002238 *
Chris Masond3977122009-01-05 21:25:51 -05002239 * callers might also have set path->keep_locks, which tells this code to keep
2240 * the lock if the path points to the last slot in the block. This is part of
2241 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002242 *
Chris Masond3977122009-01-05 21:25:51 -05002243 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2244 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002245 */
Chris Masone02119d2008-09-05 16:13:11 -04002246static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002247 int lowest_unlock, int min_write_lock_level,
2248 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002249{
2250 int i;
2251 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002252 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002253 struct extent_buffer *t;
2254
2255 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2256 if (!path->nodes[i])
2257 break;
2258 if (!path->locks[i])
2259 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002260 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002261 skip_level = i + 1;
2262 continue;
2263 }
Chris Mason051e1b92008-06-25 16:01:30 -04002264 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002265 u32 nritems;
2266 t = path->nodes[i];
2267 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002268 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002269 skip_level = i + 1;
2270 continue;
2271 }
2272 }
Chris Mason051e1b92008-06-25 16:01:30 -04002273 if (skip_level < i && i >= lowest_unlock)
2274 no_skips = 1;
2275
Chris Mason925baed2008-06-25 16:01:30 -04002276 t = path->nodes[i];
2277 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002278 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002279 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002280 if (write_lock_level &&
2281 i > min_write_lock_level &&
2282 i <= *write_lock_level) {
2283 *write_lock_level = i - 1;
2284 }
Chris Mason925baed2008-06-25 16:01:30 -04002285 }
2286 }
2287}
2288
Chris Mason3c69fae2007-08-07 15:52:22 -04002289/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002290 * This releases any locks held in the path starting at level and
2291 * going all the way up to the root.
2292 *
2293 * btrfs_search_slot will keep the lock held on higher nodes in a few
2294 * corner cases, such as COW of the block at slot zero in the node. This
2295 * ignores those rules, and it should only be called when there are no
2296 * more updates to be done higher up in the tree.
2297 */
2298noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2299{
2300 int i;
2301
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002302 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002303 return;
2304
2305 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2306 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002307 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002308 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002309 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002310 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002311 path->locks[i] = 0;
2312 }
2313}
2314
2315/*
Chris Masonc8c42862009-04-03 10:14:18 -04002316 * helper function for btrfs_search_slot. The goal is to find a block
2317 * in cache without setting the path to blocking. If we find the block
2318 * we return zero and the path is unchanged.
2319 *
2320 * If we can't find the block, we set the path blocking and do some
2321 * reada. -EAGAIN is returned and the search must be repeated.
2322 */
2323static int
2324read_block_for_search(struct btrfs_trans_handle *trans,
2325 struct btrfs_root *root, struct btrfs_path *p,
2326 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002327 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002328{
2329 u64 blocknr;
2330 u64 gen;
2331 u32 blocksize;
2332 struct extent_buffer *b = *eb_ret;
2333 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002334 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002335
2336 blocknr = btrfs_node_blockptr(b, slot);
2337 gen = btrfs_node_ptr_generation(b, slot);
2338 blocksize = btrfs_level_size(root, level - 1);
2339
2340 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
Chris Masoncb449212010-10-24 11:01:27 -04002341 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002342 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002343 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2344 *eb_ret = tmp;
2345 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002346 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002347
2348 /* the pages were up to date, but we failed
2349 * the generation number check. Do a full
2350 * read for the generation number that is correct.
2351 * We must do this without dropping locks so
2352 * we can trust our generation number
2353 */
2354 btrfs_set_path_blocking(p);
2355
2356 /* now we're allowed to do a blocking uptodate check */
2357 ret = btrfs_read_buffer(tmp, gen);
2358 if (!ret) {
2359 *eb_ret = tmp;
2360 return 0;
2361 }
2362 free_extent_buffer(tmp);
2363 btrfs_release_path(p);
2364 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002365 }
2366
2367 /*
2368 * reduce lock contention at high levels
2369 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002370 * we read. Don't release the lock on the current
2371 * level because we need to walk this node to figure
2372 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002373 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002374 btrfs_unlock_up_safe(p, level + 1);
2375 btrfs_set_path_blocking(p);
2376
Chris Masoncb449212010-10-24 11:01:27 -04002377 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04002378 if (p->reada)
2379 reada_for_search(root, p, level, slot, key->objectid);
2380
David Sterbab3b4aa72011-04-21 01:20:15 +02002381 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002382
2383 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04002384 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04002385 if (tmp) {
2386 /*
2387 * If the read above didn't mark this buffer up to date,
2388 * it will never end up being up to date. Set ret to EIO now
2389 * and give up so that our caller doesn't loop forever
2390 * on our EAGAINs.
2391 */
Chris Masonb9fab912012-05-06 07:23:47 -04002392 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002393 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002394 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002395 }
2396 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002397}
2398
2399/*
2400 * helper function for btrfs_search_slot. This does all of the checks
2401 * for node-level blocks and does any balancing required based on
2402 * the ins_len.
2403 *
2404 * If no extra work was required, zero is returned. If we had to
2405 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2406 * start over
2407 */
2408static int
2409setup_nodes_for_search(struct btrfs_trans_handle *trans,
2410 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002411 struct extent_buffer *b, int level, int ins_len,
2412 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002413{
2414 int ret;
2415 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2416 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2417 int sret;
2418
Chris Masonbd681512011-07-16 15:23:14 -04002419 if (*write_lock_level < level + 1) {
2420 *write_lock_level = level + 1;
2421 btrfs_release_path(p);
2422 goto again;
2423 }
2424
Chris Masonc8c42862009-04-03 10:14:18 -04002425 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002426 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002427 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002428 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002429
2430 BUG_ON(sret > 0);
2431 if (sret) {
2432 ret = sret;
2433 goto done;
2434 }
2435 b = p->nodes[level];
2436 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002437 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002438 int sret;
2439
Chris Masonbd681512011-07-16 15:23:14 -04002440 if (*write_lock_level < level + 1) {
2441 *write_lock_level = level + 1;
2442 btrfs_release_path(p);
2443 goto again;
2444 }
2445
Chris Masonc8c42862009-04-03 10:14:18 -04002446 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002447 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002448 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002449 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002450
2451 if (sret) {
2452 ret = sret;
2453 goto done;
2454 }
2455 b = p->nodes[level];
2456 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002457 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002458 goto again;
2459 }
2460 BUG_ON(btrfs_header_nritems(b) == 1);
2461 }
2462 return 0;
2463
2464again:
2465 ret = -EAGAIN;
2466done:
2467 return ret;
2468}
2469
2470/*
Chris Mason74123bd2007-02-02 11:05:29 -05002471 * look for key in the tree. path is filled in with nodes along the way
2472 * if key is found, we return zero and you can find the item in the leaf
2473 * level of the path (level 0)
2474 *
2475 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002476 * be inserted, and 1 is returned. If there are other errors during the
2477 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002478 *
2479 * if ins_len > 0, nodes and leaves will be split as we walk down the
2480 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2481 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002482 */
Chris Masone089f052007-03-16 16:20:31 -04002483int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2484 *root, struct btrfs_key *key, struct btrfs_path *p, int
2485 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002486{
Chris Mason5f39d392007-10-15 16:14:19 -04002487 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002488 int slot;
2489 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002490 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002491 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002492 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002493 int root_lock;
2494 /* everything at write_lock_level or lower must be write locked */
2495 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002496 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002497 int min_write_lock_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002498
Chris Mason6702ed42007-08-07 16:15:09 -04002499 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002500 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002501 WARN_ON(p->nodes[0] != NULL);
Josef Bacik25179202008-10-29 14:49:05 -04002502
Chris Masonbd681512011-07-16 15:23:14 -04002503 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002504 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002505
Chris Masonbd681512011-07-16 15:23:14 -04002506 /* when we are removing items, we might have to go up to level
2507 * two as we update tree pointers Make sure we keep write
2508 * for those levels as well
2509 */
2510 write_lock_level = 2;
2511 } else if (ins_len > 0) {
2512 /*
2513 * for inserting items, make sure we have a write lock on
2514 * level 1 so we can update keys
2515 */
2516 write_lock_level = 1;
2517 }
2518
2519 if (!cow)
2520 write_lock_level = -1;
2521
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002522 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002523 write_lock_level = BTRFS_MAX_LEVEL;
2524
Chris Masonf7c79f32012-03-19 15:54:38 -04002525 min_write_lock_level = write_lock_level;
2526
Chris Masonbb803952007-03-01 12:04:21 -05002527again:
Chris Masonbd681512011-07-16 15:23:14 -04002528 /*
2529 * we try very hard to do read locks on the root
2530 */
2531 root_lock = BTRFS_READ_LOCK;
2532 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002533 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002534 /*
2535 * the commit roots are read only
2536 * so we always do read locks
2537 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002538 b = root->commit_root;
2539 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002540 level = btrfs_header_level(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002541 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002542 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002543 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002544 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002545 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002546 level = btrfs_header_level(b);
2547 } else {
2548 /* we don't know the level of the root node
2549 * until we actually have it read locked
2550 */
2551 b = btrfs_read_lock_root_node(root);
2552 level = btrfs_header_level(b);
2553 if (level <= write_lock_level) {
2554 /* whoops, must trade for write lock */
2555 btrfs_tree_read_unlock(b);
2556 free_extent_buffer(b);
2557 b = btrfs_lock_root_node(root);
2558 root_lock = BTRFS_WRITE_LOCK;
2559
2560 /* the level might have changed, check again */
2561 level = btrfs_header_level(b);
2562 }
2563 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002564 }
Chris Masonbd681512011-07-16 15:23:14 -04002565 p->nodes[level] = b;
2566 if (!p->skip_locking)
2567 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002568
Chris Masoneb60cea2007-02-02 09:18:22 -05002569 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002570 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002571
2572 /*
2573 * setup the path here so we can release it under lock
2574 * contention with the cow code
2575 */
Chris Mason02217ed2007-03-02 16:08:05 -05002576 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04002577 /*
2578 * if we don't really need to cow this block
2579 * then we don't want to set the path blocking,
2580 * so we test it here
2581 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002582 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04002583 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002584
Chris Masonb4ce94d2009-02-04 09:25:08 -05002585 btrfs_set_path_blocking(p);
2586
Chris Masonbd681512011-07-16 15:23:14 -04002587 /*
2588 * must have write locks on this node and the
2589 * parent
2590 */
Josef Bacik5124e002012-11-07 13:44:13 -05002591 if (level > write_lock_level ||
2592 (level + 1 > write_lock_level &&
2593 level + 1 < BTRFS_MAX_LEVEL &&
2594 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002595 write_lock_level = level + 1;
2596 btrfs_release_path(p);
2597 goto again;
2598 }
2599
Yan Zheng33c66f42009-07-22 09:59:00 -04002600 err = btrfs_cow_block(trans, root, b,
2601 p->nodes[level + 1],
2602 p->slots[level + 1], &b);
2603 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002604 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002605 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002606 }
Chris Mason02217ed2007-03-02 16:08:05 -05002607 }
Chris Mason65b51a02008-08-01 15:11:20 -04002608cow_done:
Chris Mason02217ed2007-03-02 16:08:05 -05002609 BUG_ON(!cow && ins_len);
Chris Mason65b51a02008-08-01 15:11:20 -04002610
Chris Masoneb60cea2007-02-02 09:18:22 -05002611 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002612 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002613
2614 /*
2615 * we have a lock on b and as long as we aren't changing
2616 * the tree, there is no way to for the items in b to change.
2617 * It is safe to drop the lock on our parent before we
2618 * go through the expensive btree search on b.
2619 *
2620 * If cow is true, then we might be changing slot zero,
2621 * which may require changing the parent. So, we can't
2622 * drop the lock until after we know which slot we're
2623 * operating on.
2624 */
2625 if (!cow)
2626 btrfs_unlock_up_safe(p, level + 1);
2627
Chris Mason5f39d392007-10-15 16:14:19 -04002628 ret = bin_search(b, key, level, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002629
Chris Mason5f39d392007-10-15 16:14:19 -04002630 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002631 int dec = 0;
2632 if (ret && slot > 0) {
2633 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002634 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002635 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002636 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002637 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002638 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002639 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002640 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002641 if (err) {
2642 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002643 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002644 }
Chris Masonc8c42862009-04-03 10:14:18 -04002645 b = p->nodes[level];
2646 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002647
Chris Masonbd681512011-07-16 15:23:14 -04002648 /*
2649 * slot 0 is special, if we change the key
2650 * we have to update the parent pointer
2651 * which means we must have a write lock
2652 * on the parent
2653 */
2654 if (slot == 0 && cow &&
2655 write_lock_level < level + 1) {
2656 write_lock_level = level + 1;
2657 btrfs_release_path(p);
2658 goto again;
2659 }
2660
Chris Masonf7c79f32012-03-19 15:54:38 -04002661 unlock_up(p, level, lowest_unlock,
2662 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002663
Chris Mason925baed2008-06-25 16:01:30 -04002664 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002665 if (dec)
2666 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002667 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002668 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002669
Yan Zheng33c66f42009-07-22 09:59:00 -04002670 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002671 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002672 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002673 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002674 if (err) {
2675 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002676 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002677 }
Chris Mason76a05b32009-05-14 13:24:30 -04002678
Chris Masonb4ce94d2009-02-04 09:25:08 -05002679 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002680 level = btrfs_header_level(b);
2681 if (level <= write_lock_level) {
2682 err = btrfs_try_tree_write_lock(b);
2683 if (!err) {
2684 btrfs_set_path_blocking(p);
2685 btrfs_tree_lock(b);
2686 btrfs_clear_path_blocking(p, b,
2687 BTRFS_WRITE_LOCK);
2688 }
2689 p->locks[level] = BTRFS_WRITE_LOCK;
2690 } else {
2691 err = btrfs_try_tree_read_lock(b);
2692 if (!err) {
2693 btrfs_set_path_blocking(p);
2694 btrfs_tree_read_lock(b);
2695 btrfs_clear_path_blocking(p, b,
2696 BTRFS_READ_LOCK);
2697 }
2698 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002699 }
Chris Masonbd681512011-07-16 15:23:14 -04002700 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002701 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002702 } else {
2703 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002704 if (ins_len > 0 &&
2705 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002706 if (write_lock_level < 1) {
2707 write_lock_level = 1;
2708 btrfs_release_path(p);
2709 goto again;
2710 }
2711
Chris Masonb4ce94d2009-02-04 09:25:08 -05002712 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002713 err = split_leaf(trans, root, key,
2714 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002715 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002716
Yan Zheng33c66f42009-07-22 09:59:00 -04002717 BUG_ON(err > 0);
2718 if (err) {
2719 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002720 goto done;
2721 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002722 }
Chris Mason459931e2008-12-10 09:10:46 -05002723 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002724 unlock_up(p, level, lowest_unlock,
2725 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002726 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002727 }
2728 }
Chris Mason65b51a02008-08-01 15:11:20 -04002729 ret = 1;
2730done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002731 /*
2732 * we don't really know what they plan on doing with the path
2733 * from here on, so for now just mark it as blocking
2734 */
Chris Masonb9473432009-03-13 11:00:37 -04002735 if (!p->leave_spinning)
2736 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002737 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02002738 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002739 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002740}
2741
Chris Mason74123bd2007-02-02 11:05:29 -05002742/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002743 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2744 * current state of the tree together with the operations recorded in the tree
2745 * modification log to search for the key in a previous version of this tree, as
2746 * denoted by the time_seq parameter.
2747 *
2748 * Naturally, there is no support for insert, delete or cow operations.
2749 *
2750 * The resulting path and return value will be set up as if we called
2751 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2752 */
2753int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2754 struct btrfs_path *p, u64 time_seq)
2755{
2756 struct extent_buffer *b;
2757 int slot;
2758 int ret;
2759 int err;
2760 int level;
2761 int lowest_unlock = 1;
2762 u8 lowest_level = 0;
2763
2764 lowest_level = p->lowest_level;
2765 WARN_ON(p->nodes[0] != NULL);
2766
2767 if (p->search_commit_root) {
2768 BUG_ON(time_seq);
2769 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2770 }
2771
2772again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002773 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002774 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002775 p->locks[level] = BTRFS_READ_LOCK;
2776
2777 while (b) {
2778 level = btrfs_header_level(b);
2779 p->nodes[level] = b;
2780 btrfs_clear_path_blocking(p, NULL, 0);
2781
2782 /*
2783 * we have a lock on b and as long as we aren't changing
2784 * the tree, there is no way to for the items in b to change.
2785 * It is safe to drop the lock on our parent before we
2786 * go through the expensive btree search on b.
2787 */
2788 btrfs_unlock_up_safe(p, level + 1);
2789
2790 ret = bin_search(b, key, level, &slot);
2791
2792 if (level != 0) {
2793 int dec = 0;
2794 if (ret && slot > 0) {
2795 dec = 1;
2796 slot -= 1;
2797 }
2798 p->slots[level] = slot;
2799 unlock_up(p, level, lowest_unlock, 0, NULL);
2800
2801 if (level == lowest_level) {
2802 if (dec)
2803 p->slots[level]++;
2804 goto done;
2805 }
2806
2807 err = read_block_for_search(NULL, root, p, &b, level,
2808 slot, key, time_seq);
2809 if (err == -EAGAIN)
2810 goto again;
2811 if (err) {
2812 ret = err;
2813 goto done;
2814 }
2815
2816 level = btrfs_header_level(b);
2817 err = btrfs_try_tree_read_lock(b);
2818 if (!err) {
2819 btrfs_set_path_blocking(p);
2820 btrfs_tree_read_lock(b);
2821 btrfs_clear_path_blocking(p, b,
2822 BTRFS_READ_LOCK);
2823 }
Jan Schmidt47fb0912013-04-13 13:19:55 +00002824 b = tree_mod_log_rewind(root->fs_info, b, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002825 p->locks[level] = BTRFS_READ_LOCK;
2826 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002827 } else {
2828 p->slots[level] = slot;
2829 unlock_up(p, level, lowest_unlock, 0, NULL);
2830 goto done;
2831 }
2832 }
2833 ret = 1;
2834done:
2835 if (!p->leave_spinning)
2836 btrfs_set_path_blocking(p);
2837 if (ret < 0)
2838 btrfs_release_path(p);
2839
2840 return ret;
2841}
2842
2843/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002844 * helper to use instead of search slot if no exact match is needed but
2845 * instead the next or previous item should be returned.
2846 * When find_higher is true, the next higher item is returned, the next lower
2847 * otherwise.
2848 * When return_any and find_higher are both true, and no higher item is found,
2849 * return the next lower instead.
2850 * When return_any is true and find_higher is false, and no lower item is found,
2851 * return the next higher instead.
2852 * It returns 0 if any item is found, 1 if none is found (tree empty), and
2853 * < 0 on error
2854 */
2855int btrfs_search_slot_for_read(struct btrfs_root *root,
2856 struct btrfs_key *key, struct btrfs_path *p,
2857 int find_higher, int return_any)
2858{
2859 int ret;
2860 struct extent_buffer *leaf;
2861
2862again:
2863 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
2864 if (ret <= 0)
2865 return ret;
2866 /*
2867 * a return value of 1 means the path is at the position where the
2868 * item should be inserted. Normally this is the next bigger item,
2869 * but in case the previous item is the last in a leaf, path points
2870 * to the first free slot in the previous leaf, i.e. at an invalid
2871 * item.
2872 */
2873 leaf = p->nodes[0];
2874
2875 if (find_higher) {
2876 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
2877 ret = btrfs_next_leaf(root, p);
2878 if (ret <= 0)
2879 return ret;
2880 if (!return_any)
2881 return 1;
2882 /*
2883 * no higher item found, return the next
2884 * lower instead
2885 */
2886 return_any = 0;
2887 find_higher = 0;
2888 btrfs_release_path(p);
2889 goto again;
2890 }
2891 } else {
Arne Jansene6793762011-09-13 11:18:10 +02002892 if (p->slots[0] == 0) {
2893 ret = btrfs_prev_leaf(root, p);
2894 if (ret < 0)
2895 return ret;
2896 if (!ret) {
2897 p->slots[0] = btrfs_header_nritems(leaf) - 1;
2898 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002899 }
Arne Jansene6793762011-09-13 11:18:10 +02002900 if (!return_any)
2901 return 1;
2902 /*
2903 * no lower item found, return the next
2904 * higher instead
2905 */
2906 return_any = 0;
2907 find_higher = 1;
2908 btrfs_release_path(p);
2909 goto again;
2910 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02002911 --p->slots[0];
2912 }
2913 }
2914 return 0;
2915}
2916
2917/*
Chris Mason74123bd2007-02-02 11:05:29 -05002918 * adjust the pointers going up the tree, starting at level
2919 * making sure the right key of each node is points to 'key'.
2920 * This is used after shifting pointers to the left, so it stops
2921 * fixing up pointers when a given leaf/node is not in slot 0 of the
2922 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05002923 *
Chris Mason74123bd2007-02-02 11:05:29 -05002924 */
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00002925static void fixup_low_keys(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01002926 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002927{
2928 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04002929 struct extent_buffer *t;
2930
Chris Mason234b63a2007-03-13 10:46:10 -04002931 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05002932 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05002933 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05002934 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002935 t = path->nodes[i];
Liu Bo32adf092012-10-19 12:52:15 +00002936 tree_mod_log_set_node_key(root->fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002937 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04002938 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05002939 if (tslot != 0)
2940 break;
2941 }
2942}
2943
Chris Mason74123bd2007-02-02 11:05:29 -05002944/*
Zheng Yan31840ae2008-09-23 13:14:14 -04002945 * update item key.
2946 *
2947 * This function isn't completely safe. It's the caller's responsibility
2948 * that the new key won't break the order
2949 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002950void btrfs_set_item_key_safe(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01002951 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04002952{
2953 struct btrfs_disk_key disk_key;
2954 struct extent_buffer *eb;
2955 int slot;
2956
2957 eb = path->nodes[0];
2958 slot = path->slots[0];
2959 if (slot > 0) {
2960 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01002961 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002962 }
2963 if (slot < btrfs_header_nritems(eb) - 1) {
2964 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01002965 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002966 }
2967
2968 btrfs_cpu_key_to_disk(&disk_key, new_key);
2969 btrfs_set_item_key(eb, &disk_key, slot);
2970 btrfs_mark_buffer_dirty(eb);
2971 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00002972 fixup_low_keys(root, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04002973}
2974
2975/*
Chris Mason74123bd2007-02-02 11:05:29 -05002976 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05002977 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05002978 *
2979 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
2980 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05002981 */
Chris Mason98ed5172008-01-03 10:01:48 -05002982static int push_node_left(struct btrfs_trans_handle *trans,
2983 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04002984 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002985{
Chris Masonbe0e5c02007-01-26 15:51:26 -05002986 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05002987 int src_nritems;
2988 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05002989 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002990
Chris Mason5f39d392007-10-15 16:14:19 -04002991 src_nritems = btrfs_header_nritems(src);
2992 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04002993 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05002994 WARN_ON(btrfs_header_generation(src) != trans->transid);
2995 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002996
Chris Masonbce4eae2008-04-24 14:42:46 -04002997 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04002998 return 1;
2999
Chris Masond3977122009-01-05 21:25:51 -05003000 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003001 return 1;
3002
Chris Masonbce4eae2008-04-24 14:42:46 -04003003 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003004 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003005 if (push_items < src_nritems) {
3006 /* leave at least 8 pointers in the node if
3007 * we aren't going to empty it
3008 */
3009 if (src_nritems - push_items < 8) {
3010 if (push_items <= 8)
3011 return 1;
3012 push_items -= 8;
3013 }
3014 }
3015 } else
3016 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003017
Jan Schmidtf2304752012-05-26 11:43:17 +02003018 tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
Jan Schmidt90f8d622013-04-13 13:19:53 +00003019 push_items);
Chris Mason5f39d392007-10-15 16:14:19 -04003020 copy_extent_buffer(dst, src,
3021 btrfs_node_key_ptr_offset(dst_nritems),
3022 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003023 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003024
Chris Masonbb803952007-03-01 12:04:21 -05003025 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003026 /*
3027 * don't call tree_mod_log_eb_move here, key removal was already
3028 * fully logged by tree_mod_log_eb_copy above.
3029 */
Chris Mason5f39d392007-10-15 16:14:19 -04003030 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3031 btrfs_node_key_ptr_offset(push_items),
3032 (src_nritems - push_items) *
3033 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003034 }
Chris Mason5f39d392007-10-15 16:14:19 -04003035 btrfs_set_header_nritems(src, src_nritems - push_items);
3036 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3037 btrfs_mark_buffer_dirty(src);
3038 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003039
Chris Masonbb803952007-03-01 12:04:21 -05003040 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003041}
3042
Chris Mason97571fd2007-02-24 13:39:08 -05003043/*
Chris Mason79f95c82007-03-01 15:16:26 -05003044 * try to push data from one node into the next node right in the
3045 * tree.
3046 *
3047 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3048 * error, and > 0 if there was no room in the right hand block.
3049 *
3050 * this will only push up to 1/2 the contents of the left node over
3051 */
Chris Mason5f39d392007-10-15 16:14:19 -04003052static int balance_node_right(struct btrfs_trans_handle *trans,
3053 struct btrfs_root *root,
3054 struct extent_buffer *dst,
3055 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003056{
Chris Mason79f95c82007-03-01 15:16:26 -05003057 int push_items = 0;
3058 int max_push;
3059 int src_nritems;
3060 int dst_nritems;
3061 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003062
Chris Mason7bb86312007-12-11 09:25:06 -05003063 WARN_ON(btrfs_header_generation(src) != trans->transid);
3064 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3065
Chris Mason5f39d392007-10-15 16:14:19 -04003066 src_nritems = btrfs_header_nritems(src);
3067 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003068 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003069 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003070 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003071
Chris Masond3977122009-01-05 21:25:51 -05003072 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003073 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003074
3075 max_push = src_nritems / 2 + 1;
3076 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003077 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003078 return 1;
Yan252c38f2007-08-29 09:11:44 -04003079
Chris Mason79f95c82007-03-01 15:16:26 -05003080 if (max_push < push_items)
3081 push_items = max_push;
3082
Jan Schmidtf2304752012-05-26 11:43:17 +02003083 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003084 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3085 btrfs_node_key_ptr_offset(0),
3086 (dst_nritems) *
3087 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003088
Jan Schmidtf2304752012-05-26 11:43:17 +02003089 tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
Jan Schmidt90f8d622013-04-13 13:19:53 +00003090 src_nritems - push_items, push_items);
Chris Mason5f39d392007-10-15 16:14:19 -04003091 copy_extent_buffer(dst, src,
3092 btrfs_node_key_ptr_offset(0),
3093 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003094 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003095
Chris Mason5f39d392007-10-15 16:14:19 -04003096 btrfs_set_header_nritems(src, src_nritems - push_items);
3097 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003098
Chris Mason5f39d392007-10-15 16:14:19 -04003099 btrfs_mark_buffer_dirty(src);
3100 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003101
Chris Mason79f95c82007-03-01 15:16:26 -05003102 return ret;
3103}
3104
3105/*
Chris Mason97571fd2007-02-24 13:39:08 -05003106 * helper function to insert a new root level in the tree.
3107 * A new node is allocated, and a single item is inserted to
3108 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003109 *
3110 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003111 */
Chris Masond3977122009-01-05 21:25:51 -05003112static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003113 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003114 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003115{
Chris Mason7bb86312007-12-11 09:25:06 -05003116 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003117 struct extent_buffer *lower;
3118 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003119 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003120 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003121
3122 BUG_ON(path->nodes[level]);
3123 BUG_ON(path->nodes[level-1] != root->node);
3124
Chris Mason7bb86312007-12-11 09:25:06 -05003125 lower = path->nodes[level-1];
3126 if (level == 1)
3127 btrfs_item_key(lower, &lower_key, 0);
3128 else
3129 btrfs_node_key(lower, &lower_key, 0);
3130
Zheng Yan31840ae2008-09-23 13:14:14 -04003131 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003132 root->root_key.objectid, &lower_key,
Jan Schmidt5581a512012-05-16 17:04:52 +02003133 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003134 if (IS_ERR(c))
3135 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003136
Yan, Zhengf0486c62010-05-16 10:46:25 -04003137 root_add_used(root, root->nodesize);
3138
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003139 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003140 btrfs_set_header_nritems(c, 1);
3141 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003142 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003143 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003144 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003145 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003146
Chris Mason5f39d392007-10-15 16:14:19 -04003147 write_extent_buffer(c, root->fs_info->fsid,
3148 (unsigned long)btrfs_header_fsid(c),
3149 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003150
3151 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
3152 (unsigned long)btrfs_header_chunk_tree_uuid(c),
3153 BTRFS_UUID_SIZE);
3154
Chris Mason5f39d392007-10-15 16:14:19 -04003155 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003156 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003157 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003158 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003159
3160 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003161
3162 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003163
Chris Mason925baed2008-06-25 16:01:30 -04003164 old = root->node;
Liu Bofdd99c72013-05-22 12:06:51 +00003165 tree_mod_log_set_root_pointer(root, c, 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003166 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003167
3168 /* the super has an extra ref to root->node */
3169 free_extent_buffer(old);
3170
Chris Mason0b86a832008-03-24 15:01:56 -04003171 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003172 extent_buffer_get(c);
3173 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04003174 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05003175 path->slots[level] = 0;
3176 return 0;
3177}
3178
Chris Mason74123bd2007-02-02 11:05:29 -05003179/*
3180 * worker function to insert a single pointer in a node.
3181 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003182 *
Chris Mason74123bd2007-02-02 11:05:29 -05003183 * slot and level indicate where you want the key to go, and
3184 * blocknr is the block the key points to.
3185 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003186static void insert_ptr(struct btrfs_trans_handle *trans,
3187 struct btrfs_root *root, struct btrfs_path *path,
3188 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003189 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003190{
Chris Mason5f39d392007-10-15 16:14:19 -04003191 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003192 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003193 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003194
3195 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003196 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003197 lower = path->nodes[level];
3198 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003199 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003200 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003201 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003202 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003203 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3204 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003205 memmove_extent_buffer(lower,
3206 btrfs_node_key_ptr_offset(slot + 1),
3207 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003208 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003209 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003210 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003211 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
3212 MOD_LOG_KEY_ADD);
3213 BUG_ON(ret < 0);
3214 }
Chris Mason5f39d392007-10-15 16:14:19 -04003215 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003216 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003217 WARN_ON(trans->transid == 0);
3218 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003219 btrfs_set_header_nritems(lower, nritems + 1);
3220 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003221}
3222
Chris Mason97571fd2007-02-24 13:39:08 -05003223/*
3224 * split the node at the specified level in path in two.
3225 * The path is corrected to point to the appropriate node after the split
3226 *
3227 * Before splitting this tries to make some room in the node by pushing
3228 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003229 *
3230 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003231 */
Chris Masone02119d2008-09-05 16:13:11 -04003232static noinline int split_node(struct btrfs_trans_handle *trans,
3233 struct btrfs_root *root,
3234 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003235{
Chris Mason5f39d392007-10-15 16:14:19 -04003236 struct extent_buffer *c;
3237 struct extent_buffer *split;
3238 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003239 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003240 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003241 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003242
Chris Mason5f39d392007-10-15 16:14:19 -04003243 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003244 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003245 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003246 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003247 * trying to split the root, lets make a new one
3248 *
Liu Bofdd99c72013-05-22 12:06:51 +00003249 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003250 * insert_new_root, because that root buffer will be kept as a
3251 * normal node. We are going to log removal of half of the
3252 * elements below with tree_mod_log_eb_copy. We're holding a
3253 * tree lock on the buffer, which is why we cannot race with
3254 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003255 */
Liu Bofdd99c72013-05-22 12:06:51 +00003256 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003257 if (ret)
3258 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003259 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003260 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003261 c = path->nodes[level];
3262 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003263 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003264 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003265 if (ret < 0)
3266 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003267 }
Chris Masone66f7092007-04-20 13:16:02 -04003268
Chris Mason5f39d392007-10-15 16:14:19 -04003269 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003270 mid = (c_nritems + 1) / 2;
3271 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003272
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003273 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04003274 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02003275 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003276 if (IS_ERR(split))
3277 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003278
Yan, Zhengf0486c62010-05-16 10:46:25 -04003279 root_add_used(root, root->nodesize);
3280
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003281 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003282 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003283 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003284 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003285 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003286 btrfs_set_header_owner(split, root->root_key.objectid);
3287 write_extent_buffer(split, root->fs_info->fsid,
3288 (unsigned long)btrfs_header_fsid(split),
3289 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003290 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
3291 (unsigned long)btrfs_header_chunk_tree_uuid(split),
3292 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003293
Jan Schmidt90f8d622013-04-13 13:19:53 +00003294 tree_mod_log_eb_copy(root->fs_info, split, c, 0, mid, c_nritems - mid);
Chris Mason5f39d392007-10-15 16:14:19 -04003295 copy_extent_buffer(split, c,
3296 btrfs_node_key_ptr_offset(0),
3297 btrfs_node_key_ptr_offset(mid),
3298 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3299 btrfs_set_header_nritems(split, c_nritems - mid);
3300 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003301 ret = 0;
3302
Chris Mason5f39d392007-10-15 16:14:19 -04003303 btrfs_mark_buffer_dirty(c);
3304 btrfs_mark_buffer_dirty(split);
3305
Jeff Mahoney143bede2012-03-01 14:56:26 +01003306 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003307 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003308
Chris Mason5de08d72007-02-24 06:24:44 -05003309 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003310 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003311 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003312 free_extent_buffer(c);
3313 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003314 path->slots[level + 1] += 1;
3315 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003316 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003317 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003318 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003319 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003320}
3321
Chris Mason74123bd2007-02-02 11:05:29 -05003322/*
3323 * how many bytes are required to store the items in a leaf. start
3324 * and nr indicate which items in the leaf to check. This totals up the
3325 * space used both by the item structs and the item data
3326 */
Chris Mason5f39d392007-10-15 16:14:19 -04003327static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003328{
Josef Bacik41be1f32012-10-15 13:43:18 -04003329 struct btrfs_item *start_item;
3330 struct btrfs_item *end_item;
3331 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003332 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003333 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003334 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003335
3336 if (!nr)
3337 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003338 btrfs_init_map_token(&token);
3339 start_item = btrfs_item_nr(l, start);
3340 end_item = btrfs_item_nr(l, end);
3341 data_len = btrfs_token_item_offset(l, start_item, &token) +
3342 btrfs_token_item_size(l, start_item, &token);
3343 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003344 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003345 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003346 return data_len;
3347}
3348
Chris Mason74123bd2007-02-02 11:05:29 -05003349/*
Chris Masond4dbff92007-04-04 14:08:15 -04003350 * The space between the end of the leaf items and
3351 * the start of the leaf data. IOW, how much room
3352 * the leaf has left for both items and data
3353 */
Chris Masond3977122009-01-05 21:25:51 -05003354noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003355 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003356{
Chris Mason5f39d392007-10-15 16:14:19 -04003357 int nritems = btrfs_header_nritems(leaf);
3358 int ret;
3359 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3360 if (ret < 0) {
Chris Masond3977122009-01-05 21:25:51 -05003361 printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, "
3362 "used %d nritems %d\n",
Jens Axboeae2f5412007-10-19 09:22:59 -04003363 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003364 leaf_space_used(leaf, 0, nritems), nritems);
3365 }
3366 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003367}
3368
Chris Mason99d8f832010-07-07 10:51:48 -04003369/*
3370 * min slot controls the lowest index we're willing to push to the
3371 * right. We'll push up to and including min_slot, but no lower
3372 */
Chris Mason44871b12009-03-13 10:04:31 -04003373static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3374 struct btrfs_root *root,
3375 struct btrfs_path *path,
3376 int data_size, int empty,
3377 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003378 int free_space, u32 left_nritems,
3379 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003380{
Chris Mason5f39d392007-10-15 16:14:19 -04003381 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003382 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003383 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003384 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003385 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003386 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003387 int push_space = 0;
3388 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003389 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003390 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003391 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003392 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003393 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003394
Chris Masoncfed81a2012-03-03 07:40:03 -05003395 btrfs_init_map_token(&token);
3396
Chris Mason34a38212007-11-07 13:31:03 -05003397 if (empty)
3398 nr = 0;
3399 else
Chris Mason99d8f832010-07-07 10:51:48 -04003400 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003401
Zheng Yan31840ae2008-09-23 13:14:14 -04003402 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003403 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003404
Chris Mason44871b12009-03-13 10:04:31 -04003405 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003406 i = left_nritems - 1;
3407 while (i >= nr) {
Chris Mason5f39d392007-10-15 16:14:19 -04003408 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04003409
Zheng Yan31840ae2008-09-23 13:14:14 -04003410 if (!empty && push_items > 0) {
3411 if (path->slots[0] > i)
3412 break;
3413 if (path->slots[0] == i) {
3414 int space = btrfs_leaf_free_space(root, left);
3415 if (space + push_space * 2 > free_space)
3416 break;
3417 }
3418 }
3419
Chris Mason00ec4c52007-02-24 12:47:20 -05003420 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003421 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003422
Chris Masondb945352007-10-15 16:15:53 -04003423 this_item_size = btrfs_item_size(left, item);
3424 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003425 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003426
Chris Mason00ec4c52007-02-24 12:47:20 -05003427 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003428 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003429 if (i == 0)
3430 break;
3431 i--;
Chris Masondb945352007-10-15 16:15:53 -04003432 }
Chris Mason5f39d392007-10-15 16:14:19 -04003433
Chris Mason925baed2008-06-25 16:01:30 -04003434 if (push_items == 0)
3435 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003436
Julia Lawall6c1500f2012-11-03 20:30:18 +00003437 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003438
Chris Mason00ec4c52007-02-24 12:47:20 -05003439 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003440 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003441
Chris Mason5f39d392007-10-15 16:14:19 -04003442 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003443 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003444
Chris Mason00ec4c52007-02-24 12:47:20 -05003445 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003446 data_end = leaf_data_end(root, right);
3447 memmove_extent_buffer(right,
3448 btrfs_leaf_data(right) + data_end - push_space,
3449 btrfs_leaf_data(right) + data_end,
3450 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3451
Chris Mason00ec4c52007-02-24 12:47:20 -05003452 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003453 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003454 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3455 btrfs_leaf_data(left) + leaf_data_end(root, left),
3456 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003457
3458 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3459 btrfs_item_nr_offset(0),
3460 right_nritems * sizeof(struct btrfs_item));
3461
Chris Mason00ec4c52007-02-24 12:47:20 -05003462 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003463 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3464 btrfs_item_nr_offset(left_nritems - push_items),
3465 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003466
3467 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003468 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003469 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003470 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003471 for (i = 0; i < right_nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003472 item = btrfs_item_nr(right, i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003473 push_space -= btrfs_token_item_size(right, item, &token);
3474 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003475 }
3476
Chris Mason7518a232007-03-12 12:01:18 -04003477 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003478 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003479
Chris Mason34a38212007-11-07 13:31:03 -05003480 if (left_nritems)
3481 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003482 else
3483 clean_tree_block(trans, root, left);
3484
Chris Mason5f39d392007-10-15 16:14:19 -04003485 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003486
Chris Mason5f39d392007-10-15 16:14:19 -04003487 btrfs_item_key(right, &disk_key, 0);
3488 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003489 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003490
Chris Mason00ec4c52007-02-24 12:47:20 -05003491 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003492 if (path->slots[0] >= left_nritems) {
3493 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003494 if (btrfs_header_nritems(path->nodes[0]) == 0)
3495 clean_tree_block(trans, root, path->nodes[0]);
3496 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003497 free_extent_buffer(path->nodes[0]);
3498 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003499 path->slots[1] += 1;
3500 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003501 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003502 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003503 }
3504 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003505
3506out_unlock:
3507 btrfs_tree_unlock(right);
3508 free_extent_buffer(right);
3509 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003510}
Chris Mason925baed2008-06-25 16:01:30 -04003511
Chris Mason00ec4c52007-02-24 12:47:20 -05003512/*
Chris Mason44871b12009-03-13 10:04:31 -04003513 * push some data in the path leaf to the right, trying to free up at
3514 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3515 *
3516 * returns 1 if the push failed because the other node didn't have enough
3517 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003518 *
3519 * this will push starting from min_slot to the end of the leaf. It won't
3520 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003521 */
3522static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003523 *root, struct btrfs_path *path,
3524 int min_data_size, int data_size,
3525 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003526{
3527 struct extent_buffer *left = path->nodes[0];
3528 struct extent_buffer *right;
3529 struct extent_buffer *upper;
3530 int slot;
3531 int free_space;
3532 u32 left_nritems;
3533 int ret;
3534
3535 if (!path->nodes[1])
3536 return 1;
3537
3538 slot = path->slots[1];
3539 upper = path->nodes[1];
3540 if (slot >= btrfs_header_nritems(upper) - 1)
3541 return 1;
3542
3543 btrfs_assert_tree_locked(path->nodes[1]);
3544
3545 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003546 if (right == NULL)
3547 return 1;
3548
Chris Mason44871b12009-03-13 10:04:31 -04003549 btrfs_tree_lock(right);
3550 btrfs_set_lock_blocking(right);
3551
3552 free_space = btrfs_leaf_free_space(root, right);
3553 if (free_space < data_size)
3554 goto out_unlock;
3555
3556 /* cow and double check */
3557 ret = btrfs_cow_block(trans, root, right, upper,
3558 slot + 1, &right);
3559 if (ret)
3560 goto out_unlock;
3561
3562 free_space = btrfs_leaf_free_space(root, right);
3563 if (free_space < data_size)
3564 goto out_unlock;
3565
3566 left_nritems = btrfs_header_nritems(left);
3567 if (left_nritems == 0)
3568 goto out_unlock;
3569
Chris Mason99d8f832010-07-07 10:51:48 -04003570 return __push_leaf_right(trans, root, path, min_data_size, empty,
3571 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003572out_unlock:
3573 btrfs_tree_unlock(right);
3574 free_extent_buffer(right);
3575 return 1;
3576}
3577
3578/*
Chris Mason74123bd2007-02-02 11:05:29 -05003579 * push some data in the path leaf to the left, trying to free up at
3580 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003581 *
3582 * max_slot can put a limit on how far into the leaf we'll push items. The
3583 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3584 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003585 */
Chris Mason44871b12009-03-13 10:04:31 -04003586static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3587 struct btrfs_root *root,
3588 struct btrfs_path *path, int data_size,
3589 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003590 int free_space, u32 right_nritems,
3591 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003592{
Chris Mason5f39d392007-10-15 16:14:19 -04003593 struct btrfs_disk_key disk_key;
3594 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003595 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003596 int push_space = 0;
3597 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003598 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003599 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003600 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003601 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003602 u32 this_item_size;
3603 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003604 struct btrfs_map_token token;
3605
3606 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003607
Chris Mason34a38212007-11-07 13:31:03 -05003608 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003609 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003610 else
Chris Mason99d8f832010-07-07 10:51:48 -04003611 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003612
3613 for (i = 0; i < nr; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003614 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04003615
Zheng Yan31840ae2008-09-23 13:14:14 -04003616 if (!empty && push_items > 0) {
3617 if (path->slots[0] < i)
3618 break;
3619 if (path->slots[0] == i) {
3620 int space = btrfs_leaf_free_space(root, right);
3621 if (space + push_space * 2 > free_space)
3622 break;
3623 }
3624 }
3625
Chris Masonbe0e5c02007-01-26 15:51:26 -05003626 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003627 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003628
3629 this_item_size = btrfs_item_size(right, item);
3630 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003631 break;
Chris Masondb945352007-10-15 16:15:53 -04003632
Chris Masonbe0e5c02007-01-26 15:51:26 -05003633 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003634 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003635 }
Chris Masondb945352007-10-15 16:15:53 -04003636
Chris Masonbe0e5c02007-01-26 15:51:26 -05003637 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003638 ret = 1;
3639 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003640 }
Chris Mason34a38212007-11-07 13:31:03 -05003641 if (!empty && push_items == btrfs_header_nritems(right))
Chris Masona429e512007-04-18 16:15:28 -04003642 WARN_ON(1);
Chris Mason5f39d392007-10-15 16:14:19 -04003643
Chris Masonbe0e5c02007-01-26 15:51:26 -05003644 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003645 copy_extent_buffer(left, right,
3646 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3647 btrfs_item_nr_offset(0),
3648 push_items * sizeof(struct btrfs_item));
3649
Chris Mason123abc82007-03-14 14:14:43 -04003650 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003651 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003652
3653 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003654 leaf_data_end(root, left) - push_space,
3655 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003656 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003657 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003658 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003659 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003660
Chris Masondb945352007-10-15 16:15:53 -04003661 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003662 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003663 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003664
Chris Mason5f39d392007-10-15 16:14:19 -04003665 item = btrfs_item_nr(left, i);
Chris Masondb945352007-10-15 16:15:53 -04003666
Chris Masoncfed81a2012-03-03 07:40:03 -05003667 ioff = btrfs_token_item_offset(left, item, &token);
3668 btrfs_set_token_item_offset(left, item,
3669 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3670 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003671 }
Chris Mason5f39d392007-10-15 16:14:19 -04003672 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003673
3674 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003675 if (push_items > right_nritems)
3676 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003677 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003678
Chris Mason34a38212007-11-07 13:31:03 -05003679 if (push_items < right_nritems) {
3680 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3681 leaf_data_end(root, right);
3682 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3683 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3684 btrfs_leaf_data(right) +
3685 leaf_data_end(root, right), push_space);
3686
3687 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003688 btrfs_item_nr_offset(push_items),
3689 (btrfs_header_nritems(right) - push_items) *
3690 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003691 }
Yaneef1c492007-11-26 10:58:13 -05003692 right_nritems -= push_items;
3693 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003694 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003695 for (i = 0; i < right_nritems; i++) {
3696 item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04003697
Chris Masoncfed81a2012-03-03 07:40:03 -05003698 push_space = push_space - btrfs_token_item_size(right,
3699 item, &token);
3700 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003701 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003702
Chris Mason5f39d392007-10-15 16:14:19 -04003703 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003704 if (right_nritems)
3705 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003706 else
3707 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003708
Chris Mason5f39d392007-10-15 16:14:19 -04003709 btrfs_item_key(right, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003710 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003711
3712 /* then fixup the leaf pointer in the path */
3713 if (path->slots[0] < push_items) {
3714 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003715 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003716 free_extent_buffer(path->nodes[0]);
3717 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003718 path->slots[1] -= 1;
3719 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003720 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003721 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003722 path->slots[0] -= push_items;
3723 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003724 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003725 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003726out:
3727 btrfs_tree_unlock(left);
3728 free_extent_buffer(left);
3729 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003730}
3731
Chris Mason74123bd2007-02-02 11:05:29 -05003732/*
Chris Mason44871b12009-03-13 10:04:31 -04003733 * push some data in the path leaf to the left, trying to free up at
3734 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003735 *
3736 * max_slot can put a limit on how far into the leaf we'll push items. The
3737 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3738 * items
Chris Mason44871b12009-03-13 10:04:31 -04003739 */
3740static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003741 *root, struct btrfs_path *path, int min_data_size,
3742 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003743{
3744 struct extent_buffer *right = path->nodes[0];
3745 struct extent_buffer *left;
3746 int slot;
3747 int free_space;
3748 u32 right_nritems;
3749 int ret = 0;
3750
3751 slot = path->slots[1];
3752 if (slot == 0)
3753 return 1;
3754 if (!path->nodes[1])
3755 return 1;
3756
3757 right_nritems = btrfs_header_nritems(right);
3758 if (right_nritems == 0)
3759 return 1;
3760
3761 btrfs_assert_tree_locked(path->nodes[1]);
3762
3763 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003764 if (left == NULL)
3765 return 1;
3766
Chris Mason44871b12009-03-13 10:04:31 -04003767 btrfs_tree_lock(left);
3768 btrfs_set_lock_blocking(left);
3769
3770 free_space = btrfs_leaf_free_space(root, left);
3771 if (free_space < data_size) {
3772 ret = 1;
3773 goto out;
3774 }
3775
3776 /* cow and double check */
3777 ret = btrfs_cow_block(trans, root, left,
3778 path->nodes[1], slot - 1, &left);
3779 if (ret) {
3780 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003781 if (ret == -ENOSPC)
3782 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003783 goto out;
3784 }
3785
3786 free_space = btrfs_leaf_free_space(root, left);
3787 if (free_space < data_size) {
3788 ret = 1;
3789 goto out;
3790 }
3791
Chris Mason99d8f832010-07-07 10:51:48 -04003792 return __push_leaf_left(trans, root, path, min_data_size,
3793 empty, left, free_space, right_nritems,
3794 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003795out:
3796 btrfs_tree_unlock(left);
3797 free_extent_buffer(left);
3798 return ret;
3799}
3800
3801/*
Chris Mason74123bd2007-02-02 11:05:29 -05003802 * split the path's leaf in two, making sure there is at least data_size
3803 * available for the resulting leaf level of the path.
3804 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003805static noinline void copy_for_split(struct btrfs_trans_handle *trans,
3806 struct btrfs_root *root,
3807 struct btrfs_path *path,
3808 struct extent_buffer *l,
3809 struct extent_buffer *right,
3810 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003811{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003812 int data_copy_size;
3813 int rt_data_off;
3814 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04003815 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05003816 struct btrfs_map_token token;
3817
3818 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003819
Chris Mason5f39d392007-10-15 16:14:19 -04003820 nritems = nritems - mid;
3821 btrfs_set_header_nritems(right, nritems);
3822 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
3823
3824 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
3825 btrfs_item_nr_offset(mid),
3826 nritems * sizeof(struct btrfs_item));
3827
3828 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04003829 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
3830 data_copy_size, btrfs_leaf_data(l) +
3831 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05003832
Chris Mason5f39d392007-10-15 16:14:19 -04003833 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
3834 btrfs_item_end_nr(l, mid);
3835
3836 for (i = 0; i < nritems; i++) {
3837 struct btrfs_item *item = btrfs_item_nr(right, i);
Chris Masondb945352007-10-15 16:15:53 -04003838 u32 ioff;
3839
Chris Masoncfed81a2012-03-03 07:40:03 -05003840 ioff = btrfs_token_item_offset(right, item, &token);
3841 btrfs_set_token_item_offset(right, item,
3842 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003843 }
Chris Mason74123bd2007-02-02 11:05:29 -05003844
Chris Mason5f39d392007-10-15 16:14:19 -04003845 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04003846 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003847 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003848 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003849
3850 btrfs_mark_buffer_dirty(right);
3851 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05003852 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003853
Chris Masonbe0e5c02007-01-26 15:51:26 -05003854 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04003855 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003856 free_extent_buffer(path->nodes[0]);
3857 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003858 path->slots[0] -= mid;
3859 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04003860 } else {
3861 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003862 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04003863 }
Chris Mason5f39d392007-10-15 16:14:19 -04003864
Chris Masoneb60cea2007-02-02 09:18:22 -05003865 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04003866}
3867
3868/*
Chris Mason99d8f832010-07-07 10:51:48 -04003869 * double splits happen when we need to insert a big item in the middle
3870 * of a leaf. A double split can leave us with 3 mostly empty leaves:
3871 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
3872 * A B C
3873 *
3874 * We avoid this by trying to push the items on either side of our target
3875 * into the adjacent leaves. If all goes well we can avoid the double split
3876 * completely.
3877 */
3878static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
3879 struct btrfs_root *root,
3880 struct btrfs_path *path,
3881 int data_size)
3882{
3883 int ret;
3884 int progress = 0;
3885 int slot;
3886 u32 nritems;
3887
3888 slot = path->slots[0];
3889
3890 /*
3891 * try to push all the items after our slot into the
3892 * right leaf
3893 */
3894 ret = push_leaf_right(trans, root, path, 1, data_size, 0, slot);
3895 if (ret < 0)
3896 return ret;
3897
3898 if (ret == 0)
3899 progress++;
3900
3901 nritems = btrfs_header_nritems(path->nodes[0]);
3902 /*
3903 * our goal is to get our slot at the start or end of a leaf. If
3904 * we've done so we're done
3905 */
3906 if (path->slots[0] == 0 || path->slots[0] == nritems)
3907 return 0;
3908
3909 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
3910 return 0;
3911
3912 /* try to push all the items before our slot into the next leaf */
3913 slot = path->slots[0];
3914 ret = push_leaf_left(trans, root, path, 1, data_size, 0, slot);
3915 if (ret < 0)
3916 return ret;
3917
3918 if (ret == 0)
3919 progress++;
3920
3921 if (progress)
3922 return 0;
3923 return 1;
3924}
3925
3926/*
Chris Mason44871b12009-03-13 10:04:31 -04003927 * split the path's leaf in two, making sure there is at least data_size
3928 * available for the resulting leaf level of the path.
3929 *
3930 * returns 0 if all went well and < 0 on failure.
3931 */
3932static noinline int split_leaf(struct btrfs_trans_handle *trans,
3933 struct btrfs_root *root,
3934 struct btrfs_key *ins_key,
3935 struct btrfs_path *path, int data_size,
3936 int extend)
3937{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003938 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04003939 struct extent_buffer *l;
3940 u32 nritems;
3941 int mid;
3942 int slot;
3943 struct extent_buffer *right;
3944 int ret = 0;
3945 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003946 int split;
Chris Mason44871b12009-03-13 10:04:31 -04003947 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04003948 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04003949
Yan, Zhenga5719522009-09-24 09:17:31 -04003950 l = path->nodes[0];
3951 slot = path->slots[0];
3952 if (extend && data_size + btrfs_item_size_nr(l, slot) +
3953 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
3954 return -EOVERFLOW;
3955
Chris Mason44871b12009-03-13 10:04:31 -04003956 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00003957 if (data_size && path->nodes[1]) {
Chris Mason99d8f832010-07-07 10:51:48 -04003958 wret = push_leaf_right(trans, root, path, data_size,
3959 data_size, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04003960 if (wret < 0)
3961 return wret;
3962 if (wret) {
Chris Mason99d8f832010-07-07 10:51:48 -04003963 wret = push_leaf_left(trans, root, path, data_size,
3964 data_size, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04003965 if (wret < 0)
3966 return wret;
3967 }
3968 l = path->nodes[0];
3969
3970 /* did the pushes work? */
3971 if (btrfs_leaf_free_space(root, l) >= data_size)
3972 return 0;
3973 }
3974
3975 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00003976 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04003977 if (ret)
3978 return ret;
3979 }
3980again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003981 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003982 l = path->nodes[0];
3983 slot = path->slots[0];
3984 nritems = btrfs_header_nritems(l);
3985 mid = (nritems + 1) / 2;
3986
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003987 if (mid <= slot) {
3988 if (nritems == 1 ||
3989 leaf_space_used(l, mid, nritems - mid) + data_size >
3990 BTRFS_LEAF_DATA_SIZE(root)) {
3991 if (slot >= nritems) {
3992 split = 0;
3993 } else {
3994 mid = slot;
3995 if (mid != nritems &&
3996 leaf_space_used(l, mid, nritems - mid) +
3997 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04003998 if (data_size && !tried_avoid_double)
3999 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004000 split = 2;
4001 }
4002 }
4003 }
4004 } else {
4005 if (leaf_space_used(l, 0, mid) + data_size >
4006 BTRFS_LEAF_DATA_SIZE(root)) {
4007 if (!extend && data_size && slot == 0) {
4008 split = 0;
4009 } else if ((extend || !data_size) && slot == 0) {
4010 mid = 1;
4011 } else {
4012 mid = slot;
4013 if (mid != nritems &&
4014 leaf_space_used(l, mid, nritems - mid) +
4015 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004016 if (data_size && !tried_avoid_double)
4017 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004018 split = 2 ;
4019 }
4020 }
4021 }
4022 }
4023
4024 if (split == 0)
4025 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4026 else
4027 btrfs_item_key(l, &disk_key, mid);
4028
4029 right = btrfs_alloc_free_block(trans, root, root->leafsize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04004030 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02004031 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004032 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004033 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004034
4035 root_add_used(root, root->leafsize);
Chris Mason44871b12009-03-13 10:04:31 -04004036
4037 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4038 btrfs_set_header_bytenr(right, right->start);
4039 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004040 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004041 btrfs_set_header_owner(right, root->root_key.objectid);
4042 btrfs_set_header_level(right, 0);
4043 write_extent_buffer(right, root->fs_info->fsid,
4044 (unsigned long)btrfs_header_fsid(right),
4045 BTRFS_FSID_SIZE);
4046
4047 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
4048 (unsigned long)btrfs_header_chunk_tree_uuid(right),
4049 BTRFS_UUID_SIZE);
4050
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004051 if (split == 0) {
4052 if (mid <= slot) {
4053 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004054 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004055 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004056 btrfs_tree_unlock(path->nodes[0]);
4057 free_extent_buffer(path->nodes[0]);
4058 path->nodes[0] = right;
4059 path->slots[0] = 0;
4060 path->slots[1] += 1;
4061 } else {
4062 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004063 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004064 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004065 btrfs_tree_unlock(path->nodes[0]);
4066 free_extent_buffer(path->nodes[0]);
4067 path->nodes[0] = right;
4068 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004069 if (path->slots[1] == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004070 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004071 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004072 btrfs_mark_buffer_dirty(right);
4073 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004074 }
4075
Jeff Mahoney143bede2012-03-01 14:56:26 +01004076 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004077
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004078 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004079 BUG_ON(num_doubles != 0);
4080 num_doubles++;
4081 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004082 }
Chris Mason44871b12009-03-13 10:04:31 -04004083
Jeff Mahoney143bede2012-03-01 14:56:26 +01004084 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004085
4086push_for_double:
4087 push_for_double_split(trans, root, path, data_size);
4088 tried_avoid_double = 1;
4089 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4090 return 0;
4091 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004092}
4093
Yan, Zhengad48fd752009-11-12 09:33:58 +00004094static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4095 struct btrfs_root *root,
4096 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004097{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004098 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004099 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004100 struct btrfs_file_extent_item *fi;
4101 u64 extent_len = 0;
4102 u32 item_size;
4103 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004104
4105 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004106 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4107
4108 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4109 key.type != BTRFS_EXTENT_CSUM_KEY);
4110
4111 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4112 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004113
4114 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004115 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4116 fi = btrfs_item_ptr(leaf, path->slots[0],
4117 struct btrfs_file_extent_item);
4118 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4119 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004120 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004121
Chris Mason459931e2008-12-10 09:10:46 -05004122 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004123 path->search_for_split = 1;
4124 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004125 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004126 if (ret < 0)
4127 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004128
Yan, Zhengad48fd752009-11-12 09:33:58 +00004129 ret = -EAGAIN;
4130 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05004131 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00004132 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4133 goto err;
4134
Chris Mason109f6ae2010-04-02 09:20:18 -04004135 /* the leaf has changed, it now has room. return now */
4136 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4137 goto err;
4138
Yan, Zhengad48fd752009-11-12 09:33:58 +00004139 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4140 fi = btrfs_item_ptr(leaf, path->slots[0],
4141 struct btrfs_file_extent_item);
4142 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4143 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004144 }
4145
Chris Masonb9473432009-03-13 11:00:37 -04004146 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004147 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004148 if (ret)
4149 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004150
Yan, Zhengad48fd752009-11-12 09:33:58 +00004151 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004152 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004153 return 0;
4154err:
4155 path->keep_locks = 0;
4156 return ret;
4157}
4158
4159static noinline int split_item(struct btrfs_trans_handle *trans,
4160 struct btrfs_root *root,
4161 struct btrfs_path *path,
4162 struct btrfs_key *new_key,
4163 unsigned long split_offset)
4164{
4165 struct extent_buffer *leaf;
4166 struct btrfs_item *item;
4167 struct btrfs_item *new_item;
4168 int slot;
4169 char *buf;
4170 u32 nritems;
4171 u32 item_size;
4172 u32 orig_offset;
4173 struct btrfs_disk_key disk_key;
4174
Chris Masonb9473432009-03-13 11:00:37 -04004175 leaf = path->nodes[0];
4176 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4177
Chris Masonb4ce94d2009-02-04 09:25:08 -05004178 btrfs_set_path_blocking(path);
4179
Chris Mason459931e2008-12-10 09:10:46 -05004180 item = btrfs_item_nr(leaf, path->slots[0]);
4181 orig_offset = btrfs_item_offset(leaf, item);
4182 item_size = btrfs_item_size(leaf, item);
4183
Chris Mason459931e2008-12-10 09:10:46 -05004184 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004185 if (!buf)
4186 return -ENOMEM;
4187
Chris Mason459931e2008-12-10 09:10:46 -05004188 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4189 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004190
Chris Mason459931e2008-12-10 09:10:46 -05004191 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004192 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004193 if (slot != nritems) {
4194 /* shift the items */
4195 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004196 btrfs_item_nr_offset(slot),
4197 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004198 }
4199
4200 btrfs_cpu_key_to_disk(&disk_key, new_key);
4201 btrfs_set_item_key(leaf, &disk_key, slot);
4202
4203 new_item = btrfs_item_nr(leaf, slot);
4204
4205 btrfs_set_item_offset(leaf, new_item, orig_offset);
4206 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4207
4208 btrfs_set_item_offset(leaf, item,
4209 orig_offset + item_size - split_offset);
4210 btrfs_set_item_size(leaf, item, split_offset);
4211
4212 btrfs_set_header_nritems(leaf, nritems + 1);
4213
4214 /* write the data for the start of the original item */
4215 write_extent_buffer(leaf, buf,
4216 btrfs_item_ptr_offset(leaf, path->slots[0]),
4217 split_offset);
4218
4219 /* write the data for the new item */
4220 write_extent_buffer(leaf, buf + split_offset,
4221 btrfs_item_ptr_offset(leaf, slot),
4222 item_size - split_offset);
4223 btrfs_mark_buffer_dirty(leaf);
4224
Yan, Zhengad48fd752009-11-12 09:33:58 +00004225 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004226 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004227 return 0;
4228}
4229
4230/*
4231 * This function splits a single item into two items,
4232 * giving 'new_key' to the new item and splitting the
4233 * old one at split_offset (from the start of the item).
4234 *
4235 * The path may be released by this operation. After
4236 * the split, the path is pointing to the old item. The
4237 * new item is going to be in the same node as the old one.
4238 *
4239 * Note, the item being split must be smaller enough to live alone on
4240 * a tree block with room for one extra struct btrfs_item
4241 *
4242 * This allows us to split the item in place, keeping a lock on the
4243 * leaf the entire time.
4244 */
4245int btrfs_split_item(struct btrfs_trans_handle *trans,
4246 struct btrfs_root *root,
4247 struct btrfs_path *path,
4248 struct btrfs_key *new_key,
4249 unsigned long split_offset)
4250{
4251 int ret;
4252 ret = setup_leaf_for_split(trans, root, path,
4253 sizeof(struct btrfs_item));
4254 if (ret)
4255 return ret;
4256
4257 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004258 return ret;
4259}
4260
4261/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004262 * This function duplicate a item, giving 'new_key' to the new item.
4263 * It guarantees both items live in the same tree leaf and the new item
4264 * is contiguous with the original item.
4265 *
4266 * This allows us to split file extent in place, keeping a lock on the
4267 * leaf the entire time.
4268 */
4269int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4270 struct btrfs_root *root,
4271 struct btrfs_path *path,
4272 struct btrfs_key *new_key)
4273{
4274 struct extent_buffer *leaf;
4275 int ret;
4276 u32 item_size;
4277
4278 leaf = path->nodes[0];
4279 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4280 ret = setup_leaf_for_split(trans, root, path,
4281 item_size + sizeof(struct btrfs_item));
4282 if (ret)
4283 return ret;
4284
4285 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004286 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004287 item_size, item_size +
4288 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004289 leaf = path->nodes[0];
4290 memcpy_extent_buffer(leaf,
4291 btrfs_item_ptr_offset(leaf, path->slots[0]),
4292 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4293 item_size);
4294 return 0;
4295}
4296
4297/*
Chris Masond352ac62008-09-29 15:18:18 -04004298 * make the item pointed to by the path smaller. new_size indicates
4299 * how small to make it, and from_end tells us if we just chop bytes
4300 * off the end of the item or if we shift the item to chop bytes off
4301 * the front.
4302 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004303void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004304 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004305{
Chris Masonb18c6682007-04-17 13:26:50 -04004306 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004307 struct extent_buffer *leaf;
4308 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004309 u32 nritems;
4310 unsigned int data_end;
4311 unsigned int old_data_start;
4312 unsigned int old_size;
4313 unsigned int size_diff;
4314 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004315 struct btrfs_map_token token;
4316
4317 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004318
Chris Mason5f39d392007-10-15 16:14:19 -04004319 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004320 slot = path->slots[0];
4321
4322 old_size = btrfs_item_size_nr(leaf, slot);
4323 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004324 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004325
Chris Mason5f39d392007-10-15 16:14:19 -04004326 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004327 data_end = leaf_data_end(root, leaf);
4328
Chris Mason5f39d392007-10-15 16:14:19 -04004329 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004330
Chris Masonb18c6682007-04-17 13:26:50 -04004331 size_diff = old_size - new_size;
4332
4333 BUG_ON(slot < 0);
4334 BUG_ON(slot >= nritems);
4335
4336 /*
4337 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4338 */
4339 /* first correct the data pointers */
4340 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004341 u32 ioff;
4342 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04004343
Chris Masoncfed81a2012-03-03 07:40:03 -05004344 ioff = btrfs_token_item_offset(leaf, item, &token);
4345 btrfs_set_token_item_offset(leaf, item,
4346 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004347 }
Chris Masondb945352007-10-15 16:15:53 -04004348
Chris Masonb18c6682007-04-17 13:26:50 -04004349 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004350 if (from_end) {
4351 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4352 data_end + size_diff, btrfs_leaf_data(leaf) +
4353 data_end, old_data_start + new_size - data_end);
4354 } else {
4355 struct btrfs_disk_key disk_key;
4356 u64 offset;
4357
4358 btrfs_item_key(leaf, &disk_key, slot);
4359
4360 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4361 unsigned long ptr;
4362 struct btrfs_file_extent_item *fi;
4363
4364 fi = btrfs_item_ptr(leaf, slot,
4365 struct btrfs_file_extent_item);
4366 fi = (struct btrfs_file_extent_item *)(
4367 (unsigned long)fi - size_diff);
4368
4369 if (btrfs_file_extent_type(leaf, fi) ==
4370 BTRFS_FILE_EXTENT_INLINE) {
4371 ptr = btrfs_item_ptr_offset(leaf, slot);
4372 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004373 (unsigned long)fi,
4374 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04004375 disk_bytenr));
4376 }
4377 }
4378
4379 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4380 data_end + size_diff, btrfs_leaf_data(leaf) +
4381 data_end, old_data_start - data_end);
4382
4383 offset = btrfs_disk_key_offset(&disk_key);
4384 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4385 btrfs_set_item_key(leaf, &disk_key, slot);
4386 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004387 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004388 }
Chris Mason5f39d392007-10-15 16:14:19 -04004389
4390 item = btrfs_item_nr(leaf, slot);
4391 btrfs_set_item_size(leaf, item, new_size);
4392 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004393
Chris Mason5f39d392007-10-15 16:14:19 -04004394 if (btrfs_leaf_free_space(root, leaf) < 0) {
4395 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004396 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004397 }
Chris Masonb18c6682007-04-17 13:26:50 -04004398}
4399
Chris Masond352ac62008-09-29 15:18:18 -04004400/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004401 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004402 */
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00004403void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004404 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004405{
Chris Mason6567e832007-04-16 09:22:45 -04004406 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004407 struct extent_buffer *leaf;
4408 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004409 u32 nritems;
4410 unsigned int data_end;
4411 unsigned int old_data;
4412 unsigned int old_size;
4413 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004414 struct btrfs_map_token token;
4415
4416 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004417
Chris Mason5f39d392007-10-15 16:14:19 -04004418 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004419
Chris Mason5f39d392007-10-15 16:14:19 -04004420 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004421 data_end = leaf_data_end(root, leaf);
4422
Chris Mason5f39d392007-10-15 16:14:19 -04004423 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4424 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004425 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004426 }
Chris Mason6567e832007-04-16 09:22:45 -04004427 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004428 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004429
4430 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004431 if (slot >= nritems) {
4432 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004433 printk(KERN_CRIT "slot %d too large, nritems %d\n",
4434 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004435 BUG_ON(1);
4436 }
Chris Mason6567e832007-04-16 09:22:45 -04004437
4438 /*
4439 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4440 */
4441 /* first correct the data pointers */
4442 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004443 u32 ioff;
4444 item = btrfs_item_nr(leaf, i);
Chris Masondb945352007-10-15 16:15:53 -04004445
Chris Masoncfed81a2012-03-03 07:40:03 -05004446 ioff = btrfs_token_item_offset(leaf, item, &token);
4447 btrfs_set_token_item_offset(leaf, item,
4448 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004449 }
Chris Mason5f39d392007-10-15 16:14:19 -04004450
Chris Mason6567e832007-04-16 09:22:45 -04004451 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004452 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004453 data_end - data_size, btrfs_leaf_data(leaf) +
4454 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004455
Chris Mason6567e832007-04-16 09:22:45 -04004456 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004457 old_size = btrfs_item_size_nr(leaf, slot);
4458 item = btrfs_item_nr(leaf, slot);
4459 btrfs_set_item_size(leaf, item, old_size + data_size);
4460 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004461
Chris Mason5f39d392007-10-15 16:14:19 -04004462 if (btrfs_leaf_free_space(root, leaf) < 0) {
4463 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004464 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004465 }
Chris Mason6567e832007-04-16 09:22:45 -04004466}
4467
Chris Mason74123bd2007-02-02 11:05:29 -05004468/*
Chris Mason44871b12009-03-13 10:04:31 -04004469 * this is a helper for btrfs_insert_empty_items, the main goal here is
4470 * to save stack depth by doing the bulk of the work in a function
4471 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004472 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004473void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004474 struct btrfs_key *cpu_key, u32 *data_size,
4475 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004476{
Chris Mason5f39d392007-10-15 16:14:19 -04004477 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004478 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004479 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004480 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004481 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004482 struct extent_buffer *leaf;
4483 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004484 struct btrfs_map_token token;
4485
4486 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004487
Chris Mason5f39d392007-10-15 16:14:19 -04004488 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004489 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004490
Chris Mason5f39d392007-10-15 16:14:19 -04004491 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004492 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004493
Chris Masonf25956c2008-09-12 15:32:53 -04004494 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004495 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004496 printk(KERN_CRIT "not enough freespace need %u have %d\n",
Chris Mason9c583092008-01-29 15:15:18 -05004497 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004498 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004499 }
Chris Mason5f39d392007-10-15 16:14:19 -04004500
Chris Masonbe0e5c02007-01-26 15:51:26 -05004501 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004502 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004503
Chris Mason5f39d392007-10-15 16:14:19 -04004504 if (old_data < data_end) {
4505 btrfs_print_leaf(root, leaf);
Chris Masond3977122009-01-05 21:25:51 -05004506 printk(KERN_CRIT "slot %d old_data %d data_end %d\n",
Chris Mason5f39d392007-10-15 16:14:19 -04004507 slot, old_data, data_end);
4508 BUG_ON(1);
4509 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004510 /*
4511 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4512 */
4513 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004514 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004515 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004516
Chris Mason5f39d392007-10-15 16:14:19 -04004517 item = btrfs_item_nr(leaf, i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004518 ioff = btrfs_token_item_offset(leaf, item, &token);
4519 btrfs_set_token_item_offset(leaf, item,
4520 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004521 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004522 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004523 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004524 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004525 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004526
4527 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004528 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004529 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004530 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004531 data_end = old_data;
4532 }
Chris Mason5f39d392007-10-15 16:14:19 -04004533
Chris Mason62e27492007-03-15 12:56:47 -04004534 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004535 for (i = 0; i < nr; i++) {
4536 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4537 btrfs_set_item_key(leaf, &disk_key, slot + i);
4538 item = btrfs_item_nr(leaf, slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004539 btrfs_set_token_item_offset(leaf, item,
4540 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004541 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004542 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004543 }
Chris Mason44871b12009-03-13 10:04:31 -04004544
Chris Mason9c583092008-01-29 15:15:18 -05004545 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004546
Chris Mason5a01a2e2008-01-30 11:43:54 -05004547 if (slot == 0) {
4548 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004549 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason5a01a2e2008-01-30 11:43:54 -05004550 }
Chris Masonb9473432009-03-13 11:00:37 -04004551 btrfs_unlock_up_safe(path, 1);
4552 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004553
Chris Mason5f39d392007-10-15 16:14:19 -04004554 if (btrfs_leaf_free_space(root, leaf) < 0) {
4555 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004556 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004557 }
Chris Mason44871b12009-03-13 10:04:31 -04004558}
4559
4560/*
4561 * Given a key and some data, insert items into the tree.
4562 * This does all the path init required, making room in the tree if needed.
4563 */
4564int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4565 struct btrfs_root *root,
4566 struct btrfs_path *path,
4567 struct btrfs_key *cpu_key, u32 *data_size,
4568 int nr)
4569{
Chris Mason44871b12009-03-13 10:04:31 -04004570 int ret = 0;
4571 int slot;
4572 int i;
4573 u32 total_size = 0;
4574 u32 total_data = 0;
4575
4576 for (i = 0; i < nr; i++)
4577 total_data += data_size[i];
4578
4579 total_size = total_data + (nr * sizeof(struct btrfs_item));
4580 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4581 if (ret == 0)
4582 return -EEXIST;
4583 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004584 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004585
Chris Mason44871b12009-03-13 10:04:31 -04004586 slot = path->slots[0];
4587 BUG_ON(slot < 0);
4588
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004589 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004590 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004591 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004592}
4593
4594/*
4595 * Given a key and some data, insert an item into the tree.
4596 * This does all the path init required, making room in the tree if needed.
4597 */
Chris Masone089f052007-03-16 16:20:31 -04004598int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4599 *root, struct btrfs_key *cpu_key, void *data, u32
4600 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004601{
4602 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004603 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004604 struct extent_buffer *leaf;
4605 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004606
Chris Mason2c90e5d2007-04-02 10:50:19 -04004607 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004608 if (!path)
4609 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004610 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004611 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004612 leaf = path->nodes[0];
4613 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4614 write_extent_buffer(leaf, data, ptr, data_size);
4615 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004616 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004617 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004618 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004619}
4620
Chris Mason74123bd2007-02-02 11:05:29 -05004621/*
Chris Mason5de08d72007-02-24 06:24:44 -05004622 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004623 *
Chris Masond352ac62008-09-29 15:18:18 -04004624 * the tree should have been previously balanced so the deletion does not
4625 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004626 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004627static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4628 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004629{
Chris Mason5f39d392007-10-15 16:14:19 -04004630 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004631 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004632 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004633
Chris Mason5f39d392007-10-15 16:14:19 -04004634 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004635 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004636 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004637 tree_mod_log_eb_move(root->fs_info, parent, slot,
4638 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004639 memmove_extent_buffer(parent,
4640 btrfs_node_key_ptr_offset(slot),
4641 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004642 sizeof(struct btrfs_key_ptr) *
4643 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004644 } else if (level) {
4645 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
4646 MOD_LOG_KEY_REMOVE);
4647 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004648 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004649
Chris Mason7518a232007-03-12 12:01:18 -04004650 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004651 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004652 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004653 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004654 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004655 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004656 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004657 struct btrfs_disk_key disk_key;
4658
4659 btrfs_node_key(parent, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004660 fixup_low_keys(root, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004661 }
Chris Masond6025572007-03-30 14:27:56 -04004662 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004663}
4664
Chris Mason74123bd2007-02-02 11:05:29 -05004665/*
Chris Mason323ac952008-10-01 19:05:46 -04004666 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004667 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004668 *
4669 * This deletes the pointer in path->nodes[1] and frees the leaf
4670 * block extent. zero is returned if it all worked out, < 0 otherwise.
4671 *
4672 * The path must have already been setup for deleting the leaf, including
4673 * all the proper balancing. path->nodes[1] must be locked.
4674 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004675static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4676 struct btrfs_root *root,
4677 struct btrfs_path *path,
4678 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004679{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004680 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004681 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004682
Chris Mason4d081c42009-02-04 09:31:28 -05004683 /*
4684 * btrfs_free_extent is expensive, we want to make sure we
4685 * aren't holding any locks when we call it
4686 */
4687 btrfs_unlock_up_safe(path, 0);
4688
Yan, Zhengf0486c62010-05-16 10:46:25 -04004689 root_sub_used(root, leaf->len);
4690
Josef Bacik3083ee22012-03-09 16:01:49 -05004691 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004692 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004693 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004694}
4695/*
Chris Mason74123bd2007-02-02 11:05:29 -05004696 * delete the item at the leaf level in path. If that empties
4697 * the leaf, remove it from the tree
4698 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004699int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4700 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004701{
Chris Mason5f39d392007-10-15 16:14:19 -04004702 struct extent_buffer *leaf;
4703 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004704 int last_off;
4705 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004706 int ret = 0;
4707 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004708 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004709 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004710 struct btrfs_map_token token;
4711
4712 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004713
Chris Mason5f39d392007-10-15 16:14:19 -04004714 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004715 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4716
4717 for (i = 0; i < nr; i++)
4718 dsize += btrfs_item_size_nr(leaf, slot + i);
4719
Chris Mason5f39d392007-10-15 16:14:19 -04004720 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004721
Chris Mason85e21ba2008-01-29 15:11:36 -05004722 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004723 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004724
4725 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004726 data_end + dsize,
4727 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004728 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004729
Chris Mason85e21ba2008-01-29 15:11:36 -05004730 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004731 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004732
Chris Mason5f39d392007-10-15 16:14:19 -04004733 item = btrfs_item_nr(leaf, i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004734 ioff = btrfs_token_item_offset(leaf, item, &token);
4735 btrfs_set_token_item_offset(leaf, item,
4736 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004737 }
Chris Masondb945352007-10-15 16:15:53 -04004738
Chris Mason5f39d392007-10-15 16:14:19 -04004739 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004740 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004741 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004742 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004743 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004744 btrfs_set_header_nritems(leaf, nritems - nr);
4745 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004746
Chris Mason74123bd2007-02-02 11:05:29 -05004747 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004748 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004749 if (leaf == root->node) {
4750 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004751 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004752 btrfs_set_path_blocking(path);
4753 clean_tree_block(trans, root, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004754 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004755 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004756 } else {
Chris Mason7518a232007-03-12 12:01:18 -04004757 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004758 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004759 struct btrfs_disk_key disk_key;
4760
4761 btrfs_item_key(leaf, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004762 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004763 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004764
Chris Mason74123bd2007-02-02 11:05:29 -05004765 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04004766 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05004767 /* push_leaf_left fixes the path.
4768 * make sure the path still points to our leaf
4769 * for possible call to del_ptr below
4770 */
Chris Mason4920c9a2007-01-26 16:38:42 -05004771 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04004772 extent_buffer_get(leaf);
4773
Chris Masonb9473432009-03-13 11:00:37 -04004774 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04004775 wret = push_leaf_left(trans, root, path, 1, 1,
4776 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04004777 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05004778 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04004779
4780 if (path->nodes[0] == leaf &&
4781 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004782 wret = push_leaf_right(trans, root, path, 1,
4783 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04004784 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05004785 ret = wret;
4786 }
Chris Mason5f39d392007-10-15 16:14:19 -04004787
4788 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04004789 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004790 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004791 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004792 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05004793 } else {
Chris Mason925baed2008-06-25 16:01:30 -04004794 /* if we're still in the path, make sure
4795 * we're dirty. Otherwise, one of the
4796 * push_leaf functions must have already
4797 * dirtied this buffer
4798 */
4799 if (path->nodes[0] == leaf)
4800 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004801 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004802 }
Chris Masond5719762007-03-23 10:01:08 -04004803 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04004804 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004805 }
4806 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004807 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004808}
4809
Chris Mason97571fd2007-02-24 13:39:08 -05004810/*
Chris Mason925baed2008-06-25 16:01:30 -04004811 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05004812 * returns 0 if it found something or 1 if there are no lesser leaves.
4813 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04004814 *
4815 * This may release the path, and so you may lose any locks held at the
4816 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05004817 */
4818int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
4819{
Chris Mason925baed2008-06-25 16:01:30 -04004820 struct btrfs_key key;
4821 struct btrfs_disk_key found_key;
4822 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05004823
Chris Mason925baed2008-06-25 16:01:30 -04004824 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05004825
Chris Mason925baed2008-06-25 16:01:30 -04004826 if (key.offset > 0)
4827 key.offset--;
4828 else if (key.type > 0)
4829 key.type--;
4830 else if (key.objectid > 0)
4831 key.objectid--;
4832 else
4833 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05004834
David Sterbab3b4aa72011-04-21 01:20:15 +02004835 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04004836 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4837 if (ret < 0)
4838 return ret;
4839 btrfs_item_key(path->nodes[0], &found_key, 0);
4840 ret = comp_keys(&found_key, &key);
4841 if (ret < 0)
4842 return 0;
4843 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05004844}
4845
Chris Mason3f157a22008-06-25 16:01:31 -04004846/*
4847 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00004848 * for nodes or leaves that are have a minimum transaction id.
4849 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04004850 *
4851 * This does not cow, but it does stuff the starting key it finds back
4852 * into min_key, so you can call btrfs_search_slot with cow=1 on the
4853 * key and get a writable path.
4854 *
4855 * This does lock as it descends, and path->keep_locks should be set
4856 * to 1 by the caller.
4857 *
4858 * This honors path->lowest_level to prevent descent past a given level
4859 * of the tree.
4860 *
Chris Masond352ac62008-09-29 15:18:18 -04004861 * min_trans indicates the oldest transaction that you are interested
4862 * in walking through. Any nodes or leaves older than min_trans are
4863 * skipped over (without reading them).
4864 *
Chris Mason3f157a22008-06-25 16:01:31 -04004865 * returns zero if something useful was found, < 0 on error and 1 if there
4866 * was nothing in the tree that matched the search criteria.
4867 */
4868int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Chris Masone02119d2008-09-05 16:13:11 -04004869 struct btrfs_key *max_key,
Eric Sandeende78b512013-01-31 18:21:12 +00004870 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04004871 u64 min_trans)
4872{
4873 struct extent_buffer *cur;
4874 struct btrfs_key found_key;
4875 int slot;
Yan96524802008-07-24 12:19:49 -04004876 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04004877 u32 nritems;
4878 int level;
4879 int ret = 1;
4880
Chris Mason934d3752008-12-08 16:43:10 -05004881 WARN_ON(!path->keep_locks);
Chris Mason3f157a22008-06-25 16:01:31 -04004882again:
Chris Masonbd681512011-07-16 15:23:14 -04004883 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04004884 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04004885 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04004886 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04004887 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004888
4889 if (btrfs_header_generation(cur) < min_trans) {
4890 ret = 1;
4891 goto out;
4892 }
Chris Masond3977122009-01-05 21:25:51 -05004893 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04004894 nritems = btrfs_header_nritems(cur);
4895 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04004896 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04004897
Chris Mason323ac952008-10-01 19:05:46 -04004898 /* at the lowest level, we're done, setup the path and exit */
4899 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04004900 if (slot >= nritems)
4901 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04004902 ret = 0;
4903 path->slots[level] = slot;
4904 btrfs_item_key_to_cpu(cur, &found_key, slot);
4905 goto out;
4906 }
Yan96524802008-07-24 12:19:49 -04004907 if (sret && slot > 0)
4908 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04004909 /*
Eric Sandeende78b512013-01-31 18:21:12 +00004910 * check this node pointer against the min_trans parameters.
4911 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04004912 */
Chris Masond3977122009-01-05 21:25:51 -05004913 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04004914 u64 blockptr;
4915 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04004916
Chris Mason3f157a22008-06-25 16:01:31 -04004917 blockptr = btrfs_node_blockptr(cur, slot);
4918 gen = btrfs_node_ptr_generation(cur, slot);
4919 if (gen < min_trans) {
4920 slot++;
4921 continue;
4922 }
Eric Sandeende78b512013-01-31 18:21:12 +00004923 break;
Chris Mason3f157a22008-06-25 16:01:31 -04004924 }
Chris Masone02119d2008-09-05 16:13:11 -04004925find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04004926 /*
4927 * we didn't find a candidate key in this node, walk forward
4928 * and find another one
4929 */
4930 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04004931 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004932 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04004933 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00004934 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04004935 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02004936 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004937 goto again;
4938 } else {
4939 goto out;
4940 }
4941 }
4942 /* save our key for returning back */
4943 btrfs_node_key_to_cpu(cur, &found_key, slot);
4944 path->slots[level] = slot;
4945 if (level == path->lowest_level) {
4946 ret = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04004947 unlock_up(path, level, 1, 0, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04004948 goto out;
4949 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05004950 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004951 cur = read_node_slot(root, cur, slot);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004952 BUG_ON(!cur); /* -ENOMEM */
Chris Mason3f157a22008-06-25 16:01:31 -04004953
Chris Masonbd681512011-07-16 15:23:14 -04004954 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004955
Chris Masonbd681512011-07-16 15:23:14 -04004956 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04004957 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04004958 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04004959 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04004960 }
4961out:
4962 if (ret == 0)
4963 memcpy(min_key, &found_key, sizeof(found_key));
Chris Masonb4ce94d2009-02-04 09:25:08 -05004964 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04004965 return ret;
4966}
4967
Alexander Block70698302012-06-05 21:07:48 +02004968static void tree_move_down(struct btrfs_root *root,
4969 struct btrfs_path *path,
4970 int *level, int root_level)
4971{
Chris Mason74dd17f2012-08-07 16:25:13 -04004972 BUG_ON(*level == 0);
Alexander Block70698302012-06-05 21:07:48 +02004973 path->nodes[*level - 1] = read_node_slot(root, path->nodes[*level],
4974 path->slots[*level]);
4975 path->slots[*level - 1] = 0;
4976 (*level)--;
4977}
4978
4979static int tree_move_next_or_upnext(struct btrfs_root *root,
4980 struct btrfs_path *path,
4981 int *level, int root_level)
4982{
4983 int ret = 0;
4984 int nritems;
4985 nritems = btrfs_header_nritems(path->nodes[*level]);
4986
4987 path->slots[*level]++;
4988
Chris Mason74dd17f2012-08-07 16:25:13 -04004989 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02004990 if (*level == root_level)
4991 return -1;
4992
4993 /* move upnext */
4994 path->slots[*level] = 0;
4995 free_extent_buffer(path->nodes[*level]);
4996 path->nodes[*level] = NULL;
4997 (*level)++;
4998 path->slots[*level]++;
4999
5000 nritems = btrfs_header_nritems(path->nodes[*level]);
5001 ret = 1;
5002 }
5003 return ret;
5004}
5005
5006/*
5007 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5008 * or down.
5009 */
5010static int tree_advance(struct btrfs_root *root,
5011 struct btrfs_path *path,
5012 int *level, int root_level,
5013 int allow_down,
5014 struct btrfs_key *key)
5015{
5016 int ret;
5017
5018 if (*level == 0 || !allow_down) {
5019 ret = tree_move_next_or_upnext(root, path, level, root_level);
5020 } else {
5021 tree_move_down(root, path, level, root_level);
5022 ret = 0;
5023 }
5024 if (ret >= 0) {
5025 if (*level == 0)
5026 btrfs_item_key_to_cpu(path->nodes[*level], key,
5027 path->slots[*level]);
5028 else
5029 btrfs_node_key_to_cpu(path->nodes[*level], key,
5030 path->slots[*level]);
5031 }
5032 return ret;
5033}
5034
5035static int tree_compare_item(struct btrfs_root *left_root,
5036 struct btrfs_path *left_path,
5037 struct btrfs_path *right_path,
5038 char *tmp_buf)
5039{
5040 int cmp;
5041 int len1, len2;
5042 unsigned long off1, off2;
5043
5044 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5045 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5046 if (len1 != len2)
5047 return 1;
5048
5049 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5050 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5051 right_path->slots[0]);
5052
5053 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5054
5055 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5056 if (cmp)
5057 return 1;
5058 return 0;
5059}
5060
5061#define ADVANCE 1
5062#define ADVANCE_ONLY_NEXT -1
5063
5064/*
5065 * This function compares two trees and calls the provided callback for
5066 * every changed/new/deleted item it finds.
5067 * If shared tree blocks are encountered, whole subtrees are skipped, making
5068 * the compare pretty fast on snapshotted subvolumes.
5069 *
5070 * This currently works on commit roots only. As commit roots are read only,
5071 * we don't do any locking. The commit roots are protected with transactions.
5072 * Transactions are ended and rejoined when a commit is tried in between.
5073 *
5074 * This function checks for modifications done to the trees while comparing.
5075 * If it detects a change, it aborts immediately.
5076 */
5077int btrfs_compare_trees(struct btrfs_root *left_root,
5078 struct btrfs_root *right_root,
5079 btrfs_changed_cb_t changed_cb, void *ctx)
5080{
5081 int ret;
5082 int cmp;
5083 struct btrfs_trans_handle *trans = NULL;
5084 struct btrfs_path *left_path = NULL;
5085 struct btrfs_path *right_path = NULL;
5086 struct btrfs_key left_key;
5087 struct btrfs_key right_key;
5088 char *tmp_buf = NULL;
5089 int left_root_level;
5090 int right_root_level;
5091 int left_level;
5092 int right_level;
5093 int left_end_reached;
5094 int right_end_reached;
5095 int advance_left;
5096 int advance_right;
5097 u64 left_blockptr;
5098 u64 right_blockptr;
5099 u64 left_start_ctransid;
5100 u64 right_start_ctransid;
5101 u64 ctransid;
5102
5103 left_path = btrfs_alloc_path();
5104 if (!left_path) {
5105 ret = -ENOMEM;
5106 goto out;
5107 }
5108 right_path = btrfs_alloc_path();
5109 if (!right_path) {
5110 ret = -ENOMEM;
5111 goto out;
5112 }
5113
5114 tmp_buf = kmalloc(left_root->leafsize, GFP_NOFS);
5115 if (!tmp_buf) {
5116 ret = -ENOMEM;
5117 goto out;
5118 }
5119
5120 left_path->search_commit_root = 1;
5121 left_path->skip_locking = 1;
5122 right_path->search_commit_root = 1;
5123 right_path->skip_locking = 1;
5124
Anand Jain5f3ab902012-12-07 09:28:54 +00005125 spin_lock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005126 left_start_ctransid = btrfs_root_ctransid(&left_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005127 spin_unlock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005128
Anand Jain5f3ab902012-12-07 09:28:54 +00005129 spin_lock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005130 right_start_ctransid = btrfs_root_ctransid(&right_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005131 spin_unlock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005132
5133 trans = btrfs_join_transaction(left_root);
5134 if (IS_ERR(trans)) {
5135 ret = PTR_ERR(trans);
5136 trans = NULL;
5137 goto out;
5138 }
5139
5140 /*
5141 * Strategy: Go to the first items of both trees. Then do
5142 *
5143 * If both trees are at level 0
5144 * Compare keys of current items
5145 * If left < right treat left item as new, advance left tree
5146 * and repeat
5147 * If left > right treat right item as deleted, advance right tree
5148 * and repeat
5149 * If left == right do deep compare of items, treat as changed if
5150 * needed, advance both trees and repeat
5151 * If both trees are at the same level but not at level 0
5152 * Compare keys of current nodes/leafs
5153 * If left < right advance left tree and repeat
5154 * If left > right advance right tree and repeat
5155 * If left == right compare blockptrs of the next nodes/leafs
5156 * If they match advance both trees but stay at the same level
5157 * and repeat
5158 * If they don't match advance both trees while allowing to go
5159 * deeper and repeat
5160 * If tree levels are different
5161 * Advance the tree that needs it and repeat
5162 *
5163 * Advancing a tree means:
5164 * If we are at level 0, try to go to the next slot. If that's not
5165 * possible, go one level up and repeat. Stop when we found a level
5166 * where we could go to the next slot. We may at this point be on a
5167 * node or a leaf.
5168 *
5169 * If we are not at level 0 and not on shared tree blocks, go one
5170 * level deeper.
5171 *
5172 * If we are not at level 0 and on shared tree blocks, go one slot to
5173 * the right if possible or go up and right.
5174 */
5175
5176 left_level = btrfs_header_level(left_root->commit_root);
5177 left_root_level = left_level;
5178 left_path->nodes[left_level] = left_root->commit_root;
5179 extent_buffer_get(left_path->nodes[left_level]);
5180
5181 right_level = btrfs_header_level(right_root->commit_root);
5182 right_root_level = right_level;
5183 right_path->nodes[right_level] = right_root->commit_root;
5184 extent_buffer_get(right_path->nodes[right_level]);
5185
5186 if (left_level == 0)
5187 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5188 &left_key, left_path->slots[left_level]);
5189 else
5190 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5191 &left_key, left_path->slots[left_level]);
5192 if (right_level == 0)
5193 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5194 &right_key, right_path->slots[right_level]);
5195 else
5196 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5197 &right_key, right_path->slots[right_level]);
5198
5199 left_end_reached = right_end_reached = 0;
5200 advance_left = advance_right = 0;
5201
5202 while (1) {
5203 /*
5204 * We need to make sure the transaction does not get committed
5205 * while we do anything on commit roots. This means, we need to
5206 * join and leave transactions for every item that we process.
5207 */
5208 if (trans && btrfs_should_end_transaction(trans, left_root)) {
5209 btrfs_release_path(left_path);
5210 btrfs_release_path(right_path);
5211
5212 ret = btrfs_end_transaction(trans, left_root);
5213 trans = NULL;
5214 if (ret < 0)
5215 goto out;
5216 }
5217 /* now rejoin the transaction */
5218 if (!trans) {
5219 trans = btrfs_join_transaction(left_root);
5220 if (IS_ERR(trans)) {
5221 ret = PTR_ERR(trans);
5222 trans = NULL;
5223 goto out;
5224 }
5225
Anand Jain5f3ab902012-12-07 09:28:54 +00005226 spin_lock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005227 ctransid = btrfs_root_ctransid(&left_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005228 spin_unlock(&left_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005229 if (ctransid != left_start_ctransid)
5230 left_start_ctransid = 0;
5231
Anand Jain5f3ab902012-12-07 09:28:54 +00005232 spin_lock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005233 ctransid = btrfs_root_ctransid(&right_root->root_item);
Anand Jain5f3ab902012-12-07 09:28:54 +00005234 spin_unlock(&right_root->root_item_lock);
Alexander Block70698302012-06-05 21:07:48 +02005235 if (ctransid != right_start_ctransid)
5236 right_start_ctransid = 0;
5237
5238 if (!left_start_ctransid || !right_start_ctransid) {
5239 WARN(1, KERN_WARNING
5240 "btrfs: btrfs_compare_tree detected "
5241 "a change in one of the trees while "
5242 "iterating. This is probably a "
5243 "bug.\n");
5244 ret = -EIO;
5245 goto out;
5246 }
5247
5248 /*
5249 * the commit root may have changed, so start again
5250 * where we stopped
5251 */
5252 left_path->lowest_level = left_level;
5253 right_path->lowest_level = right_level;
5254 ret = btrfs_search_slot(NULL, left_root,
5255 &left_key, left_path, 0, 0);
5256 if (ret < 0)
5257 goto out;
5258 ret = btrfs_search_slot(NULL, right_root,
5259 &right_key, right_path, 0, 0);
5260 if (ret < 0)
5261 goto out;
5262 }
5263
5264 if (advance_left && !left_end_reached) {
5265 ret = tree_advance(left_root, left_path, &left_level,
5266 left_root_level,
5267 advance_left != ADVANCE_ONLY_NEXT,
5268 &left_key);
5269 if (ret < 0)
5270 left_end_reached = ADVANCE;
5271 advance_left = 0;
5272 }
5273 if (advance_right && !right_end_reached) {
5274 ret = tree_advance(right_root, right_path, &right_level,
5275 right_root_level,
5276 advance_right != ADVANCE_ONLY_NEXT,
5277 &right_key);
5278 if (ret < 0)
5279 right_end_reached = ADVANCE;
5280 advance_right = 0;
5281 }
5282
5283 if (left_end_reached && right_end_reached) {
5284 ret = 0;
5285 goto out;
5286 } else if (left_end_reached) {
5287 if (right_level == 0) {
5288 ret = changed_cb(left_root, right_root,
5289 left_path, right_path,
5290 &right_key,
5291 BTRFS_COMPARE_TREE_DELETED,
5292 ctx);
5293 if (ret < 0)
5294 goto out;
5295 }
5296 advance_right = ADVANCE;
5297 continue;
5298 } else if (right_end_reached) {
5299 if (left_level == 0) {
5300 ret = changed_cb(left_root, right_root,
5301 left_path, right_path,
5302 &left_key,
5303 BTRFS_COMPARE_TREE_NEW,
5304 ctx);
5305 if (ret < 0)
5306 goto out;
5307 }
5308 advance_left = ADVANCE;
5309 continue;
5310 }
5311
5312 if (left_level == 0 && right_level == 0) {
5313 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5314 if (cmp < 0) {
5315 ret = changed_cb(left_root, right_root,
5316 left_path, right_path,
5317 &left_key,
5318 BTRFS_COMPARE_TREE_NEW,
5319 ctx);
5320 if (ret < 0)
5321 goto out;
5322 advance_left = ADVANCE;
5323 } else if (cmp > 0) {
5324 ret = changed_cb(left_root, right_root,
5325 left_path, right_path,
5326 &right_key,
5327 BTRFS_COMPARE_TREE_DELETED,
5328 ctx);
5329 if (ret < 0)
5330 goto out;
5331 advance_right = ADVANCE;
5332 } else {
Chris Mason74dd17f2012-08-07 16:25:13 -04005333 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005334 ret = tree_compare_item(left_root, left_path,
5335 right_path, tmp_buf);
5336 if (ret) {
Chris Mason74dd17f2012-08-07 16:25:13 -04005337 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005338 ret = changed_cb(left_root, right_root,
5339 left_path, right_path,
5340 &left_key,
5341 BTRFS_COMPARE_TREE_CHANGED,
5342 ctx);
5343 if (ret < 0)
5344 goto out;
5345 }
5346 advance_left = ADVANCE;
5347 advance_right = ADVANCE;
5348 }
5349 } else if (left_level == right_level) {
5350 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5351 if (cmp < 0) {
5352 advance_left = ADVANCE;
5353 } else if (cmp > 0) {
5354 advance_right = ADVANCE;
5355 } else {
5356 left_blockptr = btrfs_node_blockptr(
5357 left_path->nodes[left_level],
5358 left_path->slots[left_level]);
5359 right_blockptr = btrfs_node_blockptr(
5360 right_path->nodes[right_level],
5361 right_path->slots[right_level]);
5362 if (left_blockptr == right_blockptr) {
5363 /*
5364 * As we're on a shared block, don't
5365 * allow to go deeper.
5366 */
5367 advance_left = ADVANCE_ONLY_NEXT;
5368 advance_right = ADVANCE_ONLY_NEXT;
5369 } else {
5370 advance_left = ADVANCE;
5371 advance_right = ADVANCE;
5372 }
5373 }
5374 } else if (left_level < right_level) {
5375 advance_right = ADVANCE;
5376 } else {
5377 advance_left = ADVANCE;
5378 }
5379 }
5380
5381out:
5382 btrfs_free_path(left_path);
5383 btrfs_free_path(right_path);
5384 kfree(tmp_buf);
5385
5386 if (trans) {
5387 if (!ret)
5388 ret = btrfs_end_transaction(trans, left_root);
5389 else
5390 btrfs_end_transaction(trans, left_root);
5391 }
5392
5393 return ret;
5394}
5395
Chris Mason3f157a22008-06-25 16:01:31 -04005396/*
5397 * this is similar to btrfs_next_leaf, but does not try to preserve
5398 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005399 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005400 *
5401 * 0 is returned if another key is found, < 0 if there are any errors
5402 * and 1 is returned if there are no higher keys in the tree
5403 *
5404 * path->keep_locks should be set to 1 on the search made before
5405 * calling this function.
5406 */
Chris Masone7a84562008-06-25 16:01:31 -04005407int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005408 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005409{
Chris Masone7a84562008-06-25 16:01:31 -04005410 int slot;
5411 struct extent_buffer *c;
5412
Chris Mason934d3752008-12-08 16:43:10 -05005413 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005414 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005415 if (!path->nodes[level])
5416 return 1;
5417
5418 slot = path->slots[level] + 1;
5419 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005420next:
Chris Masone7a84562008-06-25 16:01:31 -04005421 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005422 int ret;
5423 int orig_lowest;
5424 struct btrfs_key cur_key;
5425 if (level + 1 >= BTRFS_MAX_LEVEL ||
5426 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005427 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005428
5429 if (path->locks[level + 1]) {
5430 level++;
5431 continue;
5432 }
5433
5434 slot = btrfs_header_nritems(c) - 1;
5435 if (level == 0)
5436 btrfs_item_key_to_cpu(c, &cur_key, slot);
5437 else
5438 btrfs_node_key_to_cpu(c, &cur_key, slot);
5439
5440 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005441 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005442 path->lowest_level = level;
5443 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5444 0, 0);
5445 path->lowest_level = orig_lowest;
5446 if (ret < 0)
5447 return ret;
5448
5449 c = path->nodes[level];
5450 slot = path->slots[level];
5451 if (ret == 0)
5452 slot++;
5453 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005454 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005455
Chris Masone7a84562008-06-25 16:01:31 -04005456 if (level == 0)
5457 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005458 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005459 u64 gen = btrfs_node_ptr_generation(c, slot);
5460
Chris Mason3f157a22008-06-25 16:01:31 -04005461 if (gen < min_trans) {
5462 slot++;
5463 goto next;
5464 }
Chris Masone7a84562008-06-25 16:01:31 -04005465 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005466 }
Chris Masone7a84562008-06-25 16:01:31 -04005467 return 0;
5468 }
5469 return 1;
5470}
5471
Chris Mason7bb86312007-12-11 09:25:06 -05005472/*
Chris Mason925baed2008-06-25 16:01:30 -04005473 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005474 * returns 0 if it found something or 1 if there are no greater leaves.
5475 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005476 */
Chris Mason234b63a2007-03-13 10:46:10 -04005477int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005478{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005479 return btrfs_next_old_leaf(root, path, 0);
5480}
5481
5482int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5483 u64 time_seq)
5484{
Chris Masond97e63b2007-02-20 16:40:44 -05005485 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005486 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005487 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005488 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005489 struct btrfs_key key;
5490 u32 nritems;
5491 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005492 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005493 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005494
5495 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005496 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005497 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005498
Chris Mason8e73f272009-04-03 10:14:18 -04005499 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5500again:
5501 level = 1;
5502 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005503 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005504 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005505
Chris Masona2135012008-06-25 16:01:30 -04005506 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005507 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005508
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005509 if (time_seq)
5510 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5511 else
5512 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005513 path->keep_locks = 0;
5514
5515 if (ret < 0)
5516 return ret;
5517
Chris Masona2135012008-06-25 16:01:30 -04005518 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005519 /*
5520 * by releasing the path above we dropped all our locks. A balance
5521 * could have added more items next to the key that used to be
5522 * at the very end of the block. So, check again here and
5523 * advance the path if there are now more items available.
5524 */
Chris Masona2135012008-06-25 16:01:30 -04005525 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005526 if (ret == 0)
5527 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005528 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005529 goto done;
5530 }
Chris Masond97e63b2007-02-20 16:40:44 -05005531
Chris Masond3977122009-01-05 21:25:51 -05005532 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005533 if (!path->nodes[level]) {
5534 ret = 1;
5535 goto done;
5536 }
Chris Mason5f39d392007-10-15 16:14:19 -04005537
Chris Masond97e63b2007-02-20 16:40:44 -05005538 slot = path->slots[level] + 1;
5539 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005540 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005541 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005542 if (level == BTRFS_MAX_LEVEL) {
5543 ret = 1;
5544 goto done;
5545 }
Chris Masond97e63b2007-02-20 16:40:44 -05005546 continue;
5547 }
Chris Mason5f39d392007-10-15 16:14:19 -04005548
Chris Mason925baed2008-06-25 16:01:30 -04005549 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005550 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005551 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005552 }
Chris Mason5f39d392007-10-15 16:14:19 -04005553
Chris Mason8e73f272009-04-03 10:14:18 -04005554 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005555 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005556 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005557 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005558 if (ret == -EAGAIN)
5559 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005560
Chris Mason76a05b32009-05-14 13:24:30 -04005561 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005562 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005563 goto done;
5564 }
5565
Chris Mason5cd57b22008-06-25 16:01:30 -04005566 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005567 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005568 if (!ret && time_seq) {
5569 /*
5570 * If we don't get the lock, we may be racing
5571 * with push_leaf_left, holding that lock while
5572 * itself waiting for the leaf we've currently
5573 * locked. To solve this situation, we give up
5574 * on our lock and cycle.
5575 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005576 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005577 btrfs_release_path(path);
5578 cond_resched();
5579 goto again;
5580 }
Chris Mason8e73f272009-04-03 10:14:18 -04005581 if (!ret) {
5582 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005583 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005584 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005585 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005586 }
Chris Mason31533fb2011-07-26 16:01:59 -04005587 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005588 }
Chris Masond97e63b2007-02-20 16:40:44 -05005589 break;
5590 }
5591 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005592 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005593 level--;
5594 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005595 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005596 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005597
Chris Mason5f39d392007-10-15 16:14:19 -04005598 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005599 path->nodes[level] = next;
5600 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005601 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005602 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005603 if (!level)
5604 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005605
Chris Mason8e73f272009-04-03 10:14:18 -04005606 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005607 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005608 if (ret == -EAGAIN)
5609 goto again;
5610
Chris Mason76a05b32009-05-14 13:24:30 -04005611 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005612 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005613 goto done;
5614 }
5615
Chris Mason5cd57b22008-06-25 16:01:30 -04005616 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005617 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005618 if (!ret) {
5619 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005620 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005621 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005622 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005623 }
Chris Mason31533fb2011-07-26 16:01:59 -04005624 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005625 }
Chris Masond97e63b2007-02-20 16:40:44 -05005626 }
Chris Mason8e73f272009-04-03 10:14:18 -04005627 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005628done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005629 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005630 path->leave_spinning = old_spinning;
5631 if (!old_spinning)
5632 btrfs_set_path_blocking(path);
5633
5634 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005635}
Chris Mason0b86a832008-03-24 15:01:56 -04005636
Chris Mason3f157a22008-06-25 16:01:31 -04005637/*
5638 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5639 * searching until it gets past min_objectid or finds an item of 'type'
5640 *
5641 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5642 */
Chris Mason0b86a832008-03-24 15:01:56 -04005643int btrfs_previous_item(struct btrfs_root *root,
5644 struct btrfs_path *path, u64 min_objectid,
5645 int type)
5646{
5647 struct btrfs_key found_key;
5648 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005649 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005650 int ret;
5651
Chris Masond3977122009-01-05 21:25:51 -05005652 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005653 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005654 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005655 ret = btrfs_prev_leaf(root, path);
5656 if (ret != 0)
5657 return ret;
5658 } else {
5659 path->slots[0]--;
5660 }
5661 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005662 nritems = btrfs_header_nritems(leaf);
5663 if (nritems == 0)
5664 return 1;
5665 if (path->slots[0] == nritems)
5666 path->slots[0]--;
5667
Chris Mason0b86a832008-03-24 15:01:56 -04005668 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005669 if (found_key.objectid < min_objectid)
5670 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005671 if (found_key.type == type)
5672 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005673 if (found_key.objectid == min_objectid &&
5674 found_key.type < type)
5675 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005676 }
5677 return 1;
5678}