blob: 1ef6b67f893a5658d7cd3b2d1ab80fa062c3474f [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>
David Sterbaadf02122017-05-31 19:44:31 +020022#include <linux/mm.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050023#include "ctree.h"
24#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040025#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040026#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040027#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050028
Chris Masone089f052007-03-16 16:20:31 -040029static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
30 *root, struct btrfs_path *path, int level);
Omar Sandoval310712b2017-01-17 23:24:37 -080031static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root *root,
32 const struct btrfs_key *ins_key, struct btrfs_path *path,
33 int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040034static int push_node_left(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040035 struct btrfs_fs_info *fs_info,
36 struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040037 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040038static int balance_node_right(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040039 struct btrfs_fs_info *fs_info,
Chris Mason5f39d392007-10-15 16:14:19 -040040 struct extent_buffer *dst_buf,
41 struct extent_buffer *src_buf);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +000042static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
43 int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050044
Chris Mason2c90e5d2007-04-02 10:50:19 -040045struct btrfs_path *btrfs_alloc_path(void)
46{
Masahiro Yamadae2c89902016-09-13 04:35:52 +090047 return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Mason2c90e5d2007-04-02 10:50:19 -040048}
49
Chris Masonb4ce94d2009-02-04 09:25:08 -050050/*
51 * set all locked nodes in the path to blocking locks. This should
52 * be done before scheduling
53 */
54noinline void btrfs_set_path_blocking(struct btrfs_path *p)
55{
56 int i;
57 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040058 if (!p->nodes[i] || !p->locks[i])
59 continue;
60 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
61 if (p->locks[i] == BTRFS_READ_LOCK)
62 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
63 else if (p->locks[i] == BTRFS_WRITE_LOCK)
64 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050065 }
66}
67
68/*
69 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050070 *
71 * held is used to keep lockdep happy, when lockdep is enabled
72 * we set held to a blocking lock before we go around and
73 * retake all the spinlocks in the path. You can safely use NULL
74 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050075 */
Chris Mason4008c042009-02-12 14:09:45 -050076noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040077 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050078{
79 int i;
Chris Mason4008c042009-02-12 14:09:45 -050080
Chris Masonbd681512011-07-16 15:23:14 -040081 if (held) {
82 btrfs_set_lock_blocking_rw(held, held_rw);
83 if (held_rw == BTRFS_WRITE_LOCK)
84 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
85 else if (held_rw == BTRFS_READ_LOCK)
86 held_rw = BTRFS_READ_LOCK_BLOCKING;
87 }
Chris Mason4008c042009-02-12 14:09:45 -050088 btrfs_set_path_blocking(p);
Chris Mason4008c042009-02-12 14:09:45 -050089
90 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -040091 if (p->nodes[i] && p->locks[i]) {
92 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
93 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
94 p->locks[i] = BTRFS_WRITE_LOCK;
95 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
96 p->locks[i] = BTRFS_READ_LOCK;
97 }
Chris Masonb4ce94d2009-02-04 09:25:08 -050098 }
Chris Mason4008c042009-02-12 14:09:45 -050099
Chris Mason4008c042009-02-12 14:09:45 -0500100 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400101 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500102}
103
Chris Masond352ac62008-09-29 15:18:18 -0400104/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400105void btrfs_free_path(struct btrfs_path *p)
106{
Jesper Juhlff175d52010-12-25 21:22:30 +0000107 if (!p)
108 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200109 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400110 kmem_cache_free(btrfs_path_cachep, p);
111}
112
Chris Masond352ac62008-09-29 15:18:18 -0400113/*
114 * path release drops references on the extent buffers in the path
115 * and it drops any locks held by this path
116 *
117 * It is safe to call this on paths that no locks or extent buffers held.
118 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200119noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500120{
121 int i;
Chris Masona2135012008-06-25 16:01:30 -0400122
Chris Mason234b63a2007-03-13 10:46:10 -0400123 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400124 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500125 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400126 continue;
127 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400128 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400129 p->locks[i] = 0;
130 }
Chris Mason5f39d392007-10-15 16:14:19 -0400131 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400132 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500133 }
134}
135
Chris Masond352ac62008-09-29 15:18:18 -0400136/*
137 * safely gets a reference on the root node of a tree. A lock
138 * is not taken, so a concurrent writer may put a different node
139 * at the root of the tree. See btrfs_lock_root_node for the
140 * looping required.
141 *
142 * The extent buffer returned by this has a reference taken, so
143 * it won't disappear. It may stop being the root of the tree
144 * at any time because there are no locks held.
145 */
Chris Mason925baed2008-06-25 16:01:30 -0400146struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
147{
148 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400149
Josef Bacik3083ee22012-03-09 16:01:49 -0500150 while (1) {
151 rcu_read_lock();
152 eb = rcu_dereference(root->node);
153
154 /*
155 * RCU really hurts here, we could free up the root node because
Nicholas D Steeves01327612016-05-19 21:18:45 -0400156 * it was COWed but we may not get the new root node yet so do
Josef Bacik3083ee22012-03-09 16:01:49 -0500157 * the inc_not_zero dance and if it doesn't work then
158 * synchronize_rcu and try again.
159 */
160 if (atomic_inc_not_zero(&eb->refs)) {
161 rcu_read_unlock();
162 break;
163 }
164 rcu_read_unlock();
165 synchronize_rcu();
166 }
Chris Mason925baed2008-06-25 16:01:30 -0400167 return eb;
168}
169
Chris Masond352ac62008-09-29 15:18:18 -0400170/* loop around taking references on and locking the root node of the
171 * tree until you end up with a lock on the root. A locked buffer
172 * is returned, with a reference held.
173 */
Chris Mason925baed2008-06-25 16:01:30 -0400174struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
175{
176 struct extent_buffer *eb;
177
Chris Masond3977122009-01-05 21:25:51 -0500178 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400179 eb = btrfs_root_node(root);
180 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400181 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400182 break;
Chris Mason925baed2008-06-25 16:01:30 -0400183 btrfs_tree_unlock(eb);
184 free_extent_buffer(eb);
185 }
186 return eb;
187}
188
Chris Masonbd681512011-07-16 15:23:14 -0400189/* loop around taking references on and locking the root node of the
190 * tree until you end up with a lock on the root. A locked buffer
191 * is returned, with a reference held.
192 */
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400193struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400194{
195 struct extent_buffer *eb;
196
197 while (1) {
198 eb = btrfs_root_node(root);
199 btrfs_tree_read_lock(eb);
200 if (eb == root->node)
201 break;
202 btrfs_tree_read_unlock(eb);
203 free_extent_buffer(eb);
204 }
205 return eb;
206}
207
Chris Masond352ac62008-09-29 15:18:18 -0400208/* cowonly root (everything not a reference counted cow subvolume), just get
209 * put onto a simple dirty list. transaction.c walks this to make sure they
210 * get properly updated on disk.
211 */
Chris Mason0b86a832008-03-24 15:01:56 -0400212static void add_root_to_dirty_list(struct btrfs_root *root)
213{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400214 struct btrfs_fs_info *fs_info = root->fs_info;
215
Josef Bacike7070be2014-12-16 08:54:43 -0800216 if (test_bit(BTRFS_ROOT_DIRTY, &root->state) ||
217 !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state))
218 return;
219
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400220 spin_lock(&fs_info->trans_lock);
Josef Bacike7070be2014-12-16 08:54:43 -0800221 if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) {
222 /* Want the extent tree to be the last on the list */
223 if (root->objectid == BTRFS_EXTENT_TREE_OBJECTID)
224 list_move_tail(&root->dirty_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400225 &fs_info->dirty_cowonly_roots);
Josef Bacike7070be2014-12-16 08:54:43 -0800226 else
227 list_move(&root->dirty_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400228 &fs_info->dirty_cowonly_roots);
Chris Mason0b86a832008-03-24 15:01:56 -0400229 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400230 spin_unlock(&fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400231}
232
Chris Masond352ac62008-09-29 15:18:18 -0400233/*
234 * used by snapshot creation to make a copy of a root for a tree with
235 * a given objectid. The buffer with the new root node is returned in
236 * cow_ret, and this func returns zero on success or a negative error code.
237 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500238int btrfs_copy_root(struct btrfs_trans_handle *trans,
239 struct btrfs_root *root,
240 struct extent_buffer *buf,
241 struct extent_buffer **cow_ret, u64 new_root_objectid)
242{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400243 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonbe20aa92007-12-17 20:14:01 -0500244 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500245 int ret = 0;
246 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400247 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500248
Miao Xie27cdeb72014-04-02 19:51:05 +0800249 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400250 trans->transid != fs_info->running_transaction->transid);
Miao Xie27cdeb72014-04-02 19:51:05 +0800251 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
252 trans->transid != root->last_trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500253
254 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400255 if (level == 0)
256 btrfs_item_key(buf, &disk_key, 0);
257 else
258 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400259
David Sterba4d75f8a2014-06-15 01:54:12 +0200260 cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
261 &disk_key, level, buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400262 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500263 return PTR_ERR(cow);
264
David Sterba58e80122016-11-08 18:30:31 +0100265 copy_extent_buffer_full(cow, buf);
Chris Masonbe20aa92007-12-17 20:14:01 -0500266 btrfs_set_header_bytenr(cow, cow->start);
267 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400268 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
269 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
270 BTRFS_HEADER_FLAG_RELOC);
271 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
272 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
273 else
274 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500275
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400276 write_extent_buffer_fsid(cow, fs_info->fsid);
Yan Zheng2b820322008-11-17 21:11:30 -0500277
Chris Masonbe20aa92007-12-17 20:14:01 -0500278 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400279 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700280 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400281 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700282 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500283
Chris Masonbe20aa92007-12-17 20:14:01 -0500284 if (ret)
285 return ret;
286
287 btrfs_mark_buffer_dirty(cow);
288 *cow_ret = cow;
289 return 0;
290}
291
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200292enum mod_log_op {
293 MOD_LOG_KEY_REPLACE,
294 MOD_LOG_KEY_ADD,
295 MOD_LOG_KEY_REMOVE,
296 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
297 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
298 MOD_LOG_MOVE_KEYS,
299 MOD_LOG_ROOT_REPLACE,
300};
301
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200302struct tree_mod_root {
303 u64 logical;
304 u8 level;
305};
306
307struct tree_mod_elem {
308 struct rb_node node;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530309 u64 logical;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200310 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200311 enum mod_log_op op;
312
313 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
314 int slot;
315
316 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
317 u64 generation;
318
319 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
320 struct btrfs_disk_key key;
321 u64 blockptr;
322
323 /* this is used for op == MOD_LOG_MOVE_KEYS */
David Sterbab6dfa352018-03-05 15:31:18 +0100324 struct {
325 int dst_slot;
326 int nr_items;
327 } move;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200328
329 /* this is used for op == MOD_LOG_ROOT_REPLACE */
330 struct tree_mod_root old_root;
331};
332
Jan Schmidt097b8a72012-06-21 11:08:04 +0200333/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700334 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000335 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700336static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000337{
338 return atomic64_inc_return(&fs_info->tree_mod_seq);
339}
340
341/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200342 * This adds a new blocker to the tree mod log's blocker list if the @elem
343 * passed does not already have a sequence number set. So when a caller expects
344 * to record tree modifications, it should ensure to set elem->seq to zero
345 * before calling btrfs_get_tree_mod_seq.
346 * Returns a fresh, unused tree log modification sequence number, even if no new
347 * blocker was added.
348 */
349u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
350 struct seq_list *elem)
351{
David Sterbab1a09f12018-03-05 15:43:41 +0100352 write_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200353 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200354 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700355 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200356 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
357 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200358 spin_unlock(&fs_info->tree_mod_seq_lock);
David Sterbab1a09f12018-03-05 15:43:41 +0100359 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200360
Josef Bacikfcebe452014-05-13 17:30:47 -0700361 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200362}
363
364void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
365 struct seq_list *elem)
366{
367 struct rb_root *tm_root;
368 struct rb_node *node;
369 struct rb_node *next;
370 struct seq_list *cur_elem;
371 struct tree_mod_elem *tm;
372 u64 min_seq = (u64)-1;
373 u64 seq_putting = elem->seq;
374
375 if (!seq_putting)
376 return;
377
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200378 spin_lock(&fs_info->tree_mod_seq_lock);
379 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200380 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200381
382 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200383 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200384 if (seq_putting > cur_elem->seq) {
385 /*
386 * blocker with lower sequence number exists, we
387 * cannot remove anything from the log
388 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200389 spin_unlock(&fs_info->tree_mod_seq_lock);
390 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200391 }
392 min_seq = cur_elem->seq;
393 }
394 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200395 spin_unlock(&fs_info->tree_mod_seq_lock);
396
397 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200398 * anything that's lower than the lowest existing (read: blocked)
399 * sequence number can be removed from the tree.
400 */
David Sterbab1a09f12018-03-05 15:43:41 +0100401 write_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200402 tm_root = &fs_info->tree_mod_log;
403 for (node = rb_first(tm_root); node; node = next) {
404 next = rb_next(node);
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800405 tm = rb_entry(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200406 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200407 continue;
408 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200409 kfree(tm);
410 }
David Sterbab1a09f12018-03-05 15:43:41 +0100411 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200412}
413
414/*
415 * key order of the log:
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530416 * node/leaf start address -> sequence
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200417 *
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530418 * The 'start address' is the logical address of the *new* root node
419 * for root replace operations, or the logical address of the affected
420 * block for all other operations.
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000421 *
David Sterbab1a09f12018-03-05 15:43:41 +0100422 * Note: must be called with write lock for fs_info::tree_mod_log_lock.
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200423 */
424static noinline int
425__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
426{
427 struct rb_root *tm_root;
428 struct rb_node **new;
429 struct rb_node *parent = NULL;
430 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200431
Josef Bacikfcebe452014-05-13 17:30:47 -0700432 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200433
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200434 tm_root = &fs_info->tree_mod_log;
435 new = &tm_root->rb_node;
436 while (*new) {
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800437 cur = rb_entry(*new, struct tree_mod_elem, node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200438 parent = *new;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530439 if (cur->logical < tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200440 new = &((*new)->rb_left);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530441 else if (cur->logical > tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200442 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200443 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200444 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200445 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200446 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000447 else
448 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200449 }
450
451 rb_link_node(&tm->node, parent, new);
452 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000453 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200454}
455
Jan Schmidt097b8a72012-06-21 11:08:04 +0200456/*
457 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
458 * returns zero with the tree_mod_log_lock acquired. The caller must hold
459 * this until all tree mod log insertions are recorded in the rb tree and then
David Sterbab1a09f12018-03-05 15:43:41 +0100460 * write unlock fs_info::tree_mod_log_lock.
Jan Schmidt097b8a72012-06-21 11:08:04 +0200461 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200462static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
463 struct extent_buffer *eb) {
464 smp_mb();
465 if (list_empty(&(fs_info)->tree_mod_seq_list))
466 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200467 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200468 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000469
David Sterbab1a09f12018-03-05 15:43:41 +0100470 write_lock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000471 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
David Sterbab1a09f12018-03-05 15:43:41 +0100472 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000473 return 1;
474 }
475
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200476 return 0;
477}
478
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000479/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
480static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
481 struct extent_buffer *eb)
482{
483 smp_mb();
484 if (list_empty(&(fs_info)->tree_mod_seq_list))
485 return 0;
486 if (eb && btrfs_header_level(eb) == 0)
487 return 0;
488
489 return 1;
490}
491
492static struct tree_mod_elem *
493alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
494 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200495{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200496 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200497
Josef Bacikc8cc6342013-07-01 16:18:19 -0400498 tm = kzalloc(sizeof(*tm), flags);
499 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000500 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200501
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530502 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200503 if (op != MOD_LOG_KEY_ADD) {
504 btrfs_node_key(eb, &tm->key, slot);
505 tm->blockptr = btrfs_node_blockptr(eb, slot);
506 }
507 tm->op = op;
508 tm->slot = slot;
509 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000510 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200511
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000512 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200513}
514
David Sterbae09c2ef2018-03-05 15:09:03 +0100515static noinline int tree_mod_log_insert_key(struct extent_buffer *eb, int slot,
516 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200517{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000518 struct tree_mod_elem *tm;
519 int ret;
520
David Sterbae09c2ef2018-03-05 15:09:03 +0100521 if (!tree_mod_need_log(eb->fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200522 return 0;
523
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000524 tm = alloc_tree_mod_elem(eb, slot, op, flags);
525 if (!tm)
526 return -ENOMEM;
527
David Sterbae09c2ef2018-03-05 15:09:03 +0100528 if (tree_mod_dont_log(eb->fs_info, eb)) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000529 kfree(tm);
530 return 0;
531 }
532
David Sterbae09c2ef2018-03-05 15:09:03 +0100533 ret = __tree_mod_log_insert(eb->fs_info, tm);
David Sterbab1a09f12018-03-05 15:43:41 +0100534 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000535 if (ret)
536 kfree(tm);
537
538 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200539}
540
David Sterba6074d452018-03-05 15:03:52 +0100541static noinline int tree_mod_log_insert_move(struct extent_buffer *eb,
542 int dst_slot, int src_slot, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200543{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000544 struct tree_mod_elem *tm = NULL;
545 struct tree_mod_elem **tm_list = NULL;
546 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200547 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000548 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200549
David Sterba6074d452018-03-05 15:03:52 +0100550 if (!tree_mod_need_log(eb->fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200551 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200552
David Sterba176ef8f2017-03-28 14:35:01 +0200553 tm_list = kcalloc(nr_items, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000554 if (!tm_list)
555 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200556
David Sterba176ef8f2017-03-28 14:35:01 +0200557 tm = kzalloc(sizeof(*tm), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000558 if (!tm) {
559 ret = -ENOMEM;
560 goto free_tms;
561 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200562
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530563 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200564 tm->slot = src_slot;
565 tm->move.dst_slot = dst_slot;
566 tm->move.nr_items = nr_items;
567 tm->op = MOD_LOG_MOVE_KEYS;
568
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000569 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
570 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
David Sterba176ef8f2017-03-28 14:35:01 +0200571 MOD_LOG_KEY_REMOVE_WHILE_MOVING, GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000572 if (!tm_list[i]) {
573 ret = -ENOMEM;
574 goto free_tms;
575 }
576 }
577
David Sterba6074d452018-03-05 15:03:52 +0100578 if (tree_mod_dont_log(eb->fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000579 goto free_tms;
580 locked = 1;
581
582 /*
583 * When we override something during the move, we log these removals.
584 * This can only happen when we move towards the beginning of the
585 * buffer, i.e. dst_slot < src_slot.
586 */
587 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
David Sterba6074d452018-03-05 15:03:52 +0100588 ret = __tree_mod_log_insert(eb->fs_info, tm_list[i]);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000589 if (ret)
590 goto free_tms;
591 }
592
David Sterba6074d452018-03-05 15:03:52 +0100593 ret = __tree_mod_log_insert(eb->fs_info, tm);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000594 if (ret)
595 goto free_tms;
David Sterbab1a09f12018-03-05 15:43:41 +0100596 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000597 kfree(tm_list);
598
599 return 0;
600free_tms:
601 for (i = 0; i < nr_items; i++) {
602 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
David Sterba6074d452018-03-05 15:03:52 +0100603 rb_erase(&tm_list[i]->node, &eb->fs_info->tree_mod_log);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000604 kfree(tm_list[i]);
605 }
606 if (locked)
David Sterbab1a09f12018-03-05 15:43:41 +0100607 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000608 kfree(tm_list);
609 kfree(tm);
610
611 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200612}
613
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000614static inline int
615__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
616 struct tree_mod_elem **tm_list,
617 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200618{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000619 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200620 int ret;
621
Jan Schmidt097b8a72012-06-21 11:08:04 +0200622 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000623 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
624 if (ret) {
625 for (j = nritems - 1; j > i; j--)
626 rb_erase(&tm_list[j]->node,
627 &fs_info->tree_mod_log);
628 return ret;
629 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200630 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000631
632 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200633}
634
David Sterba95b757c2018-03-05 15:22:30 +0100635static noinline int tree_mod_log_insert_root(struct extent_buffer *old_root,
636 struct extent_buffer *new_root, int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200637{
David Sterba95b757c2018-03-05 15:22:30 +0100638 struct btrfs_fs_info *fs_info = old_root->fs_info;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000639 struct tree_mod_elem *tm = NULL;
640 struct tree_mod_elem **tm_list = NULL;
641 int nritems = 0;
642 int ret = 0;
643 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200644
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000645 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200646 return 0;
647
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000648 if (log_removal && btrfs_header_level(old_root) > 0) {
649 nritems = btrfs_header_nritems(old_root);
David Sterba31e818f2015-02-20 18:00:26 +0100650 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *),
David Sterbabcc8e072017-03-28 14:35:42 +0200651 GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000652 if (!tm_list) {
653 ret = -ENOMEM;
654 goto free_tms;
655 }
656 for (i = 0; i < nritems; i++) {
657 tm_list[i] = alloc_tree_mod_elem(old_root, i,
David Sterbabcc8e072017-03-28 14:35:42 +0200658 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000659 if (!tm_list[i]) {
660 ret = -ENOMEM;
661 goto free_tms;
662 }
663 }
664 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000665
David Sterbabcc8e072017-03-28 14:35:42 +0200666 tm = kzalloc(sizeof(*tm), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000667 if (!tm) {
668 ret = -ENOMEM;
669 goto free_tms;
670 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200671
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530672 tm->logical = new_root->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200673 tm->old_root.logical = old_root->start;
674 tm->old_root.level = btrfs_header_level(old_root);
675 tm->generation = btrfs_header_generation(old_root);
676 tm->op = MOD_LOG_ROOT_REPLACE;
677
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000678 if (tree_mod_dont_log(fs_info, NULL))
679 goto free_tms;
680
681 if (tm_list)
682 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
683 if (!ret)
684 ret = __tree_mod_log_insert(fs_info, tm);
685
David Sterbab1a09f12018-03-05 15:43:41 +0100686 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000687 if (ret)
688 goto free_tms;
689 kfree(tm_list);
690
691 return ret;
692
693free_tms:
694 if (tm_list) {
695 for (i = 0; i < nritems; i++)
696 kfree(tm_list[i]);
697 kfree(tm_list);
698 }
699 kfree(tm);
700
701 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200702}
703
704static struct tree_mod_elem *
705__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
706 int smallest)
707{
708 struct rb_root *tm_root;
709 struct rb_node *node;
710 struct tree_mod_elem *cur = NULL;
711 struct tree_mod_elem *found = NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200712
David Sterbab1a09f12018-03-05 15:43:41 +0100713 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200714 tm_root = &fs_info->tree_mod_log;
715 node = tm_root->rb_node;
716 while (node) {
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800717 cur = rb_entry(node, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530718 if (cur->logical < start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200719 node = node->rb_left;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530720 } else if (cur->logical > start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200721 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200722 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200723 node = node->rb_left;
724 } else if (!smallest) {
725 /* we want the node with the highest seq */
726 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200727 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200728 found = cur;
729 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200730 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200731 /* we want the node with the smallest seq */
732 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200733 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200734 found = cur;
735 node = node->rb_right;
736 } else {
737 found = cur;
738 break;
739 }
740 }
David Sterbab1a09f12018-03-05 15:43:41 +0100741 read_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200742
743 return found;
744}
745
746/*
747 * this returns the element from the log with the smallest time sequence
748 * value that's in the log (the oldest log item). any element with a time
749 * sequence lower than min_seq will be ignored.
750 */
751static struct tree_mod_elem *
752tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
753 u64 min_seq)
754{
755 return __tree_mod_log_search(fs_info, start, min_seq, 1);
756}
757
758/*
759 * this returns the element from the log with the largest time sequence
760 * value that's in the log (the most recent log item). any element with
761 * a time sequence lower than min_seq will be ignored.
762 */
763static struct tree_mod_elem *
764tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
765{
766 return __tree_mod_log_search(fs_info, start, min_seq, 0);
767}
768
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000769static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200770tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
771 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000772 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200773{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000774 int ret = 0;
775 struct tree_mod_elem **tm_list = NULL;
776 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200777 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000778 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200779
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000780 if (!tree_mod_need_log(fs_info, NULL))
781 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200782
Josef Bacikc8cc6342013-07-01 16:18:19 -0400783 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000784 return 0;
785
David Sterba31e818f2015-02-20 18:00:26 +0100786 tm_list = kcalloc(nr_items * 2, sizeof(struct tree_mod_elem *),
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000787 GFP_NOFS);
788 if (!tm_list)
789 return -ENOMEM;
790
791 tm_list_add = tm_list;
792 tm_list_rem = tm_list + nr_items;
793 for (i = 0; i < nr_items; i++) {
794 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
795 MOD_LOG_KEY_REMOVE, GFP_NOFS);
796 if (!tm_list_rem[i]) {
797 ret = -ENOMEM;
798 goto free_tms;
799 }
800
801 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
802 MOD_LOG_KEY_ADD, GFP_NOFS);
803 if (!tm_list_add[i]) {
804 ret = -ENOMEM;
805 goto free_tms;
806 }
807 }
808
809 if (tree_mod_dont_log(fs_info, NULL))
810 goto free_tms;
811 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200812
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200813 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000814 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
815 if (ret)
816 goto free_tms;
817 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
818 if (ret)
819 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200820 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000821
David Sterbab1a09f12018-03-05 15:43:41 +0100822 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000823 kfree(tm_list);
824
825 return 0;
826
827free_tms:
828 for (i = 0; i < nr_items * 2; i++) {
829 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
830 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
831 kfree(tm_list[i]);
832 }
833 if (locked)
David Sterbab1a09f12018-03-05 15:43:41 +0100834 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000835 kfree(tm_list);
836
837 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200838}
839
David Sterbadb7279a2018-03-05 15:14:25 +0100840static noinline int tree_mod_log_free_eb(struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200841{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000842 struct tree_mod_elem **tm_list = NULL;
843 int nritems = 0;
844 int i;
845 int ret = 0;
846
847 if (btrfs_header_level(eb) == 0)
848 return 0;
849
David Sterbadb7279a2018-03-05 15:14:25 +0100850 if (!tree_mod_need_log(eb->fs_info, NULL))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000851 return 0;
852
853 nritems = btrfs_header_nritems(eb);
David Sterba31e818f2015-02-20 18:00:26 +0100854 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000855 if (!tm_list)
856 return -ENOMEM;
857
858 for (i = 0; i < nritems; i++) {
859 tm_list[i] = alloc_tree_mod_elem(eb, i,
860 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
861 if (!tm_list[i]) {
862 ret = -ENOMEM;
863 goto free_tms;
864 }
865 }
866
David Sterbadb7279a2018-03-05 15:14:25 +0100867 if (tree_mod_dont_log(eb->fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000868 goto free_tms;
869
David Sterbadb7279a2018-03-05 15:14:25 +0100870 ret = __tree_mod_log_free_eb(eb->fs_info, tm_list, nritems);
David Sterbab1a09f12018-03-05 15:43:41 +0100871 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000872 if (ret)
873 goto free_tms;
874 kfree(tm_list);
875
876 return 0;
877
878free_tms:
879 for (i = 0; i < nritems; i++)
880 kfree(tm_list[i]);
881 kfree(tm_list);
882
883 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200884}
885
Chris Masond352ac62008-09-29 15:18:18 -0400886/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400887 * check if the tree block can be shared by multiple trees
888 */
889int btrfs_block_can_be_shared(struct btrfs_root *root,
890 struct extent_buffer *buf)
891{
892 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400893 * Tree blocks not in reference counted trees and tree roots
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400894 * are never shared. If a block was allocated after the last
895 * snapshot and the block was not allocated by tree relocation,
896 * we know the block is not shared.
897 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800898 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400899 buf != root->node && buf != root->commit_root &&
900 (btrfs_header_generation(buf) <=
901 btrfs_root_last_snapshot(&root->root_item) ||
902 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
903 return 1;
904#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
Miao Xie27cdeb72014-04-02 19:51:05 +0800905 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400906 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
907 return 1;
908#endif
909 return 0;
910}
911
912static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
913 struct btrfs_root *root,
914 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400915 struct extent_buffer *cow,
916 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400917{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400918 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400919 u64 refs;
920 u64 owner;
921 u64 flags;
922 u64 new_flags = 0;
923 int ret;
924
925 /*
926 * Backrefs update rules:
927 *
928 * Always use full backrefs for extent pointers in tree block
929 * allocated by tree relocation.
930 *
931 * If a shared tree block is no longer referenced by its owner
932 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
933 * use full backrefs for extent pointers in tree block.
934 *
935 * If a tree block is been relocating
936 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
937 * use full backrefs for extent pointers in tree block.
938 * The reason for this is some operations (such as drop tree)
939 * are only allowed for blocks use full backrefs.
940 */
941
942 if (btrfs_block_can_be_shared(root, buf)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400943 ret = btrfs_lookup_extent_info(trans, fs_info, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -0500944 btrfs_header_level(buf), 1,
945 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700946 if (ret)
947 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -0700948 if (refs == 0) {
949 ret = -EROFS;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400950 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fashehe5df9572011-08-29 14:17:04 -0700951 return ret;
952 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 } else {
954 refs = 1;
955 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
956 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
957 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
958 else
959 flags = 0;
960 }
961
962 owner = btrfs_header_owner(buf);
963 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
964 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
965
966 if (refs > 1) {
967 if ((owner == root->root_key.objectid ||
968 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
969 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -0700970 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500971 if (ret)
972 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400973
974 if (root->root_key.objectid ==
975 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -0700976 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500977 if (ret)
978 return ret;
Josef Bacike339a6b2014-07-02 10:54:25 -0700979 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500980 if (ret)
981 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400982 }
983 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
984 } else {
985
986 if (root->root_key.objectid ==
987 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700988 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400989 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700990 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500991 if (ret)
992 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400993 }
994 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -0400995 int level = btrfs_header_level(buf);
996
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400997 ret = btrfs_set_disk_extent_flags(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400998 buf->start,
999 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -04001000 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001001 if (ret)
1002 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001003 }
1004 } else {
1005 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
1006 if (root->root_key.objectid ==
1007 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001008 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001009 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001010 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -05001011 if (ret)
1012 return ret;
Josef Bacike339a6b2014-07-02 10:54:25 -07001013 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -05001014 if (ret)
1015 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001016 }
David Sterba7c302b42017-02-10 18:47:57 +01001017 clean_tree_block(fs_info, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001018 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 }
1020 return 0;
1021}
1022
1023/*
Chris Masond3977122009-01-05 21:25:51 -05001024 * does the dirty work in cow of a single block. The parent block (if
1025 * supplied) is updated to point to the new cow copy. The new buffer is marked
1026 * dirty and returned locked. If you modify the block it needs to be marked
1027 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001028 *
1029 * search_start -- an allocation hint for the new block
1030 *
Chris Masond3977122009-01-05 21:25:51 -05001031 * empty_size -- a hint that you plan on doing more cow. This is the size in
1032 * bytes the allocator should try to find free next to the block it returns.
1033 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001034 */
Chris Masond3977122009-01-05 21:25:51 -05001035static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001036 struct btrfs_root *root,
1037 struct extent_buffer *buf,
1038 struct extent_buffer *parent, int parent_slot,
1039 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001040 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001041{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001042 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001044 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001045 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001046 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001047 int unlock_orig = 0;
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001048 u64 parent_start = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001049
Chris Mason925baed2008-06-25 16:01:30 -04001050 if (*cow_ret == buf)
1051 unlock_orig = 1;
1052
Chris Masonb9447ef2009-03-09 11:45:38 -04001053 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001054
Miao Xie27cdeb72014-04-02 19:51:05 +08001055 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001056 trans->transid != fs_info->running_transaction->transid);
Miao Xie27cdeb72014-04-02 19:51:05 +08001057 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1058 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001059
Chris Mason7bb86312007-12-11 09:25:06 -05001060 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001061
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001062 if (level == 0)
1063 btrfs_item_key(buf, &disk_key, 0);
1064 else
1065 btrfs_node_key(buf, &disk_key, 0);
1066
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001067 if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent)
1068 parent_start = parent->start;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001069
David Sterba4d75f8a2014-06-15 01:54:12 +02001070 cow = btrfs_alloc_tree_block(trans, root, parent_start,
1071 root->root_key.objectid, &disk_key, level,
1072 search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001073 if (IS_ERR(cow))
1074 return PTR_ERR(cow);
1075
Chris Masonb4ce94d2009-02-04 09:25:08 -05001076 /* cow is set to blocking by btrfs_init_new_buffer */
1077
David Sterba58e80122016-11-08 18:30:31 +01001078 copy_extent_buffer_full(cow, buf);
Chris Masondb945352007-10-15 16:15:53 -04001079 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001080 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001081 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1082 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1083 BTRFS_HEADER_FLAG_RELOC);
1084 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1085 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1086 else
1087 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001088
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001089 write_extent_buffer_fsid(cow, fs_info->fsid);
Yan Zheng2b820322008-11-17 21:11:30 -05001090
Mark Fashehbe1a5562011-08-08 13:20:18 -07001091 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001092 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001093 btrfs_abort_transaction(trans, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001094 return ret;
1095 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001096
Miao Xie27cdeb72014-04-02 19:51:05 +08001097 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001098 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
Zhaolei93314e32015-08-06 21:56:58 +08001099 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001100 btrfs_abort_transaction(trans, ret);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001101 return ret;
Zhaolei93314e32015-08-06 21:56:58 +08001102 }
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001103 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001104
Chris Mason6702ed42007-08-07 16:15:09 -04001105 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001106 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001107 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1108 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1109 parent_start = buf->start;
Chris Mason925baed2008-06-25 16:01:30 -04001110
Chris Mason5f39d392007-10-15 16:14:19 -04001111 extent_buffer_get(cow);
David Sterbad9d19a02018-03-05 16:35:29 +01001112 ret = tree_mod_log_insert_root(root->node, cow, 1);
1113 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04001114 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001115
Yan, Zhengf0486c62010-05-16 10:46:25 -04001116 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001117 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001118 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001119 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001120 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001121 WARN_ON(trans->transid != btrfs_header_generation(parent));
David Sterbae09c2ef2018-03-05 15:09:03 +01001122 tree_mod_log_insert_key(parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001123 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001124 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001125 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001126 btrfs_set_node_ptr_generation(parent, parent_slot,
1127 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001128 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001129 if (last_ref) {
David Sterbadb7279a2018-03-05 15:14:25 +01001130 ret = tree_mod_log_free_eb(buf);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001131 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001132 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001133 return ret;
1134 }
1135 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001136 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001137 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001138 }
Chris Mason925baed2008-06-25 16:01:30 -04001139 if (unlock_orig)
1140 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001141 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001142 btrfs_mark_buffer_dirty(cow);
1143 *cow_ret = cow;
1144 return 0;
1145}
1146
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001147/*
1148 * returns the logical address of the oldest predecessor of the given root.
1149 * entries older than time_seq are ignored.
1150 */
David Sterbabcd24da2018-03-05 15:33:18 +01001151static struct tree_mod_elem *__tree_mod_log_oldest_root(
1152 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001153{
1154 struct tree_mod_elem *tm;
1155 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001156 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001157 int looped = 0;
1158
1159 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001160 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001161
1162 /*
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301163 * the very last operation that's logged for a root is the
1164 * replacement operation (if it is replaced at all). this has
1165 * the logical address of the *new* root, making it the very
1166 * first operation that's logged for this root.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001167 */
1168 while (1) {
David Sterbabcd24da2018-03-05 15:33:18 +01001169 tm = tree_mod_log_search_oldest(eb_root->fs_info, root_logical,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001170 time_seq);
1171 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001172 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001173 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001174 * if there are no tree operation for the oldest root, we simply
1175 * return it. this should only happen if that (old) root is at
1176 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001177 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001178 if (!tm)
1179 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001180
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001181 /*
1182 * if there's an operation that's not a root replacement, we
1183 * found the oldest version of our root. normally, we'll find a
1184 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1185 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001186 if (tm->op != MOD_LOG_ROOT_REPLACE)
1187 break;
1188
1189 found = tm;
1190 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001191 looped = 1;
1192 }
1193
Jan Schmidta95236d2012-06-05 16:41:24 +02001194 /* if there's no old root to return, return what we found instead */
1195 if (!found)
1196 found = tm;
1197
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001198 return found;
1199}
1200
1201/*
1202 * tm is a pointer to the first operation to rewind within eb. then, all
Nicholas D Steeves01327612016-05-19 21:18:45 -04001203 * previous operations will be rewound (until we reach something older than
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001204 * time_seq).
1205 */
1206static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001207__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1208 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001209{
1210 u32 n;
1211 struct rb_node *next;
1212 struct tree_mod_elem *tm = first_tm;
1213 unsigned long o_dst;
1214 unsigned long o_src;
1215 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1216
1217 n = btrfs_header_nritems(eb);
David Sterbab1a09f12018-03-05 15:43:41 +01001218 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001219 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001220 /*
1221 * all the operations are recorded with the operator used for
1222 * the modification. as we're going backwards, we do the
1223 * opposite of each operation here.
1224 */
1225 switch (tm->op) {
1226 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1227 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001228 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001229 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001230 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001231 btrfs_set_node_key(eb, &tm->key, tm->slot);
1232 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1233 btrfs_set_node_ptr_generation(eb, tm->slot,
1234 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001235 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001236 break;
1237 case MOD_LOG_KEY_REPLACE:
1238 BUG_ON(tm->slot >= n);
1239 btrfs_set_node_key(eb, &tm->key, tm->slot);
1240 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1241 btrfs_set_node_ptr_generation(eb, tm->slot,
1242 tm->generation);
1243 break;
1244 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001245 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001246 n--;
1247 break;
1248 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001249 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1250 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1251 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001252 tm->move.nr_items * p_size);
1253 break;
1254 case MOD_LOG_ROOT_REPLACE:
1255 /*
1256 * this operation is special. for roots, this must be
1257 * handled explicitly before rewinding.
1258 * for non-roots, this operation may exist if the node
1259 * was a root: root A -> child B; then A gets empty and
1260 * B is promoted to the new root. in the mod log, we'll
1261 * have a root-replace operation for B, a tree block
1262 * that is no root. we simply ignore that operation.
1263 */
1264 break;
1265 }
1266 next = rb_next(&tm->node);
1267 if (!next)
1268 break;
Geliang Tang6b4df8b2016-12-19 22:53:41 +08001269 tm = rb_entry(next, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301270 if (tm->logical != first_tm->logical)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001271 break;
1272 }
David Sterbab1a09f12018-03-05 15:43:41 +01001273 read_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001274 btrfs_set_header_nritems(eb, n);
1275}
1276
Jan Schmidt47fb0912013-04-13 13:19:55 +00001277/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04001278 * Called with eb read locked. If the buffer cannot be rewound, the same buffer
Jan Schmidt47fb0912013-04-13 13:19:55 +00001279 * is returned. If rewind operations happen, a fresh buffer is returned. The
1280 * returned buffer is always read-locked. If the returned buffer is not the
1281 * input buffer, the lock on the input buffer is released and the input buffer
1282 * is freed (its refcount is decremented).
1283 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001284static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001285tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1286 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001287{
1288 struct extent_buffer *eb_rewin;
1289 struct tree_mod_elem *tm;
1290
1291 if (!time_seq)
1292 return eb;
1293
1294 if (btrfs_header_level(eb) == 0)
1295 return eb;
1296
1297 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1298 if (!tm)
1299 return eb;
1300
Josef Bacik9ec72672013-08-07 16:57:23 -04001301 btrfs_set_path_blocking(path);
1302 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1303
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001304 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1305 BUG_ON(tm->slot != 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001306 eb_rewin = alloc_dummy_extent_buffer(fs_info, eb->start);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001307 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001308 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001309 free_extent_buffer(eb);
1310 return NULL;
1311 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001312 btrfs_set_header_bytenr(eb_rewin, eb->start);
1313 btrfs_set_header_backref_rev(eb_rewin,
1314 btrfs_header_backref_rev(eb));
1315 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001316 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001317 } else {
1318 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001319 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001320 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001321 free_extent_buffer(eb);
1322 return NULL;
1323 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001324 }
1325
Josef Bacik9ec72672013-08-07 16:57:23 -04001326 btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1327 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001328 free_extent_buffer(eb);
1329
Jan Schmidt47fb0912013-04-13 13:19:55 +00001330 extent_buffer_get(eb_rewin);
1331 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001332 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001333 WARN_ON(btrfs_header_nritems(eb_rewin) >
Jeff Mahoneyda170662016-06-15 09:22:56 -04001334 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001335
1336 return eb_rewin;
1337}
1338
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001339/*
1340 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1341 * value. If there are no changes, the current root->root_node is returned. If
1342 * anything changed in between, there's a fresh buffer allocated on which the
1343 * rewind operations are done. In any case, the returned buffer is read locked.
1344 * Returns NULL on error (with no locks held).
1345 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001346static inline struct extent_buffer *
1347get_old_root(struct btrfs_root *root, u64 time_seq)
1348{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001349 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001350 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001351 struct extent_buffer *eb = NULL;
1352 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001353 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001354 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001355 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001356 u64 logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001357
Jan Schmidt30b04632013-04-13 13:19:54 +00001358 eb_root = btrfs_read_lock_root_node(root);
David Sterbabcd24da2018-03-05 15:33:18 +01001359 tm = __tree_mod_log_oldest_root(eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001360 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001361 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001362
Jan Schmidta95236d2012-06-05 16:41:24 +02001363 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1364 old_root = &tm->old_root;
1365 old_generation = tm->generation;
1366 logical = old_root->logical;
1367 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001368 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001369 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001370
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001371 tm = tree_mod_log_search(fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001372 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001373 btrfs_tree_read_unlock(eb_root);
1374 free_extent_buffer(eb_root);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001375 old = read_tree_block(fs_info, logical, 0);
Liu Bo64c043d2015-05-25 17:30:15 +08001376 if (WARN_ON(IS_ERR(old) || !extent_buffer_uptodate(old))) {
1377 if (!IS_ERR(old))
1378 free_extent_buffer(old);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001379 btrfs_warn(fs_info,
1380 "failed to read tree block %llu from get_old_root",
1381 logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001382 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001383 eb = btrfs_clone_extent_buffer(old);
1384 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001385 }
1386 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001387 btrfs_tree_read_unlock(eb_root);
1388 free_extent_buffer(eb_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001389 eb = alloc_dummy_extent_buffer(fs_info, logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001390 } else {
Josef Bacik9ec72672013-08-07 16:57:23 -04001391 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
Jan Schmidt30b04632013-04-13 13:19:54 +00001392 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001393 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001394 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001395 }
1396
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001397 if (!eb)
1398 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001399 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001400 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001401 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001402 btrfs_set_header_bytenr(eb, eb->start);
1403 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001404 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001405 btrfs_set_header_level(eb, old_root->level);
1406 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001407 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001408 if (tm)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001409 __tree_mod_log_rewind(fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001410 else
1411 WARN_ON(btrfs_header_level(eb) != 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001412 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001413
1414 return eb;
1415}
1416
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001417int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1418{
1419 struct tree_mod_elem *tm;
1420 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001421 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001422
David Sterbabcd24da2018-03-05 15:33:18 +01001423 tm = __tree_mod_log_oldest_root(eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001424 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1425 level = tm->old_root.level;
1426 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001427 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001428 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001429 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001430
1431 return level;
1432}
1433
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001434static inline int should_cow_block(struct btrfs_trans_handle *trans,
1435 struct btrfs_root *root,
1436 struct extent_buffer *buf)
1437{
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04001438 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001439 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02001440
Liu Bof1ebcc72011-11-14 20:48:06 -05001441 /* ensure we can see the force_cow */
1442 smp_rmb();
1443
1444 /*
1445 * We do not need to cow a block if
1446 * 1) this block is not created or changed in this transaction;
1447 * 2) this block does not belong to TREE_RELOC tree;
1448 * 3) the root is not forced COW.
1449 *
1450 * What is forced COW:
Nicholas D Steeves01327612016-05-19 21:18:45 -04001451 * when we create snapshot during committing the transaction,
Liu Bof1ebcc72011-11-14 20:48:06 -05001452 * after we've finished coping src root, we must COW the shared
1453 * block to ensure the metadata consistency.
1454 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001455 if (btrfs_header_generation(buf) == trans->transid &&
1456 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1457 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001458 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001459 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001460 return 0;
1461 return 1;
1462}
1463
Chris Masond352ac62008-09-29 15:18:18 -04001464/*
1465 * cows a single block, see __btrfs_cow_block for the real work.
Nicholas D Steeves01327612016-05-19 21:18:45 -04001466 * This version of it has extra checks so that a block isn't COWed more than
Chris Masond352ac62008-09-29 15:18:18 -04001467 * once per transaction, as long as it hasn't been written yet
1468 */
Chris Masond3977122009-01-05 21:25:51 -05001469noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001470 struct btrfs_root *root, struct extent_buffer *buf,
1471 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001472 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001473{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001474 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6702ed42007-08-07 16:15:09 -04001475 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001476 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001477
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001478 if (trans->transaction != fs_info->running_transaction)
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001479 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001480 trans->transid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001481 fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001482
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001483 if (trans->transid != fs_info->generation)
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001484 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001485 trans->transid, fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001486
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001487 if (!should_cow_block(trans, root, buf)) {
Jeff Mahoney64c12922016-06-08 00:36:38 -04001488 trans->dirty = true;
Chris Mason02217ed2007-03-02 16:08:05 -05001489 *cow_ret = buf;
1490 return 0;
1491 }
Chris Masonc4876852009-02-04 09:24:25 -05001492
Byongho Leeee221842015-12-15 01:42:10 +09001493 search_start = buf->start & ~((u64)SZ_1G - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001494
1495 if (parent)
1496 btrfs_set_lock_blocking(parent);
1497 btrfs_set_lock_blocking(buf);
1498
Chris Masonf510cfe2007-10-15 16:14:48 -04001499 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001500 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001501
1502 trace_btrfs_cow_block(root, buf, *cow_ret);
1503
Chris Masonf510cfe2007-10-15 16:14:48 -04001504 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001505}
1506
Chris Masond352ac62008-09-29 15:18:18 -04001507/*
1508 * helper function for defrag to decide if two blocks pointed to by a
1509 * node are actually close by
1510 */
Chris Mason6b800532007-10-15 16:17:34 -04001511static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001512{
Chris Mason6b800532007-10-15 16:17:34 -04001513 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001514 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001515 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001516 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001517 return 0;
1518}
1519
Chris Mason081e9572007-11-06 10:26:24 -05001520/*
1521 * compare two keys in a memcmp fashion
1522 */
Omar Sandoval310712b2017-01-17 23:24:37 -08001523static int comp_keys(const struct btrfs_disk_key *disk,
1524 const struct btrfs_key *k2)
Chris Mason081e9572007-11-06 10:26:24 -05001525{
1526 struct btrfs_key k1;
1527
1528 btrfs_disk_key_to_cpu(&k1, disk);
1529
Diego Calleja20736ab2009-07-24 11:06:52 -04001530 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001531}
1532
Josef Bacikf3465ca2008-11-12 14:19:50 -05001533/*
1534 * same as comp_keys only with two btrfs_key's
1535 */
Omar Sandoval310712b2017-01-17 23:24:37 -08001536int btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001537{
1538 if (k1->objectid > k2->objectid)
1539 return 1;
1540 if (k1->objectid < k2->objectid)
1541 return -1;
1542 if (k1->type > k2->type)
1543 return 1;
1544 if (k1->type < k2->type)
1545 return -1;
1546 if (k1->offset > k2->offset)
1547 return 1;
1548 if (k1->offset < k2->offset)
1549 return -1;
1550 return 0;
1551}
Chris Mason081e9572007-11-06 10:26:24 -05001552
Chris Masond352ac62008-09-29 15:18:18 -04001553/*
1554 * this is used by the defrag code to go through all the
1555 * leaves pointed to by a node and reallocate them so that
1556 * disk order is close to key order
1557 */
Chris Mason6702ed42007-08-07 16:15:09 -04001558int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001559 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001560 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001561 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001562{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001563 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6b800532007-10-15 16:17:34 -04001564 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001565 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001566 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001567 u64 search_start = *last_ret;
1568 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001569 u64 other;
1570 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001571 int end_slot;
1572 int i;
1573 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001574 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001575 int uptodate;
1576 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001577 int progress_passed = 0;
1578 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001579
Chris Mason5708b952007-10-25 15:43:18 -04001580 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001581
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001582 WARN_ON(trans->transaction != fs_info->running_transaction);
1583 WARN_ON(trans->transid != fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001584
Chris Mason6b800532007-10-15 16:17:34 -04001585 parent_nritems = btrfs_header_nritems(parent);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001586 blocksize = fs_info->nodesize;
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001587 end_slot = parent_nritems - 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001588
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001589 if (parent_nritems <= 1)
Chris Mason6702ed42007-08-07 16:15:09 -04001590 return 0;
1591
Chris Masonb4ce94d2009-02-04 09:25:08 -05001592 btrfs_set_lock_blocking(parent);
1593
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001594 for (i = start_slot; i <= end_slot; i++) {
Chris Mason6702ed42007-08-07 16:15:09 -04001595 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001596
Chris Mason081e9572007-11-06 10:26:24 -05001597 btrfs_node_key(parent, &disk_key, i);
1598 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1599 continue;
1600
1601 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001602 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001603 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001604 if (last_block == 0)
1605 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001606
Chris Mason6702ed42007-08-07 16:15:09 -04001607 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001608 other = btrfs_node_blockptr(parent, i - 1);
1609 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001610 }
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001611 if (!close && i < end_slot) {
Chris Mason6b800532007-10-15 16:17:34 -04001612 other = btrfs_node_blockptr(parent, i + 1);
1613 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001614 }
Chris Masone9d0b132007-08-10 14:06:19 -04001615 if (close) {
1616 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001617 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001618 }
Chris Mason6702ed42007-08-07 16:15:09 -04001619
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001620 cur = find_extent_buffer(fs_info, blocknr);
Chris Mason6b800532007-10-15 16:17:34 -04001621 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001622 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001623 else
1624 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001625 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001626 if (!cur) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001627 cur = read_tree_block(fs_info, blocknr, gen);
Liu Bo64c043d2015-05-25 17:30:15 +08001628 if (IS_ERR(cur)) {
1629 return PTR_ERR(cur);
1630 } else if (!extent_buffer_uptodate(cur)) {
Josef Bacik416bc652013-04-23 14:17:42 -04001631 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001632 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001633 }
Chris Mason6b800532007-10-15 16:17:34 -04001634 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001635 err = btrfs_read_buffer(cur, gen);
1636 if (err) {
1637 free_extent_buffer(cur);
1638 return err;
1639 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001640 }
Chris Mason6702ed42007-08-07 16:15:09 -04001641 }
Chris Masone9d0b132007-08-10 14:06:19 -04001642 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001643 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001644
Chris Masone7a84562008-06-25 16:01:31 -04001645 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001646 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001647 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001648 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001649 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001650 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001651 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001652 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001653 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001654 break;
Yan252c38f2007-08-29 09:11:44 -04001655 }
Chris Masone7a84562008-06-25 16:01:31 -04001656 search_start = cur->start;
1657 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001658 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001659 btrfs_tree_unlock(cur);
1660 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001661 }
1662 return err;
1663}
1664
Chris Mason74123bd2007-02-02 11:05:29 -05001665/*
Chris Mason5f39d392007-10-15 16:14:19 -04001666 * search for key in the extent_buffer. The items start at offset p,
1667 * and they are item_size apart. There are 'max' items in p.
1668 *
Chris Mason74123bd2007-02-02 11:05:29 -05001669 * the slot in the array is returned via slot, and it points to
1670 * the place where you would insert key if it is not found in
1671 * the array.
1672 *
1673 * slot may point to max if the key is bigger than all of the keys
1674 */
Chris Masone02119d2008-09-05 16:13:11 -04001675static noinline int generic_bin_search(struct extent_buffer *eb,
Omar Sandoval310712b2017-01-17 23:24:37 -08001676 unsigned long p, int item_size,
1677 const struct btrfs_key *key,
Chris Masone02119d2008-09-05 16:13:11 -04001678 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001679{
1680 int low = 0;
1681 int high = max;
1682 int mid;
1683 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001684 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001685 struct btrfs_disk_key unaligned;
1686 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001687 char *kaddr = NULL;
1688 unsigned long map_start = 0;
1689 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001690 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001691
Liu Bo5e24e9a2016-06-23 16:32:45 -07001692 if (low > high) {
1693 btrfs_err(eb->fs_info,
1694 "%s: low (%d) > high (%d) eb %llu owner %llu level %d",
1695 __func__, low, high, eb->start,
1696 btrfs_header_owner(eb), btrfs_header_level(eb));
1697 return -EINVAL;
1698 }
1699
Chris Masond3977122009-01-05 21:25:51 -05001700 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001701 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001702 offset = p + mid * item_size;
1703
Chris Masona6591712011-07-19 12:04:14 -04001704 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001705 (offset + sizeof(struct btrfs_disk_key)) >
1706 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001707
1708 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001709 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001710 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001711
Chris Mason479965d2007-10-15 16:14:27 -04001712 if (!err) {
1713 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1714 map_start);
Liu Bo415b35a2016-06-17 19:16:21 -07001715 } else if (err == 1) {
Chris Mason479965d2007-10-15 16:14:27 -04001716 read_extent_buffer(eb, &unaligned,
1717 offset, sizeof(unaligned));
1718 tmp = &unaligned;
Liu Bo415b35a2016-06-17 19:16:21 -07001719 } else {
1720 return err;
Chris Mason479965d2007-10-15 16:14:27 -04001721 }
1722
Chris Mason5f39d392007-10-15 16:14:19 -04001723 } else {
1724 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1725 map_start);
1726 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001727 ret = comp_keys(tmp, key);
1728
1729 if (ret < 0)
1730 low = mid + 1;
1731 else if (ret > 0)
1732 high = mid;
1733 else {
1734 *slot = mid;
1735 return 0;
1736 }
1737 }
1738 *slot = low;
1739 return 1;
1740}
1741
Chris Mason97571fd2007-02-24 13:39:08 -05001742/*
1743 * simple bin_search frontend that does the right thing for
1744 * leaves vs nodes
1745 */
Nikolay Borisova74b35e2017-12-08 16:27:43 +02001746int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
1747 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001748{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001749 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001750 return generic_bin_search(eb,
1751 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001752 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001753 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001754 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001755 else
Chris Mason5f39d392007-10-15 16:14:19 -04001756 return generic_bin_search(eb,
1757 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001758 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001759 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001760 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001761}
1762
Yan, Zhengf0486c62010-05-16 10:46:25 -04001763static void root_add_used(struct btrfs_root *root, u32 size)
1764{
1765 spin_lock(&root->accounting_lock);
1766 btrfs_set_root_used(&root->root_item,
1767 btrfs_root_used(&root->root_item) + size);
1768 spin_unlock(&root->accounting_lock);
1769}
1770
1771static void root_sub_used(struct btrfs_root *root, u32 size)
1772{
1773 spin_lock(&root->accounting_lock);
1774 btrfs_set_root_used(&root->root_item,
1775 btrfs_root_used(&root->root_item) - size);
1776 spin_unlock(&root->accounting_lock);
1777}
1778
Chris Masond352ac62008-09-29 15:18:18 -04001779/* given a node and slot number, this reads the blocks it points to. The
1780 * extent buffer is returned with a reference taken (but unlocked).
Chris Masond352ac62008-09-29 15:18:18 -04001781 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001782static noinline struct extent_buffer *
1783read_node_slot(struct btrfs_fs_info *fs_info, struct extent_buffer *parent,
1784 int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001785{
Chris Masonca7a79a2008-05-12 12:59:19 -04001786 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001787 struct extent_buffer *eb;
1788
Liu Bofb770ae2016-07-05 12:10:14 -07001789 if (slot < 0 || slot >= btrfs_header_nritems(parent))
1790 return ERR_PTR(-ENOENT);
Chris Masonca7a79a2008-05-12 12:59:19 -04001791
1792 BUG_ON(level == 0);
1793
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001794 eb = read_tree_block(fs_info, btrfs_node_blockptr(parent, slot),
Josef Bacik416bc652013-04-23 14:17:42 -04001795 btrfs_node_ptr_generation(parent, slot));
Liu Bofb770ae2016-07-05 12:10:14 -07001796 if (!IS_ERR(eb) && !extent_buffer_uptodate(eb)) {
1797 free_extent_buffer(eb);
1798 eb = ERR_PTR(-EIO);
Josef Bacik416bc652013-04-23 14:17:42 -04001799 }
1800
1801 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001802}
1803
Chris Masond352ac62008-09-29 15:18:18 -04001804/*
1805 * node level balancing, used to make sure nodes are in proper order for
1806 * item deletion. We balance from the top down, so we have to make sure
1807 * that a deletion won't leave an node completely empty later on.
1808 */
Chris Masone02119d2008-09-05 16:13:11 -04001809static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001810 struct btrfs_root *root,
1811 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001812{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001813 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04001814 struct extent_buffer *right = NULL;
1815 struct extent_buffer *mid;
1816 struct extent_buffer *left = NULL;
1817 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001818 int ret = 0;
1819 int wret;
1820 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001821 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001822 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001823
1824 if (level == 0)
1825 return 0;
1826
Chris Mason5f39d392007-10-15 16:14:19 -04001827 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001828
Chris Masonbd681512011-07-16 15:23:14 -04001829 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1830 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001831 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1832
Chris Mason1d4f8a02007-03-13 09:28:32 -04001833 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001834
Li Zefana05a9bb2011-09-06 16:55:34 +08001835 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001836 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001837 pslot = path->slots[level + 1];
1838 }
Chris Masonbb803952007-03-01 12:04:21 -05001839
Chris Mason40689472007-03-17 14:29:23 -04001840 /*
1841 * deal with the case where there is only one pointer in the root
1842 * by promoting the node below to a root
1843 */
Chris Mason5f39d392007-10-15 16:14:19 -04001844 if (!parent) {
1845 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001846
Chris Mason5f39d392007-10-15 16:14:19 -04001847 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001848 return 0;
1849
1850 /* promote the child to a root */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001851 child = read_node_slot(fs_info, mid, 0);
Liu Bofb770ae2016-07-05 12:10:14 -07001852 if (IS_ERR(child)) {
1853 ret = PTR_ERR(child);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001854 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001855 goto enospc;
1856 }
1857
Chris Mason925baed2008-06-25 16:01:30 -04001858 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001859 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001860 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001861 if (ret) {
1862 btrfs_tree_unlock(child);
1863 free_extent_buffer(child);
1864 goto enospc;
1865 }
Yan2f375ab2008-02-01 14:58:07 -05001866
David Sterbad9d19a02018-03-05 16:35:29 +01001867 ret = tree_mod_log_insert_root(root->node, child, 1);
1868 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04001869 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001870
Chris Mason0b86a832008-03-24 15:01:56 -04001871 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001872 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001873
Chris Mason925baed2008-06-25 16:01:30 -04001874 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001875 path->nodes[level] = NULL;
David Sterba7c302b42017-02-10 18:47:57 +01001876 clean_tree_block(fs_info, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001877 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001878 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001879 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001880
1881 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001882 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001883 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001884 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001885 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001886 }
Chris Mason5f39d392007-10-15 16:14:19 -04001887 if (btrfs_header_nritems(mid) >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001888 BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001889 return 0;
1890
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001891 left = read_node_slot(fs_info, parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001892 if (IS_ERR(left))
1893 left = NULL;
1894
Chris Mason5f39d392007-10-15 16:14:19 -04001895 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001896 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001897 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001898 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001899 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001900 if (wret) {
1901 ret = wret;
1902 goto enospc;
1903 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001904 }
Liu Bofb770ae2016-07-05 12:10:14 -07001905
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001906 right = read_node_slot(fs_info, parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001907 if (IS_ERR(right))
1908 right = NULL;
1909
Chris Mason5f39d392007-10-15 16:14:19 -04001910 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001911 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001912 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001913 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001914 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001915 if (wret) {
1916 ret = wret;
1917 goto enospc;
1918 }
1919 }
1920
1921 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001922 if (left) {
1923 orig_slot += btrfs_header_nritems(left);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001924 wret = push_node_left(trans, fs_info, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001925 if (wret < 0)
1926 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001927 }
Chris Mason79f95c82007-03-01 15:16:26 -05001928
1929 /*
1930 * then try to empty the right most buffer into the middle
1931 */
Chris Mason5f39d392007-10-15 16:14:19 -04001932 if (right) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001933 wret = push_node_left(trans, fs_info, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001934 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001935 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001936 if (btrfs_header_nritems(right) == 0) {
David Sterba7c302b42017-02-10 18:47:57 +01001937 clean_tree_block(fs_info, right);
Chris Mason925baed2008-06-25 16:01:30 -04001938 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001939 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001940 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001941 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001942 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001943 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001944 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001945 struct btrfs_disk_key right_key;
1946 btrfs_node_key(right, &right_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01001947 ret = tree_mod_log_insert_key(parent, pslot + 1,
1948 MOD_LOG_KEY_REPLACE, GFP_NOFS);
1949 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001950 btrfs_set_node_key(parent, &right_key, pslot + 1);
1951 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001952 }
1953 }
Chris Mason5f39d392007-10-15 16:14:19 -04001954 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001955 /*
1956 * we're not allowed to leave a node with one item in the
1957 * tree during a delete. A deletion from lower in the tree
1958 * could try to delete the only pointer in this node.
1959 * So, pull some keys from the left.
1960 * There has to be a left pointer at this point because
1961 * otherwise we would have pulled some pointers from the
1962 * right
1963 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07001964 if (!left) {
1965 ret = -EROFS;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001966 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001967 goto enospc;
1968 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001969 wret = balance_node_right(trans, fs_info, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001970 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001971 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001972 goto enospc;
1973 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001974 if (wret == 1) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001975 wret = push_node_left(trans, fs_info, left, mid, 1);
Chris Masonbce4eae2008-04-24 14:42:46 -04001976 if (wret < 0)
1977 ret = wret;
1978 }
Chris Mason79f95c82007-03-01 15:16:26 -05001979 BUG_ON(wret == 1);
1980 }
Chris Mason5f39d392007-10-15 16:14:19 -04001981 if (btrfs_header_nritems(mid) == 0) {
David Sterba7c302b42017-02-10 18:47:57 +01001982 clean_tree_block(fs_info, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001983 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001984 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001985 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001986 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001987 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001988 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05001989 } else {
1990 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04001991 struct btrfs_disk_key mid_key;
1992 btrfs_node_key(mid, &mid_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01001993 ret = tree_mod_log_insert_key(parent, pslot,
1994 MOD_LOG_KEY_REPLACE, GFP_NOFS);
1995 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001996 btrfs_set_node_key(parent, &mid_key, pslot);
1997 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05001998 }
Chris Masonbb803952007-03-01 12:04:21 -05001999
Chris Mason79f95c82007-03-01 15:16:26 -05002000 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002001 if (left) {
2002 if (btrfs_header_nritems(left) > orig_slot) {
2003 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04002004 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002005 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002006 path->slots[level + 1] -= 1;
2007 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002008 if (mid) {
2009 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002010 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002011 }
Chris Masonbb803952007-03-01 12:04:21 -05002012 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002013 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002014 path->slots[level] = orig_slot;
2015 }
2016 }
Chris Mason79f95c82007-03-01 15:16:26 -05002017 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002018 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002019 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002020 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002021enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002022 if (right) {
2023 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002024 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002025 }
2026 if (left) {
2027 if (path->nodes[level] != left)
2028 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002029 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002030 }
Chris Masonbb803952007-03-01 12:04:21 -05002031 return ret;
2032}
2033
Chris Masond352ac62008-09-29 15:18:18 -04002034/* Node balancing for insertion. Here we only split or push nodes around
2035 * when they are completely full. This is also done top down, so we
2036 * have to be pessimistic.
2037 */
Chris Masond3977122009-01-05 21:25:51 -05002038static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002039 struct btrfs_root *root,
2040 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002041{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002042 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04002043 struct extent_buffer *right = NULL;
2044 struct extent_buffer *mid;
2045 struct extent_buffer *left = NULL;
2046 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002047 int ret = 0;
2048 int wret;
2049 int pslot;
2050 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002051
2052 if (level == 0)
2053 return 1;
2054
Chris Mason5f39d392007-10-15 16:14:19 -04002055 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002056 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002057
Li Zefana05a9bb2011-09-06 16:55:34 +08002058 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002059 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002060 pslot = path->slots[level + 1];
2061 }
Chris Masone66f7092007-04-20 13:16:02 -04002062
Chris Mason5f39d392007-10-15 16:14:19 -04002063 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002064 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002065
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002066 left = read_node_slot(fs_info, parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002067 if (IS_ERR(left))
2068 left = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002069
2070 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002071 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002072 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002073
2074 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002075 btrfs_set_lock_blocking(left);
2076
Chris Mason5f39d392007-10-15 16:14:19 -04002077 left_nr = btrfs_header_nritems(left);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002078 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002079 wret = 1;
2080 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002081 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002082 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002083 if (ret)
2084 wret = 1;
2085 else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002086 wret = push_node_left(trans, fs_info,
Chris Mason971a1f62008-04-24 10:54:32 -04002087 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002088 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002089 }
Chris Masone66f7092007-04-20 13:16:02 -04002090 if (wret < 0)
2091 ret = wret;
2092 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002093 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002094 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002095 btrfs_node_key(mid, &disk_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002096 ret = tree_mod_log_insert_key(parent, pslot,
2097 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2098 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002099 btrfs_set_node_key(parent, &disk_key, pslot);
2100 btrfs_mark_buffer_dirty(parent);
2101 if (btrfs_header_nritems(left) > orig_slot) {
2102 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002103 path->slots[level + 1] -= 1;
2104 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002105 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002106 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002107 } else {
2108 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002109 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002110 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002111 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002112 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002113 }
Chris Masone66f7092007-04-20 13:16:02 -04002114 return 0;
2115 }
Chris Mason925baed2008-06-25 16:01:30 -04002116 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002117 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002118 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002119 right = read_node_slot(fs_info, parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002120 if (IS_ERR(right))
2121 right = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002122
2123 /*
2124 * then try to empty the right most buffer into the middle
2125 */
Chris Mason5f39d392007-10-15 16:14:19 -04002126 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002127 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002128
Chris Mason925baed2008-06-25 16:01:30 -04002129 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002130 btrfs_set_lock_blocking(right);
2131
Chris Mason5f39d392007-10-15 16:14:19 -04002132 right_nr = btrfs_header_nritems(right);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002133 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002134 wret = 1;
2135 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002136 ret = btrfs_cow_block(trans, root, right,
2137 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002138 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002139 if (ret)
2140 wret = 1;
2141 else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002142 wret = balance_node_right(trans, fs_info,
Chris Mason5f39d392007-10-15 16:14:19 -04002143 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002144 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002145 }
Chris Masone66f7092007-04-20 13:16:02 -04002146 if (wret < 0)
2147 ret = wret;
2148 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002149 struct btrfs_disk_key disk_key;
2150
2151 btrfs_node_key(right, &disk_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002152 ret = tree_mod_log_insert_key(parent, pslot + 1,
2153 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2154 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002155 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2156 btrfs_mark_buffer_dirty(parent);
2157
2158 if (btrfs_header_nritems(mid) <= orig_slot) {
2159 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002160 path->slots[level + 1] += 1;
2161 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002162 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002163 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002164 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002165 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002166 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002167 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002168 }
Chris Masone66f7092007-04-20 13:16:02 -04002169 return 0;
2170 }
Chris Mason925baed2008-06-25 16:01:30 -04002171 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002172 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002173 }
Chris Masone66f7092007-04-20 13:16:02 -04002174 return 1;
2175}
2176
Chris Mason74123bd2007-02-02 11:05:29 -05002177/*
Chris Masond352ac62008-09-29 15:18:18 -04002178 * readahead one full node of leaves, finding things that are close
2179 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002180 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002181static void reada_for_search(struct btrfs_fs_info *fs_info,
Chris Masonc8c42862009-04-03 10:14:18 -04002182 struct btrfs_path *path,
2183 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002184{
Chris Mason5f39d392007-10-15 16:14:19 -04002185 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002186 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002187 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002188 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002189 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002190 u64 nread = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002191 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002192 u32 nr;
2193 u32 blocksize;
2194 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002195
Chris Masona6b6e752007-10-15 16:22:39 -04002196 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002197 return;
2198
Chris Mason6702ed42007-08-07 16:15:09 -04002199 if (!path->nodes[level])
2200 return;
2201
Chris Mason5f39d392007-10-15 16:14:19 -04002202 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002203
Chris Mason3c69fae2007-08-07 15:52:22 -04002204 search = btrfs_node_blockptr(node, slot);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002205 blocksize = fs_info->nodesize;
2206 eb = find_extent_buffer(fs_info, search);
Chris Mason5f39d392007-10-15 16:14:19 -04002207 if (eb) {
2208 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002209 return;
2210 }
2211
Chris Masona7175312009-01-22 09:23:10 -05002212 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002213
Chris Mason5f39d392007-10-15 16:14:19 -04002214 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002215 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002216
Chris Masond3977122009-01-05 21:25:51 -05002217 while (1) {
David Sterbae4058b52015-11-27 16:31:35 +01002218 if (path->reada == READA_BACK) {
Chris Mason6b800532007-10-15 16:17:34 -04002219 if (nr == 0)
2220 break;
2221 nr--;
David Sterbae4058b52015-11-27 16:31:35 +01002222 } else if (path->reada == READA_FORWARD) {
Chris Mason6b800532007-10-15 16:17:34 -04002223 nr++;
2224 if (nr >= nritems)
2225 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002226 }
David Sterbae4058b52015-11-27 16:31:35 +01002227 if (path->reada == READA_BACK && objectid) {
Chris Mason01f46652007-12-21 16:24:26 -05002228 btrfs_node_key(node, &disk_key, nr);
2229 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2230 break;
2231 }
Chris Mason6b800532007-10-15 16:17:34 -04002232 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002233 if ((search <= target && target - search <= 65536) ||
2234 (search > target && search - target <= 65536)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002235 readahead_tree_block(fs_info, search);
Chris Mason6b800532007-10-15 16:17:34 -04002236 nread += blocksize;
2237 }
2238 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002239 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002240 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002241 }
2242}
Chris Mason925baed2008-06-25 16:01:30 -04002243
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002244static noinline void reada_for_balance(struct btrfs_fs_info *fs_info,
Josef Bacik0b088512013-06-17 14:23:02 -04002245 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002246{
2247 int slot;
2248 int nritems;
2249 struct extent_buffer *parent;
2250 struct extent_buffer *eb;
2251 u64 gen;
2252 u64 block1 = 0;
2253 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002254
Chris Mason8c594ea2009-04-20 15:50:10 -04002255 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002256 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002257 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002258
2259 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002260 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002261
2262 if (slot > 0) {
2263 block1 = btrfs_node_blockptr(parent, slot - 1);
2264 gen = btrfs_node_ptr_generation(parent, slot - 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002265 eb = find_extent_buffer(fs_info, block1);
Chris Masonb9fab912012-05-06 07:23:47 -04002266 /*
2267 * if we get -eagain from btrfs_buffer_uptodate, we
2268 * don't want to return eagain here. That will loop
2269 * forever
2270 */
2271 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002272 block1 = 0;
2273 free_extent_buffer(eb);
2274 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002275 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002276 block2 = btrfs_node_blockptr(parent, slot + 1);
2277 gen = btrfs_node_ptr_generation(parent, slot + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002278 eb = find_extent_buffer(fs_info, block2);
Chris Masonb9fab912012-05-06 07:23:47 -04002279 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002280 block2 = 0;
2281 free_extent_buffer(eb);
2282 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002283
Josef Bacik0b088512013-06-17 14:23:02 -04002284 if (block1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002285 readahead_tree_block(fs_info, block1);
Josef Bacik0b088512013-06-17 14:23:02 -04002286 if (block2)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002287 readahead_tree_block(fs_info, block2);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002288}
2289
2290
2291/*
Chris Masond3977122009-01-05 21:25:51 -05002292 * when we walk down the tree, it is usually safe to unlock the higher layers
2293 * in the tree. The exceptions are when our path goes through slot 0, because
2294 * operations on the tree might require changing key pointers higher up in the
2295 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002296 *
Chris Masond3977122009-01-05 21:25:51 -05002297 * callers might also have set path->keep_locks, which tells this code to keep
2298 * the lock if the path points to the last slot in the block. This is part of
2299 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002300 *
Chris Masond3977122009-01-05 21:25:51 -05002301 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2302 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002303 */
Chris Masone02119d2008-09-05 16:13:11 -04002304static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002305 int lowest_unlock, int min_write_lock_level,
2306 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002307{
2308 int i;
2309 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002310 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002311 struct extent_buffer *t;
2312
2313 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2314 if (!path->nodes[i])
2315 break;
2316 if (!path->locks[i])
2317 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002318 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002319 skip_level = i + 1;
2320 continue;
2321 }
Chris Mason051e1b92008-06-25 16:01:30 -04002322 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002323 u32 nritems;
2324 t = path->nodes[i];
2325 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002326 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002327 skip_level = i + 1;
2328 continue;
2329 }
2330 }
Chris Mason051e1b92008-06-25 16:01:30 -04002331 if (skip_level < i && i >= lowest_unlock)
2332 no_skips = 1;
2333
Chris Mason925baed2008-06-25 16:01:30 -04002334 t = path->nodes[i];
2335 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002336 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002337 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002338 if (write_lock_level &&
2339 i > min_write_lock_level &&
2340 i <= *write_lock_level) {
2341 *write_lock_level = i - 1;
2342 }
Chris Mason925baed2008-06-25 16:01:30 -04002343 }
2344 }
2345}
2346
Chris Mason3c69fae2007-08-07 15:52:22 -04002347/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002348 * This releases any locks held in the path starting at level and
2349 * going all the way up to the root.
2350 *
2351 * btrfs_search_slot will keep the lock held on higher nodes in a few
2352 * corner cases, such as COW of the block at slot zero in the node. This
2353 * ignores those rules, and it should only be called when there are no
2354 * more updates to be done higher up in the tree.
2355 */
2356noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2357{
2358 int i;
2359
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002360 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002361 return;
2362
2363 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2364 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002365 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002366 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002367 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002368 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002369 path->locks[i] = 0;
2370 }
2371}
2372
2373/*
Chris Masonc8c42862009-04-03 10:14:18 -04002374 * helper function for btrfs_search_slot. The goal is to find a block
2375 * in cache without setting the path to blocking. If we find the block
2376 * we return zero and the path is unchanged.
2377 *
2378 * If we can't find the block, we set the path blocking and do some
2379 * reada. -EAGAIN is returned and the search must be repeated.
2380 */
2381static int
Liu Bod07b8522017-01-30 12:23:42 -08002382read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
2383 struct extent_buffer **eb_ret, int level, int slot,
David Sterbacda79c52017-02-10 18:44:32 +01002384 const struct btrfs_key *key)
Chris Masonc8c42862009-04-03 10:14:18 -04002385{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002386 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonc8c42862009-04-03 10:14:18 -04002387 u64 blocknr;
2388 u64 gen;
Chris Masonc8c42862009-04-03 10:14:18 -04002389 struct extent_buffer *b = *eb_ret;
2390 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002391 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002392
2393 blocknr = btrfs_node_blockptr(b, slot);
2394 gen = btrfs_node_ptr_generation(b, slot);
Chris Masonc8c42862009-04-03 10:14:18 -04002395
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002396 tmp = find_extent_buffer(fs_info, blocknr);
Chris Masoncb449212010-10-24 11:01:27 -04002397 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002398 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002399 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2400 *eb_ret = tmp;
2401 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002402 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002403
2404 /* the pages were up to date, but we failed
2405 * the generation number check. Do a full
2406 * read for the generation number that is correct.
2407 * We must do this without dropping locks so
2408 * we can trust our generation number
2409 */
2410 btrfs_set_path_blocking(p);
2411
2412 /* now we're allowed to do a blocking uptodate check */
2413 ret = btrfs_read_buffer(tmp, gen);
2414 if (!ret) {
2415 *eb_ret = tmp;
2416 return 0;
2417 }
2418 free_extent_buffer(tmp);
2419 btrfs_release_path(p);
2420 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002421 }
2422
2423 /*
2424 * reduce lock contention at high levels
2425 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002426 * we read. Don't release the lock on the current
2427 * level because we need to walk this node to figure
2428 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002429 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002430 btrfs_unlock_up_safe(p, level + 1);
2431 btrfs_set_path_blocking(p);
2432
Chris Masoncb449212010-10-24 11:01:27 -04002433 free_extent_buffer(tmp);
David Sterbae4058b52015-11-27 16:31:35 +01002434 if (p->reada != READA_NONE)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002435 reada_for_search(fs_info, p, level, slot, key->objectid);
Chris Masonc8c42862009-04-03 10:14:18 -04002436
David Sterbab3b4aa72011-04-21 01:20:15 +02002437 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002438
2439 ret = -EAGAIN;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002440 tmp = read_tree_block(fs_info, blocknr, 0);
Liu Bo64c043d2015-05-25 17:30:15 +08002441 if (!IS_ERR(tmp)) {
Chris Mason76a05b32009-05-14 13:24:30 -04002442 /*
2443 * If the read above didn't mark this buffer up to date,
2444 * it will never end up being up to date. Set ret to EIO now
2445 * and give up so that our caller doesn't loop forever
2446 * on our EAGAINs.
2447 */
Chris Masonb9fab912012-05-06 07:23:47 -04002448 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002449 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002450 free_extent_buffer(tmp);
Liu Boc871b0f2016-06-06 12:01:23 -07002451 } else {
2452 ret = PTR_ERR(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002453 }
2454 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002455}
2456
2457/*
2458 * helper function for btrfs_search_slot. This does all of the checks
2459 * for node-level blocks and does any balancing required based on
2460 * the ins_len.
2461 *
2462 * If no extra work was required, zero is returned. If we had to
2463 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2464 * start over
2465 */
2466static int
2467setup_nodes_for_search(struct btrfs_trans_handle *trans,
2468 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002469 struct extent_buffer *b, int level, int ins_len,
2470 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002471{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002472 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonc8c42862009-04-03 10:14:18 -04002473 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002474
Chris Masonc8c42862009-04-03 10:14:18 -04002475 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002476 BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) {
Chris Masonc8c42862009-04-03 10:14:18 -04002477 int sret;
2478
Chris Masonbd681512011-07-16 15:23:14 -04002479 if (*write_lock_level < level + 1) {
2480 *write_lock_level = level + 1;
2481 btrfs_release_path(p);
2482 goto again;
2483 }
2484
Chris Masonc8c42862009-04-03 10:14:18 -04002485 btrfs_set_path_blocking(p);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002486 reada_for_balance(fs_info, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002487 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002488 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002489
2490 BUG_ON(sret > 0);
2491 if (sret) {
2492 ret = sret;
2493 goto done;
2494 }
2495 b = p->nodes[level];
2496 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002497 BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002498 int sret;
2499
Chris Masonbd681512011-07-16 15:23:14 -04002500 if (*write_lock_level < level + 1) {
2501 *write_lock_level = level + 1;
2502 btrfs_release_path(p);
2503 goto again;
2504 }
2505
Chris Masonc8c42862009-04-03 10:14:18 -04002506 btrfs_set_path_blocking(p);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002507 reada_for_balance(fs_info, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002508 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002509 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002510
2511 if (sret) {
2512 ret = sret;
2513 goto done;
2514 }
2515 b = p->nodes[level];
2516 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002517 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002518 goto again;
2519 }
2520 BUG_ON(btrfs_header_nritems(b) == 1);
2521 }
2522 return 0;
2523
2524again:
2525 ret = -EAGAIN;
2526done:
2527 return ret;
2528}
2529
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002530static void key_search_validate(struct extent_buffer *b,
Omar Sandoval310712b2017-01-17 23:24:37 -08002531 const struct btrfs_key *key,
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002532 int level)
2533{
2534#ifdef CONFIG_BTRFS_ASSERT
2535 struct btrfs_disk_key disk_key;
2536
2537 btrfs_cpu_key_to_disk(&disk_key, key);
2538
2539 if (level == 0)
2540 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2541 offsetof(struct btrfs_leaf, items[0].key),
2542 sizeof(disk_key)));
2543 else
2544 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2545 offsetof(struct btrfs_node, ptrs[0].key),
2546 sizeof(disk_key)));
2547#endif
2548}
2549
Omar Sandoval310712b2017-01-17 23:24:37 -08002550static int key_search(struct extent_buffer *b, const struct btrfs_key *key,
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002551 int level, int *prev_cmp, int *slot)
2552{
2553 if (*prev_cmp != 0) {
Nikolay Borisova74b35e2017-12-08 16:27:43 +02002554 *prev_cmp = btrfs_bin_search(b, key, level, slot);
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002555 return *prev_cmp;
2556 }
2557
2558 key_search_validate(b, key, level);
2559 *slot = 0;
2560
2561 return 0;
2562}
2563
David Sterba381cf652015-01-02 18:45:16 +01002564int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002565 u64 iobjectid, u64 ioff, u8 key_type,
2566 struct btrfs_key *found_key)
2567{
2568 int ret;
2569 struct btrfs_key key;
2570 struct extent_buffer *eb;
David Sterba381cf652015-01-02 18:45:16 +01002571
2572 ASSERT(path);
David Sterba1d4c08e2015-01-02 19:36:14 +01002573 ASSERT(found_key);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002574
2575 key.type = key_type;
2576 key.objectid = iobjectid;
2577 key.offset = ioff;
2578
2579 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
David Sterba1d4c08e2015-01-02 19:36:14 +01002580 if (ret < 0)
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002581 return ret;
2582
2583 eb = path->nodes[0];
2584 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2585 ret = btrfs_next_leaf(fs_root, path);
2586 if (ret)
2587 return ret;
2588 eb = path->nodes[0];
2589 }
2590
2591 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2592 if (found_key->type != key.type ||
2593 found_key->objectid != key.objectid)
2594 return 1;
2595
2596 return 0;
2597}
2598
Chris Masonc8c42862009-04-03 10:14:18 -04002599/*
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002600 * btrfs_search_slot - look for a key in a tree and perform necessary
2601 * modifications to preserve tree invariants.
Chris Mason74123bd2007-02-02 11:05:29 -05002602 *
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002603 * @trans: Handle of transaction, used when modifying the tree
2604 * @p: Holds all btree nodes along the search path
2605 * @root: The root node of the tree
2606 * @key: The key we are looking for
2607 * @ins_len: Indicates purpose of search, for inserts it is 1, for
2608 * deletions it's -1. 0 for plain searches
2609 * @cow: boolean should CoW operations be performed. Must always be 1
2610 * when modifying the tree.
Chris Mason97571fd2007-02-24 13:39:08 -05002611 *
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002612 * If @ins_len > 0, nodes and leaves will be split as we walk down the tree.
2613 * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible)
2614 *
2615 * If @key is found, 0 is returned and you can find the item in the leaf level
2616 * of the path (level 0)
2617 *
2618 * If @key isn't found, 1 is returned and the leaf level of the path (level 0)
2619 * points to the slot where it should be inserted
2620 *
2621 * If an error is encountered while searching the tree a negative error number
2622 * is returned
Chris Mason74123bd2007-02-02 11:05:29 -05002623 */
Omar Sandoval310712b2017-01-17 23:24:37 -08002624int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2625 const struct btrfs_key *key, struct btrfs_path *p,
2626 int ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002627{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002628 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04002629 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002630 int slot;
2631 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002632 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002633 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002634 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002635 int root_lock;
2636 /* everything at write_lock_level or lower must be write locked */
2637 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002638 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002639 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002640 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002641
Chris Mason6702ed42007-08-07 16:15:09 -04002642 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002643 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002644 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002645 BUG_ON(!cow && ins_len);
Josef Bacik25179202008-10-29 14:49:05 -04002646
Chris Masonbd681512011-07-16 15:23:14 -04002647 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002648 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002649
Chris Masonbd681512011-07-16 15:23:14 -04002650 /* when we are removing items, we might have to go up to level
2651 * two as we update tree pointers Make sure we keep write
2652 * for those levels as well
2653 */
2654 write_lock_level = 2;
2655 } else if (ins_len > 0) {
2656 /*
2657 * for inserting items, make sure we have a write lock on
2658 * level 1 so we can update keys
2659 */
2660 write_lock_level = 1;
2661 }
2662
2663 if (!cow)
2664 write_lock_level = -1;
2665
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002666 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002667 write_lock_level = BTRFS_MAX_LEVEL;
2668
Chris Masonf7c79f32012-03-19 15:54:38 -04002669 min_write_lock_level = write_lock_level;
2670
Chris Masonbb803952007-03-01 12:04:21 -05002671again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002672 prev_cmp = -1;
Chris Masonbd681512011-07-16 15:23:14 -04002673 /*
2674 * we try very hard to do read locks on the root
2675 */
2676 root_lock = BTRFS_READ_LOCK;
2677 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002678 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002679 /*
2680 * the commit roots are read only
2681 * so we always do read locks
2682 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002683 if (p->need_commit_sem)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002684 down_read(&fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002685 b = root->commit_root;
2686 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002687 level = btrfs_header_level(b);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002688 if (p->need_commit_sem)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002689 up_read(&fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002690 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002691 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002692 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002693 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002694 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002695 level = btrfs_header_level(b);
2696 } else {
2697 /* we don't know the level of the root node
2698 * until we actually have it read locked
2699 */
2700 b = btrfs_read_lock_root_node(root);
2701 level = btrfs_header_level(b);
2702 if (level <= write_lock_level) {
2703 /* whoops, must trade for write lock */
2704 btrfs_tree_read_unlock(b);
2705 free_extent_buffer(b);
2706 b = btrfs_lock_root_node(root);
2707 root_lock = BTRFS_WRITE_LOCK;
2708
2709 /* the level might have changed, check again */
2710 level = btrfs_header_level(b);
2711 }
2712 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002713 }
Chris Masonbd681512011-07-16 15:23:14 -04002714 p->nodes[level] = b;
2715 if (!p->skip_locking)
2716 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002717
Chris Masoneb60cea2007-02-02 09:18:22 -05002718 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002719 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002720
2721 /*
2722 * setup the path here so we can release it under lock
2723 * contention with the cow code
2724 */
Chris Mason02217ed2007-03-02 16:08:05 -05002725 if (cow) {
Nikolay Borisov9ea2c7c2017-12-12 11:14:49 +02002726 bool last_level = (level == (BTRFS_MAX_LEVEL - 1));
2727
Chris Masonc8c42862009-04-03 10:14:18 -04002728 /*
2729 * if we don't really need to cow this block
2730 * then we don't want to set the path blocking,
2731 * so we test it here
2732 */
Jeff Mahoney64c12922016-06-08 00:36:38 -04002733 if (!should_cow_block(trans, root, b)) {
2734 trans->dirty = true;
Chris Mason65b51a02008-08-01 15:11:20 -04002735 goto cow_done;
Jeff Mahoney64c12922016-06-08 00:36:38 -04002736 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002737
Chris Masonbd681512011-07-16 15:23:14 -04002738 /*
2739 * must have write locks on this node and the
2740 * parent
2741 */
Josef Bacik5124e002012-11-07 13:44:13 -05002742 if (level > write_lock_level ||
2743 (level + 1 > write_lock_level &&
2744 level + 1 < BTRFS_MAX_LEVEL &&
2745 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002746 write_lock_level = level + 1;
2747 btrfs_release_path(p);
2748 goto again;
2749 }
2750
Filipe Manana160f4082014-07-28 19:37:17 +01002751 btrfs_set_path_blocking(p);
Nikolay Borisov9ea2c7c2017-12-12 11:14:49 +02002752 if (last_level)
2753 err = btrfs_cow_block(trans, root, b, NULL, 0,
2754 &b);
2755 else
2756 err = btrfs_cow_block(trans, root, b,
2757 p->nodes[level + 1],
2758 p->slots[level + 1], &b);
Yan Zheng33c66f42009-07-22 09:59:00 -04002759 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002760 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002761 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002762 }
Chris Mason02217ed2007-03-02 16:08:05 -05002763 }
Chris Mason65b51a02008-08-01 15:11:20 -04002764cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002765 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002766 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002767
2768 /*
2769 * we have a lock on b and as long as we aren't changing
2770 * the tree, there is no way to for the items in b to change.
2771 * It is safe to drop the lock on our parent before we
2772 * go through the expensive btree search on b.
2773 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002774 * If we're inserting or deleting (ins_len != 0), then we might
2775 * be changing slot zero, which may require changing the parent.
2776 * So, we can't drop the lock until after we know which slot
2777 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002778 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002779 if (!ins_len && !p->keep_locks) {
2780 int u = level + 1;
2781
2782 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2783 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2784 p->locks[u] = 0;
2785 }
2786 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002787
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002788 ret = key_search(b, key, level, &prev_cmp, &slot);
Liu Bo415b35a2016-06-17 19:16:21 -07002789 if (ret < 0)
2790 goto done;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002791
Chris Mason5f39d392007-10-15 16:14:19 -04002792 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002793 int dec = 0;
2794 if (ret && slot > 0) {
2795 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002796 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002797 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002798 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002799 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002800 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002801 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002802 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002803 if (err) {
2804 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002805 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002806 }
Chris Masonc8c42862009-04-03 10:14:18 -04002807 b = p->nodes[level];
2808 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002809
Chris Masonbd681512011-07-16 15:23:14 -04002810 /*
2811 * slot 0 is special, if we change the key
2812 * we have to update the parent pointer
2813 * which means we must have a write lock
2814 * on the parent
2815 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002816 if (slot == 0 && ins_len &&
Chris Masonbd681512011-07-16 15:23:14 -04002817 write_lock_level < level + 1) {
2818 write_lock_level = level + 1;
2819 btrfs_release_path(p);
2820 goto again;
2821 }
2822
Chris Masonf7c79f32012-03-19 15:54:38 -04002823 unlock_up(p, level, lowest_unlock,
2824 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002825
Chris Mason925baed2008-06-25 16:01:30 -04002826 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002827 if (dec)
2828 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002829 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002830 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002831
Liu Bod07b8522017-01-30 12:23:42 -08002832 err = read_block_for_search(root, p, &b, level,
David Sterbacda79c52017-02-10 18:44:32 +01002833 slot, key);
Yan Zheng33c66f42009-07-22 09:59:00 -04002834 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002835 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002836 if (err) {
2837 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002838 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002839 }
Chris Mason76a05b32009-05-14 13:24:30 -04002840
Chris Masonb4ce94d2009-02-04 09:25:08 -05002841 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002842 level = btrfs_header_level(b);
2843 if (level <= write_lock_level) {
2844 err = btrfs_try_tree_write_lock(b);
2845 if (!err) {
2846 btrfs_set_path_blocking(p);
2847 btrfs_tree_lock(b);
2848 btrfs_clear_path_blocking(p, b,
2849 BTRFS_WRITE_LOCK);
2850 }
2851 p->locks[level] = BTRFS_WRITE_LOCK;
2852 } else {
Chris Masonf82c4582014-11-19 10:25:09 -08002853 err = btrfs_tree_read_lock_atomic(b);
Chris Masonbd681512011-07-16 15:23:14 -04002854 if (!err) {
2855 btrfs_set_path_blocking(p);
2856 btrfs_tree_read_lock(b);
2857 btrfs_clear_path_blocking(p, b,
2858 BTRFS_READ_LOCK);
2859 }
2860 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002861 }
Chris Masonbd681512011-07-16 15:23:14 -04002862 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002863 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002864 } else {
2865 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002866 if (ins_len > 0 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002867 btrfs_leaf_free_space(fs_info, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002868 if (write_lock_level < 1) {
2869 write_lock_level = 1;
2870 btrfs_release_path(p);
2871 goto again;
2872 }
2873
Chris Masonb4ce94d2009-02-04 09:25:08 -05002874 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002875 err = split_leaf(trans, root, key,
2876 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002877 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002878
Yan Zheng33c66f42009-07-22 09:59:00 -04002879 BUG_ON(err > 0);
2880 if (err) {
2881 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002882 goto done;
2883 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002884 }
Chris Mason459931e2008-12-10 09:10:46 -05002885 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002886 unlock_up(p, level, lowest_unlock,
2887 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002888 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002889 }
2890 }
Chris Mason65b51a02008-08-01 15:11:20 -04002891 ret = 1;
2892done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002893 /*
2894 * we don't really know what they plan on doing with the path
2895 * from here on, so for now just mark it as blocking
2896 */
Chris Masonb9473432009-03-13 11:00:37 -04002897 if (!p->leave_spinning)
2898 btrfs_set_path_blocking(p);
Filipe Manana5f5bc6b2014-11-09 08:38:39 +00002899 if (ret < 0 && !p->skip_release_on_error)
David Sterbab3b4aa72011-04-21 01:20:15 +02002900 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002901 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002902}
2903
Chris Mason74123bd2007-02-02 11:05:29 -05002904/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002905 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2906 * current state of the tree together with the operations recorded in the tree
2907 * modification log to search for the key in a previous version of this tree, as
2908 * denoted by the time_seq parameter.
2909 *
2910 * Naturally, there is no support for insert, delete or cow operations.
2911 *
2912 * The resulting path and return value will be set up as if we called
2913 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2914 */
Omar Sandoval310712b2017-01-17 23:24:37 -08002915int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002916 struct btrfs_path *p, u64 time_seq)
2917{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002918 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002919 struct extent_buffer *b;
2920 int slot;
2921 int ret;
2922 int err;
2923 int level;
2924 int lowest_unlock = 1;
2925 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002926 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002927
2928 lowest_level = p->lowest_level;
2929 WARN_ON(p->nodes[0] != NULL);
2930
2931 if (p->search_commit_root) {
2932 BUG_ON(time_seq);
2933 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2934 }
2935
2936again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002937 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002938 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002939 p->locks[level] = BTRFS_READ_LOCK;
2940
2941 while (b) {
2942 level = btrfs_header_level(b);
2943 p->nodes[level] = b;
2944 btrfs_clear_path_blocking(p, NULL, 0);
2945
2946 /*
2947 * we have a lock on b and as long as we aren't changing
2948 * the tree, there is no way to for the items in b to change.
2949 * It is safe to drop the lock on our parent before we
2950 * go through the expensive btree search on b.
2951 */
2952 btrfs_unlock_up_safe(p, level + 1);
2953
Josef Bacikd4b40872013-09-24 14:09:34 -04002954 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002955 * Since we can unwind ebs we want to do a real search every
Josef Bacikd4b40872013-09-24 14:09:34 -04002956 * time.
2957 */
2958 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002959 ret = key_search(b, key, level, &prev_cmp, &slot);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002960
2961 if (level != 0) {
2962 int dec = 0;
2963 if (ret && slot > 0) {
2964 dec = 1;
2965 slot -= 1;
2966 }
2967 p->slots[level] = slot;
2968 unlock_up(p, level, lowest_unlock, 0, NULL);
2969
2970 if (level == lowest_level) {
2971 if (dec)
2972 p->slots[level]++;
2973 goto done;
2974 }
2975
Liu Bod07b8522017-01-30 12:23:42 -08002976 err = read_block_for_search(root, p, &b, level,
David Sterbacda79c52017-02-10 18:44:32 +01002977 slot, key);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002978 if (err == -EAGAIN)
2979 goto again;
2980 if (err) {
2981 ret = err;
2982 goto done;
2983 }
2984
2985 level = btrfs_header_level(b);
Chris Masonf82c4582014-11-19 10:25:09 -08002986 err = btrfs_tree_read_lock_atomic(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002987 if (!err) {
2988 btrfs_set_path_blocking(p);
2989 btrfs_tree_read_lock(b);
2990 btrfs_clear_path_blocking(p, b,
2991 BTRFS_READ_LOCK);
2992 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002993 b = tree_mod_log_rewind(fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04002994 if (!b) {
2995 ret = -ENOMEM;
2996 goto done;
2997 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002998 p->locks[level] = BTRFS_READ_LOCK;
2999 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003000 } else {
3001 p->slots[level] = slot;
3002 unlock_up(p, level, lowest_unlock, 0, NULL);
3003 goto done;
3004 }
3005 }
3006 ret = 1;
3007done:
3008 if (!p->leave_spinning)
3009 btrfs_set_path_blocking(p);
3010 if (ret < 0)
3011 btrfs_release_path(p);
3012
3013 return ret;
3014}
3015
3016/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003017 * helper to use instead of search slot if no exact match is needed but
3018 * instead the next or previous item should be returned.
3019 * When find_higher is true, the next higher item is returned, the next lower
3020 * otherwise.
3021 * When return_any and find_higher are both true, and no higher item is found,
3022 * return the next lower instead.
3023 * When return_any is true and find_higher is false, and no lower item is found,
3024 * return the next higher instead.
3025 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3026 * < 0 on error
3027 */
3028int btrfs_search_slot_for_read(struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -08003029 const struct btrfs_key *key,
3030 struct btrfs_path *p, int find_higher,
3031 int return_any)
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003032{
3033 int ret;
3034 struct extent_buffer *leaf;
3035
3036again:
3037 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3038 if (ret <= 0)
3039 return ret;
3040 /*
3041 * a return value of 1 means the path is at the position where the
3042 * item should be inserted. Normally this is the next bigger item,
3043 * but in case the previous item is the last in a leaf, path points
3044 * to the first free slot in the previous leaf, i.e. at an invalid
3045 * item.
3046 */
3047 leaf = p->nodes[0];
3048
3049 if (find_higher) {
3050 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3051 ret = btrfs_next_leaf(root, p);
3052 if (ret <= 0)
3053 return ret;
3054 if (!return_any)
3055 return 1;
3056 /*
3057 * no higher item found, return the next
3058 * lower instead
3059 */
3060 return_any = 0;
3061 find_higher = 0;
3062 btrfs_release_path(p);
3063 goto again;
3064 }
3065 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003066 if (p->slots[0] == 0) {
3067 ret = btrfs_prev_leaf(root, p);
3068 if (ret < 0)
3069 return ret;
3070 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003071 leaf = p->nodes[0];
3072 if (p->slots[0] == btrfs_header_nritems(leaf))
3073 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003074 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003075 }
Arne Jansene6793762011-09-13 11:18:10 +02003076 if (!return_any)
3077 return 1;
3078 /*
3079 * no lower item found, return the next
3080 * higher instead
3081 */
3082 return_any = 0;
3083 find_higher = 1;
3084 btrfs_release_path(p);
3085 goto again;
3086 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003087 --p->slots[0];
3088 }
3089 }
3090 return 0;
3091}
3092
3093/*
Chris Mason74123bd2007-02-02 11:05:29 -05003094 * adjust the pointers going up the tree, starting at level
3095 * making sure the right key of each node is points to 'key'.
3096 * This is used after shifting pointers to the left, so it stops
3097 * fixing up pointers when a given leaf/node is not in slot 0 of the
3098 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003099 *
Chris Mason74123bd2007-02-02 11:05:29 -05003100 */
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003101static void fixup_low_keys(struct btrfs_fs_info *fs_info,
3102 struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003103 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003104{
3105 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003106 struct extent_buffer *t;
David Sterba0e82bcf2018-03-05 16:16:54 +01003107 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04003108
Chris Mason234b63a2007-03-13 10:46:10 -04003109 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003110 int tslot = path->slots[i];
David Sterba0e82bcf2018-03-05 16:16:54 +01003111
Chris Masoneb60cea2007-02-02 09:18:22 -05003112 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003113 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003114 t = path->nodes[i];
David Sterba0e82bcf2018-03-05 16:16:54 +01003115 ret = tree_mod_log_insert_key(t, tslot, MOD_LOG_KEY_REPLACE,
3116 GFP_ATOMIC);
3117 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003118 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003119 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003120 if (tslot != 0)
3121 break;
3122 }
3123}
3124
Chris Mason74123bd2007-02-02 11:05:29 -05003125/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003126 * update item key.
3127 *
3128 * This function isn't completely safe. It's the caller's responsibility
3129 * that the new key won't break the order
3130 */
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003131void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
3132 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08003133 const struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003134{
3135 struct btrfs_disk_key disk_key;
3136 struct extent_buffer *eb;
3137 int slot;
3138
3139 eb = path->nodes[0];
3140 slot = path->slots[0];
3141 if (slot > 0) {
3142 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003143 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003144 }
3145 if (slot < btrfs_header_nritems(eb) - 1) {
3146 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003147 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003148 }
3149
3150 btrfs_cpu_key_to_disk(&disk_key, new_key);
3151 btrfs_set_item_key(eb, &disk_key, slot);
3152 btrfs_mark_buffer_dirty(eb);
3153 if (slot == 0)
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003154 fixup_low_keys(fs_info, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003155}
3156
3157/*
Chris Mason74123bd2007-02-02 11:05:29 -05003158 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003159 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003160 *
3161 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3162 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003163 */
Chris Mason98ed5172008-01-03 10:01:48 -05003164static int push_node_left(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003165 struct btrfs_fs_info *fs_info,
3166 struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003167 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003168{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003169 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003170 int src_nritems;
3171 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003172 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003173
Chris Mason5f39d392007-10-15 16:14:19 -04003174 src_nritems = btrfs_header_nritems(src);
3175 dst_nritems = btrfs_header_nritems(dst);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003176 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003177 WARN_ON(btrfs_header_generation(src) != trans->transid);
3178 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003179
Chris Masonbce4eae2008-04-24 14:42:46 -04003180 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003181 return 1;
3182
Chris Masond3977122009-01-05 21:25:51 -05003183 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003184 return 1;
3185
Chris Masonbce4eae2008-04-24 14:42:46 -04003186 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003187 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003188 if (push_items < src_nritems) {
3189 /* leave at least 8 pointers in the node if
3190 * we aren't going to empty it
3191 */
3192 if (src_nritems - push_items < 8) {
3193 if (push_items <= 8)
3194 return 1;
3195 push_items -= 8;
3196 }
3197 }
3198 } else
3199 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003200
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003201 ret = tree_mod_log_eb_copy(fs_info, dst, src, dst_nritems, 0,
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003202 push_items);
3203 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003204 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003205 return ret;
3206 }
Chris Mason5f39d392007-10-15 16:14:19 -04003207 copy_extent_buffer(dst, src,
3208 btrfs_node_key_ptr_offset(dst_nritems),
3209 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003210 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003211
Chris Masonbb803952007-03-01 12:04:21 -05003212 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003213 /*
David Sterbabf1d3422018-03-05 15:47:39 +01003214 * Don't call tree_mod_log_insert_move here, key removal was
3215 * already fully logged by tree_mod_log_eb_copy above.
Jan Schmidt57911b82012-10-19 09:22:03 +02003216 */
Chris Mason5f39d392007-10-15 16:14:19 -04003217 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3218 btrfs_node_key_ptr_offset(push_items),
3219 (src_nritems - push_items) *
3220 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003221 }
Chris Mason5f39d392007-10-15 16:14:19 -04003222 btrfs_set_header_nritems(src, src_nritems - push_items);
3223 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3224 btrfs_mark_buffer_dirty(src);
3225 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003226
Chris Masonbb803952007-03-01 12:04:21 -05003227 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003228}
3229
Chris Mason97571fd2007-02-24 13:39:08 -05003230/*
Chris Mason79f95c82007-03-01 15:16:26 -05003231 * try to push data from one node into the next node right in the
3232 * tree.
3233 *
3234 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3235 * error, and > 0 if there was no room in the right hand block.
3236 *
3237 * this will only push up to 1/2 the contents of the left node over
3238 */
Chris Mason5f39d392007-10-15 16:14:19 -04003239static int balance_node_right(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003240 struct btrfs_fs_info *fs_info,
Chris Mason5f39d392007-10-15 16:14:19 -04003241 struct extent_buffer *dst,
3242 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003243{
Chris Mason79f95c82007-03-01 15:16:26 -05003244 int push_items = 0;
3245 int max_push;
3246 int src_nritems;
3247 int dst_nritems;
3248 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003249
Chris Mason7bb86312007-12-11 09:25:06 -05003250 WARN_ON(btrfs_header_generation(src) != trans->transid);
3251 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3252
Chris Mason5f39d392007-10-15 16:14:19 -04003253 src_nritems = btrfs_header_nritems(src);
3254 dst_nritems = btrfs_header_nritems(dst);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003255 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003256 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003257 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003258
Chris Masond3977122009-01-05 21:25:51 -05003259 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003260 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003261
3262 max_push = src_nritems / 2 + 1;
3263 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003264 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003265 return 1;
Yan252c38f2007-08-29 09:11:44 -04003266
Chris Mason79f95c82007-03-01 15:16:26 -05003267 if (max_push < push_items)
3268 push_items = max_push;
3269
David Sterbabf1d3422018-03-05 15:47:39 +01003270 ret = tree_mod_log_insert_move(dst, push_items, 0, dst_nritems);
3271 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003272 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3273 btrfs_node_key_ptr_offset(0),
3274 (dst_nritems) *
3275 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003276
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003277 ret = tree_mod_log_eb_copy(fs_info, dst, src, 0,
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003278 src_nritems - push_items, push_items);
3279 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003280 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003281 return ret;
3282 }
Chris Mason5f39d392007-10-15 16:14:19 -04003283 copy_extent_buffer(dst, src,
3284 btrfs_node_key_ptr_offset(0),
3285 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003286 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003287
Chris Mason5f39d392007-10-15 16:14:19 -04003288 btrfs_set_header_nritems(src, src_nritems - push_items);
3289 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003290
Chris Mason5f39d392007-10-15 16:14:19 -04003291 btrfs_mark_buffer_dirty(src);
3292 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003293
Chris Mason79f95c82007-03-01 15:16:26 -05003294 return ret;
3295}
3296
3297/*
Chris Mason97571fd2007-02-24 13:39:08 -05003298 * helper function to insert a new root level in the tree.
3299 * A new node is allocated, and a single item is inserted to
3300 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003301 *
3302 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003303 */
Chris Masond3977122009-01-05 21:25:51 -05003304static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003305 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003306 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003307{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003308 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason7bb86312007-12-11 09:25:06 -05003309 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003310 struct extent_buffer *lower;
3311 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003312 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003313 struct btrfs_disk_key lower_key;
David Sterbad9d19a02018-03-05 16:35:29 +01003314 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003315
3316 BUG_ON(path->nodes[level]);
3317 BUG_ON(path->nodes[level-1] != root->node);
3318
Chris Mason7bb86312007-12-11 09:25:06 -05003319 lower = path->nodes[level-1];
3320 if (level == 1)
3321 btrfs_item_key(lower, &lower_key, 0);
3322 else
3323 btrfs_node_key(lower, &lower_key, 0);
3324
David Sterba4d75f8a2014-06-15 01:54:12 +02003325 c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3326 &lower_key, level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003327 if (IS_ERR(c))
3328 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003329
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003330 root_add_used(root, fs_info->nodesize);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003331
David Sterbab159fa22016-11-08 18:09:03 +01003332 memzero_extent_buffer(c, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003333 btrfs_set_header_nritems(c, 1);
3334 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003335 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003336 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003337 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003338 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003339
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003340 write_extent_buffer_fsid(c, fs_info->fsid);
3341 write_extent_buffer_chunk_tree_uuid(c, fs_info->chunk_tree_uuid);
Chris Masone17cade2008-04-15 15:41:47 -04003342
Chris Mason5f39d392007-10-15 16:14:19 -04003343 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003344 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003345 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003346 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003347
3348 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003349
3350 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003351
Chris Mason925baed2008-06-25 16:01:30 -04003352 old = root->node;
David Sterbad9d19a02018-03-05 16:35:29 +01003353 ret = tree_mod_log_insert_root(root->node, c, 0);
3354 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003355 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003356
3357 /* the super has an extra ref to root->node */
3358 free_extent_buffer(old);
3359
Chris Mason0b86a832008-03-24 15:01:56 -04003360 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003361 extent_buffer_get(c);
3362 path->nodes[level] = c;
chandan95449a12015-01-15 12:22:03 +05303363 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Mason5c680ed2007-02-22 11:39:13 -05003364 path->slots[level] = 0;
3365 return 0;
3366}
3367
Chris Mason74123bd2007-02-02 11:05:29 -05003368/*
3369 * worker function to insert a single pointer in a node.
3370 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003371 *
Chris Mason74123bd2007-02-02 11:05:29 -05003372 * slot and level indicate where you want the key to go, and
3373 * blocknr is the block the key points to.
3374 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003375static void insert_ptr(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003376 struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003377 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003378 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003379{
Chris Mason5f39d392007-10-15 16:14:19 -04003380 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003381 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003382 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003383
3384 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003385 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003386 lower = path->nodes[level];
3387 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003388 BUG_ON(slot > nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003389 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Chris Mason74123bd2007-02-02 11:05:29 -05003390 if (slot != nritems) {
David Sterbabf1d3422018-03-05 15:47:39 +01003391 if (level) {
3392 ret = tree_mod_log_insert_move(lower, slot + 1, slot,
David Sterbaa446a972018-03-05 15:26:29 +01003393 nritems - slot);
David Sterbabf1d3422018-03-05 15:47:39 +01003394 BUG_ON(ret < 0);
3395 }
Chris Mason5f39d392007-10-15 16:14:19 -04003396 memmove_extent_buffer(lower,
3397 btrfs_node_key_ptr_offset(slot + 1),
3398 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003399 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003400 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003401 if (level) {
David Sterbae09c2ef2018-03-05 15:09:03 +01003402 ret = tree_mod_log_insert_key(lower, slot, MOD_LOG_KEY_ADD,
3403 GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003404 BUG_ON(ret < 0);
3405 }
Chris Mason5f39d392007-10-15 16:14:19 -04003406 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003407 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003408 WARN_ON(trans->transid == 0);
3409 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003410 btrfs_set_header_nritems(lower, nritems + 1);
3411 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003412}
3413
Chris Mason97571fd2007-02-24 13:39:08 -05003414/*
3415 * split the node at the specified level in path in two.
3416 * The path is corrected to point to the appropriate node after the split
3417 *
3418 * Before splitting this tries to make some room in the node by pushing
3419 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003420 *
3421 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003422 */
Chris Masone02119d2008-09-05 16:13:11 -04003423static noinline int split_node(struct btrfs_trans_handle *trans,
3424 struct btrfs_root *root,
3425 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003426{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003427 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003428 struct extent_buffer *c;
3429 struct extent_buffer *split;
3430 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003431 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003432 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003433 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003434
Chris Mason5f39d392007-10-15 16:14:19 -04003435 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003436 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003437 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003438 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003439 * trying to split the root, lets make a new one
3440 *
Liu Bofdd99c72013-05-22 12:06:51 +00003441 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003442 * insert_new_root, because that root buffer will be kept as a
3443 * normal node. We are going to log removal of half of the
3444 * elements below with tree_mod_log_eb_copy. We're holding a
3445 * tree lock on the buffer, which is why we cannot race with
3446 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003447 */
Liu Bofdd99c72013-05-22 12:06:51 +00003448 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003449 if (ret)
3450 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003451 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003452 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003453 c = path->nodes[level];
3454 if (!ret && btrfs_header_nritems(c) <
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003455 BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003456 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003457 if (ret < 0)
3458 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003459 }
Chris Masone66f7092007-04-20 13:16:02 -04003460
Chris Mason5f39d392007-10-15 16:14:19 -04003461 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003462 mid = (c_nritems + 1) / 2;
3463 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003464
David Sterba4d75f8a2014-06-15 01:54:12 +02003465 split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3466 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003467 if (IS_ERR(split))
3468 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003469
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003470 root_add_used(root, fs_info->nodesize);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003471
David Sterbab159fa22016-11-08 18:09:03 +01003472 memzero_extent_buffer(split, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003473 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003474 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003475 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003476 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003477 btrfs_set_header_owner(split, root->root_key.objectid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003478 write_extent_buffer_fsid(split, fs_info->fsid);
3479 write_extent_buffer_chunk_tree_uuid(split, fs_info->chunk_tree_uuid);
Chris Mason5f39d392007-10-15 16:14:19 -04003480
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003481 ret = tree_mod_log_eb_copy(fs_info, split, c, 0, mid, c_nritems - mid);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003482 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003483 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003484 return ret;
3485 }
Chris Mason5f39d392007-10-15 16:14:19 -04003486 copy_extent_buffer(split, c,
3487 btrfs_node_key_ptr_offset(0),
3488 btrfs_node_key_ptr_offset(mid),
3489 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3490 btrfs_set_header_nritems(split, c_nritems - mid);
3491 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003492 ret = 0;
3493
Chris Mason5f39d392007-10-15 16:14:19 -04003494 btrfs_mark_buffer_dirty(c);
3495 btrfs_mark_buffer_dirty(split);
3496
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003497 insert_ptr(trans, fs_info, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003498 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003499
Chris Mason5de08d72007-02-24 06:24:44 -05003500 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003501 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003502 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003503 free_extent_buffer(c);
3504 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003505 path->slots[level + 1] += 1;
3506 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003507 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003508 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003509 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003510 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003511}
3512
Chris Mason74123bd2007-02-02 11:05:29 -05003513/*
3514 * how many bytes are required to store the items in a leaf. start
3515 * and nr indicate which items in the leaf to check. This totals up the
3516 * space used both by the item structs and the item data
3517 */
Chris Mason5f39d392007-10-15 16:14:19 -04003518static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003519{
Josef Bacik41be1f32012-10-15 13:43:18 -04003520 struct btrfs_item *start_item;
3521 struct btrfs_item *end_item;
3522 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003523 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003524 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003525 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003526
3527 if (!nr)
3528 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003529 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003530 start_item = btrfs_item_nr(start);
3531 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003532 data_len = btrfs_token_item_offset(l, start_item, &token) +
3533 btrfs_token_item_size(l, start_item, &token);
3534 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003535 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003536 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003537 return data_len;
3538}
3539
Chris Mason74123bd2007-02-02 11:05:29 -05003540/*
Chris Masond4dbff92007-04-04 14:08:15 -04003541 * The space between the end of the leaf items and
3542 * the start of the leaf data. IOW, how much room
3543 * the leaf has left for both items and data
3544 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003545noinline int btrfs_leaf_free_space(struct btrfs_fs_info *fs_info,
Chris Masone02119d2008-09-05 16:13:11 -04003546 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003547{
Chris Mason5f39d392007-10-15 16:14:19 -04003548 int nritems = btrfs_header_nritems(leaf);
3549 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003550
3551 ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003552 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003553 btrfs_crit(fs_info,
3554 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
3555 ret,
3556 (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info),
3557 leaf_space_used(leaf, 0, nritems), nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003558 }
3559 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003560}
3561
Chris Mason99d8f832010-07-07 10:51:48 -04003562/*
3563 * min slot controls the lowest index we're willing to push to the
3564 * right. We'll push up to and including min_slot, but no lower
3565 */
David Sterba1e47eef2017-02-10 19:13:06 +01003566static noinline int __push_leaf_right(struct btrfs_fs_info *fs_info,
Chris Mason44871b12009-03-13 10:04:31 -04003567 struct btrfs_path *path,
3568 int data_size, int empty,
3569 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003570 int free_space, u32 left_nritems,
3571 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003572{
Chris Mason5f39d392007-10-15 16:14:19 -04003573 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003574 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003575 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003576 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003577 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003578 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003579 int push_space = 0;
3580 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003581 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003582 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003583 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003584 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003585 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003586
Chris Masoncfed81a2012-03-03 07:40:03 -05003587 btrfs_init_map_token(&token);
3588
Chris Mason34a38212007-11-07 13:31:03 -05003589 if (empty)
3590 nr = 0;
3591 else
Chris Mason99d8f832010-07-07 10:51:48 -04003592 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003593
Zheng Yan31840ae2008-09-23 13:14:14 -04003594 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003595 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003596
Chris Mason44871b12009-03-13 10:04:31 -04003597 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003598 i = left_nritems - 1;
3599 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003600 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003601
Zheng Yan31840ae2008-09-23 13:14:14 -04003602 if (!empty && push_items > 0) {
3603 if (path->slots[0] > i)
3604 break;
3605 if (path->slots[0] == i) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003606 int space = btrfs_leaf_free_space(fs_info, left);
Zheng Yan31840ae2008-09-23 13:14:14 -04003607 if (space + push_space * 2 > free_space)
3608 break;
3609 }
3610 }
3611
Chris Mason00ec4c52007-02-24 12:47:20 -05003612 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003613 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003614
Chris Masondb945352007-10-15 16:15:53 -04003615 this_item_size = btrfs_item_size(left, item);
3616 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003617 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003618
Chris Mason00ec4c52007-02-24 12:47:20 -05003619 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003620 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003621 if (i == 0)
3622 break;
3623 i--;
Chris Masondb945352007-10-15 16:15:53 -04003624 }
Chris Mason5f39d392007-10-15 16:14:19 -04003625
Chris Mason925baed2008-06-25 16:01:30 -04003626 if (push_items == 0)
3627 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003628
Julia Lawall6c1500f2012-11-03 20:30:18 +00003629 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003630
Chris Mason00ec4c52007-02-24 12:47:20 -05003631 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003632 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003633
Chris Mason5f39d392007-10-15 16:14:19 -04003634 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003635 push_space -= leaf_data_end(fs_info, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003636
Chris Mason00ec4c52007-02-24 12:47:20 -05003637 /* make room in the right data area */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003638 data_end = leaf_data_end(fs_info, right);
Chris Mason5f39d392007-10-15 16:14:19 -04003639 memmove_extent_buffer(right,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003640 BTRFS_LEAF_DATA_OFFSET + data_end - push_space,
3641 BTRFS_LEAF_DATA_OFFSET + data_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003642 BTRFS_LEAF_DATA_SIZE(fs_info) - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003643
Chris Mason00ec4c52007-02-24 12:47:20 -05003644 /* copy from the left data area */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003645 copy_extent_buffer(right, left, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003646 BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003647 BTRFS_LEAF_DATA_OFFSET + leaf_data_end(fs_info, left),
Chris Masond6025572007-03-30 14:27:56 -04003648 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003649
3650 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3651 btrfs_item_nr_offset(0),
3652 right_nritems * sizeof(struct btrfs_item));
3653
Chris Mason00ec4c52007-02-24 12:47:20 -05003654 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003655 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3656 btrfs_item_nr_offset(left_nritems - push_items),
3657 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003658
3659 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003660 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003661 btrfs_set_header_nritems(right, right_nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003662 push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
Chris Mason7518a232007-03-12 12:01:18 -04003663 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003664 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003665 push_space -= btrfs_token_item_size(right, item, &token);
3666 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003667 }
3668
Chris Mason7518a232007-03-12 12:01:18 -04003669 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003670 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003671
Chris Mason34a38212007-11-07 13:31:03 -05003672 if (left_nritems)
3673 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003674 else
David Sterba7c302b42017-02-10 18:47:57 +01003675 clean_tree_block(fs_info, left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003676
Chris Mason5f39d392007-10-15 16:14:19 -04003677 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003678
Chris Mason5f39d392007-10-15 16:14:19 -04003679 btrfs_item_key(right, &disk_key, 0);
3680 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003681 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003682
Chris Mason00ec4c52007-02-24 12:47:20 -05003683 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003684 if (path->slots[0] >= left_nritems) {
3685 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003686 if (btrfs_header_nritems(path->nodes[0]) == 0)
David Sterba7c302b42017-02-10 18:47:57 +01003687 clean_tree_block(fs_info, path->nodes[0]);
Chris Mason925baed2008-06-25 16:01:30 -04003688 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003689 free_extent_buffer(path->nodes[0]);
3690 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003691 path->slots[1] += 1;
3692 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003693 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003694 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003695 }
3696 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003697
3698out_unlock:
3699 btrfs_tree_unlock(right);
3700 free_extent_buffer(right);
3701 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003702}
Chris Mason925baed2008-06-25 16:01:30 -04003703
Chris Mason00ec4c52007-02-24 12:47:20 -05003704/*
Chris Mason44871b12009-03-13 10:04:31 -04003705 * push some data in the path leaf to the right, trying to free up at
3706 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3707 *
3708 * returns 1 if the push failed because the other node didn't have enough
3709 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003710 *
3711 * this will push starting from min_slot to the end of the leaf. It won't
3712 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003713 */
3714static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003715 *root, struct btrfs_path *path,
3716 int min_data_size, int data_size,
3717 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003718{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003719 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04003720 struct extent_buffer *left = path->nodes[0];
3721 struct extent_buffer *right;
3722 struct extent_buffer *upper;
3723 int slot;
3724 int free_space;
3725 u32 left_nritems;
3726 int ret;
3727
3728 if (!path->nodes[1])
3729 return 1;
3730
3731 slot = path->slots[1];
3732 upper = path->nodes[1];
3733 if (slot >= btrfs_header_nritems(upper) - 1)
3734 return 1;
3735
3736 btrfs_assert_tree_locked(path->nodes[1]);
3737
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003738 right = read_node_slot(fs_info, upper, slot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07003739 /*
3740 * slot + 1 is not valid or we fail to read the right node,
3741 * no big deal, just return.
3742 */
3743 if (IS_ERR(right))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003744 return 1;
3745
Chris Mason44871b12009-03-13 10:04:31 -04003746 btrfs_tree_lock(right);
3747 btrfs_set_lock_blocking(right);
3748
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003749 free_space = btrfs_leaf_free_space(fs_info, right);
Chris Mason44871b12009-03-13 10:04:31 -04003750 if (free_space < data_size)
3751 goto out_unlock;
3752
3753 /* cow and double check */
3754 ret = btrfs_cow_block(trans, root, right, upper,
3755 slot + 1, &right);
3756 if (ret)
3757 goto out_unlock;
3758
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003759 free_space = btrfs_leaf_free_space(fs_info, right);
Chris Mason44871b12009-03-13 10:04:31 -04003760 if (free_space < data_size)
3761 goto out_unlock;
3762
3763 left_nritems = btrfs_header_nritems(left);
3764 if (left_nritems == 0)
3765 goto out_unlock;
3766
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003767 if (path->slots[0] == left_nritems && !empty) {
3768 /* Key greater than all keys in the leaf, right neighbor has
3769 * enough room for it and we're not emptying our leaf to delete
3770 * it, therefore use right neighbor to insert the new item and
3771 * no need to touch/dirty our left leaft. */
3772 btrfs_tree_unlock(left);
3773 free_extent_buffer(left);
3774 path->nodes[0] = right;
3775 path->slots[0] = 0;
3776 path->slots[1]++;
3777 return 0;
3778 }
3779
David Sterba1e47eef2017-02-10 19:13:06 +01003780 return __push_leaf_right(fs_info, path, min_data_size, empty,
Chris Mason99d8f832010-07-07 10:51:48 -04003781 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003782out_unlock:
3783 btrfs_tree_unlock(right);
3784 free_extent_buffer(right);
3785 return 1;
3786}
3787
3788/*
Chris Mason74123bd2007-02-02 11:05:29 -05003789 * push some data in the path leaf to the left, trying to free up at
3790 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003791 *
3792 * max_slot can put a limit on how far into the leaf we'll push items. The
3793 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3794 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003795 */
David Sterba66cb7dd2017-02-10 19:14:36 +01003796static noinline int __push_leaf_left(struct btrfs_fs_info *fs_info,
Chris Mason44871b12009-03-13 10:04:31 -04003797 struct btrfs_path *path, int data_size,
3798 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003799 int free_space, u32 right_nritems,
3800 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003801{
Chris Mason5f39d392007-10-15 16:14:19 -04003802 struct btrfs_disk_key disk_key;
3803 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003804 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003805 int push_space = 0;
3806 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003807 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003808 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003809 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003810 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003811 u32 this_item_size;
3812 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003813 struct btrfs_map_token token;
3814
3815 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003816
Chris Mason34a38212007-11-07 13:31:03 -05003817 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003818 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003819 else
Chris Mason99d8f832010-07-07 10:51:48 -04003820 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003821
3822 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003823 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003824
Zheng Yan31840ae2008-09-23 13:14:14 -04003825 if (!empty && push_items > 0) {
3826 if (path->slots[0] < i)
3827 break;
3828 if (path->slots[0] == i) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003829 int space = btrfs_leaf_free_space(fs_info, right);
Zheng Yan31840ae2008-09-23 13:14:14 -04003830 if (space + push_space * 2 > free_space)
3831 break;
3832 }
3833 }
3834
Chris Masonbe0e5c02007-01-26 15:51:26 -05003835 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003836 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003837
3838 this_item_size = btrfs_item_size(right, item);
3839 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003840 break;
Chris Masondb945352007-10-15 16:15:53 -04003841
Chris Masonbe0e5c02007-01-26 15:51:26 -05003842 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003843 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003844 }
Chris Masondb945352007-10-15 16:15:53 -04003845
Chris Masonbe0e5c02007-01-26 15:51:26 -05003846 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003847 ret = 1;
3848 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003849 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303850 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003851
Chris Masonbe0e5c02007-01-26 15:51:26 -05003852 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003853 copy_extent_buffer(left, right,
3854 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3855 btrfs_item_nr_offset(0),
3856 push_items * sizeof(struct btrfs_item));
3857
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003858 push_space = BTRFS_LEAF_DATA_SIZE(fs_info) -
Chris Masond3977122009-01-05 21:25:51 -05003859 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003860
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003861 copy_extent_buffer(left, right, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003862 leaf_data_end(fs_info, left) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003863 BTRFS_LEAF_DATA_OFFSET +
Chris Mason5f39d392007-10-15 16:14:19 -04003864 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003865 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003866 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003867 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003868
Chris Masondb945352007-10-15 16:15:53 -04003869 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003870 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003871 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003872
Ross Kirkdd3cc162013-09-16 15:58:09 +01003873 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003874
Chris Masoncfed81a2012-03-03 07:40:03 -05003875 ioff = btrfs_token_item_offset(left, item, &token);
3876 btrfs_set_token_item_offset(left, item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003877 ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size),
Chris Masoncfed81a2012-03-03 07:40:03 -05003878 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003879 }
Chris Mason5f39d392007-10-15 16:14:19 -04003880 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003881
3882 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003883 if (push_items > right_nritems)
3884 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003885 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003886
Chris Mason34a38212007-11-07 13:31:03 -05003887 if (push_items < right_nritems) {
3888 push_space = btrfs_item_offset_nr(right, push_items - 1) -
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003889 leaf_data_end(fs_info, right);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003890 memmove_extent_buffer(right, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003891 BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003892 BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003893 leaf_data_end(fs_info, right), push_space);
Chris Mason34a38212007-11-07 13:31:03 -05003894
3895 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003896 btrfs_item_nr_offset(push_items),
3897 (btrfs_header_nritems(right) - push_items) *
3898 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003899 }
Yaneef1c492007-11-26 10:58:13 -05003900 right_nritems -= push_items;
3901 btrfs_set_header_nritems(right, right_nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003902 push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
Chris Mason5f39d392007-10-15 16:14:19 -04003903 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003904 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003905
Chris Masoncfed81a2012-03-03 07:40:03 -05003906 push_space = push_space - btrfs_token_item_size(right,
3907 item, &token);
3908 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003909 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003910
Chris Mason5f39d392007-10-15 16:14:19 -04003911 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003912 if (right_nritems)
3913 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003914 else
David Sterba7c302b42017-02-10 18:47:57 +01003915 clean_tree_block(fs_info, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003916
Chris Mason5f39d392007-10-15 16:14:19 -04003917 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003918 fixup_low_keys(fs_info, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003919
3920 /* then fixup the leaf pointer in the path */
3921 if (path->slots[0] < push_items) {
3922 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003923 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003924 free_extent_buffer(path->nodes[0]);
3925 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003926 path->slots[1] -= 1;
3927 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003928 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003929 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003930 path->slots[0] -= push_items;
3931 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003932 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003933 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003934out:
3935 btrfs_tree_unlock(left);
3936 free_extent_buffer(left);
3937 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003938}
3939
Chris Mason74123bd2007-02-02 11:05:29 -05003940/*
Chris Mason44871b12009-03-13 10:04:31 -04003941 * push some data in the path leaf to the left, trying to free up at
3942 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003943 *
3944 * max_slot can put a limit on how far into the leaf we'll push items. The
3945 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3946 * items
Chris Mason44871b12009-03-13 10:04:31 -04003947 */
3948static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003949 *root, struct btrfs_path *path, int min_data_size,
3950 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003951{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003952 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04003953 struct extent_buffer *right = path->nodes[0];
3954 struct extent_buffer *left;
3955 int slot;
3956 int free_space;
3957 u32 right_nritems;
3958 int ret = 0;
3959
3960 slot = path->slots[1];
3961 if (slot == 0)
3962 return 1;
3963 if (!path->nodes[1])
3964 return 1;
3965
3966 right_nritems = btrfs_header_nritems(right);
3967 if (right_nritems == 0)
3968 return 1;
3969
3970 btrfs_assert_tree_locked(path->nodes[1]);
3971
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003972 left = read_node_slot(fs_info, path->nodes[1], slot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07003973 /*
3974 * slot - 1 is not valid or we fail to read the left node,
3975 * no big deal, just return.
3976 */
3977 if (IS_ERR(left))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003978 return 1;
3979
Chris Mason44871b12009-03-13 10:04:31 -04003980 btrfs_tree_lock(left);
3981 btrfs_set_lock_blocking(left);
3982
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003983 free_space = btrfs_leaf_free_space(fs_info, left);
Chris Mason44871b12009-03-13 10:04:31 -04003984 if (free_space < data_size) {
3985 ret = 1;
3986 goto out;
3987 }
3988
3989 /* cow and double check */
3990 ret = btrfs_cow_block(trans, root, left,
3991 path->nodes[1], slot - 1, &left);
3992 if (ret) {
3993 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003994 if (ret == -ENOSPC)
3995 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04003996 goto out;
3997 }
3998
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003999 free_space = btrfs_leaf_free_space(fs_info, left);
Chris Mason44871b12009-03-13 10:04:31 -04004000 if (free_space < data_size) {
4001 ret = 1;
4002 goto out;
4003 }
4004
David Sterba66cb7dd2017-02-10 19:14:36 +01004005 return __push_leaf_left(fs_info, path, min_data_size,
Chris Mason99d8f832010-07-07 10:51:48 -04004006 empty, left, free_space, right_nritems,
4007 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004008out:
4009 btrfs_tree_unlock(left);
4010 free_extent_buffer(left);
4011 return ret;
4012}
4013
4014/*
Chris Mason74123bd2007-02-02 11:05:29 -05004015 * split the path's leaf in two, making sure there is at least data_size
4016 * available for the resulting leaf level of the path.
4017 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004018static noinline void copy_for_split(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004019 struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004020 struct btrfs_path *path,
4021 struct extent_buffer *l,
4022 struct extent_buffer *right,
4023 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004024{
Chris Masonbe0e5c02007-01-26 15:51:26 -05004025 int data_copy_size;
4026 int rt_data_off;
4027 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004028 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004029 struct btrfs_map_token token;
4030
4031 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004032
Chris Mason5f39d392007-10-15 16:14:19 -04004033 nritems = nritems - mid;
4034 btrfs_set_header_nritems(right, nritems);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004035 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(fs_info, l);
Chris Mason5f39d392007-10-15 16:14:19 -04004036
4037 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4038 btrfs_item_nr_offset(mid),
4039 nritems * sizeof(struct btrfs_item));
4040
4041 copy_extent_buffer(right, l,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004042 BTRFS_LEAF_DATA_OFFSET + BTRFS_LEAF_DATA_SIZE(fs_info) -
4043 data_copy_size, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004044 leaf_data_end(fs_info, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004045
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004046 rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_end_nr(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004047
4048 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004049 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004050 u32 ioff;
4051
Chris Masoncfed81a2012-03-03 07:40:03 -05004052 ioff = btrfs_token_item_offset(right, item, &token);
4053 btrfs_set_token_item_offset(right, item,
4054 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004055 }
Chris Mason74123bd2007-02-02 11:05:29 -05004056
Chris Mason5f39d392007-10-15 16:14:19 -04004057 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004058 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004059 insert_ptr(trans, fs_info, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004060 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004061
4062 btrfs_mark_buffer_dirty(right);
4063 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004064 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004065
Chris Masonbe0e5c02007-01-26 15:51:26 -05004066 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004067 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004068 free_extent_buffer(path->nodes[0]);
4069 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004070 path->slots[0] -= mid;
4071 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004072 } else {
4073 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004074 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004075 }
Chris Mason5f39d392007-10-15 16:14:19 -04004076
Chris Masoneb60cea2007-02-02 09:18:22 -05004077 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004078}
4079
4080/*
Chris Mason99d8f832010-07-07 10:51:48 -04004081 * double splits happen when we need to insert a big item in the middle
4082 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4083 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4084 * A B C
4085 *
4086 * We avoid this by trying to push the items on either side of our target
4087 * into the adjacent leaves. If all goes well we can avoid the double split
4088 * completely.
4089 */
4090static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4091 struct btrfs_root *root,
4092 struct btrfs_path *path,
4093 int data_size)
4094{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004095 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason99d8f832010-07-07 10:51:48 -04004096 int ret;
4097 int progress = 0;
4098 int slot;
4099 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004100 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004101
4102 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004103 if (slot < btrfs_header_nritems(path->nodes[0]))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004104 space_needed -= btrfs_leaf_free_space(fs_info, path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004105
4106 /*
4107 * try to push all the items after our slot into the
4108 * right leaf
4109 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004110 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004111 if (ret < 0)
4112 return ret;
4113
4114 if (ret == 0)
4115 progress++;
4116
4117 nritems = btrfs_header_nritems(path->nodes[0]);
4118 /*
4119 * our goal is to get our slot at the start or end of a leaf. If
4120 * we've done so we're done
4121 */
4122 if (path->slots[0] == 0 || path->slots[0] == nritems)
4123 return 0;
4124
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004125 if (btrfs_leaf_free_space(fs_info, path->nodes[0]) >= data_size)
Chris Mason99d8f832010-07-07 10:51:48 -04004126 return 0;
4127
4128 /* try to push all the items before our slot into the next leaf */
4129 slot = path->slots[0];
Filipe Manana263d3992017-02-17 18:43:57 +00004130 space_needed = data_size;
4131 if (slot > 0)
4132 space_needed -= btrfs_leaf_free_space(fs_info, path->nodes[0]);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004133 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004134 if (ret < 0)
4135 return ret;
4136
4137 if (ret == 0)
4138 progress++;
4139
4140 if (progress)
4141 return 0;
4142 return 1;
4143}
4144
4145/*
Chris Mason44871b12009-03-13 10:04:31 -04004146 * split the path's leaf in two, making sure there is at least data_size
4147 * available for the resulting leaf level of the path.
4148 *
4149 * returns 0 if all went well and < 0 on failure.
4150 */
4151static noinline int split_leaf(struct btrfs_trans_handle *trans,
4152 struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -08004153 const struct btrfs_key *ins_key,
Chris Mason44871b12009-03-13 10:04:31 -04004154 struct btrfs_path *path, int data_size,
4155 int extend)
4156{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004157 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004158 struct extent_buffer *l;
4159 u32 nritems;
4160 int mid;
4161 int slot;
4162 struct extent_buffer *right;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004163 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04004164 int ret = 0;
4165 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004166 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004167 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004168 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004169
Yan, Zhenga5719522009-09-24 09:17:31 -04004170 l = path->nodes[0];
4171 slot = path->slots[0];
4172 if (extend && data_size + btrfs_item_size_nr(l, slot) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004173 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info))
Yan, Zhenga5719522009-09-24 09:17:31 -04004174 return -EOVERFLOW;
4175
Chris Mason44871b12009-03-13 10:04:31 -04004176 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004177 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004178 int space_needed = data_size;
4179
4180 if (slot < btrfs_header_nritems(l))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004181 space_needed -= btrfs_leaf_free_space(fs_info, l);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004182
4183 wret = push_leaf_right(trans, root, path, space_needed,
4184 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004185 if (wret < 0)
4186 return wret;
4187 if (wret) {
Filipe Manana263d3992017-02-17 18:43:57 +00004188 space_needed = data_size;
4189 if (slot > 0)
4190 space_needed -= btrfs_leaf_free_space(fs_info,
4191 l);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004192 wret = push_leaf_left(trans, root, path, space_needed,
4193 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004194 if (wret < 0)
4195 return wret;
4196 }
4197 l = path->nodes[0];
4198
4199 /* did the pushes work? */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004200 if (btrfs_leaf_free_space(fs_info, l) >= data_size)
Chris Mason44871b12009-03-13 10:04:31 -04004201 return 0;
4202 }
4203
4204 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004205 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004206 if (ret)
4207 return ret;
4208 }
4209again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004210 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004211 l = path->nodes[0];
4212 slot = path->slots[0];
4213 nritems = btrfs_header_nritems(l);
4214 mid = (nritems + 1) / 2;
4215
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004216 if (mid <= slot) {
4217 if (nritems == 1 ||
4218 leaf_space_used(l, mid, nritems - mid) + data_size >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004219 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004220 if (slot >= nritems) {
4221 split = 0;
4222 } else {
4223 mid = slot;
4224 if (mid != nritems &&
4225 leaf_space_used(l, mid, nritems - mid) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004226 data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004227 if (data_size && !tried_avoid_double)
4228 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004229 split = 2;
4230 }
4231 }
4232 }
4233 } else {
4234 if (leaf_space_used(l, 0, mid) + data_size >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004235 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004236 if (!extend && data_size && slot == 0) {
4237 split = 0;
4238 } else if ((extend || !data_size) && slot == 0) {
4239 mid = 1;
4240 } else {
4241 mid = slot;
4242 if (mid != nritems &&
4243 leaf_space_used(l, mid, nritems - mid) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004244 data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004245 if (data_size && !tried_avoid_double)
4246 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304247 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004248 }
4249 }
4250 }
4251 }
4252
4253 if (split == 0)
4254 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4255 else
4256 btrfs_item_key(l, &disk_key, mid);
4257
David Sterba4d75f8a2014-06-15 01:54:12 +02004258 right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
4259 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004260 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004261 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004262
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004263 root_add_used(root, fs_info->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004264
David Sterbab159fa22016-11-08 18:09:03 +01004265 memzero_extent_buffer(right, 0, sizeof(struct btrfs_header));
Chris Mason44871b12009-03-13 10:04:31 -04004266 btrfs_set_header_bytenr(right, right->start);
4267 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004268 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004269 btrfs_set_header_owner(right, root->root_key.objectid);
4270 btrfs_set_header_level(right, 0);
David Sterbad24ee972016-11-09 17:44:25 +01004271 write_extent_buffer_fsid(right, fs_info->fsid);
4272 write_extent_buffer_chunk_tree_uuid(right, fs_info->chunk_tree_uuid);
Chris Mason44871b12009-03-13 10:04:31 -04004273
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004274 if (split == 0) {
4275 if (mid <= slot) {
4276 btrfs_set_header_nritems(right, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004277 insert_ptr(trans, fs_info, path, &disk_key,
4278 right->start, path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004279 btrfs_tree_unlock(path->nodes[0]);
4280 free_extent_buffer(path->nodes[0]);
4281 path->nodes[0] = right;
4282 path->slots[0] = 0;
4283 path->slots[1] += 1;
4284 } else {
4285 btrfs_set_header_nritems(right, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004286 insert_ptr(trans, fs_info, path, &disk_key,
4287 right->start, path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004288 btrfs_tree_unlock(path->nodes[0]);
4289 free_extent_buffer(path->nodes[0]);
4290 path->nodes[0] = right;
4291 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004292 if (path->slots[1] == 0)
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004293 fixup_low_keys(fs_info, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004294 }
Liu Bo196e0242016-09-07 14:48:28 -07004295 /*
4296 * We create a new leaf 'right' for the required ins_len and
4297 * we'll do btrfs_mark_buffer_dirty() on this leaf after copying
4298 * the content of ins_len to 'right'.
4299 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004300 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004301 }
4302
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004303 copy_for_split(trans, fs_info, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004304
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004305 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004306 BUG_ON(num_doubles != 0);
4307 num_doubles++;
4308 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004309 }
Chris Mason44871b12009-03-13 10:04:31 -04004310
Jeff Mahoney143bede2012-03-01 14:56:26 +01004311 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004312
4313push_for_double:
4314 push_for_double_split(trans, root, path, data_size);
4315 tried_avoid_double = 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004316 if (btrfs_leaf_free_space(fs_info, path->nodes[0]) >= data_size)
Chris Mason99d8f832010-07-07 10:51:48 -04004317 return 0;
4318 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004319}
4320
Yan, Zhengad48fd752009-11-12 09:33:58 +00004321static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4322 struct btrfs_root *root,
4323 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004324{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004325 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004326 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004327 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004328 struct btrfs_file_extent_item *fi;
4329 u64 extent_len = 0;
4330 u32 item_size;
4331 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004332
4333 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004334 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4335
4336 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4337 key.type != BTRFS_EXTENT_CSUM_KEY);
4338
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004339 if (btrfs_leaf_free_space(fs_info, leaf) >= ins_len)
Yan, Zhengad48fd752009-11-12 09:33:58 +00004340 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004341
4342 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004343 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4344 fi = btrfs_item_ptr(leaf, path->slots[0],
4345 struct btrfs_file_extent_item);
4346 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4347 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004348 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004349
Chris Mason459931e2008-12-10 09:10:46 -05004350 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004351 path->search_for_split = 1;
4352 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004353 path->search_for_split = 0;
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004354 if (ret > 0)
4355 ret = -EAGAIN;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004356 if (ret < 0)
4357 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004358
Yan, Zhengad48fd752009-11-12 09:33:58 +00004359 ret = -EAGAIN;
4360 leaf = path->nodes[0];
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004361 /* if our item isn't there, return now */
4362 if (item_size != btrfs_item_size_nr(leaf, path->slots[0]))
Yan, Zhengad48fd752009-11-12 09:33:58 +00004363 goto err;
4364
Chris Mason109f6ae2010-04-02 09:20:18 -04004365 /* the leaf has changed, it now has room. return now */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004366 if (btrfs_leaf_free_space(fs_info, path->nodes[0]) >= ins_len)
Chris Mason109f6ae2010-04-02 09:20:18 -04004367 goto err;
4368
Yan, Zhengad48fd752009-11-12 09:33:58 +00004369 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4370 fi = btrfs_item_ptr(leaf, path->slots[0],
4371 struct btrfs_file_extent_item);
4372 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4373 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004374 }
4375
Chris Masonb9473432009-03-13 11:00:37 -04004376 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004377 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004378 if (ret)
4379 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004380
Yan, Zhengad48fd752009-11-12 09:33:58 +00004381 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004382 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004383 return 0;
4384err:
4385 path->keep_locks = 0;
4386 return ret;
4387}
4388
David Sterba4961e292017-02-10 18:49:53 +01004389static noinline int split_item(struct btrfs_fs_info *fs_info,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004390 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004391 const struct btrfs_key *new_key,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004392 unsigned long split_offset)
4393{
4394 struct extent_buffer *leaf;
4395 struct btrfs_item *item;
4396 struct btrfs_item *new_item;
4397 int slot;
4398 char *buf;
4399 u32 nritems;
4400 u32 item_size;
4401 u32 orig_offset;
4402 struct btrfs_disk_key disk_key;
4403
Chris Masonb9473432009-03-13 11:00:37 -04004404 leaf = path->nodes[0];
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004405 BUG_ON(btrfs_leaf_free_space(fs_info, leaf) < sizeof(struct btrfs_item));
Chris Masonb9473432009-03-13 11:00:37 -04004406
Chris Masonb4ce94d2009-02-04 09:25:08 -05004407 btrfs_set_path_blocking(path);
4408
Ross Kirkdd3cc162013-09-16 15:58:09 +01004409 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004410 orig_offset = btrfs_item_offset(leaf, item);
4411 item_size = btrfs_item_size(leaf, item);
4412
Chris Mason459931e2008-12-10 09:10:46 -05004413 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004414 if (!buf)
4415 return -ENOMEM;
4416
Chris Mason459931e2008-12-10 09:10:46 -05004417 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4418 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004419
Chris Mason459931e2008-12-10 09:10:46 -05004420 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004421 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004422 if (slot != nritems) {
4423 /* shift the items */
4424 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004425 btrfs_item_nr_offset(slot),
4426 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004427 }
4428
4429 btrfs_cpu_key_to_disk(&disk_key, new_key);
4430 btrfs_set_item_key(leaf, &disk_key, slot);
4431
Ross Kirkdd3cc162013-09-16 15:58:09 +01004432 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004433
4434 btrfs_set_item_offset(leaf, new_item, orig_offset);
4435 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4436
4437 btrfs_set_item_offset(leaf, item,
4438 orig_offset + item_size - split_offset);
4439 btrfs_set_item_size(leaf, item, split_offset);
4440
4441 btrfs_set_header_nritems(leaf, nritems + 1);
4442
4443 /* write the data for the start of the original item */
4444 write_extent_buffer(leaf, buf,
4445 btrfs_item_ptr_offset(leaf, path->slots[0]),
4446 split_offset);
4447
4448 /* write the data for the new item */
4449 write_extent_buffer(leaf, buf + split_offset,
4450 btrfs_item_ptr_offset(leaf, slot),
4451 item_size - split_offset);
4452 btrfs_mark_buffer_dirty(leaf);
4453
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004454 BUG_ON(btrfs_leaf_free_space(fs_info, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004455 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004456 return 0;
4457}
4458
4459/*
4460 * This function splits a single item into two items,
4461 * giving 'new_key' to the new item and splitting the
4462 * old one at split_offset (from the start of the item).
4463 *
4464 * The path may be released by this operation. After
4465 * the split, the path is pointing to the old item. The
4466 * new item is going to be in the same node as the old one.
4467 *
4468 * Note, the item being split must be smaller enough to live alone on
4469 * a tree block with room for one extra struct btrfs_item
4470 *
4471 * This allows us to split the item in place, keeping a lock on the
4472 * leaf the entire time.
4473 */
4474int btrfs_split_item(struct btrfs_trans_handle *trans,
4475 struct btrfs_root *root,
4476 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004477 const struct btrfs_key *new_key,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004478 unsigned long split_offset)
4479{
4480 int ret;
4481 ret = setup_leaf_for_split(trans, root, path,
4482 sizeof(struct btrfs_item));
4483 if (ret)
4484 return ret;
4485
David Sterba4961e292017-02-10 18:49:53 +01004486 ret = split_item(root->fs_info, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004487 return ret;
4488}
4489
4490/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004491 * This function duplicate a item, giving 'new_key' to the new item.
4492 * It guarantees both items live in the same tree leaf and the new item
4493 * is contiguous with the original item.
4494 *
4495 * This allows us to split file extent in place, keeping a lock on the
4496 * leaf the entire time.
4497 */
4498int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4499 struct btrfs_root *root,
4500 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004501 const struct btrfs_key *new_key)
Yan, Zhengad48fd752009-11-12 09:33:58 +00004502{
4503 struct extent_buffer *leaf;
4504 int ret;
4505 u32 item_size;
4506
4507 leaf = path->nodes[0];
4508 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4509 ret = setup_leaf_for_split(trans, root, path,
4510 item_size + sizeof(struct btrfs_item));
4511 if (ret)
4512 return ret;
4513
4514 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004515 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004516 item_size, item_size +
4517 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004518 leaf = path->nodes[0];
4519 memcpy_extent_buffer(leaf,
4520 btrfs_item_ptr_offset(leaf, path->slots[0]),
4521 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4522 item_size);
4523 return 0;
4524}
4525
4526/*
Chris Masond352ac62008-09-29 15:18:18 -04004527 * make the item pointed to by the path smaller. new_size indicates
4528 * how small to make it, and from_end tells us if we just chop bytes
4529 * off the end of the item or if we shift the item to chop bytes off
4530 * the front.
4531 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004532void btrfs_truncate_item(struct btrfs_fs_info *fs_info,
4533 struct btrfs_path *path, u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004534{
Chris Masonb18c6682007-04-17 13:26:50 -04004535 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004536 struct extent_buffer *leaf;
4537 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004538 u32 nritems;
4539 unsigned int data_end;
4540 unsigned int old_data_start;
4541 unsigned int old_size;
4542 unsigned int size_diff;
4543 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004544 struct btrfs_map_token token;
4545
4546 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004547
Chris Mason5f39d392007-10-15 16:14:19 -04004548 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004549 slot = path->slots[0];
4550
4551 old_size = btrfs_item_size_nr(leaf, slot);
4552 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004553 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004554
Chris Mason5f39d392007-10-15 16:14:19 -04004555 nritems = btrfs_header_nritems(leaf);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004556 data_end = leaf_data_end(fs_info, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004557
Chris Mason5f39d392007-10-15 16:14:19 -04004558 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004559
Chris Masonb18c6682007-04-17 13:26:50 -04004560 size_diff = old_size - new_size;
4561
4562 BUG_ON(slot < 0);
4563 BUG_ON(slot >= nritems);
4564
4565 /*
4566 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4567 */
4568 /* first correct the data pointers */
4569 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004570 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004571 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004572
Chris Masoncfed81a2012-03-03 07:40:03 -05004573 ioff = btrfs_token_item_offset(leaf, item, &token);
4574 btrfs_set_token_item_offset(leaf, item,
4575 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004576 }
Chris Masondb945352007-10-15 16:15:53 -04004577
Chris Masonb18c6682007-04-17 13:26:50 -04004578 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004579 if (from_end) {
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004580 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4581 data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
Chris Mason179e29e2007-11-01 11:28:41 -04004582 data_end, old_data_start + new_size - data_end);
4583 } else {
4584 struct btrfs_disk_key disk_key;
4585 u64 offset;
4586
4587 btrfs_item_key(leaf, &disk_key, slot);
4588
4589 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4590 unsigned long ptr;
4591 struct btrfs_file_extent_item *fi;
4592
4593 fi = btrfs_item_ptr(leaf, slot,
4594 struct btrfs_file_extent_item);
4595 fi = (struct btrfs_file_extent_item *)(
4596 (unsigned long)fi - size_diff);
4597
4598 if (btrfs_file_extent_type(leaf, fi) ==
4599 BTRFS_FILE_EXTENT_INLINE) {
4600 ptr = btrfs_item_ptr_offset(leaf, slot);
4601 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004602 (unsigned long)fi,
David Sterba7ec20af2014-07-24 17:34:58 +02004603 BTRFS_FILE_EXTENT_INLINE_DATA_START);
Chris Mason179e29e2007-11-01 11:28:41 -04004604 }
4605 }
4606
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004607 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4608 data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
Chris Mason179e29e2007-11-01 11:28:41 -04004609 data_end, old_data_start - data_end);
4610
4611 offset = btrfs_disk_key_offset(&disk_key);
4612 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4613 btrfs_set_item_key(leaf, &disk_key, slot);
4614 if (slot == 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004615 fixup_low_keys(fs_info, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004616 }
Chris Mason5f39d392007-10-15 16:14:19 -04004617
Ross Kirkdd3cc162013-09-16 15:58:09 +01004618 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004619 btrfs_set_item_size(leaf, item, new_size);
4620 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004621
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004622 if (btrfs_leaf_free_space(fs_info, leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004623 btrfs_print_leaf(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004624 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004625 }
Chris Masonb18c6682007-04-17 13:26:50 -04004626}
4627
Chris Masond352ac62008-09-29 15:18:18 -04004628/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004629 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004630 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004631void btrfs_extend_item(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004632 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004633{
Chris Mason6567e832007-04-16 09:22:45 -04004634 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004635 struct extent_buffer *leaf;
4636 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004637 u32 nritems;
4638 unsigned int data_end;
4639 unsigned int old_data;
4640 unsigned int old_size;
4641 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004642 struct btrfs_map_token token;
4643
4644 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004645
Chris Mason5f39d392007-10-15 16:14:19 -04004646 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004647
Chris Mason5f39d392007-10-15 16:14:19 -04004648 nritems = btrfs_header_nritems(leaf);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004649 data_end = leaf_data_end(fs_info, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004650
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004651 if (btrfs_leaf_free_space(fs_info, leaf) < data_size) {
David Sterbaa4f78752017-06-29 18:37:49 +02004652 btrfs_print_leaf(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004653 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004654 }
Chris Mason6567e832007-04-16 09:22:45 -04004655 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004656 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004657
4658 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004659 if (slot >= nritems) {
David Sterbaa4f78752017-06-29 18:37:49 +02004660 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004661 btrfs_crit(fs_info, "slot %d too large, nritems %d",
4662 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004663 BUG_ON(1);
4664 }
Chris Mason6567e832007-04-16 09:22:45 -04004665
4666 /*
4667 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4668 */
4669 /* first correct the data pointers */
4670 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004671 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004672 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004673
Chris Masoncfed81a2012-03-03 07:40:03 -05004674 ioff = btrfs_token_item_offset(leaf, item, &token);
4675 btrfs_set_token_item_offset(leaf, item,
4676 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004677 }
Chris Mason5f39d392007-10-15 16:14:19 -04004678
Chris Mason6567e832007-04-16 09:22:45 -04004679 /* shift the data */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004680 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4681 data_end - data_size, BTRFS_LEAF_DATA_OFFSET +
Chris Mason6567e832007-04-16 09:22:45 -04004682 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004683
Chris Mason6567e832007-04-16 09:22:45 -04004684 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004685 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004686 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004687 btrfs_set_item_size(leaf, item, old_size + data_size);
4688 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004689
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004690 if (btrfs_leaf_free_space(fs_info, leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004691 btrfs_print_leaf(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004692 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004693 }
Chris Mason6567e832007-04-16 09:22:45 -04004694}
4695
Chris Mason74123bd2007-02-02 11:05:29 -05004696/*
Chris Mason44871b12009-03-13 10:04:31 -04004697 * this is a helper for btrfs_insert_empty_items, the main goal here is
4698 * to save stack depth by doing the bulk of the work in a function
4699 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004700 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004701void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004702 const struct btrfs_key *cpu_key, u32 *data_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004703 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004704{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004705 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004706 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004707 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004708 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004709 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004710 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004711 struct extent_buffer *leaf;
4712 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004713 struct btrfs_map_token token;
4714
Filipe Manana24cdc842014-07-28 19:34:35 +01004715 if (path->slots[0] == 0) {
4716 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004717 fixup_low_keys(fs_info, path, &disk_key, 1);
Filipe Manana24cdc842014-07-28 19:34:35 +01004718 }
4719 btrfs_unlock_up_safe(path, 1);
4720
Chris Masoncfed81a2012-03-03 07:40:03 -05004721 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004722
Chris Mason5f39d392007-10-15 16:14:19 -04004723 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004724 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004725
Chris Mason5f39d392007-10-15 16:14:19 -04004726 nritems = btrfs_header_nritems(leaf);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004727 data_end = leaf_data_end(fs_info, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004728
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004729 if (btrfs_leaf_free_space(fs_info, leaf) < total_size) {
David Sterbaa4f78752017-06-29 18:37:49 +02004730 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004731 btrfs_crit(fs_info, "not enough freespace need %u have %d",
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004732 total_size, btrfs_leaf_free_space(fs_info, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004733 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004734 }
Chris Mason5f39d392007-10-15 16:14:19 -04004735
Chris Masonbe0e5c02007-01-26 15:51:26 -05004736 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004737 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004738
Chris Mason5f39d392007-10-15 16:14:19 -04004739 if (old_data < data_end) {
David Sterbaa4f78752017-06-29 18:37:49 +02004740 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004741 btrfs_crit(fs_info, "slot %d old_data %d data_end %d",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004742 slot, old_data, data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004743 BUG_ON(1);
4744 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004745 /*
4746 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4747 */
4748 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004749 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004750 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004751
Jeff Mahoney62e85572016-09-20 10:05:01 -04004752 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004753 ioff = btrfs_token_item_offset(leaf, item, &token);
4754 btrfs_set_token_item_offset(leaf, item,
4755 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004756 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004757 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004758 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004759 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004760 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004761
4762 /* shift the data */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004763 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4764 data_end - total_data, BTRFS_LEAF_DATA_OFFSET +
Chris Masond6025572007-03-30 14:27:56 -04004765 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004766 data_end = old_data;
4767 }
Chris Mason5f39d392007-10-15 16:14:19 -04004768
Chris Mason62e27492007-03-15 12:56:47 -04004769 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004770 for (i = 0; i < nr; i++) {
4771 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4772 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004773 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004774 btrfs_set_token_item_offset(leaf, item,
4775 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004776 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004777 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004778 }
Chris Mason44871b12009-03-13 10:04:31 -04004779
Chris Mason9c583092008-01-29 15:15:18 -05004780 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004781 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004782
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004783 if (btrfs_leaf_free_space(fs_info, leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004784 btrfs_print_leaf(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004785 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004786 }
Chris Mason44871b12009-03-13 10:04:31 -04004787}
4788
4789/*
4790 * Given a key and some data, insert items into the tree.
4791 * This does all the path init required, making room in the tree if needed.
4792 */
4793int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4794 struct btrfs_root *root,
4795 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004796 const struct btrfs_key *cpu_key, u32 *data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004797 int nr)
4798{
Chris Mason44871b12009-03-13 10:04:31 -04004799 int ret = 0;
4800 int slot;
4801 int i;
4802 u32 total_size = 0;
4803 u32 total_data = 0;
4804
4805 for (i = 0; i < nr; i++)
4806 total_data += data_size[i];
4807
4808 total_size = total_data + (nr * sizeof(struct btrfs_item));
4809 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4810 if (ret == 0)
4811 return -EEXIST;
4812 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004813 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004814
Chris Mason44871b12009-03-13 10:04:31 -04004815 slot = path->slots[0];
4816 BUG_ON(slot < 0);
4817
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004818 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004819 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004820 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004821}
4822
4823/*
4824 * Given a key and some data, insert an item into the tree.
4825 * This does all the path init required, making room in the tree if needed.
4826 */
Omar Sandoval310712b2017-01-17 23:24:37 -08004827int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4828 const struct btrfs_key *cpu_key, void *data,
4829 u32 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004830{
4831 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004832 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004833 struct extent_buffer *leaf;
4834 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004835
Chris Mason2c90e5d2007-04-02 10:50:19 -04004836 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004837 if (!path)
4838 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004839 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004840 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004841 leaf = path->nodes[0];
4842 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4843 write_extent_buffer(leaf, data, ptr, data_size);
4844 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004845 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004846 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004847 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004848}
4849
Chris Mason74123bd2007-02-02 11:05:29 -05004850/*
Chris Mason5de08d72007-02-24 06:24:44 -05004851 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004852 *
Chris Masond352ac62008-09-29 15:18:18 -04004853 * the tree should have been previously balanced so the deletion does not
4854 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004855 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004856static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4857 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004858{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004859 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004860 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004861 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004862 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004863
Chris Mason5f39d392007-10-15 16:14:19 -04004864 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004865 if (slot != nritems - 1) {
David Sterbabf1d3422018-03-05 15:47:39 +01004866 if (level) {
4867 ret = tree_mod_log_insert_move(parent, slot, slot + 1,
David Sterbaa446a972018-03-05 15:26:29 +01004868 nritems - slot - 1);
David Sterbabf1d3422018-03-05 15:47:39 +01004869 BUG_ON(ret < 0);
4870 }
Chris Mason5f39d392007-10-15 16:14:19 -04004871 memmove_extent_buffer(parent,
4872 btrfs_node_key_ptr_offset(slot),
4873 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004874 sizeof(struct btrfs_key_ptr) *
4875 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004876 } else if (level) {
David Sterbae09c2ef2018-03-05 15:09:03 +01004877 ret = tree_mod_log_insert_key(parent, slot, MOD_LOG_KEY_REMOVE,
4878 GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004879 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004880 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004881
Chris Mason7518a232007-03-12 12:01:18 -04004882 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004883 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004884 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004885 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004886 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004887 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004888 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004889 struct btrfs_disk_key disk_key;
4890
4891 btrfs_node_key(parent, &disk_key, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004892 fixup_low_keys(fs_info, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004893 }
Chris Masond6025572007-03-30 14:27:56 -04004894 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004895}
4896
Chris Mason74123bd2007-02-02 11:05:29 -05004897/*
Chris Mason323ac952008-10-01 19:05:46 -04004898 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004899 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004900 *
4901 * This deletes the pointer in path->nodes[1] and frees the leaf
4902 * block extent. zero is returned if it all worked out, < 0 otherwise.
4903 *
4904 * The path must have already been setup for deleting the leaf, including
4905 * all the proper balancing. path->nodes[1] must be locked.
4906 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004907static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4908 struct btrfs_root *root,
4909 struct btrfs_path *path,
4910 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004911{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004912 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004913 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004914
Chris Mason4d081c42009-02-04 09:31:28 -05004915 /*
4916 * btrfs_free_extent is expensive, we want to make sure we
4917 * aren't holding any locks when we call it
4918 */
4919 btrfs_unlock_up_safe(path, 0);
4920
Yan, Zhengf0486c62010-05-16 10:46:25 -04004921 root_sub_used(root, leaf->len);
4922
Josef Bacik3083ee22012-03-09 16:01:49 -05004923 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004924 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004925 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004926}
4927/*
Chris Mason74123bd2007-02-02 11:05:29 -05004928 * delete the item at the leaf level in path. If that empties
4929 * the leaf, remove it from the tree
4930 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004931int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4932 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004933{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004934 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004935 struct extent_buffer *leaf;
4936 struct btrfs_item *item;
Alexandru Moisece0eac22015-08-23 16:01:42 +00004937 u32 last_off;
4938 u32 dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004939 int ret = 0;
4940 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004941 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004942 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004943 struct btrfs_map_token token;
4944
4945 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004946
Chris Mason5f39d392007-10-15 16:14:19 -04004947 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004948 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4949
4950 for (i = 0; i < nr; i++)
4951 dsize += btrfs_item_size_nr(leaf, slot + i);
4952
Chris Mason5f39d392007-10-15 16:14:19 -04004953 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004954
Chris Mason85e21ba2008-01-29 15:11:36 -05004955 if (slot + nr != nritems) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004956 int data_end = leaf_data_end(fs_info, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004957
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004958 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
Chris Masond6025572007-03-30 14:27:56 -04004959 data_end + dsize,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004960 BTRFS_LEAF_DATA_OFFSET + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004961 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004962
Chris Mason85e21ba2008-01-29 15:11:36 -05004963 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004964 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004965
Ross Kirkdd3cc162013-09-16 15:58:09 +01004966 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004967 ioff = btrfs_token_item_offset(leaf, item, &token);
4968 btrfs_set_token_item_offset(leaf, item,
4969 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004970 }
Chris Masondb945352007-10-15 16:15:53 -04004971
Chris Mason5f39d392007-10-15 16:14:19 -04004972 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004973 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004974 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004975 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004976 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004977 btrfs_set_header_nritems(leaf, nritems - nr);
4978 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004979
Chris Mason74123bd2007-02-02 11:05:29 -05004980 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004981 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004982 if (leaf == root->node) {
4983 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004984 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004985 btrfs_set_path_blocking(path);
David Sterba7c302b42017-02-10 18:47:57 +01004986 clean_tree_block(fs_info, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004987 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004988 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004989 } else {
Chris Mason7518a232007-03-12 12:01:18 -04004990 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004991 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004992 struct btrfs_disk_key disk_key;
4993
4994 btrfs_item_key(leaf, &disk_key, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004995 fixup_low_keys(fs_info, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004996 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05004997
Chris Mason74123bd2007-02-02 11:05:29 -05004998 /* delete the leaf if it is mostly empty */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004999 if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005000 /* push_leaf_left fixes the path.
5001 * make sure the path still points to our leaf
5002 * for possible call to del_ptr below
5003 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005004 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04005005 extent_buffer_get(leaf);
5006
Chris Masonb9473432009-03-13 11:00:37 -04005007 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005008 wret = push_leaf_left(trans, root, path, 1, 1,
5009 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005010 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005011 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005012
5013 if (path->nodes[0] == leaf &&
5014 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005015 wret = push_leaf_right(trans, root, path, 1,
5016 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005017 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005018 ret = wret;
5019 }
Chris Mason5f39d392007-10-15 16:14:19 -04005020
5021 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005022 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005023 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005024 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005025 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005026 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005027 /* if we're still in the path, make sure
5028 * we're dirty. Otherwise, one of the
5029 * push_leaf functions must have already
5030 * dirtied this buffer
5031 */
5032 if (path->nodes[0] == leaf)
5033 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005034 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005035 }
Chris Masond5719762007-03-23 10:01:08 -04005036 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005037 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005038 }
5039 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005040 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005041}
5042
Chris Mason97571fd2007-02-24 13:39:08 -05005043/*
Chris Mason925baed2008-06-25 16:01:30 -04005044 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005045 * returns 0 if it found something or 1 if there are no lesser leaves.
5046 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005047 *
5048 * This may release the path, and so you may lose any locks held at the
5049 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005050 */
Josef Bacik16e75492013-10-22 12:18:51 -04005051int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005052{
Chris Mason925baed2008-06-25 16:01:30 -04005053 struct btrfs_key key;
5054 struct btrfs_disk_key found_key;
5055 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005056
Chris Mason925baed2008-06-25 16:01:30 -04005057 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005058
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005059 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005060 key.offset--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005061 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005062 key.type--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005063 key.offset = (u64)-1;
5064 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005065 key.objectid--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005066 key.type = (u8)-1;
5067 key.offset = (u64)-1;
5068 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005069 return 1;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005070 }
Chris Mason7bb86312007-12-11 09:25:06 -05005071
David Sterbab3b4aa72011-04-21 01:20:15 +02005072 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005073 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5074 if (ret < 0)
5075 return ret;
5076 btrfs_item_key(path->nodes[0], &found_key, 0);
5077 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005078 /*
5079 * We might have had an item with the previous key in the tree right
5080 * before we released our path. And after we released our path, that
5081 * item might have been pushed to the first slot (0) of the leaf we
5082 * were holding due to a tree balance. Alternatively, an item with the
5083 * previous key can exist as the only element of a leaf (big fat item).
5084 * Therefore account for these 2 cases, so that our callers (like
5085 * btrfs_previous_item) don't miss an existing item with a key matching
5086 * the previous key we computed above.
5087 */
5088 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005089 return 0;
5090 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005091}
5092
Chris Mason3f157a22008-06-25 16:01:31 -04005093/*
5094 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005095 * for nodes or leaves that are have a minimum transaction id.
5096 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005097 *
5098 * This does not cow, but it does stuff the starting key it finds back
5099 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5100 * key and get a writable path.
5101 *
Chris Mason3f157a22008-06-25 16:01:31 -04005102 * This honors path->lowest_level to prevent descent past a given level
5103 * of the tree.
5104 *
Chris Masond352ac62008-09-29 15:18:18 -04005105 * min_trans indicates the oldest transaction that you are interested
5106 * in walking through. Any nodes or leaves older than min_trans are
5107 * skipped over (without reading them).
5108 *
Chris Mason3f157a22008-06-25 16:01:31 -04005109 * returns zero if something useful was found, < 0 on error and 1 if there
5110 * was nothing in the tree that matched the search criteria.
5111 */
5112int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005113 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005114 u64 min_trans)
5115{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005116 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason3f157a22008-06-25 16:01:31 -04005117 struct extent_buffer *cur;
5118 struct btrfs_key found_key;
5119 int slot;
Yan96524802008-07-24 12:19:49 -04005120 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005121 u32 nritems;
5122 int level;
5123 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005124 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005125
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005126 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005127again:
Chris Masonbd681512011-07-16 15:23:14 -04005128 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005129 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005130 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005131 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005132 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005133
5134 if (btrfs_header_generation(cur) < min_trans) {
5135 ret = 1;
5136 goto out;
5137 }
Chris Masond3977122009-01-05 21:25:51 -05005138 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005139 nritems = btrfs_header_nritems(cur);
5140 level = btrfs_header_level(cur);
Nikolay Borisova74b35e2017-12-08 16:27:43 +02005141 sret = btrfs_bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005142
Chris Mason323ac952008-10-01 19:05:46 -04005143 /* at the lowest level, we're done, setup the path and exit */
5144 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005145 if (slot >= nritems)
5146 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005147 ret = 0;
5148 path->slots[level] = slot;
5149 btrfs_item_key_to_cpu(cur, &found_key, slot);
5150 goto out;
5151 }
Yan96524802008-07-24 12:19:49 -04005152 if (sret && slot > 0)
5153 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005154 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005155 * check this node pointer against the min_trans parameters.
5156 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005157 */
Chris Masond3977122009-01-05 21:25:51 -05005158 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005159 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005160
Chris Mason3f157a22008-06-25 16:01:31 -04005161 gen = btrfs_node_ptr_generation(cur, slot);
5162 if (gen < min_trans) {
5163 slot++;
5164 continue;
5165 }
Eric Sandeende78b512013-01-31 18:21:12 +00005166 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005167 }
Chris Masone02119d2008-09-05 16:13:11 -04005168find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005169 /*
5170 * we didn't find a candidate key in this node, walk forward
5171 * and find another one
5172 */
5173 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005174 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005175 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005176 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005177 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005178 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005179 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005180 goto again;
5181 } else {
5182 goto out;
5183 }
5184 }
5185 /* save our key for returning back */
5186 btrfs_node_key_to_cpu(cur, &found_key, slot);
5187 path->slots[level] = slot;
5188 if (level == path->lowest_level) {
5189 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005190 goto out;
5191 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005192 btrfs_set_path_blocking(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005193 cur = read_node_slot(fs_info, cur, slot);
Liu Bofb770ae2016-07-05 12:10:14 -07005194 if (IS_ERR(cur)) {
5195 ret = PTR_ERR(cur);
5196 goto out;
5197 }
Chris Mason3f157a22008-06-25 16:01:31 -04005198
Chris Masonbd681512011-07-16 15:23:14 -04005199 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005200
Chris Masonbd681512011-07-16 15:23:14 -04005201 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005202 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005203 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04005204 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04005205 }
5206out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005207 path->keep_locks = keep_locks;
5208 if (ret == 0) {
5209 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5210 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005211 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005212 }
Chris Mason3f157a22008-06-25 16:01:31 -04005213 return ret;
5214}
5215
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005216static int tree_move_down(struct btrfs_fs_info *fs_info,
Alexander Block70698302012-06-05 21:07:48 +02005217 struct btrfs_path *path,
David Sterbaab6a43e2017-02-10 19:24:53 +01005218 int *level)
Alexander Block70698302012-06-05 21:07:48 +02005219{
Liu Bofb770ae2016-07-05 12:10:14 -07005220 struct extent_buffer *eb;
5221
Chris Mason74dd17f2012-08-07 16:25:13 -04005222 BUG_ON(*level == 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005223 eb = read_node_slot(fs_info, path->nodes[*level], path->slots[*level]);
Liu Bofb770ae2016-07-05 12:10:14 -07005224 if (IS_ERR(eb))
5225 return PTR_ERR(eb);
5226
5227 path->nodes[*level - 1] = eb;
Alexander Block70698302012-06-05 21:07:48 +02005228 path->slots[*level - 1] = 0;
5229 (*level)--;
Liu Bofb770ae2016-07-05 12:10:14 -07005230 return 0;
Alexander Block70698302012-06-05 21:07:48 +02005231}
5232
David Sterbaf1e30262017-02-10 19:25:51 +01005233static int tree_move_next_or_upnext(struct btrfs_path *path,
Alexander Block70698302012-06-05 21:07:48 +02005234 int *level, int root_level)
5235{
5236 int ret = 0;
5237 int nritems;
5238 nritems = btrfs_header_nritems(path->nodes[*level]);
5239
5240 path->slots[*level]++;
5241
Chris Mason74dd17f2012-08-07 16:25:13 -04005242 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02005243 if (*level == root_level)
5244 return -1;
5245
5246 /* move upnext */
5247 path->slots[*level] = 0;
5248 free_extent_buffer(path->nodes[*level]);
5249 path->nodes[*level] = NULL;
5250 (*level)++;
5251 path->slots[*level]++;
5252
5253 nritems = btrfs_header_nritems(path->nodes[*level]);
5254 ret = 1;
5255 }
5256 return ret;
5257}
5258
5259/*
5260 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5261 * or down.
5262 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005263static int tree_advance(struct btrfs_fs_info *fs_info,
Alexander Block70698302012-06-05 21:07:48 +02005264 struct btrfs_path *path,
5265 int *level, int root_level,
5266 int allow_down,
5267 struct btrfs_key *key)
5268{
5269 int ret;
5270
5271 if (*level == 0 || !allow_down) {
David Sterbaf1e30262017-02-10 19:25:51 +01005272 ret = tree_move_next_or_upnext(path, level, root_level);
Alexander Block70698302012-06-05 21:07:48 +02005273 } else {
David Sterbaab6a43e2017-02-10 19:24:53 +01005274 ret = tree_move_down(fs_info, path, level);
Alexander Block70698302012-06-05 21:07:48 +02005275 }
5276 if (ret >= 0) {
5277 if (*level == 0)
5278 btrfs_item_key_to_cpu(path->nodes[*level], key,
5279 path->slots[*level]);
5280 else
5281 btrfs_node_key_to_cpu(path->nodes[*level], key,
5282 path->slots[*level]);
5283 }
5284 return ret;
5285}
5286
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005287static int tree_compare_item(struct btrfs_path *left_path,
Alexander Block70698302012-06-05 21:07:48 +02005288 struct btrfs_path *right_path,
5289 char *tmp_buf)
5290{
5291 int cmp;
5292 int len1, len2;
5293 unsigned long off1, off2;
5294
5295 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5296 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5297 if (len1 != len2)
5298 return 1;
5299
5300 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5301 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5302 right_path->slots[0]);
5303
5304 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5305
5306 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5307 if (cmp)
5308 return 1;
5309 return 0;
5310}
5311
5312#define ADVANCE 1
5313#define ADVANCE_ONLY_NEXT -1
5314
5315/*
5316 * This function compares two trees and calls the provided callback for
5317 * every changed/new/deleted item it finds.
5318 * If shared tree blocks are encountered, whole subtrees are skipped, making
5319 * the compare pretty fast on snapshotted subvolumes.
5320 *
5321 * This currently works on commit roots only. As commit roots are read only,
5322 * we don't do any locking. The commit roots are protected with transactions.
5323 * Transactions are ended and rejoined when a commit is tried in between.
5324 *
5325 * This function checks for modifications done to the trees while comparing.
5326 * If it detects a change, it aborts immediately.
5327 */
5328int btrfs_compare_trees(struct btrfs_root *left_root,
5329 struct btrfs_root *right_root,
5330 btrfs_changed_cb_t changed_cb, void *ctx)
5331{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005332 struct btrfs_fs_info *fs_info = left_root->fs_info;
Alexander Block70698302012-06-05 21:07:48 +02005333 int ret;
5334 int cmp;
Alexander Block70698302012-06-05 21:07:48 +02005335 struct btrfs_path *left_path = NULL;
5336 struct btrfs_path *right_path = NULL;
5337 struct btrfs_key left_key;
5338 struct btrfs_key right_key;
5339 char *tmp_buf = NULL;
5340 int left_root_level;
5341 int right_root_level;
5342 int left_level;
5343 int right_level;
5344 int left_end_reached;
5345 int right_end_reached;
5346 int advance_left;
5347 int advance_right;
5348 u64 left_blockptr;
5349 u64 right_blockptr;
Filipe Manana6baa4292014-02-20 21:15:25 +00005350 u64 left_gen;
5351 u64 right_gen;
Alexander Block70698302012-06-05 21:07:48 +02005352
5353 left_path = btrfs_alloc_path();
5354 if (!left_path) {
5355 ret = -ENOMEM;
5356 goto out;
5357 }
5358 right_path = btrfs_alloc_path();
5359 if (!right_path) {
5360 ret = -ENOMEM;
5361 goto out;
5362 }
5363
Michal Hocko752ade62017-05-08 15:57:27 -07005364 tmp_buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
Alexander Block70698302012-06-05 21:07:48 +02005365 if (!tmp_buf) {
Michal Hocko752ade62017-05-08 15:57:27 -07005366 ret = -ENOMEM;
5367 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005368 }
5369
5370 left_path->search_commit_root = 1;
5371 left_path->skip_locking = 1;
5372 right_path->search_commit_root = 1;
5373 right_path->skip_locking = 1;
5374
Alexander Block70698302012-06-05 21:07:48 +02005375 /*
5376 * Strategy: Go to the first items of both trees. Then do
5377 *
5378 * If both trees are at level 0
5379 * Compare keys of current items
5380 * If left < right treat left item as new, advance left tree
5381 * and repeat
5382 * If left > right treat right item as deleted, advance right tree
5383 * and repeat
5384 * If left == right do deep compare of items, treat as changed if
5385 * needed, advance both trees and repeat
5386 * If both trees are at the same level but not at level 0
5387 * Compare keys of current nodes/leafs
5388 * If left < right advance left tree and repeat
5389 * If left > right advance right tree and repeat
5390 * If left == right compare blockptrs of the next nodes/leafs
5391 * If they match advance both trees but stay at the same level
5392 * and repeat
5393 * If they don't match advance both trees while allowing to go
5394 * deeper and repeat
5395 * If tree levels are different
5396 * Advance the tree that needs it and repeat
5397 *
5398 * Advancing a tree means:
5399 * If we are at level 0, try to go to the next slot. If that's not
5400 * possible, go one level up and repeat. Stop when we found a level
5401 * where we could go to the next slot. We may at this point be on a
5402 * node or a leaf.
5403 *
5404 * If we are not at level 0 and not on shared tree blocks, go one
5405 * level deeper.
5406 *
5407 * If we are not at level 0 and on shared tree blocks, go one slot to
5408 * the right if possible or go up and right.
5409 */
5410
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005411 down_read(&fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005412 left_level = btrfs_header_level(left_root->commit_root);
5413 left_root_level = left_level;
5414 left_path->nodes[left_level] = left_root->commit_root;
5415 extent_buffer_get(left_path->nodes[left_level]);
5416
5417 right_level = btrfs_header_level(right_root->commit_root);
5418 right_root_level = right_level;
5419 right_path->nodes[right_level] = right_root->commit_root;
5420 extent_buffer_get(right_path->nodes[right_level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005421 up_read(&fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005422
5423 if (left_level == 0)
5424 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5425 &left_key, left_path->slots[left_level]);
5426 else
5427 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5428 &left_key, left_path->slots[left_level]);
5429 if (right_level == 0)
5430 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5431 &right_key, right_path->slots[right_level]);
5432 else
5433 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5434 &right_key, right_path->slots[right_level]);
5435
5436 left_end_reached = right_end_reached = 0;
5437 advance_left = advance_right = 0;
5438
5439 while (1) {
Alexander Block70698302012-06-05 21:07:48 +02005440 if (advance_left && !left_end_reached) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005441 ret = tree_advance(fs_info, left_path, &left_level,
Alexander Block70698302012-06-05 21:07:48 +02005442 left_root_level,
5443 advance_left != ADVANCE_ONLY_NEXT,
5444 &left_key);
Liu Bofb770ae2016-07-05 12:10:14 -07005445 if (ret == -1)
Alexander Block70698302012-06-05 21:07:48 +02005446 left_end_reached = ADVANCE;
Liu Bofb770ae2016-07-05 12:10:14 -07005447 else if (ret < 0)
5448 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005449 advance_left = 0;
5450 }
5451 if (advance_right && !right_end_reached) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005452 ret = tree_advance(fs_info, right_path, &right_level,
Alexander Block70698302012-06-05 21:07:48 +02005453 right_root_level,
5454 advance_right != ADVANCE_ONLY_NEXT,
5455 &right_key);
Liu Bofb770ae2016-07-05 12:10:14 -07005456 if (ret == -1)
Alexander Block70698302012-06-05 21:07:48 +02005457 right_end_reached = ADVANCE;
Liu Bofb770ae2016-07-05 12:10:14 -07005458 else if (ret < 0)
5459 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005460 advance_right = 0;
5461 }
5462
5463 if (left_end_reached && right_end_reached) {
5464 ret = 0;
5465 goto out;
5466 } else if (left_end_reached) {
5467 if (right_level == 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005468 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005469 &right_key,
5470 BTRFS_COMPARE_TREE_DELETED,
5471 ctx);
5472 if (ret < 0)
5473 goto out;
5474 }
5475 advance_right = ADVANCE;
5476 continue;
5477 } else if (right_end_reached) {
5478 if (left_level == 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005479 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005480 &left_key,
5481 BTRFS_COMPARE_TREE_NEW,
5482 ctx);
5483 if (ret < 0)
5484 goto out;
5485 }
5486 advance_left = ADVANCE;
5487 continue;
5488 }
5489
5490 if (left_level == 0 && right_level == 0) {
5491 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5492 if (cmp < 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005493 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005494 &left_key,
5495 BTRFS_COMPARE_TREE_NEW,
5496 ctx);
5497 if (ret < 0)
5498 goto out;
5499 advance_left = ADVANCE;
5500 } else if (cmp > 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005501 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005502 &right_key,
5503 BTRFS_COMPARE_TREE_DELETED,
5504 ctx);
5505 if (ret < 0)
5506 goto out;
5507 advance_right = ADVANCE;
5508 } else {
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005509 enum btrfs_compare_tree_result result;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005510
Chris Mason74dd17f2012-08-07 16:25:13 -04005511 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005512 ret = tree_compare_item(left_path, right_path,
5513 tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005514 if (ret)
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005515 result = BTRFS_COMPARE_TREE_CHANGED;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005516 else
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005517 result = BTRFS_COMPARE_TREE_SAME;
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005518 ret = changed_cb(left_path, right_path,
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005519 &left_key, result, ctx);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005520 if (ret < 0)
5521 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005522 advance_left = ADVANCE;
5523 advance_right = ADVANCE;
5524 }
5525 } else if (left_level == right_level) {
5526 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5527 if (cmp < 0) {
5528 advance_left = ADVANCE;
5529 } else if (cmp > 0) {
5530 advance_right = ADVANCE;
5531 } else {
5532 left_blockptr = btrfs_node_blockptr(
5533 left_path->nodes[left_level],
5534 left_path->slots[left_level]);
5535 right_blockptr = btrfs_node_blockptr(
5536 right_path->nodes[right_level],
5537 right_path->slots[right_level]);
Filipe Manana6baa4292014-02-20 21:15:25 +00005538 left_gen = btrfs_node_ptr_generation(
5539 left_path->nodes[left_level],
5540 left_path->slots[left_level]);
5541 right_gen = btrfs_node_ptr_generation(
5542 right_path->nodes[right_level],
5543 right_path->slots[right_level]);
5544 if (left_blockptr == right_blockptr &&
5545 left_gen == right_gen) {
Alexander Block70698302012-06-05 21:07:48 +02005546 /*
5547 * As we're on a shared block, don't
5548 * allow to go deeper.
5549 */
5550 advance_left = ADVANCE_ONLY_NEXT;
5551 advance_right = ADVANCE_ONLY_NEXT;
5552 } else {
5553 advance_left = ADVANCE;
5554 advance_right = ADVANCE;
5555 }
5556 }
5557 } else if (left_level < right_level) {
5558 advance_right = ADVANCE;
5559 } else {
5560 advance_left = ADVANCE;
5561 }
5562 }
5563
5564out:
5565 btrfs_free_path(left_path);
5566 btrfs_free_path(right_path);
David Sterba8f282f72016-03-30 16:01:12 +02005567 kvfree(tmp_buf);
Alexander Block70698302012-06-05 21:07:48 +02005568 return ret;
5569}
5570
Chris Mason3f157a22008-06-25 16:01:31 -04005571/*
5572 * this is similar to btrfs_next_leaf, but does not try to preserve
5573 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005574 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005575 *
5576 * 0 is returned if another key is found, < 0 if there are any errors
5577 * and 1 is returned if there are no higher keys in the tree
5578 *
5579 * path->keep_locks should be set to 1 on the search made before
5580 * calling this function.
5581 */
Chris Masone7a84562008-06-25 16:01:31 -04005582int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005583 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005584{
Chris Masone7a84562008-06-25 16:01:31 -04005585 int slot;
5586 struct extent_buffer *c;
5587
Chris Mason934d3752008-12-08 16:43:10 -05005588 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005589 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005590 if (!path->nodes[level])
5591 return 1;
5592
5593 slot = path->slots[level] + 1;
5594 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005595next:
Chris Masone7a84562008-06-25 16:01:31 -04005596 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005597 int ret;
5598 int orig_lowest;
5599 struct btrfs_key cur_key;
5600 if (level + 1 >= BTRFS_MAX_LEVEL ||
5601 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005602 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005603
5604 if (path->locks[level + 1]) {
5605 level++;
5606 continue;
5607 }
5608
5609 slot = btrfs_header_nritems(c) - 1;
5610 if (level == 0)
5611 btrfs_item_key_to_cpu(c, &cur_key, slot);
5612 else
5613 btrfs_node_key_to_cpu(c, &cur_key, slot);
5614
5615 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005616 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005617 path->lowest_level = level;
5618 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5619 0, 0);
5620 path->lowest_level = orig_lowest;
5621 if (ret < 0)
5622 return ret;
5623
5624 c = path->nodes[level];
5625 slot = path->slots[level];
5626 if (ret == 0)
5627 slot++;
5628 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005629 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005630
Chris Masone7a84562008-06-25 16:01:31 -04005631 if (level == 0)
5632 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005633 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005634 u64 gen = btrfs_node_ptr_generation(c, slot);
5635
Chris Mason3f157a22008-06-25 16:01:31 -04005636 if (gen < min_trans) {
5637 slot++;
5638 goto next;
5639 }
Chris Masone7a84562008-06-25 16:01:31 -04005640 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005641 }
Chris Masone7a84562008-06-25 16:01:31 -04005642 return 0;
5643 }
5644 return 1;
5645}
5646
Chris Mason7bb86312007-12-11 09:25:06 -05005647/*
Chris Mason925baed2008-06-25 16:01:30 -04005648 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005649 * returns 0 if it found something or 1 if there are no greater leaves.
5650 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005651 */
Chris Mason234b63a2007-03-13 10:46:10 -04005652int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005653{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005654 return btrfs_next_old_leaf(root, path, 0);
5655}
5656
5657int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5658 u64 time_seq)
5659{
Chris Masond97e63b2007-02-20 16:40:44 -05005660 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005661 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005662 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005663 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005664 struct btrfs_key key;
5665 u32 nritems;
5666 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005667 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005668 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005669
5670 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005671 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005672 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005673
Chris Mason8e73f272009-04-03 10:14:18 -04005674 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5675again:
5676 level = 1;
5677 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005678 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005679 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005680
Chris Masona2135012008-06-25 16:01:30 -04005681 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005682 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005683
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005684 if (time_seq)
5685 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5686 else
5687 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005688 path->keep_locks = 0;
5689
5690 if (ret < 0)
5691 return ret;
5692
Chris Masona2135012008-06-25 16:01:30 -04005693 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005694 /*
5695 * by releasing the path above we dropped all our locks. A balance
5696 * could have added more items next to the key that used to be
5697 * at the very end of the block. So, check again here and
5698 * advance the path if there are now more items available.
5699 */
Chris Masona2135012008-06-25 16:01:30 -04005700 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005701 if (ret == 0)
5702 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005703 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005704 goto done;
5705 }
Liu Bo0b43e042014-06-09 11:04:49 +08005706 /*
5707 * So the above check misses one case:
5708 * - after releasing the path above, someone has removed the item that
5709 * used to be at the very end of the block, and balance between leafs
5710 * gets another one with bigger key.offset to replace it.
5711 *
5712 * This one should be returned as well, or we can get leaf corruption
5713 * later(esp. in __btrfs_drop_extents()).
5714 *
5715 * And a bit more explanation about this check,
5716 * with ret > 0, the key isn't found, the path points to the slot
5717 * where it should be inserted, so the path->slots[0] item must be the
5718 * bigger one.
5719 */
5720 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5721 ret = 0;
5722 goto done;
5723 }
Chris Masond97e63b2007-02-20 16:40:44 -05005724
Chris Masond3977122009-01-05 21:25:51 -05005725 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005726 if (!path->nodes[level]) {
5727 ret = 1;
5728 goto done;
5729 }
Chris Mason5f39d392007-10-15 16:14:19 -04005730
Chris Masond97e63b2007-02-20 16:40:44 -05005731 slot = path->slots[level] + 1;
5732 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005733 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005734 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005735 if (level == BTRFS_MAX_LEVEL) {
5736 ret = 1;
5737 goto done;
5738 }
Chris Masond97e63b2007-02-20 16:40:44 -05005739 continue;
5740 }
Chris Mason5f39d392007-10-15 16:14:19 -04005741
Chris Mason925baed2008-06-25 16:01:30 -04005742 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005743 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005744 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005745 }
Chris Mason5f39d392007-10-15 16:14:19 -04005746
Chris Mason8e73f272009-04-03 10:14:18 -04005747 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005748 next_rw_lock = path->locks[level];
Liu Bod07b8522017-01-30 12:23:42 -08005749 ret = read_block_for_search(root, path, &next, level,
David Sterbacda79c52017-02-10 18:44:32 +01005750 slot, &key);
Chris Mason8e73f272009-04-03 10:14:18 -04005751 if (ret == -EAGAIN)
5752 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005753
Chris Mason76a05b32009-05-14 13:24:30 -04005754 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005755 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005756 goto done;
5757 }
5758
Chris Mason5cd57b22008-06-25 16:01:30 -04005759 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005760 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005761 if (!ret && time_seq) {
5762 /*
5763 * If we don't get the lock, we may be racing
5764 * with push_leaf_left, holding that lock while
5765 * itself waiting for the leaf we've currently
5766 * locked. To solve this situation, we give up
5767 * on our lock and cycle.
5768 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005769 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005770 btrfs_release_path(path);
5771 cond_resched();
5772 goto again;
5773 }
Chris Mason8e73f272009-04-03 10:14:18 -04005774 if (!ret) {
5775 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005776 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005777 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005778 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005779 }
Chris Mason31533fb2011-07-26 16:01:59 -04005780 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005781 }
Chris Masond97e63b2007-02-20 16:40:44 -05005782 break;
5783 }
5784 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005785 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005786 level--;
5787 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005788 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005789 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005790
Chris Mason5f39d392007-10-15 16:14:19 -04005791 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005792 path->nodes[level] = next;
5793 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005794 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005795 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005796 if (!level)
5797 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005798
Liu Bod07b8522017-01-30 12:23:42 -08005799 ret = read_block_for_search(root, path, &next, level,
David Sterbacda79c52017-02-10 18:44:32 +01005800 0, &key);
Chris Mason8e73f272009-04-03 10:14:18 -04005801 if (ret == -EAGAIN)
5802 goto again;
5803
Chris Mason76a05b32009-05-14 13:24:30 -04005804 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005805 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005806 goto done;
5807 }
5808
Chris Mason5cd57b22008-06-25 16:01:30 -04005809 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005810 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005811 if (!ret) {
5812 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005813 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005814 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005815 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005816 }
Chris Mason31533fb2011-07-26 16:01:59 -04005817 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005818 }
Chris Masond97e63b2007-02-20 16:40:44 -05005819 }
Chris Mason8e73f272009-04-03 10:14:18 -04005820 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005821done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005822 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005823 path->leave_spinning = old_spinning;
5824 if (!old_spinning)
5825 btrfs_set_path_blocking(path);
5826
5827 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005828}
Chris Mason0b86a832008-03-24 15:01:56 -04005829
Chris Mason3f157a22008-06-25 16:01:31 -04005830/*
5831 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5832 * searching until it gets past min_objectid or finds an item of 'type'
5833 *
5834 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5835 */
Chris Mason0b86a832008-03-24 15:01:56 -04005836int btrfs_previous_item(struct btrfs_root *root,
5837 struct btrfs_path *path, u64 min_objectid,
5838 int type)
5839{
5840 struct btrfs_key found_key;
5841 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005842 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005843 int ret;
5844
Chris Masond3977122009-01-05 21:25:51 -05005845 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005846 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005847 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005848 ret = btrfs_prev_leaf(root, path);
5849 if (ret != 0)
5850 return ret;
5851 } else {
5852 path->slots[0]--;
5853 }
5854 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005855 nritems = btrfs_header_nritems(leaf);
5856 if (nritems == 0)
5857 return 1;
5858 if (path->slots[0] == nritems)
5859 path->slots[0]--;
5860
Chris Mason0b86a832008-03-24 15:01:56 -04005861 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005862 if (found_key.objectid < min_objectid)
5863 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005864 if (found_key.type == type)
5865 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005866 if (found_key.objectid == min_objectid &&
5867 found_key.type < type)
5868 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005869 }
5870 return 1;
5871}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005872
5873/*
5874 * search in extent tree to find a previous Metadata/Data extent item with
5875 * min objecitd.
5876 *
5877 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5878 */
5879int btrfs_previous_extent_item(struct btrfs_root *root,
5880 struct btrfs_path *path, u64 min_objectid)
5881{
5882 struct btrfs_key found_key;
5883 struct extent_buffer *leaf;
5884 u32 nritems;
5885 int ret;
5886
5887 while (1) {
5888 if (path->slots[0] == 0) {
5889 btrfs_set_path_blocking(path);
5890 ret = btrfs_prev_leaf(root, path);
5891 if (ret != 0)
5892 return ret;
5893 } else {
5894 path->slots[0]--;
5895 }
5896 leaf = path->nodes[0];
5897 nritems = btrfs_header_nritems(leaf);
5898 if (nritems == 0)
5899 return 1;
5900 if (path->slots[0] == nritems)
5901 path->slots[0]--;
5902
5903 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5904 if (found_key.objectid < min_objectid)
5905 break;
5906 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5907 found_key.type == BTRFS_METADATA_ITEM_KEY)
5908 return 0;
5909 if (found_key.objectid == min_objectid &&
5910 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5911 break;
5912 }
5913 return 1;
5914}