blob: d498982bd2022ef42c549d97b7623c7075d53d11 [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);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +000042static int tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
Jan Schmidtf2304752012-05-26 11:43:17 +020043 struct extent_buffer *eb);
Chris Masond97e63b2007-02-20 16:40:44 -050044
Chris Mason2c90e5d2007-04-02 10:50:19 -040045struct btrfs_path *btrfs_alloc_path(void)
46{
Chris Masondf24a2b2007-04-04 09:36:31 -040047 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050048 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Masondf24a2b2007-04-04 09:36:31 -040049 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040050}
51
Chris Masonb4ce94d2009-02-04 09:25:08 -050052/*
53 * set all locked nodes in the path to blocking locks. This should
54 * be done before scheduling
55 */
56noinline void btrfs_set_path_blocking(struct btrfs_path *p)
57{
58 int i;
59 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040060 if (!p->nodes[i] || !p->locks[i])
61 continue;
62 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
63 if (p->locks[i] == BTRFS_READ_LOCK)
64 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
65 else if (p->locks[i] == BTRFS_WRITE_LOCK)
66 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050067 }
68}
69
70/*
71 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050072 *
73 * held is used to keep lockdep happy, when lockdep is enabled
74 * we set held to a blocking lock before we go around and
75 * retake all the spinlocks in the path. You can safely use NULL
76 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050077 */
Chris Mason4008c042009-02-12 14:09:45 -050078noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040079 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050080{
81 int i;
Chris Mason4008c042009-02-12 14:09:45 -050082
83#ifdef CONFIG_DEBUG_LOCK_ALLOC
84 /* lockdep really cares that we take all of these spinlocks
85 * in the right order. If any of the locks in the path are not
86 * currently blocking, it is going to complain. So, make really
87 * really sure by forcing the path to blocking before we clear
88 * the path blocking.
89 */
Chris Masonbd681512011-07-16 15:23:14 -040090 if (held) {
91 btrfs_set_lock_blocking_rw(held, held_rw);
92 if (held_rw == BTRFS_WRITE_LOCK)
93 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
94 else if (held_rw == BTRFS_READ_LOCK)
95 held_rw = BTRFS_READ_LOCK_BLOCKING;
96 }
Chris Mason4008c042009-02-12 14:09:45 -050097 btrfs_set_path_blocking(p);
98#endif
99
100 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -0400101 if (p->nodes[i] && p->locks[i]) {
102 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
103 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
104 p->locks[i] = BTRFS_WRITE_LOCK;
105 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
106 p->locks[i] = BTRFS_READ_LOCK;
107 }
Chris Masonb4ce94d2009-02-04 09:25:08 -0500108 }
Chris Mason4008c042009-02-12 14:09:45 -0500109
110#ifdef CONFIG_DEBUG_LOCK_ALLOC
111 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400112 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Mason4008c042009-02-12 14:09:45 -0500113#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -0500114}
115
Chris Masond352ac62008-09-29 15:18:18 -0400116/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400117void btrfs_free_path(struct btrfs_path *p)
118{
Jesper Juhlff175d52010-12-25 21:22:30 +0000119 if (!p)
120 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200121 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400122 kmem_cache_free(btrfs_path_cachep, p);
123}
124
Chris Masond352ac62008-09-29 15:18:18 -0400125/*
126 * path release drops references on the extent buffers in the path
127 * and it drops any locks held by this path
128 *
129 * It is safe to call this on paths that no locks or extent buffers held.
130 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200131noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500132{
133 int i;
Chris Masona2135012008-06-25 16:01:30 -0400134
Chris Mason234b63a2007-03-13 10:46:10 -0400135 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400136 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500137 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400138 continue;
139 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400140 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400141 p->locks[i] = 0;
142 }
Chris Mason5f39d392007-10-15 16:14:19 -0400143 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400144 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500145 }
146}
147
Chris Masond352ac62008-09-29 15:18:18 -0400148/*
149 * safely gets a reference on the root node of a tree. A lock
150 * is not taken, so a concurrent writer may put a different node
151 * at the root of the tree. See btrfs_lock_root_node for the
152 * looping required.
153 *
154 * The extent buffer returned by this has a reference taken, so
155 * it won't disappear. It may stop being the root of the tree
156 * at any time because there are no locks held.
157 */
Chris Mason925baed2008-06-25 16:01:30 -0400158struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
159{
160 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400161
Josef Bacik3083ee22012-03-09 16:01:49 -0500162 while (1) {
163 rcu_read_lock();
164 eb = rcu_dereference(root->node);
165
166 /*
167 * RCU really hurts here, we could free up the root node because
168 * it was cow'ed but we may not get the new root node yet so do
169 * the inc_not_zero dance and if it doesn't work then
170 * synchronize_rcu and try again.
171 */
172 if (atomic_inc_not_zero(&eb->refs)) {
173 rcu_read_unlock();
174 break;
175 }
176 rcu_read_unlock();
177 synchronize_rcu();
178 }
Chris Mason925baed2008-06-25 16:01:30 -0400179 return eb;
180}
181
Chris Masond352ac62008-09-29 15:18:18 -0400182/* loop around taking references on and locking the root node of the
183 * tree until you end up with a lock on the root. A locked buffer
184 * is returned, with a reference held.
185 */
Chris Mason925baed2008-06-25 16:01:30 -0400186struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
187{
188 struct extent_buffer *eb;
189
Chris Masond3977122009-01-05 21:25:51 -0500190 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400191 eb = btrfs_root_node(root);
192 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400193 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400194 break;
Chris Mason925baed2008-06-25 16:01:30 -0400195 btrfs_tree_unlock(eb);
196 free_extent_buffer(eb);
197 }
198 return eb;
199}
200
Chris Masonbd681512011-07-16 15:23:14 -0400201/* loop around taking references on and locking the root node of the
202 * tree until you end up with a lock on the root. A locked buffer
203 * is returned, with a reference held.
204 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000205static struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400206{
207 struct extent_buffer *eb;
208
209 while (1) {
210 eb = btrfs_root_node(root);
211 btrfs_tree_read_lock(eb);
212 if (eb == root->node)
213 break;
214 btrfs_tree_read_unlock(eb);
215 free_extent_buffer(eb);
216 }
217 return eb;
218}
219
Chris Masond352ac62008-09-29 15:18:18 -0400220/* cowonly root (everything not a reference counted cow subvolume), just get
221 * put onto a simple dirty list. transaction.c walks this to make sure they
222 * get properly updated on disk.
223 */
Chris Mason0b86a832008-03-24 15:01:56 -0400224static void add_root_to_dirty_list(struct btrfs_root *root)
225{
Chris Masone5846fc2012-05-03 12:08:48 -0400226 spin_lock(&root->fs_info->trans_lock);
Miao Xie27cdeb72014-04-02 19:51:05 +0800227 if (test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state) &&
228 list_empty(&root->dirty_list)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400229 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
Miao Xie27cdeb72014-04-02 19:51:05 +0800250 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
251 trans->transid != root->fs_info->running_transaction->transid);
252 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
253 trans->transid != root->last_trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500254
255 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400256 if (level == 0)
257 btrfs_item_key(buf, &disk_key, 0);
258 else
259 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400260
David Sterba4d75f8a2014-06-15 01:54:12 +0200261 cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
262 &disk_key, level, 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
Ross Kirk0a4e5582013-09-24 10:12:38 +0100277 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -0500278 BTRFS_FSID_SIZE);
279
Chris Masonbe20aa92007-12-17 20:14:01 -0500280 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400281 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700282 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400283 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700284 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500285
Chris Masonbe20aa92007-12-17 20:14:01 -0500286 if (ret)
287 return ret;
288
289 btrfs_mark_buffer_dirty(cow);
290 *cow_ret = cow;
291 return 0;
292}
293
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200294enum mod_log_op {
295 MOD_LOG_KEY_REPLACE,
296 MOD_LOG_KEY_ADD,
297 MOD_LOG_KEY_REMOVE,
298 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
299 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
300 MOD_LOG_MOVE_KEYS,
301 MOD_LOG_ROOT_REPLACE,
302};
303
304struct tree_mod_move {
305 int dst_slot;
306 int nr_items;
307};
308
309struct tree_mod_root {
310 u64 logical;
311 u8 level;
312};
313
314struct tree_mod_elem {
315 struct rb_node node;
316 u64 index; /* shifted logical */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200317 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200318 enum mod_log_op op;
319
320 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
321 int slot;
322
323 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
324 u64 generation;
325
326 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
327 struct btrfs_disk_key key;
328 u64 blockptr;
329
330 /* this is used for op == MOD_LOG_MOVE_KEYS */
331 struct tree_mod_move move;
332
333 /* this is used for op == MOD_LOG_ROOT_REPLACE */
334 struct tree_mod_root old_root;
335};
336
Jan Schmidt097b8a72012-06-21 11:08:04 +0200337static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200338{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200339 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200340}
341
Jan Schmidt097b8a72012-06-21 11:08:04 +0200342static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200343{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200344 read_unlock(&fs_info->tree_mod_log_lock);
345}
346
347static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
348{
349 write_lock(&fs_info->tree_mod_log_lock);
350}
351
352static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
353{
354 write_unlock(&fs_info->tree_mod_log_lock);
355}
356
357/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700358 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000359 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700360static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000361{
362 return atomic64_inc_return(&fs_info->tree_mod_seq);
363}
364
365/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200366 * This adds a new blocker to the tree mod log's blocker list if the @elem
367 * passed does not already have a sequence number set. So when a caller expects
368 * to record tree modifications, it should ensure to set elem->seq to zero
369 * before calling btrfs_get_tree_mod_seq.
370 * Returns a fresh, unused tree log modification sequence number, even if no new
371 * blocker was added.
372 */
373u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
374 struct seq_list *elem)
375{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200376 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200377 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200378 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700379 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200380 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
381 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200382 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200383 tree_mod_log_write_unlock(fs_info);
384
Josef Bacikfcebe452014-05-13 17:30:47 -0700385 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200386}
387
388void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
389 struct seq_list *elem)
390{
391 struct rb_root *tm_root;
392 struct rb_node *node;
393 struct rb_node *next;
394 struct seq_list *cur_elem;
395 struct tree_mod_elem *tm;
396 u64 min_seq = (u64)-1;
397 u64 seq_putting = elem->seq;
398
399 if (!seq_putting)
400 return;
401
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200402 spin_lock(&fs_info->tree_mod_seq_lock);
403 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200404 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200405
406 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200407 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200408 if (seq_putting > cur_elem->seq) {
409 /*
410 * blocker with lower sequence number exists, we
411 * cannot remove anything from the log
412 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200413 spin_unlock(&fs_info->tree_mod_seq_lock);
414 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200415 }
416 min_seq = cur_elem->seq;
417 }
418 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200419 spin_unlock(&fs_info->tree_mod_seq_lock);
420
421 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200422 * anything that's lower than the lowest existing (read: blocked)
423 * sequence number can be removed from the tree.
424 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200425 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200426 tm_root = &fs_info->tree_mod_log;
427 for (node = rb_first(tm_root); node; node = next) {
428 next = rb_next(node);
429 tm = container_of(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200430 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200431 continue;
432 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200433 kfree(tm);
434 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200435 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200436}
437
438/*
439 * key order of the log:
440 * index -> sequence
441 *
442 * the index is the shifted logical of the *new* root node for root replace
443 * operations, or the shifted logical of the affected block for all other
444 * operations.
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000445 *
446 * Note: must be called with write lock (tree_mod_log_write_lock).
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200447 */
448static noinline int
449__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
450{
451 struct rb_root *tm_root;
452 struct rb_node **new;
453 struct rb_node *parent = NULL;
454 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200455
Josef Bacikc8cc6342013-07-01 16:18:19 -0400456 BUG_ON(!tm);
457
Josef Bacikfcebe452014-05-13 17:30:47 -0700458 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200459
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200460 tm_root = &fs_info->tree_mod_log;
461 new = &tm_root->rb_node;
462 while (*new) {
463 cur = container_of(*new, struct tree_mod_elem, node);
464 parent = *new;
465 if (cur->index < tm->index)
466 new = &((*new)->rb_left);
467 else if (cur->index > tm->index)
468 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200469 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200470 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200471 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200472 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000473 else
474 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200475 }
476
477 rb_link_node(&tm->node, parent, new);
478 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000479 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200480}
481
Jan Schmidt097b8a72012-06-21 11:08:04 +0200482/*
483 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
484 * returns zero with the tree_mod_log_lock acquired. The caller must hold
485 * this until all tree mod log insertions are recorded in the rb tree and then
486 * call tree_mod_log_write_unlock() to release.
487 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200488static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
489 struct extent_buffer *eb) {
490 smp_mb();
491 if (list_empty(&(fs_info)->tree_mod_seq_list))
492 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200493 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200494 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000495
496 tree_mod_log_write_lock(fs_info);
497 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
498 tree_mod_log_write_unlock(fs_info);
499 return 1;
500 }
501
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200502 return 0;
503}
504
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000505/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
506static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
507 struct extent_buffer *eb)
508{
509 smp_mb();
510 if (list_empty(&(fs_info)->tree_mod_seq_list))
511 return 0;
512 if (eb && btrfs_header_level(eb) == 0)
513 return 0;
514
515 return 1;
516}
517
518static struct tree_mod_elem *
519alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
520 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200521{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200522 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200523
Josef Bacikc8cc6342013-07-01 16:18:19 -0400524 tm = kzalloc(sizeof(*tm), flags);
525 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000526 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200527
528 tm->index = eb->start >> PAGE_CACHE_SHIFT;
529 if (op != MOD_LOG_KEY_ADD) {
530 btrfs_node_key(eb, &tm->key, slot);
531 tm->blockptr = btrfs_node_blockptr(eb, slot);
532 }
533 tm->op = op;
534 tm->slot = slot;
535 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000536 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200537
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000538 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200539}
540
541static noinline int
Josef Bacikc8cc6342013-07-01 16:18:19 -0400542tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
543 struct extent_buffer *eb, int slot,
544 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200545{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000546 struct tree_mod_elem *tm;
547 int ret;
548
549 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200550 return 0;
551
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000552 tm = alloc_tree_mod_elem(eb, slot, op, flags);
553 if (!tm)
554 return -ENOMEM;
555
556 if (tree_mod_dont_log(fs_info, eb)) {
557 kfree(tm);
558 return 0;
559 }
560
561 ret = __tree_mod_log_insert(fs_info, tm);
562 tree_mod_log_write_unlock(fs_info);
563 if (ret)
564 kfree(tm);
565
566 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200567}
568
569static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200570tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
571 struct extent_buffer *eb, int dst_slot, int src_slot,
572 int nr_items, gfp_t flags)
573{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000574 struct tree_mod_elem *tm = NULL;
575 struct tree_mod_elem **tm_list = NULL;
576 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200577 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000578 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200579
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000580 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200581 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200582
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000583 tm_list = kzalloc(nr_items * sizeof(struct tree_mod_elem *), flags);
584 if (!tm_list)
585 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200586
Josef Bacikc8cc6342013-07-01 16:18:19 -0400587 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000588 if (!tm) {
589 ret = -ENOMEM;
590 goto free_tms;
591 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200592
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200593 tm->index = eb->start >> PAGE_CACHE_SHIFT;
594 tm->slot = src_slot;
595 tm->move.dst_slot = dst_slot;
596 tm->move.nr_items = nr_items;
597 tm->op = MOD_LOG_MOVE_KEYS;
598
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000599 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
600 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
601 MOD_LOG_KEY_REMOVE_WHILE_MOVING, flags);
602 if (!tm_list[i]) {
603 ret = -ENOMEM;
604 goto free_tms;
605 }
606 }
607
608 if (tree_mod_dont_log(fs_info, eb))
609 goto free_tms;
610 locked = 1;
611
612 /*
613 * When we override something during the move, we log these removals.
614 * This can only happen when we move towards the beginning of the
615 * buffer, i.e. dst_slot < src_slot.
616 */
617 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
618 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
619 if (ret)
620 goto free_tms;
621 }
622
623 ret = __tree_mod_log_insert(fs_info, tm);
624 if (ret)
625 goto free_tms;
626 tree_mod_log_write_unlock(fs_info);
627 kfree(tm_list);
628
629 return 0;
630free_tms:
631 for (i = 0; i < nr_items; i++) {
632 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
633 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
634 kfree(tm_list[i]);
635 }
636 if (locked)
637 tree_mod_log_write_unlock(fs_info);
638 kfree(tm_list);
639 kfree(tm);
640
641 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200642}
643
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000644static inline int
645__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
646 struct tree_mod_elem **tm_list,
647 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200648{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000649 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200650 int ret;
651
Jan Schmidt097b8a72012-06-21 11:08:04 +0200652 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000653 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
654 if (ret) {
655 for (j = nritems - 1; j > i; j--)
656 rb_erase(&tm_list[j]->node,
657 &fs_info->tree_mod_log);
658 return ret;
659 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200660 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000661
662 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200663}
664
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200665static noinline int
666tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
667 struct extent_buffer *old_root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000668 struct extent_buffer *new_root, gfp_t flags,
669 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200670{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000671 struct tree_mod_elem *tm = NULL;
672 struct tree_mod_elem **tm_list = NULL;
673 int nritems = 0;
674 int ret = 0;
675 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200676
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000677 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200678 return 0;
679
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000680 if (log_removal && btrfs_header_level(old_root) > 0) {
681 nritems = btrfs_header_nritems(old_root);
682 tm_list = kzalloc(nritems * sizeof(struct tree_mod_elem *),
683 flags);
684 if (!tm_list) {
685 ret = -ENOMEM;
686 goto free_tms;
687 }
688 for (i = 0; i < nritems; i++) {
689 tm_list[i] = alloc_tree_mod_elem(old_root, i,
690 MOD_LOG_KEY_REMOVE_WHILE_FREEING, flags);
691 if (!tm_list[i]) {
692 ret = -ENOMEM;
693 goto free_tms;
694 }
695 }
696 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000697
Josef Bacikc8cc6342013-07-01 16:18:19 -0400698 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000699 if (!tm) {
700 ret = -ENOMEM;
701 goto free_tms;
702 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200703
704 tm->index = new_root->start >> PAGE_CACHE_SHIFT;
705 tm->old_root.logical = old_root->start;
706 tm->old_root.level = btrfs_header_level(old_root);
707 tm->generation = btrfs_header_generation(old_root);
708 tm->op = MOD_LOG_ROOT_REPLACE;
709
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000710 if (tree_mod_dont_log(fs_info, NULL))
711 goto free_tms;
712
713 if (tm_list)
714 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
715 if (!ret)
716 ret = __tree_mod_log_insert(fs_info, tm);
717
718 tree_mod_log_write_unlock(fs_info);
719 if (ret)
720 goto free_tms;
721 kfree(tm_list);
722
723 return ret;
724
725free_tms:
726 if (tm_list) {
727 for (i = 0; i < nritems; i++)
728 kfree(tm_list[i]);
729 kfree(tm_list);
730 }
731 kfree(tm);
732
733 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200734}
735
736static struct tree_mod_elem *
737__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
738 int smallest)
739{
740 struct rb_root *tm_root;
741 struct rb_node *node;
742 struct tree_mod_elem *cur = NULL;
743 struct tree_mod_elem *found = NULL;
744 u64 index = start >> PAGE_CACHE_SHIFT;
745
Jan Schmidt097b8a72012-06-21 11:08:04 +0200746 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200747 tm_root = &fs_info->tree_mod_log;
748 node = tm_root->rb_node;
749 while (node) {
750 cur = container_of(node, struct tree_mod_elem, node);
751 if (cur->index < index) {
752 node = node->rb_left;
753 } else if (cur->index > index) {
754 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200755 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200756 node = node->rb_left;
757 } else if (!smallest) {
758 /* we want the node with the highest seq */
759 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200760 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200761 found = cur;
762 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200763 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200764 /* we want the node with the smallest seq */
765 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200766 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200767 found = cur;
768 node = node->rb_right;
769 } else {
770 found = cur;
771 break;
772 }
773 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200774 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200775
776 return found;
777}
778
779/*
780 * this returns the element from the log with the smallest time sequence
781 * value that's in the log (the oldest log item). any element with a time
782 * sequence lower than min_seq will be ignored.
783 */
784static struct tree_mod_elem *
785tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
786 u64 min_seq)
787{
788 return __tree_mod_log_search(fs_info, start, min_seq, 1);
789}
790
791/*
792 * this returns the element from the log with the largest time sequence
793 * value that's in the log (the most recent log item). any element with
794 * a time sequence lower than min_seq will be ignored.
795 */
796static struct tree_mod_elem *
797tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
798{
799 return __tree_mod_log_search(fs_info, start, min_seq, 0);
800}
801
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000802static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200803tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
804 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000805 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200806{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000807 int ret = 0;
808 struct tree_mod_elem **tm_list = NULL;
809 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200810 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000811 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200812
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000813 if (!tree_mod_need_log(fs_info, NULL))
814 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200815
Josef Bacikc8cc6342013-07-01 16:18:19 -0400816 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000817 return 0;
818
819 tm_list = kzalloc(nr_items * 2 * sizeof(struct tree_mod_elem *),
820 GFP_NOFS);
821 if (!tm_list)
822 return -ENOMEM;
823
824 tm_list_add = tm_list;
825 tm_list_rem = tm_list + nr_items;
826 for (i = 0; i < nr_items; i++) {
827 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
828 MOD_LOG_KEY_REMOVE, GFP_NOFS);
829 if (!tm_list_rem[i]) {
830 ret = -ENOMEM;
831 goto free_tms;
832 }
833
834 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
835 MOD_LOG_KEY_ADD, GFP_NOFS);
836 if (!tm_list_add[i]) {
837 ret = -ENOMEM;
838 goto free_tms;
839 }
840 }
841
842 if (tree_mod_dont_log(fs_info, NULL))
843 goto free_tms;
844 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200845
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200846 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000847 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
848 if (ret)
849 goto free_tms;
850 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
851 if (ret)
852 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200853 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000854
855 tree_mod_log_write_unlock(fs_info);
856 kfree(tm_list);
857
858 return 0;
859
860free_tms:
861 for (i = 0; i < nr_items * 2; i++) {
862 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
863 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
864 kfree(tm_list[i]);
865 }
866 if (locked)
867 tree_mod_log_write_unlock(fs_info);
868 kfree(tm_list);
869
870 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200871}
872
873static inline void
874tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
875 int dst_offset, int src_offset, int nr_items)
876{
877 int ret;
878 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
879 nr_items, GFP_NOFS);
880 BUG_ON(ret < 0);
881}
882
Jan Schmidt097b8a72012-06-21 11:08:04 +0200883static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200884tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000885 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200886{
887 int ret;
888
Filipe David Borba Manana78357762013-12-12 19:19:52 +0000889 ret = tree_mod_log_insert_key(fs_info, eb, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -0400890 MOD_LOG_KEY_REPLACE,
891 atomic ? GFP_ATOMIC : GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200892 BUG_ON(ret < 0);
893}
894
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000895static noinline int
Jan Schmidt097b8a72012-06-21 11:08:04 +0200896tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200897{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000898 struct tree_mod_elem **tm_list = NULL;
899 int nritems = 0;
900 int i;
901 int ret = 0;
902
903 if (btrfs_header_level(eb) == 0)
904 return 0;
905
906 if (!tree_mod_need_log(fs_info, NULL))
907 return 0;
908
909 nritems = btrfs_header_nritems(eb);
910 tm_list = kzalloc(nritems * sizeof(struct tree_mod_elem *),
911 GFP_NOFS);
912 if (!tm_list)
913 return -ENOMEM;
914
915 for (i = 0; i < nritems; i++) {
916 tm_list[i] = alloc_tree_mod_elem(eb, i,
917 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
918 if (!tm_list[i]) {
919 ret = -ENOMEM;
920 goto free_tms;
921 }
922 }
923
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200924 if (tree_mod_dont_log(fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000925 goto free_tms;
926
927 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
928 tree_mod_log_write_unlock(fs_info);
929 if (ret)
930 goto free_tms;
931 kfree(tm_list);
932
933 return 0;
934
935free_tms:
936 for (i = 0; i < nritems; i++)
937 kfree(tm_list[i]);
938 kfree(tm_list);
939
940 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200941}
942
Jan Schmidt097b8a72012-06-21 11:08:04 +0200943static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200944tree_mod_log_set_root_pointer(struct btrfs_root *root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000945 struct extent_buffer *new_root_node,
946 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200947{
948 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200949 ret = tree_mod_log_insert_root(root->fs_info, root->node,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000950 new_root_node, GFP_NOFS, log_removal);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200951 BUG_ON(ret < 0);
952}
953
Chris Masond352ac62008-09-29 15:18:18 -0400954/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400955 * check if the tree block can be shared by multiple trees
956 */
957int btrfs_block_can_be_shared(struct btrfs_root *root,
958 struct extent_buffer *buf)
959{
960 /*
961 * Tree blocks not in refernece counted trees and tree roots
962 * are never shared. If a block was allocated after the last
963 * snapshot and the block was not allocated by tree relocation,
964 * we know the block is not shared.
965 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800966 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400967 buf != root->node && buf != root->commit_root &&
968 (btrfs_header_generation(buf) <=
969 btrfs_root_last_snapshot(&root->root_item) ||
970 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
971 return 1;
972#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
Miao Xie27cdeb72014-04-02 19:51:05 +0800973 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400974 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
975 return 1;
976#endif
977 return 0;
978}
979
980static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
981 struct btrfs_root *root,
982 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400983 struct extent_buffer *cow,
984 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400985{
986 u64 refs;
987 u64 owner;
988 u64 flags;
989 u64 new_flags = 0;
990 int ret;
991
992 /*
993 * Backrefs update rules:
994 *
995 * Always use full backrefs for extent pointers in tree block
996 * allocated by tree relocation.
997 *
998 * If a shared tree block is no longer referenced by its owner
999 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
1000 * use full backrefs for extent pointers in tree block.
1001 *
1002 * If a tree block is been relocating
1003 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
1004 * use full backrefs for extent pointers in tree block.
1005 * The reason for this is some operations (such as drop tree)
1006 * are only allowed for blocks use full backrefs.
1007 */
1008
1009 if (btrfs_block_can_be_shared(root, buf)) {
1010 ret = btrfs_lookup_extent_info(trans, root, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -05001011 btrfs_header_level(buf), 1,
1012 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001013 if (ret)
1014 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -07001015 if (refs == 0) {
1016 ret = -EROFS;
1017 btrfs_std_error(root->fs_info, ret);
1018 return ret;
1019 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001020 } else {
1021 refs = 1;
1022 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1023 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1024 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
1025 else
1026 flags = 0;
1027 }
1028
1029 owner = btrfs_header_owner(buf);
1030 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
1031 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
1032
1033 if (refs > 1) {
1034 if ((owner == root->root_key.objectid ||
1035 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
1036 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001037 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001038 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001039
1040 if (root->root_key.objectid ==
1041 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001042 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001043 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001044 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001045 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 }
1047 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
1048 } else {
1049
1050 if (root->root_key.objectid ==
1051 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001052 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001053 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001054 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001055 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001056 }
1057 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -04001058 int level = btrfs_header_level(buf);
1059
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001060 ret = btrfs_set_disk_extent_flags(trans, root,
1061 buf->start,
1062 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -04001063 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001064 if (ret)
1065 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001066 }
1067 } else {
1068 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
1069 if (root->root_key.objectid ==
1070 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001071 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001073 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001074 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001075 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001076 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077 }
1078 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001079 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001080 }
1081 return 0;
1082}
1083
1084/*
Chris Masond3977122009-01-05 21:25:51 -05001085 * does the dirty work in cow of a single block. The parent block (if
1086 * supplied) is updated to point to the new cow copy. The new buffer is marked
1087 * dirty and returned locked. If you modify the block it needs to be marked
1088 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001089 *
1090 * search_start -- an allocation hint for the new block
1091 *
Chris Masond3977122009-01-05 21:25:51 -05001092 * empty_size -- a hint that you plan on doing more cow. This is the size in
1093 * bytes the allocator should try to find free next to the block it returns.
1094 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001095 */
Chris Masond3977122009-01-05 21:25:51 -05001096static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001097 struct btrfs_root *root,
1098 struct extent_buffer *buf,
1099 struct extent_buffer *parent, int parent_slot,
1100 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001101 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001102{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001103 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001104 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001105 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001106 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001107 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001108 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -04001109
Chris Mason925baed2008-06-25 16:01:30 -04001110 if (*cow_ret == buf)
1111 unlock_orig = 1;
1112
Chris Masonb9447ef82009-03-09 11:45:38 -04001113 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001114
Miao Xie27cdeb72014-04-02 19:51:05 +08001115 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1116 trans->transid != root->fs_info->running_transaction->transid);
1117 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1118 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001119
Chris Mason7bb86312007-12-11 09:25:06 -05001120 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001121
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001122 if (level == 0)
1123 btrfs_item_key(buf, &disk_key, 0);
1124 else
1125 btrfs_node_key(buf, &disk_key, 0);
1126
1127 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
1128 if (parent)
1129 parent_start = parent->start;
1130 else
1131 parent_start = 0;
1132 } else
1133 parent_start = 0;
1134
David Sterba4d75f8a2014-06-15 01:54:12 +02001135 cow = btrfs_alloc_tree_block(trans, root, parent_start,
1136 root->root_key.objectid, &disk_key, level,
1137 search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001138 if (IS_ERR(cow))
1139 return PTR_ERR(cow);
1140
Chris Masonb4ce94d2009-02-04 09:25:08 -05001141 /* cow is set to blocking by btrfs_init_new_buffer */
1142
Chris Mason5f39d392007-10-15 16:14:19 -04001143 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -04001144 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001145 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001146 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1147 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1148 BTRFS_HEADER_FLAG_RELOC);
1149 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1150 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1151 else
1152 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001153
Ross Kirk0a4e5582013-09-24 10:12:38 +01001154 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -05001155 BTRFS_FSID_SIZE);
1156
Mark Fashehbe1a5562011-08-08 13:20:18 -07001157 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001158 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001159 btrfs_abort_transaction(trans, root, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001160 return ret;
1161 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001162
Miao Xie27cdeb72014-04-02 19:51:05 +08001163 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001164 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
1165 if (ret)
1166 return ret;
1167 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001168
Chris Mason6702ed42007-08-07 16:15:09 -04001169 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001170 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001171 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1172 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1173 parent_start = buf->start;
1174 else
1175 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001176
Chris Mason5f39d392007-10-15 16:14:19 -04001177 extent_buffer_get(cow);
Jan Schmidt90f8d622013-04-13 13:19:53 +00001178 tree_mod_log_set_root_pointer(root, cow, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001179 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001180
Yan, Zhengf0486c62010-05-16 10:46:25 -04001181 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001182 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001183 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001184 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001185 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001186 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1187 parent_start = parent->start;
1188 else
1189 parent_start = 0;
1190
1191 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001192 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001193 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001194 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001195 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001196 btrfs_set_node_ptr_generation(parent, parent_slot,
1197 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001198 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001199 if (last_ref) {
1200 ret = tree_mod_log_free_eb(root->fs_info, buf);
1201 if (ret) {
1202 btrfs_abort_transaction(trans, root, ret);
1203 return ret;
1204 }
1205 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001206 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001207 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001208 }
Chris Mason925baed2008-06-25 16:01:30 -04001209 if (unlock_orig)
1210 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001211 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001212 btrfs_mark_buffer_dirty(cow);
1213 *cow_ret = cow;
1214 return 0;
1215}
1216
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001217/*
1218 * returns the logical address of the oldest predecessor of the given root.
1219 * entries older than time_seq are ignored.
1220 */
1221static struct tree_mod_elem *
1222__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
Jan Schmidt30b04632013-04-13 13:19:54 +00001223 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001224{
1225 struct tree_mod_elem *tm;
1226 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001227 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001228 int looped = 0;
1229
1230 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001231 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001232
1233 /*
1234 * the very last operation that's logged for a root is the replacement
1235 * operation (if it is replaced at all). this has the index of the *new*
1236 * root, making it the very first operation that's logged for this root.
1237 */
1238 while (1) {
1239 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1240 time_seq);
1241 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001242 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001243 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001244 * if there are no tree operation for the oldest root, we simply
1245 * return it. this should only happen if that (old) root is at
1246 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001247 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001248 if (!tm)
1249 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001250
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001251 /*
1252 * if there's an operation that's not a root replacement, we
1253 * found the oldest version of our root. normally, we'll find a
1254 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1255 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001256 if (tm->op != MOD_LOG_ROOT_REPLACE)
1257 break;
1258
1259 found = tm;
1260 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001261 looped = 1;
1262 }
1263
Jan Schmidta95236d2012-06-05 16:41:24 +02001264 /* if there's no old root to return, return what we found instead */
1265 if (!found)
1266 found = tm;
1267
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001268 return found;
1269}
1270
1271/*
1272 * tm is a pointer to the first operation to rewind within eb. then, all
1273 * previous operations will be rewinded (until we reach something older than
1274 * time_seq).
1275 */
1276static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001277__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1278 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001279{
1280 u32 n;
1281 struct rb_node *next;
1282 struct tree_mod_elem *tm = first_tm;
1283 unsigned long o_dst;
1284 unsigned long o_src;
1285 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1286
1287 n = btrfs_header_nritems(eb);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001288 tree_mod_log_read_lock(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001289 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001290 /*
1291 * all the operations are recorded with the operator used for
1292 * the modification. as we're going backwards, we do the
1293 * opposite of each operation here.
1294 */
1295 switch (tm->op) {
1296 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1297 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001298 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001299 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001300 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001301 btrfs_set_node_key(eb, &tm->key, tm->slot);
1302 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1303 btrfs_set_node_ptr_generation(eb, tm->slot,
1304 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001305 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001306 break;
1307 case MOD_LOG_KEY_REPLACE:
1308 BUG_ON(tm->slot >= n);
1309 btrfs_set_node_key(eb, &tm->key, tm->slot);
1310 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1311 btrfs_set_node_ptr_generation(eb, tm->slot,
1312 tm->generation);
1313 break;
1314 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001315 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001316 n--;
1317 break;
1318 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001319 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1320 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1321 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001322 tm->move.nr_items * p_size);
1323 break;
1324 case MOD_LOG_ROOT_REPLACE:
1325 /*
1326 * this operation is special. for roots, this must be
1327 * handled explicitly before rewinding.
1328 * for non-roots, this operation may exist if the node
1329 * was a root: root A -> child B; then A gets empty and
1330 * B is promoted to the new root. in the mod log, we'll
1331 * have a root-replace operation for B, a tree block
1332 * that is no root. we simply ignore that operation.
1333 */
1334 break;
1335 }
1336 next = rb_next(&tm->node);
1337 if (!next)
1338 break;
1339 tm = container_of(next, struct tree_mod_elem, node);
1340 if (tm->index != first_tm->index)
1341 break;
1342 }
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001343 tree_mod_log_read_unlock(fs_info);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001344 btrfs_set_header_nritems(eb, n);
1345}
1346
Jan Schmidt47fb0912013-04-13 13:19:55 +00001347/*
1348 * Called with eb read locked. If the buffer cannot be rewinded, the same buffer
1349 * is returned. If rewind operations happen, a fresh buffer is returned. The
1350 * returned buffer is always read-locked. If the returned buffer is not the
1351 * input buffer, the lock on the input buffer is released and the input buffer
1352 * is freed (its refcount is decremented).
1353 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001354static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001355tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1356 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001357{
1358 struct extent_buffer *eb_rewin;
1359 struct tree_mod_elem *tm;
1360
1361 if (!time_seq)
1362 return eb;
1363
1364 if (btrfs_header_level(eb) == 0)
1365 return eb;
1366
1367 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1368 if (!tm)
1369 return eb;
1370
Josef Bacik9ec72672013-08-07 16:57:23 -04001371 btrfs_set_path_blocking(path);
1372 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1373
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001374 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1375 BUG_ON(tm->slot != 0);
1376 eb_rewin = alloc_dummy_extent_buffer(eb->start,
1377 fs_info->tree_root->nodesize);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001378 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001379 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001380 free_extent_buffer(eb);
1381 return NULL;
1382 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001383 btrfs_set_header_bytenr(eb_rewin, eb->start);
1384 btrfs_set_header_backref_rev(eb_rewin,
1385 btrfs_header_backref_rev(eb));
1386 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001387 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001388 } else {
1389 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001390 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001391 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001392 free_extent_buffer(eb);
1393 return NULL;
1394 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001395 }
1396
Josef Bacik9ec72672013-08-07 16:57:23 -04001397 btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1398 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001399 free_extent_buffer(eb);
1400
Jan Schmidt47fb0912013-04-13 13:19:55 +00001401 extent_buffer_get(eb_rewin);
1402 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001403 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001404 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001405 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001406
1407 return eb_rewin;
1408}
1409
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001410/*
1411 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1412 * value. If there are no changes, the current root->root_node is returned. If
1413 * anything changed in between, there's a fresh buffer allocated on which the
1414 * rewind operations are done. In any case, the returned buffer is read locked.
1415 * Returns NULL on error (with no locks held).
1416 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001417static inline struct extent_buffer *
1418get_old_root(struct btrfs_root *root, u64 time_seq)
1419{
1420 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001421 struct extent_buffer *eb = NULL;
1422 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001423 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001424 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001425 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001426 u64 logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001427
Jan Schmidt30b04632013-04-13 13:19:54 +00001428 eb_root = btrfs_read_lock_root_node(root);
1429 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001430 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001431 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001432
Jan Schmidta95236d2012-06-05 16:41:24 +02001433 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1434 old_root = &tm->old_root;
1435 old_generation = tm->generation;
1436 logical = old_root->logical;
1437 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001438 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001439 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001440
Jan Schmidta95236d2012-06-05 16:41:24 +02001441 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001442 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001443 btrfs_tree_read_unlock(eb_root);
1444 free_extent_buffer(eb_root);
David Sterbace86cd52014-06-15 01:07:32 +02001445 old = read_tree_block(root, logical, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301446 if (WARN_ON(!old || !extent_buffer_uptodate(old))) {
Josef Bacik416bc652013-04-23 14:17:42 -04001447 free_extent_buffer(old);
Frank Holtonefe120a2013-12-20 11:37:06 -05001448 btrfs_warn(root->fs_info,
1449 "failed to read tree block %llu from get_old_root", logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001450 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001451 eb = btrfs_clone_extent_buffer(old);
1452 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001453 }
1454 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001455 btrfs_tree_read_unlock(eb_root);
1456 free_extent_buffer(eb_root);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001457 eb = alloc_dummy_extent_buffer(logical, root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001458 } else {
Josef Bacik9ec72672013-08-07 16:57:23 -04001459 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
Jan Schmidt30b04632013-04-13 13:19:54 +00001460 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001461 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001462 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001463 }
1464
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001465 if (!eb)
1466 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001467 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001468 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001469 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001470 btrfs_set_header_bytenr(eb, eb->start);
1471 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001472 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001473 btrfs_set_header_level(eb, old_root->level);
1474 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001475 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001476 if (tm)
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001477 __tree_mod_log_rewind(root->fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001478 else
1479 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001480 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001481
1482 return eb;
1483}
1484
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001485int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1486{
1487 struct tree_mod_elem *tm;
1488 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001489 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001490
Jan Schmidt30b04632013-04-13 13:19:54 +00001491 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001492 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1493 level = tm->old_root.level;
1494 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001495 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001496 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001497 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001498
1499 return level;
1500}
1501
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001502static inline int should_cow_block(struct btrfs_trans_handle *trans,
1503 struct btrfs_root *root,
1504 struct extent_buffer *buf)
1505{
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001506#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
1507 if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state)))
1508 return 0;
1509#endif
Liu Bof1ebcc72011-11-14 20:48:06 -05001510 /* ensure we can see the force_cow */
1511 smp_rmb();
1512
1513 /*
1514 * We do not need to cow a block if
1515 * 1) this block is not created or changed in this transaction;
1516 * 2) this block does not belong to TREE_RELOC tree;
1517 * 3) the root is not forced COW.
1518 *
1519 * What is forced COW:
1520 * when we create snapshot during commiting the transaction,
1521 * after we've finished coping src root, we must COW the shared
1522 * block to ensure the metadata consistency.
1523 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001524 if (btrfs_header_generation(buf) == trans->transid &&
1525 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1526 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001527 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001528 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001529 return 0;
1530 return 1;
1531}
1532
Chris Masond352ac62008-09-29 15:18:18 -04001533/*
1534 * cows a single block, see __btrfs_cow_block for the real work.
1535 * This version of it has extra checks so that a block isn't cow'd more than
1536 * once per transaction, as long as it hasn't been written yet
1537 */
Chris Masond3977122009-01-05 21:25:51 -05001538noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001539 struct btrfs_root *root, struct extent_buffer *buf,
1540 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001541 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001542{
Chris Mason6702ed42007-08-07 16:15:09 -04001543 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001544 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001545
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001546 if (trans->transaction != root->fs_info->running_transaction)
1547 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001548 trans->transid,
Chris Masonccd467d2007-06-28 15:57:36 -04001549 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001550
1551 if (trans->transid != root->fs_info->generation)
1552 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001553 trans->transid, root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001554
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001555 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -05001556 *cow_ret = buf;
1557 return 0;
1558 }
Chris Masonc4876852009-02-04 09:24:25 -05001559
Chris Mason0b86a832008-03-24 15:01:56 -04001560 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001561
1562 if (parent)
1563 btrfs_set_lock_blocking(parent);
1564 btrfs_set_lock_blocking(buf);
1565
Chris Masonf510cfe2007-10-15 16:14:48 -04001566 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001567 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001568
1569 trace_btrfs_cow_block(root, buf, *cow_ret);
1570
Chris Masonf510cfe2007-10-15 16:14:48 -04001571 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001572}
1573
Chris Masond352ac62008-09-29 15:18:18 -04001574/*
1575 * helper function for defrag to decide if two blocks pointed to by a
1576 * node are actually close by
1577 */
Chris Mason6b800532007-10-15 16:17:34 -04001578static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001579{
Chris Mason6b800532007-10-15 16:17:34 -04001580 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001581 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001582 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001583 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001584 return 0;
1585}
1586
Chris Mason081e9572007-11-06 10:26:24 -05001587/*
1588 * compare two keys in a memcmp fashion
1589 */
1590static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1591{
1592 struct btrfs_key k1;
1593
1594 btrfs_disk_key_to_cpu(&k1, disk);
1595
Diego Calleja20736ab2009-07-24 11:06:52 -04001596 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001597}
1598
Josef Bacikf3465ca2008-11-12 14:19:50 -05001599/*
1600 * same as comp_keys only with two btrfs_key's
1601 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001602int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001603{
1604 if (k1->objectid > k2->objectid)
1605 return 1;
1606 if (k1->objectid < k2->objectid)
1607 return -1;
1608 if (k1->type > k2->type)
1609 return 1;
1610 if (k1->type < k2->type)
1611 return -1;
1612 if (k1->offset > k2->offset)
1613 return 1;
1614 if (k1->offset < k2->offset)
1615 return -1;
1616 return 0;
1617}
Chris Mason081e9572007-11-06 10:26:24 -05001618
Chris Masond352ac62008-09-29 15:18:18 -04001619/*
1620 * this is used by the defrag code to go through all the
1621 * leaves pointed to by a node and reallocate them so that
1622 * disk order is close to key order
1623 */
Chris Mason6702ed42007-08-07 16:15:09 -04001624int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001625 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001626 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001627 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001628{
Chris Mason6b800532007-10-15 16:17:34 -04001629 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001630 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001631 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001632 u64 search_start = *last_ret;
1633 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001634 u64 other;
1635 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001636 int end_slot;
1637 int i;
1638 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001639 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001640 int uptodate;
1641 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001642 int progress_passed = 0;
1643 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001644
Chris Mason5708b952007-10-25 15:43:18 -04001645 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001646
Julia Lawall6c1500f2012-11-03 20:30:18 +00001647 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1648 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001649
Chris Mason6b800532007-10-15 16:17:34 -04001650 parent_nritems = btrfs_header_nritems(parent);
David Sterba707e8a02014-06-04 19:22:26 +02001651 blocksize = root->nodesize;
Chris Mason6702ed42007-08-07 16:15:09 -04001652 end_slot = parent_nritems;
1653
1654 if (parent_nritems == 1)
1655 return 0;
1656
Chris Masonb4ce94d2009-02-04 09:25:08 -05001657 btrfs_set_lock_blocking(parent);
1658
Chris Mason6702ed42007-08-07 16:15:09 -04001659 for (i = start_slot; i < end_slot; i++) {
1660 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001661
Chris Mason081e9572007-11-06 10:26:24 -05001662 btrfs_node_key(parent, &disk_key, i);
1663 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1664 continue;
1665
1666 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001667 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001668 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001669 if (last_block == 0)
1670 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001671
Chris Mason6702ed42007-08-07 16:15:09 -04001672 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001673 other = btrfs_node_blockptr(parent, i - 1);
1674 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001675 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001676 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -04001677 other = btrfs_node_blockptr(parent, i + 1);
1678 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001679 }
Chris Masone9d0b132007-08-10 14:06:19 -04001680 if (close) {
1681 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001682 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001683 }
Chris Mason6702ed42007-08-07 16:15:09 -04001684
David Sterba0308af42014-06-15 01:43:40 +02001685 cur = btrfs_find_tree_block(root, blocknr);
Chris Mason6b800532007-10-15 16:17:34 -04001686 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001687 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001688 else
1689 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001690 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001691 if (!cur) {
David Sterbace86cd52014-06-15 01:07:32 +02001692 cur = read_tree_block(root, blocknr, gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001693 if (!cur || !extent_buffer_uptodate(cur)) {
1694 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001695 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001696 }
Chris Mason6b800532007-10-15 16:17:34 -04001697 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001698 err = btrfs_read_buffer(cur, gen);
1699 if (err) {
1700 free_extent_buffer(cur);
1701 return err;
1702 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001703 }
Chris Mason6702ed42007-08-07 16:15:09 -04001704 }
Chris Masone9d0b132007-08-10 14:06:19 -04001705 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001706 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001707
Chris Masone7a84562008-06-25 16:01:31 -04001708 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001709 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001710 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001711 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001712 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001713 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001714 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001715 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001716 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001717 break;
Yan252c38f2007-08-29 09:11:44 -04001718 }
Chris Masone7a84562008-06-25 16:01:31 -04001719 search_start = cur->start;
1720 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001721 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001722 btrfs_tree_unlock(cur);
1723 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001724 }
1725 return err;
1726}
1727
Chris Mason74123bd2007-02-02 11:05:29 -05001728/*
1729 * The leaf data grows from end-to-front in the node.
1730 * this returns the address of the start of the last item,
1731 * which is the stop of the leaf data stack
1732 */
Chris Mason123abc82007-03-14 14:14:43 -04001733static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001734 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001735{
Chris Mason5f39d392007-10-15 16:14:19 -04001736 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001737 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -04001738 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001739 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001740}
1741
Chris Masonaa5d6be2007-02-28 16:35:06 -05001742
Chris Mason74123bd2007-02-02 11:05:29 -05001743/*
Chris Mason5f39d392007-10-15 16:14:19 -04001744 * search for key in the extent_buffer. The items start at offset p,
1745 * and they are item_size apart. There are 'max' items in p.
1746 *
Chris Mason74123bd2007-02-02 11:05:29 -05001747 * the slot in the array is returned via slot, and it points to
1748 * the place where you would insert key if it is not found in
1749 * the array.
1750 *
1751 * slot may point to max if the key is bigger than all of the keys
1752 */
Chris Masone02119d2008-09-05 16:13:11 -04001753static noinline int generic_bin_search(struct extent_buffer *eb,
1754 unsigned long p,
1755 int item_size, struct btrfs_key *key,
1756 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001757{
1758 int low = 0;
1759 int high = max;
1760 int mid;
1761 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001762 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001763 struct btrfs_disk_key unaligned;
1764 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001765 char *kaddr = NULL;
1766 unsigned long map_start = 0;
1767 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001768 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001769
Chris Masond3977122009-01-05 21:25:51 -05001770 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001771 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001772 offset = p + mid * item_size;
1773
Chris Masona6591712011-07-19 12:04:14 -04001774 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001775 (offset + sizeof(struct btrfs_disk_key)) >
1776 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001777
1778 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001779 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001780 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001781
Chris Mason479965d2007-10-15 16:14:27 -04001782 if (!err) {
1783 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1784 map_start);
1785 } else {
1786 read_extent_buffer(eb, &unaligned,
1787 offset, sizeof(unaligned));
1788 tmp = &unaligned;
1789 }
1790
Chris Mason5f39d392007-10-15 16:14:19 -04001791 } else {
1792 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1793 map_start);
1794 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001795 ret = comp_keys(tmp, key);
1796
1797 if (ret < 0)
1798 low = mid + 1;
1799 else if (ret > 0)
1800 high = mid;
1801 else {
1802 *slot = mid;
1803 return 0;
1804 }
1805 }
1806 *slot = low;
1807 return 1;
1808}
1809
Chris Mason97571fd2007-02-24 13:39:08 -05001810/*
1811 * simple bin_search frontend that does the right thing for
1812 * leaves vs nodes
1813 */
Chris Mason5f39d392007-10-15 16:14:19 -04001814static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1815 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001816{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001817 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001818 return generic_bin_search(eb,
1819 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001820 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001821 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001822 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001823 else
Chris Mason5f39d392007-10-15 16:14:19 -04001824 return generic_bin_search(eb,
1825 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001826 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001827 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001828 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001829}
1830
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001831int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1832 int level, int *slot)
1833{
1834 return bin_search(eb, key, level, slot);
1835}
1836
Yan, Zhengf0486c62010-05-16 10:46:25 -04001837static void root_add_used(struct btrfs_root *root, u32 size)
1838{
1839 spin_lock(&root->accounting_lock);
1840 btrfs_set_root_used(&root->root_item,
1841 btrfs_root_used(&root->root_item) + size);
1842 spin_unlock(&root->accounting_lock);
1843}
1844
1845static void root_sub_used(struct btrfs_root *root, u32 size)
1846{
1847 spin_lock(&root->accounting_lock);
1848 btrfs_set_root_used(&root->root_item,
1849 btrfs_root_used(&root->root_item) - size);
1850 spin_unlock(&root->accounting_lock);
1851}
1852
Chris Masond352ac62008-09-29 15:18:18 -04001853/* given a node and slot number, this reads the blocks it points to. The
1854 * extent buffer is returned with a reference taken (but unlocked).
1855 * NULL is returned on error.
1856 */
Chris Masone02119d2008-09-05 16:13:11 -04001857static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001858 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001859{
Chris Masonca7a79a2008-05-12 12:59:19 -04001860 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001861 struct extent_buffer *eb;
1862
Chris Masonbb803952007-03-01 12:04:21 -05001863 if (slot < 0)
1864 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001865 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -05001866 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -04001867
1868 BUG_ON(level == 0);
1869
Josef Bacik416bc652013-04-23 14:17:42 -04001870 eb = read_tree_block(root, btrfs_node_blockptr(parent, slot),
Josef Bacik416bc652013-04-23 14:17:42 -04001871 btrfs_node_ptr_generation(parent, slot));
1872 if (eb && !extent_buffer_uptodate(eb)) {
1873 free_extent_buffer(eb);
1874 eb = NULL;
1875 }
1876
1877 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001878}
1879
Chris Masond352ac62008-09-29 15:18:18 -04001880/*
1881 * node level balancing, used to make sure nodes are in proper order for
1882 * item deletion. We balance from the top down, so we have to make sure
1883 * that a deletion won't leave an node completely empty later on.
1884 */
Chris Masone02119d2008-09-05 16:13:11 -04001885static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001886 struct btrfs_root *root,
1887 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001888{
Chris Mason5f39d392007-10-15 16:14:19 -04001889 struct extent_buffer *right = NULL;
1890 struct extent_buffer *mid;
1891 struct extent_buffer *left = NULL;
1892 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001893 int ret = 0;
1894 int wret;
1895 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001896 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001897 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001898
1899 if (level == 0)
1900 return 0;
1901
Chris Mason5f39d392007-10-15 16:14:19 -04001902 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001903
Chris Masonbd681512011-07-16 15:23:14 -04001904 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1905 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001906 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1907
Chris Mason1d4f8a02007-03-13 09:28:32 -04001908 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001909
Li Zefana05a9bb2011-09-06 16:55:34 +08001910 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001911 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001912 pslot = path->slots[level + 1];
1913 }
Chris Masonbb803952007-03-01 12:04:21 -05001914
Chris Mason40689472007-03-17 14:29:23 -04001915 /*
1916 * deal with the case where there is only one pointer in the root
1917 * by promoting the node below to a root
1918 */
Chris Mason5f39d392007-10-15 16:14:19 -04001919 if (!parent) {
1920 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001921
Chris Mason5f39d392007-10-15 16:14:19 -04001922 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001923 return 0;
1924
1925 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001926 child = read_node_slot(root, mid, 0);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001927 if (!child) {
1928 ret = -EROFS;
1929 btrfs_std_error(root->fs_info, ret);
1930 goto enospc;
1931 }
1932
Chris Mason925baed2008-06-25 16:01:30 -04001933 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001934 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001935 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001936 if (ret) {
1937 btrfs_tree_unlock(child);
1938 free_extent_buffer(child);
1939 goto enospc;
1940 }
Yan2f375ab2008-02-01 14:58:07 -05001941
Jan Schmidt90f8d622013-04-13 13:19:53 +00001942 tree_mod_log_set_root_pointer(root, child, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001943 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001944
Chris Mason0b86a832008-03-24 15:01:56 -04001945 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001946 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001947
Chris Mason925baed2008-06-25 16:01:30 -04001948 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001949 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001950 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001951 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001952 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001953 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001954
1955 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001956 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001957 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001958 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001959 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001960 }
Chris Mason5f39d392007-10-15 16:14:19 -04001961 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001962 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001963 return 0;
1964
Chris Mason5f39d392007-10-15 16:14:19 -04001965 left = read_node_slot(root, parent, pslot - 1);
1966 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001967 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001968 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001969 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001970 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001971 if (wret) {
1972 ret = wret;
1973 goto enospc;
1974 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001975 }
Chris Mason5f39d392007-10-15 16:14:19 -04001976 right = read_node_slot(root, parent, pslot + 1);
1977 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001978 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001979 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001980 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001981 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001982 if (wret) {
1983 ret = wret;
1984 goto enospc;
1985 }
1986 }
1987
1988 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001989 if (left) {
1990 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001991 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001992 if (wret < 0)
1993 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001994 }
Chris Mason79f95c82007-03-01 15:16:26 -05001995
1996 /*
1997 * then try to empty the right most buffer into the middle
1998 */
Chris Mason5f39d392007-10-15 16:14:19 -04001999 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04002000 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002001 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05002002 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002003 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002004 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04002005 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002006 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002007 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002008 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002009 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002010 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05002011 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002012 struct btrfs_disk_key right_key;
2013 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002014 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002015 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002016 btrfs_set_node_key(parent, &right_key, pslot + 1);
2017 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05002018 }
2019 }
Chris Mason5f39d392007-10-15 16:14:19 -04002020 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05002021 /*
2022 * we're not allowed to leave a node with one item in the
2023 * tree during a delete. A deletion from lower in the tree
2024 * could try to delete the only pointer in this node.
2025 * So, pull some keys from the left.
2026 * There has to be a left pointer at this point because
2027 * otherwise we would have pulled some pointers from the
2028 * right
2029 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07002030 if (!left) {
2031 ret = -EROFS;
2032 btrfs_std_error(root->fs_info, ret);
2033 goto enospc;
2034 }
Chris Mason5f39d392007-10-15 16:14:19 -04002035 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002036 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05002037 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002038 goto enospc;
2039 }
Chris Masonbce4eae2008-04-24 14:42:46 -04002040 if (wret == 1) {
2041 wret = push_node_left(trans, root, left, mid, 1);
2042 if (wret < 0)
2043 ret = wret;
2044 }
Chris Mason79f95c82007-03-01 15:16:26 -05002045 BUG_ON(wret == 1);
2046 }
Chris Mason5f39d392007-10-15 16:14:19 -04002047 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002048 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04002049 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002050 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002051 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002052 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002053 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002054 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05002055 } else {
2056 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04002057 struct btrfs_disk_key mid_key;
2058 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00002059 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02002060 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002061 btrfs_set_node_key(parent, &mid_key, pslot);
2062 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05002063 }
Chris Masonbb803952007-03-01 12:04:21 -05002064
Chris Mason79f95c82007-03-01 15:16:26 -05002065 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002066 if (left) {
2067 if (btrfs_header_nritems(left) > orig_slot) {
2068 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04002069 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002070 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002071 path->slots[level + 1] -= 1;
2072 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002073 if (mid) {
2074 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002075 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002076 }
Chris Masonbb803952007-03-01 12:04:21 -05002077 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002078 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002079 path->slots[level] = orig_slot;
2080 }
2081 }
Chris Mason79f95c82007-03-01 15:16:26 -05002082 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002083 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002084 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002085 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002086enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002087 if (right) {
2088 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002089 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002090 }
2091 if (left) {
2092 if (path->nodes[level] != left)
2093 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002094 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002095 }
Chris Masonbb803952007-03-01 12:04:21 -05002096 return ret;
2097}
2098
Chris Masond352ac62008-09-29 15:18:18 -04002099/* Node balancing for insertion. Here we only split or push nodes around
2100 * when they are completely full. This is also done top down, so we
2101 * have to be pessimistic.
2102 */
Chris Masond3977122009-01-05 21:25:51 -05002103static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002104 struct btrfs_root *root,
2105 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002106{
Chris Mason5f39d392007-10-15 16:14:19 -04002107 struct extent_buffer *right = NULL;
2108 struct extent_buffer *mid;
2109 struct extent_buffer *left = NULL;
2110 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002111 int ret = 0;
2112 int wret;
2113 int pslot;
2114 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002115
2116 if (level == 0)
2117 return 1;
2118
Chris Mason5f39d392007-10-15 16:14:19 -04002119 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002120 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002121
Li Zefana05a9bb2011-09-06 16:55:34 +08002122 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002123 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002124 pslot = path->slots[level + 1];
2125 }
Chris Masone66f7092007-04-20 13:16:02 -04002126
Chris Mason5f39d392007-10-15 16:14:19 -04002127 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002128 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002129
Chris Mason5f39d392007-10-15 16:14:19 -04002130 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04002131
2132 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002133 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002134 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002135
2136 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002137 btrfs_set_lock_blocking(left);
2138
Chris Mason5f39d392007-10-15 16:14:19 -04002139 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04002140 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2141 wret = 1;
2142 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002143 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002144 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002145 if (ret)
2146 wret = 1;
2147 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002148 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04002149 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002150 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002151 }
Chris Masone66f7092007-04-20 13:16:02 -04002152 if (wret < 0)
2153 ret = wret;
2154 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002155 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002156 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002157 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002158 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002159 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002160 btrfs_set_node_key(parent, &disk_key, pslot);
2161 btrfs_mark_buffer_dirty(parent);
2162 if (btrfs_header_nritems(left) > orig_slot) {
2163 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002164 path->slots[level + 1] -= 1;
2165 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002166 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002167 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002168 } else {
2169 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002170 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002171 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002172 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002173 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002174 }
Chris Masone66f7092007-04-20 13:16:02 -04002175 return 0;
2176 }
Chris Mason925baed2008-06-25 16:01:30 -04002177 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002178 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002179 }
Chris Mason925baed2008-06-25 16:01:30 -04002180 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04002181
2182 /*
2183 * then try to empty the right most buffer into the middle
2184 */
Chris Mason5f39d392007-10-15 16:14:19 -04002185 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002186 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002187
Chris Mason925baed2008-06-25 16:01:30 -04002188 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002189 btrfs_set_lock_blocking(right);
2190
Chris Mason5f39d392007-10-15 16:14:19 -04002191 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002192 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2193 wret = 1;
2194 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002195 ret = btrfs_cow_block(trans, root, right,
2196 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002197 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002198 if (ret)
2199 wret = 1;
2200 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002201 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002202 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002203 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002204 }
Chris Masone66f7092007-04-20 13:16:02 -04002205 if (wret < 0)
2206 ret = wret;
2207 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002208 struct btrfs_disk_key disk_key;
2209
2210 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002211 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002212 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002213 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2214 btrfs_mark_buffer_dirty(parent);
2215
2216 if (btrfs_header_nritems(mid) <= orig_slot) {
2217 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002218 path->slots[level + 1] += 1;
2219 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002220 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002221 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002222 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002223 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002224 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002225 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002226 }
Chris Masone66f7092007-04-20 13:16:02 -04002227 return 0;
2228 }
Chris Mason925baed2008-06-25 16:01:30 -04002229 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002230 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002231 }
Chris Masone66f7092007-04-20 13:16:02 -04002232 return 1;
2233}
2234
Chris Mason74123bd2007-02-02 11:05:29 -05002235/*
Chris Masond352ac62008-09-29 15:18:18 -04002236 * readahead one full node of leaves, finding things that are close
2237 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002238 */
Chris Masonc8c42862009-04-03 10:14:18 -04002239static void reada_for_search(struct btrfs_root *root,
2240 struct btrfs_path *path,
2241 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002242{
Chris Mason5f39d392007-10-15 16:14:19 -04002243 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002244 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002245 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002246 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002247 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002248 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002249 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04002250 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04002251 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002252 u32 nr;
2253 u32 blocksize;
2254 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002255
Chris Masona6b6e752007-10-15 16:22:39 -04002256 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002257 return;
2258
Chris Mason6702ed42007-08-07 16:15:09 -04002259 if (!path->nodes[level])
2260 return;
2261
Chris Mason5f39d392007-10-15 16:14:19 -04002262 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002263
Chris Mason3c69fae2007-08-07 15:52:22 -04002264 search = btrfs_node_blockptr(node, slot);
David Sterba707e8a02014-06-04 19:22:26 +02002265 blocksize = root->nodesize;
David Sterba0308af42014-06-15 01:43:40 +02002266 eb = btrfs_find_tree_block(root, search);
Chris Mason5f39d392007-10-15 16:14:19 -04002267 if (eb) {
2268 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002269 return;
2270 }
2271
Chris Masona7175312009-01-22 09:23:10 -05002272 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002273
Chris Mason5f39d392007-10-15 16:14:19 -04002274 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002275 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002276
Chris Masond3977122009-01-05 21:25:51 -05002277 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04002278 if (direction < 0) {
2279 if (nr == 0)
2280 break;
2281 nr--;
2282 } else if (direction > 0) {
2283 nr++;
2284 if (nr >= nritems)
2285 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002286 }
Chris Mason01f46652007-12-21 16:24:26 -05002287 if (path->reada < 0 && objectid) {
2288 btrfs_node_key(node, &disk_key, nr);
2289 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2290 break;
2291 }
Chris Mason6b800532007-10-15 16:17:34 -04002292 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002293 if ((search <= target && target - search <= 65536) ||
2294 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002295 gen = btrfs_node_ptr_generation(node, nr);
David Sterba58dc4ce2014-06-15 00:29:04 +02002296 readahead_tree_block(root, search, blocksize);
Chris Mason6b800532007-10-15 16:17:34 -04002297 nread += blocksize;
2298 }
2299 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002300 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002301 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002302 }
2303}
Chris Mason925baed2008-06-25 16:01:30 -04002304
Josef Bacik0b088512013-06-17 14:23:02 -04002305static noinline void reada_for_balance(struct btrfs_root *root,
2306 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002307{
2308 int slot;
2309 int nritems;
2310 struct extent_buffer *parent;
2311 struct extent_buffer *eb;
2312 u64 gen;
2313 u64 block1 = 0;
2314 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002315 int blocksize;
2316
Chris Mason8c594ea2009-04-20 15:50:10 -04002317 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002318 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002319 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002320
2321 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002322 slot = path->slots[level + 1];
David Sterba707e8a02014-06-04 19:22:26 +02002323 blocksize = root->nodesize;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002324
2325 if (slot > 0) {
2326 block1 = btrfs_node_blockptr(parent, slot - 1);
2327 gen = btrfs_node_ptr_generation(parent, slot - 1);
David Sterba0308af42014-06-15 01:43:40 +02002328 eb = btrfs_find_tree_block(root, block1);
Chris Masonb9fab912012-05-06 07:23:47 -04002329 /*
2330 * if we get -eagain from btrfs_buffer_uptodate, we
2331 * don't want to return eagain here. That will loop
2332 * forever
2333 */
2334 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002335 block1 = 0;
2336 free_extent_buffer(eb);
2337 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002338 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002339 block2 = btrfs_node_blockptr(parent, slot + 1);
2340 gen = btrfs_node_ptr_generation(parent, slot + 1);
David Sterba0308af42014-06-15 01:43:40 +02002341 eb = btrfs_find_tree_block(root, block2);
Chris Masonb9fab912012-05-06 07:23:47 -04002342 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002343 block2 = 0;
2344 free_extent_buffer(eb);
2345 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002346
Josef Bacik0b088512013-06-17 14:23:02 -04002347 if (block1)
David Sterba58dc4ce2014-06-15 00:29:04 +02002348 readahead_tree_block(root, block1, blocksize);
Josef Bacik0b088512013-06-17 14:23:02 -04002349 if (block2)
David Sterba58dc4ce2014-06-15 00:29:04 +02002350 readahead_tree_block(root, block2, blocksize);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002351}
2352
2353
2354/*
Chris Masond3977122009-01-05 21:25:51 -05002355 * when we walk down the tree, it is usually safe to unlock the higher layers
2356 * in the tree. The exceptions are when our path goes through slot 0, because
2357 * operations on the tree might require changing key pointers higher up in the
2358 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002359 *
Chris Masond3977122009-01-05 21:25:51 -05002360 * callers might also have set path->keep_locks, which tells this code to keep
2361 * the lock if the path points to the last slot in the block. This is part of
2362 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002363 *
Chris Masond3977122009-01-05 21:25:51 -05002364 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2365 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002366 */
Chris Masone02119d2008-09-05 16:13:11 -04002367static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002368 int lowest_unlock, int min_write_lock_level,
2369 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002370{
2371 int i;
2372 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002373 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002374 struct extent_buffer *t;
2375
2376 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2377 if (!path->nodes[i])
2378 break;
2379 if (!path->locks[i])
2380 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002381 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002382 skip_level = i + 1;
2383 continue;
2384 }
Chris Mason051e1b92008-06-25 16:01:30 -04002385 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002386 u32 nritems;
2387 t = path->nodes[i];
2388 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002389 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002390 skip_level = i + 1;
2391 continue;
2392 }
2393 }
Chris Mason051e1b92008-06-25 16:01:30 -04002394 if (skip_level < i && i >= lowest_unlock)
2395 no_skips = 1;
2396
Chris Mason925baed2008-06-25 16:01:30 -04002397 t = path->nodes[i];
2398 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002399 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002400 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002401 if (write_lock_level &&
2402 i > min_write_lock_level &&
2403 i <= *write_lock_level) {
2404 *write_lock_level = i - 1;
2405 }
Chris Mason925baed2008-06-25 16:01:30 -04002406 }
2407 }
2408}
2409
Chris Mason3c69fae2007-08-07 15:52:22 -04002410/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002411 * This releases any locks held in the path starting at level and
2412 * going all the way up to the root.
2413 *
2414 * btrfs_search_slot will keep the lock held on higher nodes in a few
2415 * corner cases, such as COW of the block at slot zero in the node. This
2416 * ignores those rules, and it should only be called when there are no
2417 * more updates to be done higher up in the tree.
2418 */
2419noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2420{
2421 int i;
2422
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002423 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002424 return;
2425
2426 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2427 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002428 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002429 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002430 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002431 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002432 path->locks[i] = 0;
2433 }
2434}
2435
2436/*
Chris Masonc8c42862009-04-03 10:14:18 -04002437 * helper function for btrfs_search_slot. The goal is to find a block
2438 * in cache without setting the path to blocking. If we find the block
2439 * we return zero and the path is unchanged.
2440 *
2441 * If we can't find the block, we set the path blocking and do some
2442 * reada. -EAGAIN is returned and the search must be repeated.
2443 */
2444static int
2445read_block_for_search(struct btrfs_trans_handle *trans,
2446 struct btrfs_root *root, struct btrfs_path *p,
2447 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002448 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002449{
2450 u64 blocknr;
2451 u64 gen;
Chris Masonc8c42862009-04-03 10:14:18 -04002452 struct extent_buffer *b = *eb_ret;
2453 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002454 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002455
2456 blocknr = btrfs_node_blockptr(b, slot);
2457 gen = btrfs_node_ptr_generation(b, slot);
Chris Masonc8c42862009-04-03 10:14:18 -04002458
David Sterba0308af42014-06-15 01:43:40 +02002459 tmp = btrfs_find_tree_block(root, blocknr);
Chris Masoncb449212010-10-24 11:01:27 -04002460 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002461 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002462 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2463 *eb_ret = tmp;
2464 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002465 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002466
2467 /* the pages were up to date, but we failed
2468 * the generation number check. Do a full
2469 * read for the generation number that is correct.
2470 * We must do this without dropping locks so
2471 * we can trust our generation number
2472 */
2473 btrfs_set_path_blocking(p);
2474
2475 /* now we're allowed to do a blocking uptodate check */
2476 ret = btrfs_read_buffer(tmp, gen);
2477 if (!ret) {
2478 *eb_ret = tmp;
2479 return 0;
2480 }
2481 free_extent_buffer(tmp);
2482 btrfs_release_path(p);
2483 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002484 }
2485
2486 /*
2487 * reduce lock contention at high levels
2488 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002489 * we read. Don't release the lock on the current
2490 * level because we need to walk this node to figure
2491 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002492 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002493 btrfs_unlock_up_safe(p, level + 1);
2494 btrfs_set_path_blocking(p);
2495
Chris Masoncb449212010-10-24 11:01:27 -04002496 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04002497 if (p->reada)
2498 reada_for_search(root, p, level, slot, key->objectid);
2499
David Sterbab3b4aa72011-04-21 01:20:15 +02002500 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002501
2502 ret = -EAGAIN;
David Sterbace86cd52014-06-15 01:07:32 +02002503 tmp = read_tree_block(root, blocknr, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04002504 if (tmp) {
2505 /*
2506 * If the read above didn't mark this buffer up to date,
2507 * it will never end up being up to date. Set ret to EIO now
2508 * and give up so that our caller doesn't loop forever
2509 * on our EAGAINs.
2510 */
Chris Masonb9fab912012-05-06 07:23:47 -04002511 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002512 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002513 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002514 }
2515 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002516}
2517
2518/*
2519 * helper function for btrfs_search_slot. This does all of the checks
2520 * for node-level blocks and does any balancing required based on
2521 * the ins_len.
2522 *
2523 * If no extra work was required, zero is returned. If we had to
2524 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2525 * start over
2526 */
2527static int
2528setup_nodes_for_search(struct btrfs_trans_handle *trans,
2529 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002530 struct extent_buffer *b, int level, int ins_len,
2531 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002532{
2533 int ret;
2534 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2535 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2536 int sret;
2537
Chris Masonbd681512011-07-16 15:23:14 -04002538 if (*write_lock_level < level + 1) {
2539 *write_lock_level = level + 1;
2540 btrfs_release_path(p);
2541 goto again;
2542 }
2543
Chris Masonc8c42862009-04-03 10:14:18 -04002544 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002545 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002546 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002547 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002548
2549 BUG_ON(sret > 0);
2550 if (sret) {
2551 ret = sret;
2552 goto done;
2553 }
2554 b = p->nodes[level];
2555 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002556 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002557 int sret;
2558
Chris Masonbd681512011-07-16 15:23:14 -04002559 if (*write_lock_level < level + 1) {
2560 *write_lock_level = level + 1;
2561 btrfs_release_path(p);
2562 goto again;
2563 }
2564
Chris Masonc8c42862009-04-03 10:14:18 -04002565 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002566 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002567 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002568 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002569
2570 if (sret) {
2571 ret = sret;
2572 goto done;
2573 }
2574 b = p->nodes[level];
2575 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002576 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002577 goto again;
2578 }
2579 BUG_ON(btrfs_header_nritems(b) == 1);
2580 }
2581 return 0;
2582
2583again:
2584 ret = -EAGAIN;
2585done:
2586 return ret;
2587}
2588
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002589static void key_search_validate(struct extent_buffer *b,
2590 struct btrfs_key *key,
2591 int level)
2592{
2593#ifdef CONFIG_BTRFS_ASSERT
2594 struct btrfs_disk_key disk_key;
2595
2596 btrfs_cpu_key_to_disk(&disk_key, key);
2597
2598 if (level == 0)
2599 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2600 offsetof(struct btrfs_leaf, items[0].key),
2601 sizeof(disk_key)));
2602 else
2603 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2604 offsetof(struct btrfs_node, ptrs[0].key),
2605 sizeof(disk_key)));
2606#endif
2607}
2608
2609static int key_search(struct extent_buffer *b, struct btrfs_key *key,
2610 int level, int *prev_cmp, int *slot)
2611{
2612 if (*prev_cmp != 0) {
2613 *prev_cmp = bin_search(b, key, level, slot);
2614 return *prev_cmp;
2615 }
2616
2617 key_search_validate(b, key, level);
2618 *slot = 0;
2619
2620 return 0;
2621}
2622
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002623int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *found_path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002624 u64 iobjectid, u64 ioff, u8 key_type,
2625 struct btrfs_key *found_key)
2626{
2627 int ret;
2628 struct btrfs_key key;
2629 struct extent_buffer *eb;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002630 struct btrfs_path *path;
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002631
2632 key.type = key_type;
2633 key.objectid = iobjectid;
2634 key.offset = ioff;
2635
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002636 if (found_path == NULL) {
2637 path = btrfs_alloc_path();
2638 if (!path)
2639 return -ENOMEM;
2640 } else
2641 path = found_path;
2642
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002643 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002644 if ((ret < 0) || (found_key == NULL)) {
2645 if (path != found_path)
2646 btrfs_free_path(path);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002647 return ret;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002648 }
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002649
2650 eb = path->nodes[0];
2651 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2652 ret = btrfs_next_leaf(fs_root, path);
2653 if (ret)
2654 return ret;
2655 eb = path->nodes[0];
2656 }
2657
2658 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2659 if (found_key->type != key.type ||
2660 found_key->objectid != key.objectid)
2661 return 1;
2662
2663 return 0;
2664}
2665
Chris Masonc8c42862009-04-03 10:14:18 -04002666/*
Chris Mason74123bd2007-02-02 11:05:29 -05002667 * look for key in the tree. path is filled in with nodes along the way
2668 * if key is found, we return zero and you can find the item in the leaf
2669 * level of the path (level 0)
2670 *
2671 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002672 * be inserted, and 1 is returned. If there are other errors during the
2673 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002674 *
2675 * if ins_len > 0, nodes and leaves will be split as we walk down the
2676 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2677 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002678 */
Chris Masone089f052007-03-16 16:20:31 -04002679int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2680 *root, struct btrfs_key *key, struct btrfs_path *p, int
2681 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002682{
Chris Mason5f39d392007-10-15 16:14:19 -04002683 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002684 int slot;
2685 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002686 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002687 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002688 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002689 int root_lock;
2690 /* everything at write_lock_level or lower must be write locked */
2691 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002692 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002693 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002694 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002695
Chris Mason6702ed42007-08-07 16:15:09 -04002696 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002697 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002698 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002699 BUG_ON(!cow && ins_len);
Josef Bacik25179202008-10-29 14:49:05 -04002700
Chris Masonbd681512011-07-16 15:23:14 -04002701 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002702 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002703
Chris Masonbd681512011-07-16 15:23:14 -04002704 /* when we are removing items, we might have to go up to level
2705 * two as we update tree pointers Make sure we keep write
2706 * for those levels as well
2707 */
2708 write_lock_level = 2;
2709 } else if (ins_len > 0) {
2710 /*
2711 * for inserting items, make sure we have a write lock on
2712 * level 1 so we can update keys
2713 */
2714 write_lock_level = 1;
2715 }
2716
2717 if (!cow)
2718 write_lock_level = -1;
2719
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002720 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002721 write_lock_level = BTRFS_MAX_LEVEL;
2722
Chris Masonf7c79f32012-03-19 15:54:38 -04002723 min_write_lock_level = write_lock_level;
2724
Chris Masonbb803952007-03-01 12:04:21 -05002725again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002726 prev_cmp = -1;
Chris Masonbd681512011-07-16 15:23:14 -04002727 /*
2728 * we try very hard to do read locks on the root
2729 */
2730 root_lock = BTRFS_READ_LOCK;
2731 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002732 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002733 /*
2734 * the commit roots are read only
2735 * so we always do read locks
2736 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002737 if (p->need_commit_sem)
2738 down_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002739 b = root->commit_root;
2740 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002741 level = btrfs_header_level(b);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002742 if (p->need_commit_sem)
2743 up_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002744 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002745 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002746 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002747 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002748 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002749 level = btrfs_header_level(b);
2750 } else {
2751 /* we don't know the level of the root node
2752 * until we actually have it read locked
2753 */
2754 b = btrfs_read_lock_root_node(root);
2755 level = btrfs_header_level(b);
2756 if (level <= write_lock_level) {
2757 /* whoops, must trade for write lock */
2758 btrfs_tree_read_unlock(b);
2759 free_extent_buffer(b);
2760 b = btrfs_lock_root_node(root);
2761 root_lock = BTRFS_WRITE_LOCK;
2762
2763 /* the level might have changed, check again */
2764 level = btrfs_header_level(b);
2765 }
2766 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002767 }
Chris Masonbd681512011-07-16 15:23:14 -04002768 p->nodes[level] = b;
2769 if (!p->skip_locking)
2770 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002771
Chris Masoneb60cea2007-02-02 09:18:22 -05002772 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002773 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002774
2775 /*
2776 * setup the path here so we can release it under lock
2777 * contention with the cow code
2778 */
Chris Mason02217ed2007-03-02 16:08:05 -05002779 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04002780 /*
2781 * if we don't really need to cow this block
2782 * then we don't want to set the path blocking,
2783 * so we test it here
2784 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002785 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04002786 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002787
Chris Masonbd681512011-07-16 15:23:14 -04002788 /*
2789 * must have write locks on this node and the
2790 * parent
2791 */
Josef Bacik5124e002012-11-07 13:44:13 -05002792 if (level > write_lock_level ||
2793 (level + 1 > write_lock_level &&
2794 level + 1 < BTRFS_MAX_LEVEL &&
2795 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002796 write_lock_level = level + 1;
2797 btrfs_release_path(p);
2798 goto again;
2799 }
2800
Filipe Manana160f4082014-07-28 19:37:17 +01002801 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002802 err = btrfs_cow_block(trans, root, b,
2803 p->nodes[level + 1],
2804 p->slots[level + 1], &b);
2805 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002806 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002807 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002808 }
Chris Mason02217ed2007-03-02 16:08:05 -05002809 }
Chris Mason65b51a02008-08-01 15:11:20 -04002810cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002811 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002812 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002813
2814 /*
2815 * we have a lock on b and as long as we aren't changing
2816 * the tree, there is no way to for the items in b to change.
2817 * It is safe to drop the lock on our parent before we
2818 * go through the expensive btree search on b.
2819 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002820 * If we're inserting or deleting (ins_len != 0), then we might
2821 * be changing slot zero, which may require changing the parent.
2822 * So, we can't drop the lock until after we know which slot
2823 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002824 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002825 if (!ins_len && !p->keep_locks) {
2826 int u = level + 1;
2827
2828 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2829 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2830 p->locks[u] = 0;
2831 }
2832 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002833
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002834 ret = key_search(b, key, level, &prev_cmp, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002835
Chris Mason5f39d392007-10-15 16:14:19 -04002836 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002837 int dec = 0;
2838 if (ret && slot > 0) {
2839 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002840 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002841 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002842 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002843 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002844 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002845 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002846 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002847 if (err) {
2848 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002849 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002850 }
Chris Masonc8c42862009-04-03 10:14:18 -04002851 b = p->nodes[level];
2852 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002853
Chris Masonbd681512011-07-16 15:23:14 -04002854 /*
2855 * slot 0 is special, if we change the key
2856 * we have to update the parent pointer
2857 * which means we must have a write lock
2858 * on the parent
2859 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002860 if (slot == 0 && ins_len &&
Chris Masonbd681512011-07-16 15:23:14 -04002861 write_lock_level < level + 1) {
2862 write_lock_level = level + 1;
2863 btrfs_release_path(p);
2864 goto again;
2865 }
2866
Chris Masonf7c79f32012-03-19 15:54:38 -04002867 unlock_up(p, level, lowest_unlock,
2868 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002869
Chris Mason925baed2008-06-25 16:01:30 -04002870 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002871 if (dec)
2872 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002873 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002874 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002875
Yan Zheng33c66f42009-07-22 09:59:00 -04002876 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002877 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002878 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002879 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002880 if (err) {
2881 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002882 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002883 }
Chris Mason76a05b32009-05-14 13:24:30 -04002884
Chris Masonb4ce94d2009-02-04 09:25:08 -05002885 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002886 level = btrfs_header_level(b);
2887 if (level <= write_lock_level) {
2888 err = btrfs_try_tree_write_lock(b);
2889 if (!err) {
2890 btrfs_set_path_blocking(p);
2891 btrfs_tree_lock(b);
2892 btrfs_clear_path_blocking(p, b,
2893 BTRFS_WRITE_LOCK);
2894 }
2895 p->locks[level] = BTRFS_WRITE_LOCK;
2896 } else {
2897 err = btrfs_try_tree_read_lock(b);
2898 if (!err) {
2899 btrfs_set_path_blocking(p);
2900 btrfs_tree_read_lock(b);
2901 btrfs_clear_path_blocking(p, b,
2902 BTRFS_READ_LOCK);
2903 }
2904 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002905 }
Chris Masonbd681512011-07-16 15:23:14 -04002906 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002907 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002908 } else {
2909 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002910 if (ins_len > 0 &&
2911 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002912 if (write_lock_level < 1) {
2913 write_lock_level = 1;
2914 btrfs_release_path(p);
2915 goto again;
2916 }
2917
Chris Masonb4ce94d2009-02-04 09:25:08 -05002918 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002919 err = split_leaf(trans, root, key,
2920 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002921 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002922
Yan Zheng33c66f42009-07-22 09:59:00 -04002923 BUG_ON(err > 0);
2924 if (err) {
2925 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002926 goto done;
2927 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002928 }
Chris Mason459931e2008-12-10 09:10:46 -05002929 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002930 unlock_up(p, level, lowest_unlock,
2931 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002932 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002933 }
2934 }
Chris Mason65b51a02008-08-01 15:11:20 -04002935 ret = 1;
2936done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002937 /*
2938 * we don't really know what they plan on doing with the path
2939 * from here on, so for now just mark it as blocking
2940 */
Chris Masonb9473432009-03-13 11:00:37 -04002941 if (!p->leave_spinning)
2942 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002943 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02002944 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002945 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002946}
2947
Chris Mason74123bd2007-02-02 11:05:29 -05002948/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002949 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2950 * current state of the tree together with the operations recorded in the tree
2951 * modification log to search for the key in a previous version of this tree, as
2952 * denoted by the time_seq parameter.
2953 *
2954 * Naturally, there is no support for insert, delete or cow operations.
2955 *
2956 * The resulting path and return value will be set up as if we called
2957 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2958 */
2959int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2960 struct btrfs_path *p, u64 time_seq)
2961{
2962 struct extent_buffer *b;
2963 int slot;
2964 int ret;
2965 int err;
2966 int level;
2967 int lowest_unlock = 1;
2968 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002969 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002970
2971 lowest_level = p->lowest_level;
2972 WARN_ON(p->nodes[0] != NULL);
2973
2974 if (p->search_commit_root) {
2975 BUG_ON(time_seq);
2976 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2977 }
2978
2979again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002980 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002981 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002982 p->locks[level] = BTRFS_READ_LOCK;
2983
2984 while (b) {
2985 level = btrfs_header_level(b);
2986 p->nodes[level] = b;
2987 btrfs_clear_path_blocking(p, NULL, 0);
2988
2989 /*
2990 * we have a lock on b and as long as we aren't changing
2991 * the tree, there is no way to for the items in b to change.
2992 * It is safe to drop the lock on our parent before we
2993 * go through the expensive btree search on b.
2994 */
2995 btrfs_unlock_up_safe(p, level + 1);
2996
Josef Bacikd4b40872013-09-24 14:09:34 -04002997 /*
2998 * Since we can unwind eb's we want to do a real search every
2999 * time.
3000 */
3001 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01003002 ret = key_search(b, key, level, &prev_cmp, &slot);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003003
3004 if (level != 0) {
3005 int dec = 0;
3006 if (ret && slot > 0) {
3007 dec = 1;
3008 slot -= 1;
3009 }
3010 p->slots[level] = slot;
3011 unlock_up(p, level, lowest_unlock, 0, NULL);
3012
3013 if (level == lowest_level) {
3014 if (dec)
3015 p->slots[level]++;
3016 goto done;
3017 }
3018
3019 err = read_block_for_search(NULL, root, p, &b, level,
3020 slot, key, time_seq);
3021 if (err == -EAGAIN)
3022 goto again;
3023 if (err) {
3024 ret = err;
3025 goto done;
3026 }
3027
3028 level = btrfs_header_level(b);
3029 err = btrfs_try_tree_read_lock(b);
3030 if (!err) {
3031 btrfs_set_path_blocking(p);
3032 btrfs_tree_read_lock(b);
3033 btrfs_clear_path_blocking(p, b,
3034 BTRFS_READ_LOCK);
3035 }
Josef Bacik9ec72672013-08-07 16:57:23 -04003036 b = tree_mod_log_rewind(root->fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04003037 if (!b) {
3038 ret = -ENOMEM;
3039 goto done;
3040 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003041 p->locks[level] = BTRFS_READ_LOCK;
3042 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003043 } else {
3044 p->slots[level] = slot;
3045 unlock_up(p, level, lowest_unlock, 0, NULL);
3046 goto done;
3047 }
3048 }
3049 ret = 1;
3050done:
3051 if (!p->leave_spinning)
3052 btrfs_set_path_blocking(p);
3053 if (ret < 0)
3054 btrfs_release_path(p);
3055
3056 return ret;
3057}
3058
3059/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003060 * helper to use instead of search slot if no exact match is needed but
3061 * instead the next or previous item should be returned.
3062 * When find_higher is true, the next higher item is returned, the next lower
3063 * otherwise.
3064 * When return_any and find_higher are both true, and no higher item is found,
3065 * return the next lower instead.
3066 * When return_any is true and find_higher is false, and no lower item is found,
3067 * return the next higher instead.
3068 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3069 * < 0 on error
3070 */
3071int btrfs_search_slot_for_read(struct btrfs_root *root,
3072 struct btrfs_key *key, struct btrfs_path *p,
3073 int find_higher, int return_any)
3074{
3075 int ret;
3076 struct extent_buffer *leaf;
3077
3078again:
3079 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3080 if (ret <= 0)
3081 return ret;
3082 /*
3083 * a return value of 1 means the path is at the position where the
3084 * item should be inserted. Normally this is the next bigger item,
3085 * but in case the previous item is the last in a leaf, path points
3086 * to the first free slot in the previous leaf, i.e. at an invalid
3087 * item.
3088 */
3089 leaf = p->nodes[0];
3090
3091 if (find_higher) {
3092 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3093 ret = btrfs_next_leaf(root, p);
3094 if (ret <= 0)
3095 return ret;
3096 if (!return_any)
3097 return 1;
3098 /*
3099 * no higher item found, return the next
3100 * lower instead
3101 */
3102 return_any = 0;
3103 find_higher = 0;
3104 btrfs_release_path(p);
3105 goto again;
3106 }
3107 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003108 if (p->slots[0] == 0) {
3109 ret = btrfs_prev_leaf(root, p);
3110 if (ret < 0)
3111 return ret;
3112 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003113 leaf = p->nodes[0];
3114 if (p->slots[0] == btrfs_header_nritems(leaf))
3115 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003116 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003117 }
Arne Jansene6793762011-09-13 11:18:10 +02003118 if (!return_any)
3119 return 1;
3120 /*
3121 * no lower item found, return the next
3122 * higher instead
3123 */
3124 return_any = 0;
3125 find_higher = 1;
3126 btrfs_release_path(p);
3127 goto again;
3128 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003129 --p->slots[0];
3130 }
3131 }
3132 return 0;
3133}
3134
3135/*
Chris Mason74123bd2007-02-02 11:05:29 -05003136 * adjust the pointers going up the tree, starting at level
3137 * making sure the right key of each node is points to 'key'.
3138 * This is used after shifting pointers to the left, so it stops
3139 * fixing up pointers when a given leaf/node is not in slot 0 of the
3140 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003141 *
Chris Mason74123bd2007-02-02 11:05:29 -05003142 */
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003143static void fixup_low_keys(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003144 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003145{
3146 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003147 struct extent_buffer *t;
3148
Chris Mason234b63a2007-03-13 10:46:10 -04003149 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003150 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05003151 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003152 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003153 t = path->nodes[i];
Liu Bo32adf092012-10-19 12:52:15 +00003154 tree_mod_log_set_node_key(root->fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003155 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003156 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003157 if (tslot != 0)
3158 break;
3159 }
3160}
3161
Chris Mason74123bd2007-02-02 11:05:29 -05003162/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003163 * update item key.
3164 *
3165 * This function isn't completely safe. It's the caller's responsibility
3166 * that the new key won't break the order
3167 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00003168void btrfs_set_item_key_safe(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003169 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003170{
3171 struct btrfs_disk_key disk_key;
3172 struct extent_buffer *eb;
3173 int slot;
3174
3175 eb = path->nodes[0];
3176 slot = path->slots[0];
3177 if (slot > 0) {
3178 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003179 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003180 }
3181 if (slot < btrfs_header_nritems(eb) - 1) {
3182 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003183 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003184 }
3185
3186 btrfs_cpu_key_to_disk(&disk_key, new_key);
3187 btrfs_set_item_key(eb, &disk_key, slot);
3188 btrfs_mark_buffer_dirty(eb);
3189 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003190 fixup_low_keys(root, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003191}
3192
3193/*
Chris Mason74123bd2007-02-02 11:05:29 -05003194 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003195 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003196 *
3197 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3198 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003199 */
Chris Mason98ed5172008-01-03 10:01:48 -05003200static int push_node_left(struct btrfs_trans_handle *trans,
3201 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003202 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003203{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003204 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003205 int src_nritems;
3206 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003207 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003208
Chris Mason5f39d392007-10-15 16:14:19 -04003209 src_nritems = btrfs_header_nritems(src);
3210 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003211 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003212 WARN_ON(btrfs_header_generation(src) != trans->transid);
3213 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003214
Chris Masonbce4eae2008-04-24 14:42:46 -04003215 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003216 return 1;
3217
Chris Masond3977122009-01-05 21:25:51 -05003218 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003219 return 1;
3220
Chris Masonbce4eae2008-04-24 14:42:46 -04003221 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003222 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003223 if (push_items < src_nritems) {
3224 /* leave at least 8 pointers in the node if
3225 * we aren't going to empty it
3226 */
3227 if (src_nritems - push_items < 8) {
3228 if (push_items <= 8)
3229 return 1;
3230 push_items -= 8;
3231 }
3232 }
3233 } else
3234 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003235
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003236 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
3237 push_items);
3238 if (ret) {
3239 btrfs_abort_transaction(trans, root, ret);
3240 return ret;
3241 }
Chris Mason5f39d392007-10-15 16:14:19 -04003242 copy_extent_buffer(dst, src,
3243 btrfs_node_key_ptr_offset(dst_nritems),
3244 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003245 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003246
Chris Masonbb803952007-03-01 12:04:21 -05003247 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003248 /*
3249 * don't call tree_mod_log_eb_move here, key removal was already
3250 * fully logged by tree_mod_log_eb_copy above.
3251 */
Chris Mason5f39d392007-10-15 16:14:19 -04003252 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3253 btrfs_node_key_ptr_offset(push_items),
3254 (src_nritems - push_items) *
3255 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003256 }
Chris Mason5f39d392007-10-15 16:14:19 -04003257 btrfs_set_header_nritems(src, src_nritems - push_items);
3258 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3259 btrfs_mark_buffer_dirty(src);
3260 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003261
Chris Masonbb803952007-03-01 12:04:21 -05003262 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003263}
3264
Chris Mason97571fd2007-02-24 13:39:08 -05003265/*
Chris Mason79f95c82007-03-01 15:16:26 -05003266 * try to push data from one node into the next node right in the
3267 * tree.
3268 *
3269 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3270 * error, and > 0 if there was no room in the right hand block.
3271 *
3272 * this will only push up to 1/2 the contents of the left node over
3273 */
Chris Mason5f39d392007-10-15 16:14:19 -04003274static int balance_node_right(struct btrfs_trans_handle *trans,
3275 struct btrfs_root *root,
3276 struct extent_buffer *dst,
3277 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003278{
Chris Mason79f95c82007-03-01 15:16:26 -05003279 int push_items = 0;
3280 int max_push;
3281 int src_nritems;
3282 int dst_nritems;
3283 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003284
Chris Mason7bb86312007-12-11 09:25:06 -05003285 WARN_ON(btrfs_header_generation(src) != trans->transid);
3286 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3287
Chris Mason5f39d392007-10-15 16:14:19 -04003288 src_nritems = btrfs_header_nritems(src);
3289 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003290 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003291 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003292 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003293
Chris Masond3977122009-01-05 21:25:51 -05003294 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003295 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003296
3297 max_push = src_nritems / 2 + 1;
3298 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003299 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003300 return 1;
Yan252c38f2007-08-29 09:11:44 -04003301
Chris Mason79f95c82007-03-01 15:16:26 -05003302 if (max_push < push_items)
3303 push_items = max_push;
3304
Jan Schmidtf2304752012-05-26 11:43:17 +02003305 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003306 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3307 btrfs_node_key_ptr_offset(0),
3308 (dst_nritems) *
3309 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003310
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003311 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
3312 src_nritems - push_items, push_items);
3313 if (ret) {
3314 btrfs_abort_transaction(trans, root, ret);
3315 return ret;
3316 }
Chris Mason5f39d392007-10-15 16:14:19 -04003317 copy_extent_buffer(dst, src,
3318 btrfs_node_key_ptr_offset(0),
3319 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003320 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003321
Chris Mason5f39d392007-10-15 16:14:19 -04003322 btrfs_set_header_nritems(src, src_nritems - push_items);
3323 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003324
Chris Mason5f39d392007-10-15 16:14:19 -04003325 btrfs_mark_buffer_dirty(src);
3326 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003327
Chris Mason79f95c82007-03-01 15:16:26 -05003328 return ret;
3329}
3330
3331/*
Chris Mason97571fd2007-02-24 13:39:08 -05003332 * helper function to insert a new root level in the tree.
3333 * A new node is allocated, and a single item is inserted to
3334 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003335 *
3336 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003337 */
Chris Masond3977122009-01-05 21:25:51 -05003338static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003339 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003340 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003341{
Chris Mason7bb86312007-12-11 09:25:06 -05003342 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003343 struct extent_buffer *lower;
3344 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003345 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003346 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003347
3348 BUG_ON(path->nodes[level]);
3349 BUG_ON(path->nodes[level-1] != root->node);
3350
Chris Mason7bb86312007-12-11 09:25:06 -05003351 lower = path->nodes[level-1];
3352 if (level == 1)
3353 btrfs_item_key(lower, &lower_key, 0);
3354 else
3355 btrfs_node_key(lower, &lower_key, 0);
3356
David Sterba4d75f8a2014-06-15 01:54:12 +02003357 c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3358 &lower_key, level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003359 if (IS_ERR(c))
3360 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003361
Yan, Zhengf0486c62010-05-16 10:46:25 -04003362 root_add_used(root, root->nodesize);
3363
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003364 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003365 btrfs_set_header_nritems(c, 1);
3366 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003367 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003368 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003369 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003370 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003371
Ross Kirk0a4e5582013-09-24 10:12:38 +01003372 write_extent_buffer(c, root->fs_info->fsid, btrfs_header_fsid(),
Chris Mason5f39d392007-10-15 16:14:19 -04003373 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003374
3375 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003376 btrfs_header_chunk_tree_uuid(c), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003377
Chris Mason5f39d392007-10-15 16:14:19 -04003378 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003379 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003380 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003381 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003382
3383 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003384
3385 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003386
Chris Mason925baed2008-06-25 16:01:30 -04003387 old = root->node;
Liu Bofdd99c72013-05-22 12:06:51 +00003388 tree_mod_log_set_root_pointer(root, c, 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003389 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003390
3391 /* the super has an extra ref to root->node */
3392 free_extent_buffer(old);
3393
Chris Mason0b86a832008-03-24 15:01:56 -04003394 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003395 extent_buffer_get(c);
3396 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04003397 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05003398 path->slots[level] = 0;
3399 return 0;
3400}
3401
Chris Mason74123bd2007-02-02 11:05:29 -05003402/*
3403 * worker function to insert a single pointer in a node.
3404 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003405 *
Chris Mason74123bd2007-02-02 11:05:29 -05003406 * slot and level indicate where you want the key to go, and
3407 * blocknr is the block the key points to.
3408 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003409static void insert_ptr(struct btrfs_trans_handle *trans,
3410 struct btrfs_root *root, struct btrfs_path *path,
3411 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003412 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003413{
Chris Mason5f39d392007-10-15 16:14:19 -04003414 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003415 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003416 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003417
3418 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003419 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003420 lower = path->nodes[level];
3421 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003422 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003423 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003424 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003425 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003426 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3427 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003428 memmove_extent_buffer(lower,
3429 btrfs_node_key_ptr_offset(slot + 1),
3430 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003431 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003432 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003433 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003434 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04003435 MOD_LOG_KEY_ADD, GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003436 BUG_ON(ret < 0);
3437 }
Chris Mason5f39d392007-10-15 16:14:19 -04003438 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003439 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003440 WARN_ON(trans->transid == 0);
3441 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003442 btrfs_set_header_nritems(lower, nritems + 1);
3443 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003444}
3445
Chris Mason97571fd2007-02-24 13:39:08 -05003446/*
3447 * split the node at the specified level in path in two.
3448 * The path is corrected to point to the appropriate node after the split
3449 *
3450 * Before splitting this tries to make some room in the node by pushing
3451 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003452 *
3453 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003454 */
Chris Masone02119d2008-09-05 16:13:11 -04003455static noinline int split_node(struct btrfs_trans_handle *trans,
3456 struct btrfs_root *root,
3457 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003458{
Chris Mason5f39d392007-10-15 16:14:19 -04003459 struct extent_buffer *c;
3460 struct extent_buffer *split;
3461 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003462 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003463 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003464 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003465
Chris Mason5f39d392007-10-15 16:14:19 -04003466 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003467 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003468 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003469 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003470 * trying to split the root, lets make a new one
3471 *
Liu Bofdd99c72013-05-22 12:06:51 +00003472 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003473 * insert_new_root, because that root buffer will be kept as a
3474 * normal node. We are going to log removal of half of the
3475 * elements below with tree_mod_log_eb_copy. We're holding a
3476 * tree lock on the buffer, which is why we cannot race with
3477 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003478 */
Liu Bofdd99c72013-05-22 12:06:51 +00003479 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003480 if (ret)
3481 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003482 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003483 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003484 c = path->nodes[level];
3485 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003486 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003487 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003488 if (ret < 0)
3489 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003490 }
Chris Masone66f7092007-04-20 13:16:02 -04003491
Chris Mason5f39d392007-10-15 16:14:19 -04003492 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003493 mid = (c_nritems + 1) / 2;
3494 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003495
David Sterba4d75f8a2014-06-15 01:54:12 +02003496 split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3497 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003498 if (IS_ERR(split))
3499 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003500
Yan, Zhengf0486c62010-05-16 10:46:25 -04003501 root_add_used(root, root->nodesize);
3502
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003503 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003504 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003505 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003506 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003507 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003508 btrfs_set_header_owner(split, root->root_key.objectid);
3509 write_extent_buffer(split, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01003510 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003511 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003512 btrfs_header_chunk_tree_uuid(split),
Chris Masone17cade2008-04-15 15:41:47 -04003513 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003514
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003515 ret = tree_mod_log_eb_copy(root->fs_info, split, c, 0,
3516 mid, c_nritems - mid);
3517 if (ret) {
3518 btrfs_abort_transaction(trans, root, ret);
3519 return ret;
3520 }
Chris Mason5f39d392007-10-15 16:14:19 -04003521 copy_extent_buffer(split, c,
3522 btrfs_node_key_ptr_offset(0),
3523 btrfs_node_key_ptr_offset(mid),
3524 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3525 btrfs_set_header_nritems(split, c_nritems - mid);
3526 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003527 ret = 0;
3528
Chris Mason5f39d392007-10-15 16:14:19 -04003529 btrfs_mark_buffer_dirty(c);
3530 btrfs_mark_buffer_dirty(split);
3531
Jeff Mahoney143bede2012-03-01 14:56:26 +01003532 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003533 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003534
Chris Mason5de08d72007-02-24 06:24:44 -05003535 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003536 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003537 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003538 free_extent_buffer(c);
3539 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003540 path->slots[level + 1] += 1;
3541 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003542 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003543 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003544 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003545 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003546}
3547
Chris Mason74123bd2007-02-02 11:05:29 -05003548/*
3549 * how many bytes are required to store the items in a leaf. start
3550 * and nr indicate which items in the leaf to check. This totals up the
3551 * space used both by the item structs and the item data
3552 */
Chris Mason5f39d392007-10-15 16:14:19 -04003553static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003554{
Josef Bacik41be1f32012-10-15 13:43:18 -04003555 struct btrfs_item *start_item;
3556 struct btrfs_item *end_item;
3557 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003558 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003559 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003560 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003561
3562 if (!nr)
3563 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003564 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003565 start_item = btrfs_item_nr(start);
3566 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003567 data_len = btrfs_token_item_offset(l, start_item, &token) +
3568 btrfs_token_item_size(l, start_item, &token);
3569 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003570 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003571 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003572 return data_len;
3573}
3574
Chris Mason74123bd2007-02-02 11:05:29 -05003575/*
Chris Masond4dbff92007-04-04 14:08:15 -04003576 * The space between the end of the leaf items and
3577 * the start of the leaf data. IOW, how much room
3578 * the leaf has left for both items and data
3579 */
Chris Masond3977122009-01-05 21:25:51 -05003580noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003581 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003582{
Chris Mason5f39d392007-10-15 16:14:19 -04003583 int nritems = btrfs_header_nritems(leaf);
3584 int ret;
3585 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3586 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003587 btrfs_crit(root->fs_info,
3588 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
Jens Axboeae2f5412007-10-19 09:22:59 -04003589 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003590 leaf_space_used(leaf, 0, nritems), nritems);
3591 }
3592 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003593}
3594
Chris Mason99d8f832010-07-07 10:51:48 -04003595/*
3596 * min slot controls the lowest index we're willing to push to the
3597 * right. We'll push up to and including min_slot, but no lower
3598 */
Chris Mason44871b12009-03-13 10:04:31 -04003599static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3600 struct btrfs_root *root,
3601 struct btrfs_path *path,
3602 int data_size, int empty,
3603 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003604 int free_space, u32 left_nritems,
3605 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003606{
Chris Mason5f39d392007-10-15 16:14:19 -04003607 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003608 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003609 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003610 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003611 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003612 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003613 int push_space = 0;
3614 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003615 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003616 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003617 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003618 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003619 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003620
Chris Masoncfed81a2012-03-03 07:40:03 -05003621 btrfs_init_map_token(&token);
3622
Chris Mason34a38212007-11-07 13:31:03 -05003623 if (empty)
3624 nr = 0;
3625 else
Chris Mason99d8f832010-07-07 10:51:48 -04003626 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003627
Zheng Yan31840ae2008-09-23 13:14:14 -04003628 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003629 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003630
Chris Mason44871b12009-03-13 10:04:31 -04003631 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003632 i = left_nritems - 1;
3633 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003634 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003635
Zheng Yan31840ae2008-09-23 13:14:14 -04003636 if (!empty && push_items > 0) {
3637 if (path->slots[0] > i)
3638 break;
3639 if (path->slots[0] == i) {
3640 int space = btrfs_leaf_free_space(root, left);
3641 if (space + push_space * 2 > free_space)
3642 break;
3643 }
3644 }
3645
Chris Mason00ec4c52007-02-24 12:47:20 -05003646 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003647 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003648
Chris Masondb945352007-10-15 16:15:53 -04003649 this_item_size = btrfs_item_size(left, item);
3650 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003651 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003652
Chris Mason00ec4c52007-02-24 12:47:20 -05003653 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003654 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003655 if (i == 0)
3656 break;
3657 i--;
Chris Masondb945352007-10-15 16:15:53 -04003658 }
Chris Mason5f39d392007-10-15 16:14:19 -04003659
Chris Mason925baed2008-06-25 16:01:30 -04003660 if (push_items == 0)
3661 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003662
Julia Lawall6c1500f2012-11-03 20:30:18 +00003663 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003664
Chris Mason00ec4c52007-02-24 12:47:20 -05003665 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003666 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003667
Chris Mason5f39d392007-10-15 16:14:19 -04003668 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003669 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003670
Chris Mason00ec4c52007-02-24 12:47:20 -05003671 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003672 data_end = leaf_data_end(root, right);
3673 memmove_extent_buffer(right,
3674 btrfs_leaf_data(right) + data_end - push_space,
3675 btrfs_leaf_data(right) + data_end,
3676 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3677
Chris Mason00ec4c52007-02-24 12:47:20 -05003678 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003679 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003680 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3681 btrfs_leaf_data(left) + leaf_data_end(root, left),
3682 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003683
3684 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3685 btrfs_item_nr_offset(0),
3686 right_nritems * sizeof(struct btrfs_item));
3687
Chris Mason00ec4c52007-02-24 12:47:20 -05003688 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003689 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3690 btrfs_item_nr_offset(left_nritems - push_items),
3691 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003692
3693 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003694 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003695 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003696 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003697 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003698 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003699 push_space -= btrfs_token_item_size(right, item, &token);
3700 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003701 }
3702
Chris Mason7518a232007-03-12 12:01:18 -04003703 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003704 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003705
Chris Mason34a38212007-11-07 13:31:03 -05003706 if (left_nritems)
3707 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003708 else
3709 clean_tree_block(trans, root, left);
3710
Chris Mason5f39d392007-10-15 16:14:19 -04003711 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003712
Chris Mason5f39d392007-10-15 16:14:19 -04003713 btrfs_item_key(right, &disk_key, 0);
3714 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003715 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003716
Chris Mason00ec4c52007-02-24 12:47:20 -05003717 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003718 if (path->slots[0] >= left_nritems) {
3719 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003720 if (btrfs_header_nritems(path->nodes[0]) == 0)
3721 clean_tree_block(trans, root, path->nodes[0]);
3722 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003723 free_extent_buffer(path->nodes[0]);
3724 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003725 path->slots[1] += 1;
3726 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003727 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003728 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003729 }
3730 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003731
3732out_unlock:
3733 btrfs_tree_unlock(right);
3734 free_extent_buffer(right);
3735 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003736}
Chris Mason925baed2008-06-25 16:01:30 -04003737
Chris Mason00ec4c52007-02-24 12:47:20 -05003738/*
Chris Mason44871b12009-03-13 10:04:31 -04003739 * push some data in the path leaf to the right, trying to free up at
3740 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3741 *
3742 * returns 1 if the push failed because the other node didn't have enough
3743 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003744 *
3745 * this will push starting from min_slot to the end of the leaf. It won't
3746 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003747 */
3748static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003749 *root, struct btrfs_path *path,
3750 int min_data_size, int data_size,
3751 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003752{
3753 struct extent_buffer *left = path->nodes[0];
3754 struct extent_buffer *right;
3755 struct extent_buffer *upper;
3756 int slot;
3757 int free_space;
3758 u32 left_nritems;
3759 int ret;
3760
3761 if (!path->nodes[1])
3762 return 1;
3763
3764 slot = path->slots[1];
3765 upper = path->nodes[1];
3766 if (slot >= btrfs_header_nritems(upper) - 1)
3767 return 1;
3768
3769 btrfs_assert_tree_locked(path->nodes[1]);
3770
3771 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003772 if (right == NULL)
3773 return 1;
3774
Chris Mason44871b12009-03-13 10:04:31 -04003775 btrfs_tree_lock(right);
3776 btrfs_set_lock_blocking(right);
3777
3778 free_space = btrfs_leaf_free_space(root, right);
3779 if (free_space < data_size)
3780 goto out_unlock;
3781
3782 /* cow and double check */
3783 ret = btrfs_cow_block(trans, root, right, upper,
3784 slot + 1, &right);
3785 if (ret)
3786 goto out_unlock;
3787
3788 free_space = btrfs_leaf_free_space(root, right);
3789 if (free_space < data_size)
3790 goto out_unlock;
3791
3792 left_nritems = btrfs_header_nritems(left);
3793 if (left_nritems == 0)
3794 goto out_unlock;
3795
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003796 if (path->slots[0] == left_nritems && !empty) {
3797 /* Key greater than all keys in the leaf, right neighbor has
3798 * enough room for it and we're not emptying our leaf to delete
3799 * it, therefore use right neighbor to insert the new item and
3800 * no need to touch/dirty our left leaft. */
3801 btrfs_tree_unlock(left);
3802 free_extent_buffer(left);
3803 path->nodes[0] = right;
3804 path->slots[0] = 0;
3805 path->slots[1]++;
3806 return 0;
3807 }
3808
Chris Mason99d8f832010-07-07 10:51:48 -04003809 return __push_leaf_right(trans, root, path, min_data_size, empty,
3810 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003811out_unlock:
3812 btrfs_tree_unlock(right);
3813 free_extent_buffer(right);
3814 return 1;
3815}
3816
3817/*
Chris Mason74123bd2007-02-02 11:05:29 -05003818 * push some data in the path leaf to the left, trying to free up at
3819 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003820 *
3821 * max_slot can put a limit on how far into the leaf we'll push items. The
3822 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3823 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003824 */
Chris Mason44871b12009-03-13 10:04:31 -04003825static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3826 struct btrfs_root *root,
3827 struct btrfs_path *path, int data_size,
3828 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003829 int free_space, u32 right_nritems,
3830 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003831{
Chris Mason5f39d392007-10-15 16:14:19 -04003832 struct btrfs_disk_key disk_key;
3833 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003834 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003835 int push_space = 0;
3836 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003837 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003838 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003839 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003840 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003841 u32 this_item_size;
3842 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003843 struct btrfs_map_token token;
3844
3845 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003846
Chris Mason34a38212007-11-07 13:31:03 -05003847 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003848 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003849 else
Chris Mason99d8f832010-07-07 10:51:48 -04003850 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003851
3852 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003853 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003854
Zheng Yan31840ae2008-09-23 13:14:14 -04003855 if (!empty && push_items > 0) {
3856 if (path->slots[0] < i)
3857 break;
3858 if (path->slots[0] == i) {
3859 int space = btrfs_leaf_free_space(root, right);
3860 if (space + push_space * 2 > free_space)
3861 break;
3862 }
3863 }
3864
Chris Masonbe0e5c02007-01-26 15:51:26 -05003865 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003866 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003867
3868 this_item_size = btrfs_item_size(right, item);
3869 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003870 break;
Chris Masondb945352007-10-15 16:15:53 -04003871
Chris Masonbe0e5c02007-01-26 15:51:26 -05003872 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003873 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003874 }
Chris Masondb945352007-10-15 16:15:53 -04003875
Chris Masonbe0e5c02007-01-26 15:51:26 -05003876 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003877 ret = 1;
3878 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003879 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303880 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003881
Chris Masonbe0e5c02007-01-26 15:51:26 -05003882 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003883 copy_extent_buffer(left, right,
3884 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3885 btrfs_item_nr_offset(0),
3886 push_items * sizeof(struct btrfs_item));
3887
Chris Mason123abc82007-03-14 14:14:43 -04003888 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003889 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003890
3891 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003892 leaf_data_end(root, left) - push_space,
3893 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003894 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003895 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003896 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003897 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003898
Chris Masondb945352007-10-15 16:15:53 -04003899 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003900 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003901 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003902
Ross Kirkdd3cc162013-09-16 15:58:09 +01003903 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003904
Chris Masoncfed81a2012-03-03 07:40:03 -05003905 ioff = btrfs_token_item_offset(left, item, &token);
3906 btrfs_set_token_item_offset(left, item,
3907 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3908 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003909 }
Chris Mason5f39d392007-10-15 16:14:19 -04003910 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003911
3912 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003913 if (push_items > right_nritems)
3914 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003915 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003916
Chris Mason34a38212007-11-07 13:31:03 -05003917 if (push_items < right_nritems) {
3918 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3919 leaf_data_end(root, right);
3920 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3921 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3922 btrfs_leaf_data(right) +
3923 leaf_data_end(root, right), push_space);
3924
3925 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003926 btrfs_item_nr_offset(push_items),
3927 (btrfs_header_nritems(right) - push_items) *
3928 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003929 }
Yaneef1c492007-11-26 10:58:13 -05003930 right_nritems -= push_items;
3931 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003932 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003933 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003934 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003935
Chris Masoncfed81a2012-03-03 07:40:03 -05003936 push_space = push_space - btrfs_token_item_size(right,
3937 item, &token);
3938 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003939 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003940
Chris Mason5f39d392007-10-15 16:14:19 -04003941 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003942 if (right_nritems)
3943 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003944 else
3945 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003946
Chris Mason5f39d392007-10-15 16:14:19 -04003947 btrfs_item_key(right, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003948 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003949
3950 /* then fixup the leaf pointer in the path */
3951 if (path->slots[0] < push_items) {
3952 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003953 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003954 free_extent_buffer(path->nodes[0]);
3955 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003956 path->slots[1] -= 1;
3957 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003958 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003959 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003960 path->slots[0] -= push_items;
3961 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003962 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003963 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003964out:
3965 btrfs_tree_unlock(left);
3966 free_extent_buffer(left);
3967 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003968}
3969
Chris Mason74123bd2007-02-02 11:05:29 -05003970/*
Chris Mason44871b12009-03-13 10:04:31 -04003971 * push some data in the path leaf to the left, trying to free up at
3972 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003973 *
3974 * max_slot can put a limit on how far into the leaf we'll push items. The
3975 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3976 * items
Chris Mason44871b12009-03-13 10:04:31 -04003977 */
3978static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003979 *root, struct btrfs_path *path, int min_data_size,
3980 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003981{
3982 struct extent_buffer *right = path->nodes[0];
3983 struct extent_buffer *left;
3984 int slot;
3985 int free_space;
3986 u32 right_nritems;
3987 int ret = 0;
3988
3989 slot = path->slots[1];
3990 if (slot == 0)
3991 return 1;
3992 if (!path->nodes[1])
3993 return 1;
3994
3995 right_nritems = btrfs_header_nritems(right);
3996 if (right_nritems == 0)
3997 return 1;
3998
3999 btrfs_assert_tree_locked(path->nodes[1]);
4000
4001 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004002 if (left == NULL)
4003 return 1;
4004
Chris Mason44871b12009-03-13 10:04:31 -04004005 btrfs_tree_lock(left);
4006 btrfs_set_lock_blocking(left);
4007
4008 free_space = btrfs_leaf_free_space(root, left);
4009 if (free_space < data_size) {
4010 ret = 1;
4011 goto out;
4012 }
4013
4014 /* cow and double check */
4015 ret = btrfs_cow_block(trans, root, left,
4016 path->nodes[1], slot - 1, &left);
4017 if (ret) {
4018 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004019 if (ret == -ENOSPC)
4020 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004021 goto out;
4022 }
4023
4024 free_space = btrfs_leaf_free_space(root, left);
4025 if (free_space < data_size) {
4026 ret = 1;
4027 goto out;
4028 }
4029
Chris Mason99d8f832010-07-07 10:51:48 -04004030 return __push_leaf_left(trans, root, path, min_data_size,
4031 empty, left, free_space, right_nritems,
4032 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004033out:
4034 btrfs_tree_unlock(left);
4035 free_extent_buffer(left);
4036 return ret;
4037}
4038
4039/*
Chris Mason74123bd2007-02-02 11:05:29 -05004040 * split the path's leaf in two, making sure there is at least data_size
4041 * available for the resulting leaf level of the path.
4042 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004043static noinline void copy_for_split(struct btrfs_trans_handle *trans,
4044 struct btrfs_root *root,
4045 struct btrfs_path *path,
4046 struct extent_buffer *l,
4047 struct extent_buffer *right,
4048 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004049{
Chris Masonbe0e5c02007-01-26 15:51:26 -05004050 int data_copy_size;
4051 int rt_data_off;
4052 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004053 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004054 struct btrfs_map_token token;
4055
4056 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004057
Chris Mason5f39d392007-10-15 16:14:19 -04004058 nritems = nritems - mid;
4059 btrfs_set_header_nritems(right, nritems);
4060 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
4061
4062 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4063 btrfs_item_nr_offset(mid),
4064 nritems * sizeof(struct btrfs_item));
4065
4066 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04004067 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
4068 data_copy_size, btrfs_leaf_data(l) +
4069 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004070
Chris Mason5f39d392007-10-15 16:14:19 -04004071 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
4072 btrfs_item_end_nr(l, mid);
4073
4074 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004075 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004076 u32 ioff;
4077
Chris Masoncfed81a2012-03-03 07:40:03 -05004078 ioff = btrfs_token_item_offset(right, item, &token);
4079 btrfs_set_token_item_offset(right, item,
4080 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004081 }
Chris Mason74123bd2007-02-02 11:05:29 -05004082
Chris Mason5f39d392007-10-15 16:14:19 -04004083 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004084 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004085 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004086 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004087
4088 btrfs_mark_buffer_dirty(right);
4089 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004090 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004091
Chris Masonbe0e5c02007-01-26 15:51:26 -05004092 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004093 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004094 free_extent_buffer(path->nodes[0]);
4095 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004096 path->slots[0] -= mid;
4097 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004098 } else {
4099 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004100 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004101 }
Chris Mason5f39d392007-10-15 16:14:19 -04004102
Chris Masoneb60cea2007-02-02 09:18:22 -05004103 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004104}
4105
4106/*
Chris Mason99d8f832010-07-07 10:51:48 -04004107 * double splits happen when we need to insert a big item in the middle
4108 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4109 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4110 * A B C
4111 *
4112 * We avoid this by trying to push the items on either side of our target
4113 * into the adjacent leaves. If all goes well we can avoid the double split
4114 * completely.
4115 */
4116static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4117 struct btrfs_root *root,
4118 struct btrfs_path *path,
4119 int data_size)
4120{
4121 int ret;
4122 int progress = 0;
4123 int slot;
4124 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004125 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004126
4127 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004128 if (slot < btrfs_header_nritems(path->nodes[0]))
4129 space_needed -= btrfs_leaf_free_space(root, path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004130
4131 /*
4132 * try to push all the items after our slot into the
4133 * right leaf
4134 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004135 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004136 if (ret < 0)
4137 return ret;
4138
4139 if (ret == 0)
4140 progress++;
4141
4142 nritems = btrfs_header_nritems(path->nodes[0]);
4143 /*
4144 * our goal is to get our slot at the start or end of a leaf. If
4145 * we've done so we're done
4146 */
4147 if (path->slots[0] == 0 || path->slots[0] == nritems)
4148 return 0;
4149
4150 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4151 return 0;
4152
4153 /* try to push all the items before our slot into the next leaf */
4154 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004155 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004156 if (ret < 0)
4157 return ret;
4158
4159 if (ret == 0)
4160 progress++;
4161
4162 if (progress)
4163 return 0;
4164 return 1;
4165}
4166
4167/*
Chris Mason44871b12009-03-13 10:04:31 -04004168 * split the path's leaf in two, making sure there is at least data_size
4169 * available for the resulting leaf level of the path.
4170 *
4171 * returns 0 if all went well and < 0 on failure.
4172 */
4173static noinline int split_leaf(struct btrfs_trans_handle *trans,
4174 struct btrfs_root *root,
4175 struct btrfs_key *ins_key,
4176 struct btrfs_path *path, int data_size,
4177 int extend)
4178{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004179 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004180 struct extent_buffer *l;
4181 u32 nritems;
4182 int mid;
4183 int slot;
4184 struct extent_buffer *right;
4185 int ret = 0;
4186 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004187 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004188 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004189 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004190
Yan, Zhenga5719522009-09-24 09:17:31 -04004191 l = path->nodes[0];
4192 slot = path->slots[0];
4193 if (extend && data_size + btrfs_item_size_nr(l, slot) +
4194 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
4195 return -EOVERFLOW;
4196
Chris Mason44871b12009-03-13 10:04:31 -04004197 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004198 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004199 int space_needed = data_size;
4200
4201 if (slot < btrfs_header_nritems(l))
4202 space_needed -= btrfs_leaf_free_space(root, l);
4203
4204 wret = push_leaf_right(trans, root, path, space_needed,
4205 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004206 if (wret < 0)
4207 return wret;
4208 if (wret) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004209 wret = push_leaf_left(trans, root, path, space_needed,
4210 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004211 if (wret < 0)
4212 return wret;
4213 }
4214 l = path->nodes[0];
4215
4216 /* did the pushes work? */
4217 if (btrfs_leaf_free_space(root, l) >= data_size)
4218 return 0;
4219 }
4220
4221 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004222 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004223 if (ret)
4224 return ret;
4225 }
4226again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004227 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004228 l = path->nodes[0];
4229 slot = path->slots[0];
4230 nritems = btrfs_header_nritems(l);
4231 mid = (nritems + 1) / 2;
4232
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004233 if (mid <= slot) {
4234 if (nritems == 1 ||
4235 leaf_space_used(l, mid, nritems - mid) + data_size >
4236 BTRFS_LEAF_DATA_SIZE(root)) {
4237 if (slot >= nritems) {
4238 split = 0;
4239 } else {
4240 mid = slot;
4241 if (mid != nritems &&
4242 leaf_space_used(l, mid, nritems - mid) +
4243 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004244 if (data_size && !tried_avoid_double)
4245 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004246 split = 2;
4247 }
4248 }
4249 }
4250 } else {
4251 if (leaf_space_used(l, 0, mid) + data_size >
4252 BTRFS_LEAF_DATA_SIZE(root)) {
4253 if (!extend && data_size && slot == 0) {
4254 split = 0;
4255 } else if ((extend || !data_size) && slot == 0) {
4256 mid = 1;
4257 } else {
4258 mid = slot;
4259 if (mid != nritems &&
4260 leaf_space_used(l, mid, nritems - mid) +
4261 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004262 if (data_size && !tried_avoid_double)
4263 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304264 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004265 }
4266 }
4267 }
4268 }
4269
4270 if (split == 0)
4271 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4272 else
4273 btrfs_item_key(l, &disk_key, mid);
4274
David Sterba4d75f8a2014-06-15 01:54:12 +02004275 right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
4276 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004277 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004278 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004279
David Sterba707e8a02014-06-04 19:22:26 +02004280 root_add_used(root, root->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004281
4282 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4283 btrfs_set_header_bytenr(right, right->start);
4284 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004285 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004286 btrfs_set_header_owner(right, root->root_key.objectid);
4287 btrfs_set_header_level(right, 0);
4288 write_extent_buffer(right, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01004289 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Mason44871b12009-03-13 10:04:31 -04004290
4291 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02004292 btrfs_header_chunk_tree_uuid(right),
Chris Mason44871b12009-03-13 10:04:31 -04004293 BTRFS_UUID_SIZE);
4294
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004295 if (split == 0) {
4296 if (mid <= slot) {
4297 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004298 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004299 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004300 btrfs_tree_unlock(path->nodes[0]);
4301 free_extent_buffer(path->nodes[0]);
4302 path->nodes[0] = right;
4303 path->slots[0] = 0;
4304 path->slots[1] += 1;
4305 } else {
4306 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004307 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004308 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004309 btrfs_tree_unlock(path->nodes[0]);
4310 free_extent_buffer(path->nodes[0]);
4311 path->nodes[0] = right;
4312 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004313 if (path->slots[1] == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004314 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004315 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004316 btrfs_mark_buffer_dirty(right);
4317 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004318 }
4319
Jeff Mahoney143bede2012-03-01 14:56:26 +01004320 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004321
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004322 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004323 BUG_ON(num_doubles != 0);
4324 num_doubles++;
4325 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004326 }
Chris Mason44871b12009-03-13 10:04:31 -04004327
Jeff Mahoney143bede2012-03-01 14:56:26 +01004328 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004329
4330push_for_double:
4331 push_for_double_split(trans, root, path, data_size);
4332 tried_avoid_double = 1;
4333 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4334 return 0;
4335 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004336}
4337
Yan, Zhengad48fd752009-11-12 09:33:58 +00004338static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4339 struct btrfs_root *root,
4340 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004341{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004342 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004343 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004344 struct btrfs_file_extent_item *fi;
4345 u64 extent_len = 0;
4346 u32 item_size;
4347 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004348
4349 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004350 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4351
4352 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4353 key.type != BTRFS_EXTENT_CSUM_KEY);
4354
4355 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4356 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004357
4358 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004359 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4360 fi = btrfs_item_ptr(leaf, path->slots[0],
4361 struct btrfs_file_extent_item);
4362 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4363 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004364 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004365
Chris Mason459931e2008-12-10 09:10:46 -05004366 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004367 path->search_for_split = 1;
4368 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004369 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004370 if (ret < 0)
4371 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004372
Yan, Zhengad48fd752009-11-12 09:33:58 +00004373 ret = -EAGAIN;
4374 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05004375 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00004376 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4377 goto err;
4378
Chris Mason109f6ae2010-04-02 09:20:18 -04004379 /* the leaf has changed, it now has room. return now */
4380 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4381 goto err;
4382
Yan, Zhengad48fd752009-11-12 09:33:58 +00004383 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4384 fi = btrfs_item_ptr(leaf, path->slots[0],
4385 struct btrfs_file_extent_item);
4386 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4387 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004388 }
4389
Chris Masonb9473432009-03-13 11:00:37 -04004390 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004391 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004392 if (ret)
4393 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004394
Yan, Zhengad48fd752009-11-12 09:33:58 +00004395 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004396 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004397 return 0;
4398err:
4399 path->keep_locks = 0;
4400 return ret;
4401}
4402
4403static noinline int split_item(struct btrfs_trans_handle *trans,
4404 struct btrfs_root *root,
4405 struct btrfs_path *path,
4406 struct btrfs_key *new_key,
4407 unsigned long split_offset)
4408{
4409 struct extent_buffer *leaf;
4410 struct btrfs_item *item;
4411 struct btrfs_item *new_item;
4412 int slot;
4413 char *buf;
4414 u32 nritems;
4415 u32 item_size;
4416 u32 orig_offset;
4417 struct btrfs_disk_key disk_key;
4418
Chris Masonb9473432009-03-13 11:00:37 -04004419 leaf = path->nodes[0];
4420 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4421
Chris Masonb4ce94d2009-02-04 09:25:08 -05004422 btrfs_set_path_blocking(path);
4423
Ross Kirkdd3cc162013-09-16 15:58:09 +01004424 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004425 orig_offset = btrfs_item_offset(leaf, item);
4426 item_size = btrfs_item_size(leaf, item);
4427
Chris Mason459931e2008-12-10 09:10:46 -05004428 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004429 if (!buf)
4430 return -ENOMEM;
4431
Chris Mason459931e2008-12-10 09:10:46 -05004432 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4433 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004434
Chris Mason459931e2008-12-10 09:10:46 -05004435 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004436 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004437 if (slot != nritems) {
4438 /* shift the items */
4439 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004440 btrfs_item_nr_offset(slot),
4441 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004442 }
4443
4444 btrfs_cpu_key_to_disk(&disk_key, new_key);
4445 btrfs_set_item_key(leaf, &disk_key, slot);
4446
Ross Kirkdd3cc162013-09-16 15:58:09 +01004447 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004448
4449 btrfs_set_item_offset(leaf, new_item, orig_offset);
4450 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4451
4452 btrfs_set_item_offset(leaf, item,
4453 orig_offset + item_size - split_offset);
4454 btrfs_set_item_size(leaf, item, split_offset);
4455
4456 btrfs_set_header_nritems(leaf, nritems + 1);
4457
4458 /* write the data for the start of the original item */
4459 write_extent_buffer(leaf, buf,
4460 btrfs_item_ptr_offset(leaf, path->slots[0]),
4461 split_offset);
4462
4463 /* write the data for the new item */
4464 write_extent_buffer(leaf, buf + split_offset,
4465 btrfs_item_ptr_offset(leaf, slot),
4466 item_size - split_offset);
4467 btrfs_mark_buffer_dirty(leaf);
4468
Yan, Zhengad48fd752009-11-12 09:33:58 +00004469 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004470 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004471 return 0;
4472}
4473
4474/*
4475 * This function splits a single item into two items,
4476 * giving 'new_key' to the new item and splitting the
4477 * old one at split_offset (from the start of the item).
4478 *
4479 * The path may be released by this operation. After
4480 * the split, the path is pointing to the old item. The
4481 * new item is going to be in the same node as the old one.
4482 *
4483 * Note, the item being split must be smaller enough to live alone on
4484 * a tree block with room for one extra struct btrfs_item
4485 *
4486 * This allows us to split the item in place, keeping a lock on the
4487 * leaf the entire time.
4488 */
4489int btrfs_split_item(struct btrfs_trans_handle *trans,
4490 struct btrfs_root *root,
4491 struct btrfs_path *path,
4492 struct btrfs_key *new_key,
4493 unsigned long split_offset)
4494{
4495 int ret;
4496 ret = setup_leaf_for_split(trans, root, path,
4497 sizeof(struct btrfs_item));
4498 if (ret)
4499 return ret;
4500
4501 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004502 return ret;
4503}
4504
4505/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004506 * This function duplicate a item, giving 'new_key' to the new item.
4507 * It guarantees both items live in the same tree leaf and the new item
4508 * is contiguous with the original item.
4509 *
4510 * This allows us to split file extent in place, keeping a lock on the
4511 * leaf the entire time.
4512 */
4513int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4514 struct btrfs_root *root,
4515 struct btrfs_path *path,
4516 struct btrfs_key *new_key)
4517{
4518 struct extent_buffer *leaf;
4519 int ret;
4520 u32 item_size;
4521
4522 leaf = path->nodes[0];
4523 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4524 ret = setup_leaf_for_split(trans, root, path,
4525 item_size + sizeof(struct btrfs_item));
4526 if (ret)
4527 return ret;
4528
4529 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004530 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004531 item_size, item_size +
4532 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004533 leaf = path->nodes[0];
4534 memcpy_extent_buffer(leaf,
4535 btrfs_item_ptr_offset(leaf, path->slots[0]),
4536 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4537 item_size);
4538 return 0;
4539}
4540
4541/*
Chris Masond352ac62008-09-29 15:18:18 -04004542 * make the item pointed to by the path smaller. new_size indicates
4543 * how small to make it, and from_end tells us if we just chop bytes
4544 * off the end of the item or if we shift the item to chop bytes off
4545 * the front.
4546 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004547void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004548 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004549{
Chris Masonb18c6682007-04-17 13:26:50 -04004550 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004551 struct extent_buffer *leaf;
4552 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004553 u32 nritems;
4554 unsigned int data_end;
4555 unsigned int old_data_start;
4556 unsigned int old_size;
4557 unsigned int size_diff;
4558 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004559 struct btrfs_map_token token;
4560
4561 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004562
Chris Mason5f39d392007-10-15 16:14:19 -04004563 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004564 slot = path->slots[0];
4565
4566 old_size = btrfs_item_size_nr(leaf, slot);
4567 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004568 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004569
Chris Mason5f39d392007-10-15 16:14:19 -04004570 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004571 data_end = leaf_data_end(root, leaf);
4572
Chris Mason5f39d392007-10-15 16:14:19 -04004573 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004574
Chris Masonb18c6682007-04-17 13:26:50 -04004575 size_diff = old_size - new_size;
4576
4577 BUG_ON(slot < 0);
4578 BUG_ON(slot >= nritems);
4579
4580 /*
4581 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4582 */
4583 /* first correct the data pointers */
4584 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004585 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004586 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004587
Chris Masoncfed81a2012-03-03 07:40:03 -05004588 ioff = btrfs_token_item_offset(leaf, item, &token);
4589 btrfs_set_token_item_offset(leaf, item,
4590 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004591 }
Chris Masondb945352007-10-15 16:15:53 -04004592
Chris Masonb18c6682007-04-17 13:26:50 -04004593 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004594 if (from_end) {
4595 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4596 data_end + size_diff, btrfs_leaf_data(leaf) +
4597 data_end, old_data_start + new_size - data_end);
4598 } else {
4599 struct btrfs_disk_key disk_key;
4600 u64 offset;
4601
4602 btrfs_item_key(leaf, &disk_key, slot);
4603
4604 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4605 unsigned long ptr;
4606 struct btrfs_file_extent_item *fi;
4607
4608 fi = btrfs_item_ptr(leaf, slot,
4609 struct btrfs_file_extent_item);
4610 fi = (struct btrfs_file_extent_item *)(
4611 (unsigned long)fi - size_diff);
4612
4613 if (btrfs_file_extent_type(leaf, fi) ==
4614 BTRFS_FILE_EXTENT_INLINE) {
4615 ptr = btrfs_item_ptr_offset(leaf, slot);
4616 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004617 (unsigned long)fi,
4618 offsetof(struct btrfs_file_extent_item,
Chris Mason179e29e2007-11-01 11:28:41 -04004619 disk_bytenr));
4620 }
4621 }
4622
4623 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4624 data_end + size_diff, btrfs_leaf_data(leaf) +
4625 data_end, old_data_start - data_end);
4626
4627 offset = btrfs_disk_key_offset(&disk_key);
4628 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4629 btrfs_set_item_key(leaf, &disk_key, slot);
4630 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004631 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004632 }
Chris Mason5f39d392007-10-15 16:14:19 -04004633
Ross Kirkdd3cc162013-09-16 15:58:09 +01004634 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004635 btrfs_set_item_size(leaf, item, new_size);
4636 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004637
Chris Mason5f39d392007-10-15 16:14:19 -04004638 if (btrfs_leaf_free_space(root, leaf) < 0) {
4639 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004640 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004641 }
Chris Masonb18c6682007-04-17 13:26:50 -04004642}
4643
Chris Masond352ac62008-09-29 15:18:18 -04004644/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004645 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004646 */
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00004647void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004648 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004649{
Chris Mason6567e832007-04-16 09:22:45 -04004650 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004651 struct extent_buffer *leaf;
4652 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004653 u32 nritems;
4654 unsigned int data_end;
4655 unsigned int old_data;
4656 unsigned int old_size;
4657 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004658 struct btrfs_map_token token;
4659
4660 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004661
Chris Mason5f39d392007-10-15 16:14:19 -04004662 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004663
Chris Mason5f39d392007-10-15 16:14:19 -04004664 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004665 data_end = leaf_data_end(root, leaf);
4666
Chris Mason5f39d392007-10-15 16:14:19 -04004667 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4668 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004669 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004670 }
Chris Mason6567e832007-04-16 09:22:45 -04004671 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004672 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004673
4674 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004675 if (slot >= nritems) {
4676 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004677 btrfs_crit(root->fs_info, "slot %d too large, nritems %d",
Chris Masond3977122009-01-05 21:25:51 -05004678 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004679 BUG_ON(1);
4680 }
Chris Mason6567e832007-04-16 09:22:45 -04004681
4682 /*
4683 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4684 */
4685 /* first correct the data pointers */
4686 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004687 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004688 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004689
Chris Masoncfed81a2012-03-03 07:40:03 -05004690 ioff = btrfs_token_item_offset(leaf, item, &token);
4691 btrfs_set_token_item_offset(leaf, item,
4692 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004693 }
Chris Mason5f39d392007-10-15 16:14:19 -04004694
Chris Mason6567e832007-04-16 09:22:45 -04004695 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004696 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004697 data_end - data_size, btrfs_leaf_data(leaf) +
4698 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004699
Chris Mason6567e832007-04-16 09:22:45 -04004700 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004701 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004702 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004703 btrfs_set_item_size(leaf, item, old_size + data_size);
4704 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004705
Chris Mason5f39d392007-10-15 16:14:19 -04004706 if (btrfs_leaf_free_space(root, leaf) < 0) {
4707 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004708 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004709 }
Chris Mason6567e832007-04-16 09:22:45 -04004710}
4711
Chris Mason74123bd2007-02-02 11:05:29 -05004712/*
Chris Mason44871b12009-03-13 10:04:31 -04004713 * this is a helper for btrfs_insert_empty_items, the main goal here is
4714 * to save stack depth by doing the bulk of the work in a function
4715 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004716 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004717void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004718 struct btrfs_key *cpu_key, u32 *data_size,
4719 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004720{
Chris Mason5f39d392007-10-15 16:14:19 -04004721 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004722 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004723 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004724 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004725 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004726 struct extent_buffer *leaf;
4727 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004728 struct btrfs_map_token token;
4729
Filipe Manana24cdc842014-07-28 19:34:35 +01004730 if (path->slots[0] == 0) {
4731 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
4732 fixup_low_keys(root, path, &disk_key, 1);
4733 }
4734 btrfs_unlock_up_safe(path, 1);
4735
Chris Masoncfed81a2012-03-03 07:40:03 -05004736 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004737
Chris Mason5f39d392007-10-15 16:14:19 -04004738 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004739 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004740
Chris Mason5f39d392007-10-15 16:14:19 -04004741 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004742 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004743
Chris Masonf25956c2008-09-12 15:32:53 -04004744 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004745 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004746 btrfs_crit(root->fs_info, "not enough freespace need %u have %d",
Chris Mason9c583092008-01-29 15:15:18 -05004747 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004748 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004749 }
Chris Mason5f39d392007-10-15 16:14:19 -04004750
Chris Masonbe0e5c02007-01-26 15:51:26 -05004751 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004752 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004753
Chris Mason5f39d392007-10-15 16:14:19 -04004754 if (old_data < data_end) {
4755 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004756 btrfs_crit(root->fs_info, "slot %d old_data %d data_end %d",
Chris Mason5f39d392007-10-15 16:14:19 -04004757 slot, old_data, data_end);
4758 BUG_ON(1);
4759 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004760 /*
4761 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4762 */
4763 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004764 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004765 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004766
Ross Kirkdd3cc162013-09-16 15:58:09 +01004767 item = btrfs_item_nr( i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004768 ioff = btrfs_token_item_offset(leaf, item, &token);
4769 btrfs_set_token_item_offset(leaf, item,
4770 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004771 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004772 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004773 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004774 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004775 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004776
4777 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004778 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004779 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004780 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004781 data_end = old_data;
4782 }
Chris Mason5f39d392007-10-15 16:14:19 -04004783
Chris Mason62e27492007-03-15 12:56:47 -04004784 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004785 for (i = 0; i < nr; i++) {
4786 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4787 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004788 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004789 btrfs_set_token_item_offset(leaf, item,
4790 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004791 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004792 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004793 }
Chris Mason44871b12009-03-13 10:04:31 -04004794
Chris Mason9c583092008-01-29 15:15:18 -05004795 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004796 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004797
Chris Mason5f39d392007-10-15 16:14:19 -04004798 if (btrfs_leaf_free_space(root, leaf) < 0) {
4799 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004800 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004801 }
Chris Mason44871b12009-03-13 10:04:31 -04004802}
4803
4804/*
4805 * Given a key and some data, insert items into the tree.
4806 * This does all the path init required, making room in the tree if needed.
4807 */
4808int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4809 struct btrfs_root *root,
4810 struct btrfs_path *path,
4811 struct btrfs_key *cpu_key, u32 *data_size,
4812 int nr)
4813{
Chris Mason44871b12009-03-13 10:04:31 -04004814 int ret = 0;
4815 int slot;
4816 int i;
4817 u32 total_size = 0;
4818 u32 total_data = 0;
4819
4820 for (i = 0; i < nr; i++)
4821 total_data += data_size[i];
4822
4823 total_size = total_data + (nr * sizeof(struct btrfs_item));
4824 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4825 if (ret == 0)
4826 return -EEXIST;
4827 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004828 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004829
Chris Mason44871b12009-03-13 10:04:31 -04004830 slot = path->slots[0];
4831 BUG_ON(slot < 0);
4832
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004833 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004834 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004835 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004836}
4837
4838/*
4839 * Given a key and some data, insert an item into the tree.
4840 * This does all the path init required, making room in the tree if needed.
4841 */
Chris Masone089f052007-03-16 16:20:31 -04004842int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4843 *root, struct btrfs_key *cpu_key, void *data, u32
4844 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004845{
4846 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004847 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004848 struct extent_buffer *leaf;
4849 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004850
Chris Mason2c90e5d2007-04-02 10:50:19 -04004851 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004852 if (!path)
4853 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004854 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004855 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004856 leaf = path->nodes[0];
4857 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4858 write_extent_buffer(leaf, data, ptr, data_size);
4859 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004860 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004861 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004862 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004863}
4864
Chris Mason74123bd2007-02-02 11:05:29 -05004865/*
Chris Mason5de08d72007-02-24 06:24:44 -05004866 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004867 *
Chris Masond352ac62008-09-29 15:18:18 -04004868 * the tree should have been previously balanced so the deletion does not
4869 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004870 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004871static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4872 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004873{
Chris Mason5f39d392007-10-15 16:14:19 -04004874 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004875 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004876 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004877
Chris Mason5f39d392007-10-15 16:14:19 -04004878 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004879 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004880 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004881 tree_mod_log_eb_move(root->fs_info, parent, slot,
4882 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004883 memmove_extent_buffer(parent,
4884 btrfs_node_key_ptr_offset(slot),
4885 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004886 sizeof(struct btrfs_key_ptr) *
4887 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004888 } else if (level) {
4889 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04004890 MOD_LOG_KEY_REMOVE, GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004891 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004892 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004893
Chris Mason7518a232007-03-12 12:01:18 -04004894 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004895 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004896 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004897 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004898 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004899 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004900 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004901 struct btrfs_disk_key disk_key;
4902
4903 btrfs_node_key(parent, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004904 fixup_low_keys(root, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004905 }
Chris Masond6025572007-03-30 14:27:56 -04004906 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004907}
4908
Chris Mason74123bd2007-02-02 11:05:29 -05004909/*
Chris Mason323ac952008-10-01 19:05:46 -04004910 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004911 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004912 *
4913 * This deletes the pointer in path->nodes[1] and frees the leaf
4914 * block extent. zero is returned if it all worked out, < 0 otherwise.
4915 *
4916 * The path must have already been setup for deleting the leaf, including
4917 * all the proper balancing. path->nodes[1] must be locked.
4918 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004919static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4920 struct btrfs_root *root,
4921 struct btrfs_path *path,
4922 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004923{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004924 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004925 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004926
Chris Mason4d081c42009-02-04 09:31:28 -05004927 /*
4928 * btrfs_free_extent is expensive, we want to make sure we
4929 * aren't holding any locks when we call it
4930 */
4931 btrfs_unlock_up_safe(path, 0);
4932
Yan, Zhengf0486c62010-05-16 10:46:25 -04004933 root_sub_used(root, leaf->len);
4934
Josef Bacik3083ee22012-03-09 16:01:49 -05004935 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004936 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004937 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004938}
4939/*
Chris Mason74123bd2007-02-02 11:05:29 -05004940 * delete the item at the leaf level in path. If that empties
4941 * the leaf, remove it from the tree
4942 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004943int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4944 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004945{
Chris Mason5f39d392007-10-15 16:14:19 -04004946 struct extent_buffer *leaf;
4947 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004948 int last_off;
4949 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004950 int ret = 0;
4951 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004952 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004953 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004954 struct btrfs_map_token token;
4955
4956 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004957
Chris Mason5f39d392007-10-15 16:14:19 -04004958 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004959 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4960
4961 for (i = 0; i < nr; i++)
4962 dsize += btrfs_item_size_nr(leaf, slot + i);
4963
Chris Mason5f39d392007-10-15 16:14:19 -04004964 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004965
Chris Mason85e21ba2008-01-29 15:11:36 -05004966 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004967 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004968
4969 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004970 data_end + dsize,
4971 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004972 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004973
Chris Mason85e21ba2008-01-29 15:11:36 -05004974 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004975 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004976
Ross Kirkdd3cc162013-09-16 15:58:09 +01004977 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004978 ioff = btrfs_token_item_offset(leaf, item, &token);
4979 btrfs_set_token_item_offset(leaf, item,
4980 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004981 }
Chris Masondb945352007-10-15 16:15:53 -04004982
Chris Mason5f39d392007-10-15 16:14:19 -04004983 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004984 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004985 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004986 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004987 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004988 btrfs_set_header_nritems(leaf, nritems - nr);
4989 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004990
Chris Mason74123bd2007-02-02 11:05:29 -05004991 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004992 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004993 if (leaf == root->node) {
4994 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004995 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004996 btrfs_set_path_blocking(path);
4997 clean_tree_block(trans, root, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004998 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004999 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05005000 } else {
Chris Mason7518a232007-03-12 12:01:18 -04005001 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005002 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005003 struct btrfs_disk_key disk_key;
5004
5005 btrfs_item_key(leaf, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00005006 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005007 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005008
Chris Mason74123bd2007-02-02 11:05:29 -05005009 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04005010 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005011 /* push_leaf_left fixes the path.
5012 * make sure the path still points to our leaf
5013 * for possible call to del_ptr below
5014 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005015 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04005016 extent_buffer_get(leaf);
5017
Chris Masonb9473432009-03-13 11:00:37 -04005018 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005019 wret = push_leaf_left(trans, root, path, 1, 1,
5020 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005021 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005022 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005023
5024 if (path->nodes[0] == leaf &&
5025 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005026 wret = push_leaf_right(trans, root, path, 1,
5027 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005028 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005029 ret = wret;
5030 }
Chris Mason5f39d392007-10-15 16:14:19 -04005031
5032 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005033 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005034 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005035 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005036 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005037 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005038 /* if we're still in the path, make sure
5039 * we're dirty. Otherwise, one of the
5040 * push_leaf functions must have already
5041 * dirtied this buffer
5042 */
5043 if (path->nodes[0] == leaf)
5044 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005045 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005046 }
Chris Masond5719762007-03-23 10:01:08 -04005047 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005048 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005049 }
5050 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005051 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005052}
5053
Chris Mason97571fd2007-02-24 13:39:08 -05005054/*
Chris Mason925baed2008-06-25 16:01:30 -04005055 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005056 * returns 0 if it found something or 1 if there are no lesser leaves.
5057 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005058 *
5059 * This may release the path, and so you may lose any locks held at the
5060 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005061 */
Josef Bacik16e75492013-10-22 12:18:51 -04005062int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005063{
Chris Mason925baed2008-06-25 16:01:30 -04005064 struct btrfs_key key;
5065 struct btrfs_disk_key found_key;
5066 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005067
Chris Mason925baed2008-06-25 16:01:30 -04005068 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005069
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005070 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005071 key.offset--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005072 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005073 key.type--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005074 key.offset = (u64)-1;
5075 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005076 key.objectid--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005077 key.type = (u8)-1;
5078 key.offset = (u64)-1;
5079 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005080 return 1;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005081 }
Chris Mason7bb86312007-12-11 09:25:06 -05005082
David Sterbab3b4aa72011-04-21 01:20:15 +02005083 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005084 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5085 if (ret < 0)
5086 return ret;
5087 btrfs_item_key(path->nodes[0], &found_key, 0);
5088 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005089 /*
5090 * We might have had an item with the previous key in the tree right
5091 * before we released our path. And after we released our path, that
5092 * item might have been pushed to the first slot (0) of the leaf we
5093 * were holding due to a tree balance. Alternatively, an item with the
5094 * previous key can exist as the only element of a leaf (big fat item).
5095 * Therefore account for these 2 cases, so that our callers (like
5096 * btrfs_previous_item) don't miss an existing item with a key matching
5097 * the previous key we computed above.
5098 */
5099 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005100 return 0;
5101 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005102}
5103
Chris Mason3f157a22008-06-25 16:01:31 -04005104/*
5105 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005106 * for nodes or leaves that are have a minimum transaction id.
5107 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005108 *
5109 * This does not cow, but it does stuff the starting key it finds back
5110 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5111 * key and get a writable path.
5112 *
5113 * This does lock as it descends, and path->keep_locks should be set
5114 * to 1 by the caller.
5115 *
5116 * This honors path->lowest_level to prevent descent past a given level
5117 * of the tree.
5118 *
Chris Masond352ac62008-09-29 15:18:18 -04005119 * min_trans indicates the oldest transaction that you are interested
5120 * in walking through. Any nodes or leaves older than min_trans are
5121 * skipped over (without reading them).
5122 *
Chris Mason3f157a22008-06-25 16:01:31 -04005123 * returns zero if something useful was found, < 0 on error and 1 if there
5124 * was nothing in the tree that matched the search criteria.
5125 */
5126int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005127 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005128 u64 min_trans)
5129{
5130 struct extent_buffer *cur;
5131 struct btrfs_key found_key;
5132 int slot;
Yan96524802008-07-24 12:19:49 -04005133 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005134 u32 nritems;
5135 int level;
5136 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005137 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005138
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005139 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005140again:
Chris Masonbd681512011-07-16 15:23:14 -04005141 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005142 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005143 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005144 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005145 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005146
5147 if (btrfs_header_generation(cur) < min_trans) {
5148 ret = 1;
5149 goto out;
5150 }
Chris Masond3977122009-01-05 21:25:51 -05005151 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005152 nritems = btrfs_header_nritems(cur);
5153 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04005154 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005155
Chris Mason323ac952008-10-01 19:05:46 -04005156 /* at the lowest level, we're done, setup the path and exit */
5157 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005158 if (slot >= nritems)
5159 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005160 ret = 0;
5161 path->slots[level] = slot;
5162 btrfs_item_key_to_cpu(cur, &found_key, slot);
5163 goto out;
5164 }
Yan96524802008-07-24 12:19:49 -04005165 if (sret && slot > 0)
5166 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005167 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005168 * check this node pointer against the min_trans parameters.
5169 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005170 */
Chris Masond3977122009-01-05 21:25:51 -05005171 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005172 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005173
Chris Mason3f157a22008-06-25 16:01:31 -04005174 gen = btrfs_node_ptr_generation(cur, slot);
5175 if (gen < min_trans) {
5176 slot++;
5177 continue;
5178 }
Eric Sandeende78b512013-01-31 18:21:12 +00005179 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005180 }
Chris Masone02119d2008-09-05 16:13:11 -04005181find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005182 /*
5183 * we didn't find a candidate key in this node, walk forward
5184 * and find another one
5185 */
5186 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005187 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005188 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005189 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005190 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005191 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005192 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005193 goto again;
5194 } else {
5195 goto out;
5196 }
5197 }
5198 /* save our key for returning back */
5199 btrfs_node_key_to_cpu(cur, &found_key, slot);
5200 path->slots[level] = slot;
5201 if (level == path->lowest_level) {
5202 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005203 goto out;
5204 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005205 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005206 cur = read_node_slot(root, cur, slot);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005207 BUG_ON(!cur); /* -ENOMEM */
Chris Mason3f157a22008-06-25 16:01:31 -04005208
Chris Masonbd681512011-07-16 15:23:14 -04005209 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005210
Chris Masonbd681512011-07-16 15:23:14 -04005211 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005212 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005213 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04005214 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04005215 }
5216out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005217 path->keep_locks = keep_locks;
5218 if (ret == 0) {
5219 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5220 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005221 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005222 }
Chris Mason3f157a22008-06-25 16:01:31 -04005223 return ret;
5224}
5225
Alexander Block70698302012-06-05 21:07:48 +02005226static void tree_move_down(struct btrfs_root *root,
5227 struct btrfs_path *path,
5228 int *level, int root_level)
5229{
Chris Mason74dd17f2012-08-07 16:25:13 -04005230 BUG_ON(*level == 0);
Alexander Block70698302012-06-05 21:07:48 +02005231 path->nodes[*level - 1] = read_node_slot(root, path->nodes[*level],
5232 path->slots[*level]);
5233 path->slots[*level - 1] = 0;
5234 (*level)--;
5235}
5236
5237static int tree_move_next_or_upnext(struct btrfs_root *root,
5238 struct btrfs_path *path,
5239 int *level, int root_level)
5240{
5241 int ret = 0;
5242 int nritems;
5243 nritems = btrfs_header_nritems(path->nodes[*level]);
5244
5245 path->slots[*level]++;
5246
Chris Mason74dd17f2012-08-07 16:25:13 -04005247 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02005248 if (*level == root_level)
5249 return -1;
5250
5251 /* move upnext */
5252 path->slots[*level] = 0;
5253 free_extent_buffer(path->nodes[*level]);
5254 path->nodes[*level] = NULL;
5255 (*level)++;
5256 path->slots[*level]++;
5257
5258 nritems = btrfs_header_nritems(path->nodes[*level]);
5259 ret = 1;
5260 }
5261 return ret;
5262}
5263
5264/*
5265 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5266 * or down.
5267 */
5268static int tree_advance(struct btrfs_root *root,
5269 struct btrfs_path *path,
5270 int *level, int root_level,
5271 int allow_down,
5272 struct btrfs_key *key)
5273{
5274 int ret;
5275
5276 if (*level == 0 || !allow_down) {
5277 ret = tree_move_next_or_upnext(root, path, level, root_level);
5278 } else {
5279 tree_move_down(root, path, level, root_level);
5280 ret = 0;
5281 }
5282 if (ret >= 0) {
5283 if (*level == 0)
5284 btrfs_item_key_to_cpu(path->nodes[*level], key,
5285 path->slots[*level]);
5286 else
5287 btrfs_node_key_to_cpu(path->nodes[*level], key,
5288 path->slots[*level]);
5289 }
5290 return ret;
5291}
5292
5293static int tree_compare_item(struct btrfs_root *left_root,
5294 struct btrfs_path *left_path,
5295 struct btrfs_path *right_path,
5296 char *tmp_buf)
5297{
5298 int cmp;
5299 int len1, len2;
5300 unsigned long off1, off2;
5301
5302 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5303 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5304 if (len1 != len2)
5305 return 1;
5306
5307 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5308 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5309 right_path->slots[0]);
5310
5311 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5312
5313 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5314 if (cmp)
5315 return 1;
5316 return 0;
5317}
5318
5319#define ADVANCE 1
5320#define ADVANCE_ONLY_NEXT -1
5321
5322/*
5323 * This function compares two trees and calls the provided callback for
5324 * every changed/new/deleted item it finds.
5325 * If shared tree blocks are encountered, whole subtrees are skipped, making
5326 * the compare pretty fast on snapshotted subvolumes.
5327 *
5328 * This currently works on commit roots only. As commit roots are read only,
5329 * we don't do any locking. The commit roots are protected with transactions.
5330 * Transactions are ended and rejoined when a commit is tried in between.
5331 *
5332 * This function checks for modifications done to the trees while comparing.
5333 * If it detects a change, it aborts immediately.
5334 */
5335int btrfs_compare_trees(struct btrfs_root *left_root,
5336 struct btrfs_root *right_root,
5337 btrfs_changed_cb_t changed_cb, void *ctx)
5338{
5339 int ret;
5340 int cmp;
Alexander Block70698302012-06-05 21:07:48 +02005341 struct btrfs_path *left_path = NULL;
5342 struct btrfs_path *right_path = NULL;
5343 struct btrfs_key left_key;
5344 struct btrfs_key right_key;
5345 char *tmp_buf = NULL;
5346 int left_root_level;
5347 int right_root_level;
5348 int left_level;
5349 int right_level;
5350 int left_end_reached;
5351 int right_end_reached;
5352 int advance_left;
5353 int advance_right;
5354 u64 left_blockptr;
5355 u64 right_blockptr;
Filipe Manana6baa4292014-02-20 21:15:25 +00005356 u64 left_gen;
5357 u64 right_gen;
Alexander Block70698302012-06-05 21:07:48 +02005358
5359 left_path = btrfs_alloc_path();
5360 if (!left_path) {
5361 ret = -ENOMEM;
5362 goto out;
5363 }
5364 right_path = btrfs_alloc_path();
5365 if (!right_path) {
5366 ret = -ENOMEM;
5367 goto out;
5368 }
5369
David Sterba707e8a02014-06-04 19:22:26 +02005370 tmp_buf = kmalloc(left_root->nodesize, GFP_NOFS);
Alexander Block70698302012-06-05 21:07:48 +02005371 if (!tmp_buf) {
5372 ret = -ENOMEM;
5373 goto out;
5374 }
5375
5376 left_path->search_commit_root = 1;
5377 left_path->skip_locking = 1;
5378 right_path->search_commit_root = 1;
5379 right_path->skip_locking = 1;
5380
Alexander Block70698302012-06-05 21:07:48 +02005381 /*
5382 * Strategy: Go to the first items of both trees. Then do
5383 *
5384 * If both trees are at level 0
5385 * Compare keys of current items
5386 * If left < right treat left item as new, advance left tree
5387 * and repeat
5388 * If left > right treat right item as deleted, advance right tree
5389 * and repeat
5390 * If left == right do deep compare of items, treat as changed if
5391 * needed, advance both trees and repeat
5392 * If both trees are at the same level but not at level 0
5393 * Compare keys of current nodes/leafs
5394 * If left < right advance left tree and repeat
5395 * If left > right advance right tree and repeat
5396 * If left == right compare blockptrs of the next nodes/leafs
5397 * If they match advance both trees but stay at the same level
5398 * and repeat
5399 * If they don't match advance both trees while allowing to go
5400 * deeper and repeat
5401 * If tree levels are different
5402 * Advance the tree that needs it and repeat
5403 *
5404 * Advancing a tree means:
5405 * If we are at level 0, try to go to the next slot. If that's not
5406 * possible, go one level up and repeat. Stop when we found a level
5407 * where we could go to the next slot. We may at this point be on a
5408 * node or a leaf.
5409 *
5410 * If we are not at level 0 and not on shared tree blocks, go one
5411 * level deeper.
5412 *
5413 * If we are not at level 0 and on shared tree blocks, go one slot to
5414 * the right if possible or go up and right.
5415 */
5416
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005417 down_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005418 left_level = btrfs_header_level(left_root->commit_root);
5419 left_root_level = left_level;
5420 left_path->nodes[left_level] = left_root->commit_root;
5421 extent_buffer_get(left_path->nodes[left_level]);
5422
5423 right_level = btrfs_header_level(right_root->commit_root);
5424 right_root_level = right_level;
5425 right_path->nodes[right_level] = right_root->commit_root;
5426 extent_buffer_get(right_path->nodes[right_level]);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005427 up_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005428
5429 if (left_level == 0)
5430 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5431 &left_key, left_path->slots[left_level]);
5432 else
5433 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5434 &left_key, left_path->slots[left_level]);
5435 if (right_level == 0)
5436 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5437 &right_key, right_path->slots[right_level]);
5438 else
5439 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5440 &right_key, right_path->slots[right_level]);
5441
5442 left_end_reached = right_end_reached = 0;
5443 advance_left = advance_right = 0;
5444
5445 while (1) {
Alexander Block70698302012-06-05 21:07:48 +02005446 if (advance_left && !left_end_reached) {
5447 ret = tree_advance(left_root, left_path, &left_level,
5448 left_root_level,
5449 advance_left != ADVANCE_ONLY_NEXT,
5450 &left_key);
5451 if (ret < 0)
5452 left_end_reached = ADVANCE;
5453 advance_left = 0;
5454 }
5455 if (advance_right && !right_end_reached) {
5456 ret = tree_advance(right_root, right_path, &right_level,
5457 right_root_level,
5458 advance_right != ADVANCE_ONLY_NEXT,
5459 &right_key);
5460 if (ret < 0)
5461 right_end_reached = ADVANCE;
5462 advance_right = 0;
5463 }
5464
5465 if (left_end_reached && right_end_reached) {
5466 ret = 0;
5467 goto out;
5468 } else if (left_end_reached) {
5469 if (right_level == 0) {
5470 ret = changed_cb(left_root, right_root,
5471 left_path, right_path,
5472 &right_key,
5473 BTRFS_COMPARE_TREE_DELETED,
5474 ctx);
5475 if (ret < 0)
5476 goto out;
5477 }
5478 advance_right = ADVANCE;
5479 continue;
5480 } else if (right_end_reached) {
5481 if (left_level == 0) {
5482 ret = changed_cb(left_root, right_root,
5483 left_path, right_path,
5484 &left_key,
5485 BTRFS_COMPARE_TREE_NEW,
5486 ctx);
5487 if (ret < 0)
5488 goto out;
5489 }
5490 advance_left = ADVANCE;
5491 continue;
5492 }
5493
5494 if (left_level == 0 && right_level == 0) {
5495 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5496 if (cmp < 0) {
5497 ret = changed_cb(left_root, right_root,
5498 left_path, right_path,
5499 &left_key,
5500 BTRFS_COMPARE_TREE_NEW,
5501 ctx);
5502 if (ret < 0)
5503 goto out;
5504 advance_left = ADVANCE;
5505 } else if (cmp > 0) {
5506 ret = changed_cb(left_root, right_root,
5507 left_path, right_path,
5508 &right_key,
5509 BTRFS_COMPARE_TREE_DELETED,
5510 ctx);
5511 if (ret < 0)
5512 goto out;
5513 advance_right = ADVANCE;
5514 } else {
Josef Bacikba5e8f22013-08-16 16:52:55 -04005515 enum btrfs_compare_tree_result cmp;
5516
Chris Mason74dd17f2012-08-07 16:25:13 -04005517 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005518 ret = tree_compare_item(left_root, left_path,
5519 right_path, tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005520 if (ret)
5521 cmp = BTRFS_COMPARE_TREE_CHANGED;
5522 else
5523 cmp = BTRFS_COMPARE_TREE_SAME;
5524 ret = changed_cb(left_root, right_root,
5525 left_path, right_path,
5526 &left_key, cmp, ctx);
5527 if (ret < 0)
5528 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005529 advance_left = ADVANCE;
5530 advance_right = ADVANCE;
5531 }
5532 } else if (left_level == right_level) {
5533 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5534 if (cmp < 0) {
5535 advance_left = ADVANCE;
5536 } else if (cmp > 0) {
5537 advance_right = ADVANCE;
5538 } else {
5539 left_blockptr = btrfs_node_blockptr(
5540 left_path->nodes[left_level],
5541 left_path->slots[left_level]);
5542 right_blockptr = btrfs_node_blockptr(
5543 right_path->nodes[right_level],
5544 right_path->slots[right_level]);
Filipe Manana6baa4292014-02-20 21:15:25 +00005545 left_gen = btrfs_node_ptr_generation(
5546 left_path->nodes[left_level],
5547 left_path->slots[left_level]);
5548 right_gen = btrfs_node_ptr_generation(
5549 right_path->nodes[right_level],
5550 right_path->slots[right_level]);
5551 if (left_blockptr == right_blockptr &&
5552 left_gen == right_gen) {
Alexander Block70698302012-06-05 21:07:48 +02005553 /*
5554 * As we're on a shared block, don't
5555 * allow to go deeper.
5556 */
5557 advance_left = ADVANCE_ONLY_NEXT;
5558 advance_right = ADVANCE_ONLY_NEXT;
5559 } else {
5560 advance_left = ADVANCE;
5561 advance_right = ADVANCE;
5562 }
5563 }
5564 } else if (left_level < right_level) {
5565 advance_right = ADVANCE;
5566 } else {
5567 advance_left = ADVANCE;
5568 }
5569 }
5570
5571out:
5572 btrfs_free_path(left_path);
5573 btrfs_free_path(right_path);
5574 kfree(tmp_buf);
Alexander Block70698302012-06-05 21:07:48 +02005575 return ret;
5576}
5577
Chris Mason3f157a22008-06-25 16:01:31 -04005578/*
5579 * this is similar to btrfs_next_leaf, but does not try to preserve
5580 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005581 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005582 *
5583 * 0 is returned if another key is found, < 0 if there are any errors
5584 * and 1 is returned if there are no higher keys in the tree
5585 *
5586 * path->keep_locks should be set to 1 on the search made before
5587 * calling this function.
5588 */
Chris Masone7a84562008-06-25 16:01:31 -04005589int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005590 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005591{
Chris Masone7a84562008-06-25 16:01:31 -04005592 int slot;
5593 struct extent_buffer *c;
5594
Chris Mason934d3752008-12-08 16:43:10 -05005595 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005596 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005597 if (!path->nodes[level])
5598 return 1;
5599
5600 slot = path->slots[level] + 1;
5601 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005602next:
Chris Masone7a84562008-06-25 16:01:31 -04005603 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005604 int ret;
5605 int orig_lowest;
5606 struct btrfs_key cur_key;
5607 if (level + 1 >= BTRFS_MAX_LEVEL ||
5608 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005609 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005610
5611 if (path->locks[level + 1]) {
5612 level++;
5613 continue;
5614 }
5615
5616 slot = btrfs_header_nritems(c) - 1;
5617 if (level == 0)
5618 btrfs_item_key_to_cpu(c, &cur_key, slot);
5619 else
5620 btrfs_node_key_to_cpu(c, &cur_key, slot);
5621
5622 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005623 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005624 path->lowest_level = level;
5625 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5626 0, 0);
5627 path->lowest_level = orig_lowest;
5628 if (ret < 0)
5629 return ret;
5630
5631 c = path->nodes[level];
5632 slot = path->slots[level];
5633 if (ret == 0)
5634 slot++;
5635 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005636 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005637
Chris Masone7a84562008-06-25 16:01:31 -04005638 if (level == 0)
5639 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005640 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005641 u64 gen = btrfs_node_ptr_generation(c, slot);
5642
Chris Mason3f157a22008-06-25 16:01:31 -04005643 if (gen < min_trans) {
5644 slot++;
5645 goto next;
5646 }
Chris Masone7a84562008-06-25 16:01:31 -04005647 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005648 }
Chris Masone7a84562008-06-25 16:01:31 -04005649 return 0;
5650 }
5651 return 1;
5652}
5653
Chris Mason7bb86312007-12-11 09:25:06 -05005654/*
Chris Mason925baed2008-06-25 16:01:30 -04005655 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005656 * returns 0 if it found something or 1 if there are no greater leaves.
5657 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005658 */
Chris Mason234b63a2007-03-13 10:46:10 -04005659int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005660{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005661 return btrfs_next_old_leaf(root, path, 0);
5662}
5663
5664int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5665 u64 time_seq)
5666{
Chris Masond97e63b2007-02-20 16:40:44 -05005667 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005668 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005669 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005670 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005671 struct btrfs_key key;
5672 u32 nritems;
5673 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005674 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005675 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005676
5677 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005678 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005679 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005680
Chris Mason8e73f272009-04-03 10:14:18 -04005681 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5682again:
5683 level = 1;
5684 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005685 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005686 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005687
Chris Masona2135012008-06-25 16:01:30 -04005688 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005689 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005690
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005691 if (time_seq)
5692 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5693 else
5694 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005695 path->keep_locks = 0;
5696
5697 if (ret < 0)
5698 return ret;
5699
Chris Masona2135012008-06-25 16:01:30 -04005700 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005701 /*
5702 * by releasing the path above we dropped all our locks. A balance
5703 * could have added more items next to the key that used to be
5704 * at the very end of the block. So, check again here and
5705 * advance the path if there are now more items available.
5706 */
Chris Masona2135012008-06-25 16:01:30 -04005707 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005708 if (ret == 0)
5709 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005710 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005711 goto done;
5712 }
Liu Bo0b43e042014-06-09 11:04:49 +08005713 /*
5714 * So the above check misses one case:
5715 * - after releasing the path above, someone has removed the item that
5716 * used to be at the very end of the block, and balance between leafs
5717 * gets another one with bigger key.offset to replace it.
5718 *
5719 * This one should be returned as well, or we can get leaf corruption
5720 * later(esp. in __btrfs_drop_extents()).
5721 *
5722 * And a bit more explanation about this check,
5723 * with ret > 0, the key isn't found, the path points to the slot
5724 * where it should be inserted, so the path->slots[0] item must be the
5725 * bigger one.
5726 */
5727 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5728 ret = 0;
5729 goto done;
5730 }
Chris Masond97e63b2007-02-20 16:40:44 -05005731
Chris Masond3977122009-01-05 21:25:51 -05005732 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005733 if (!path->nodes[level]) {
5734 ret = 1;
5735 goto done;
5736 }
Chris Mason5f39d392007-10-15 16:14:19 -04005737
Chris Masond97e63b2007-02-20 16:40:44 -05005738 slot = path->slots[level] + 1;
5739 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005740 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005741 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005742 if (level == BTRFS_MAX_LEVEL) {
5743 ret = 1;
5744 goto done;
5745 }
Chris Masond97e63b2007-02-20 16:40:44 -05005746 continue;
5747 }
Chris Mason5f39d392007-10-15 16:14:19 -04005748
Chris Mason925baed2008-06-25 16:01:30 -04005749 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005750 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005751 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005752 }
Chris Mason5f39d392007-10-15 16:14:19 -04005753
Chris Mason8e73f272009-04-03 10:14:18 -04005754 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005755 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005756 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005757 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005758 if (ret == -EAGAIN)
5759 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005760
Chris Mason76a05b32009-05-14 13:24:30 -04005761 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005762 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005763 goto done;
5764 }
5765
Chris Mason5cd57b22008-06-25 16:01:30 -04005766 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005767 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005768 if (!ret && time_seq) {
5769 /*
5770 * If we don't get the lock, we may be racing
5771 * with push_leaf_left, holding that lock while
5772 * itself waiting for the leaf we've currently
5773 * locked. To solve this situation, we give up
5774 * on our lock and cycle.
5775 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005776 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005777 btrfs_release_path(path);
5778 cond_resched();
5779 goto again;
5780 }
Chris Mason8e73f272009-04-03 10:14:18 -04005781 if (!ret) {
5782 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005783 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005784 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005785 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005786 }
Chris Mason31533fb2011-07-26 16:01:59 -04005787 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005788 }
Chris Masond97e63b2007-02-20 16:40:44 -05005789 break;
5790 }
5791 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005792 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005793 level--;
5794 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005795 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005796 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005797
Chris Mason5f39d392007-10-15 16:14:19 -04005798 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005799 path->nodes[level] = next;
5800 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005801 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005802 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005803 if (!level)
5804 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005805
Chris Mason8e73f272009-04-03 10:14:18 -04005806 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005807 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005808 if (ret == -EAGAIN)
5809 goto again;
5810
Chris Mason76a05b32009-05-14 13:24:30 -04005811 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005812 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005813 goto done;
5814 }
5815
Chris Mason5cd57b22008-06-25 16:01:30 -04005816 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005817 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005818 if (!ret) {
5819 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005820 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005821 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005822 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005823 }
Chris Mason31533fb2011-07-26 16:01:59 -04005824 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005825 }
Chris Masond97e63b2007-02-20 16:40:44 -05005826 }
Chris Mason8e73f272009-04-03 10:14:18 -04005827 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005828done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005829 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005830 path->leave_spinning = old_spinning;
5831 if (!old_spinning)
5832 btrfs_set_path_blocking(path);
5833
5834 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005835}
Chris Mason0b86a832008-03-24 15:01:56 -04005836
Chris Mason3f157a22008-06-25 16:01:31 -04005837/*
5838 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5839 * searching until it gets past min_objectid or finds an item of 'type'
5840 *
5841 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5842 */
Chris Mason0b86a832008-03-24 15:01:56 -04005843int btrfs_previous_item(struct btrfs_root *root,
5844 struct btrfs_path *path, u64 min_objectid,
5845 int type)
5846{
5847 struct btrfs_key found_key;
5848 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005849 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005850 int ret;
5851
Chris Masond3977122009-01-05 21:25:51 -05005852 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005853 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005854 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005855 ret = btrfs_prev_leaf(root, path);
5856 if (ret != 0)
5857 return ret;
5858 } else {
5859 path->slots[0]--;
5860 }
5861 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005862 nritems = btrfs_header_nritems(leaf);
5863 if (nritems == 0)
5864 return 1;
5865 if (path->slots[0] == nritems)
5866 path->slots[0]--;
5867
Chris Mason0b86a832008-03-24 15:01:56 -04005868 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005869 if (found_key.objectid < min_objectid)
5870 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005871 if (found_key.type == type)
5872 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005873 if (found_key.objectid == min_objectid &&
5874 found_key.type < type)
5875 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005876 }
5877 return 1;
5878}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005879
5880/*
5881 * search in extent tree to find a previous Metadata/Data extent item with
5882 * min objecitd.
5883 *
5884 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5885 */
5886int btrfs_previous_extent_item(struct btrfs_root *root,
5887 struct btrfs_path *path, u64 min_objectid)
5888{
5889 struct btrfs_key found_key;
5890 struct extent_buffer *leaf;
5891 u32 nritems;
5892 int ret;
5893
5894 while (1) {
5895 if (path->slots[0] == 0) {
5896 btrfs_set_path_blocking(path);
5897 ret = btrfs_prev_leaf(root, path);
5898 if (ret != 0)
5899 return ret;
5900 } else {
5901 path->slots[0]--;
5902 }
5903 leaf = path->nodes[0];
5904 nritems = btrfs_header_nritems(leaf);
5905 if (nritems == 0)
5906 return 1;
5907 if (path->slots[0] == nritems)
5908 path->slots[0]--;
5909
5910 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5911 if (found_key.objectid < min_objectid)
5912 break;
5913 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5914 found_key.type == BTRFS_METADATA_ITEM_KEY)
5915 return 0;
5916 if (found_key.objectid == min_objectid &&
5917 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5918 break;
5919 }
5920 return 1;
5921}