blob: 7d2223c56262ac4d49a4b0f9ef9a1bd9f5604631 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
Chris Masond352ac62008-09-29 15:18:18 -04003 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Masona6b6e752007-10-15 16:22:39 -04006#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Jan Schmidtbd989ba2012-05-16 17:18:50 +02008#include <linux/rbtree.h>
David Sterbaadf02122017-05-31 19:44:31 +02009#include <linux/mm.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050010#include "ctree.h"
11#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040012#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040013#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040014#include "locking.h"
Nikolay Borisovde37aa52018-10-30 16:43:24 +020015#include "volumes.h"
Qu Wenruof616f5c2019-01-23 15:15:17 +080016#include "qgroup.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050017
Chris Masone089f052007-03-16 16:20:31 -040018static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
19 *root, struct btrfs_path *path, int level);
Omar Sandoval310712b2017-01-17 23:24:37 -080020static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root *root,
21 const struct btrfs_key *ins_key, struct btrfs_path *path,
22 int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040023static int push_node_left(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040024 struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040025 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040026static int balance_node_right(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040027 struct btrfs_fs_info *fs_info,
Chris Mason5f39d392007-10-15 16:14:19 -040028 struct extent_buffer *dst_buf,
29 struct extent_buffer *src_buf);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +000030static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
31 int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050032
Chris Mason2c90e5d2007-04-02 10:50:19 -040033struct btrfs_path *btrfs_alloc_path(void)
34{
Masahiro Yamadae2c89902016-09-13 04:35:52 +090035 return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Mason2c90e5d2007-04-02 10:50:19 -040036}
37
Chris Masonb4ce94d2009-02-04 09:25:08 -050038/*
39 * set all locked nodes in the path to blocking locks. This should
40 * be done before scheduling
41 */
42noinline void btrfs_set_path_blocking(struct btrfs_path *p)
43{
44 int i;
45 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040046 if (!p->nodes[i] || !p->locks[i])
47 continue;
David Sterba766ece52019-01-23 18:07:14 +010048 /*
49 * If we currently have a spinning reader or writer lock this
50 * will bump the count of blocking holders and drop the
51 * spinlock.
52 */
53 if (p->locks[i] == BTRFS_READ_LOCK) {
54 btrfs_set_lock_blocking_read(p->nodes[i]);
Chris Masonbd681512011-07-16 15:23:14 -040055 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
David Sterba766ece52019-01-23 18:07:14 +010056 } else if (p->locks[i] == BTRFS_WRITE_LOCK) {
57 btrfs_set_lock_blocking_write(p->nodes[i]);
Chris Masonbd681512011-07-16 15:23:14 -040058 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
David Sterba766ece52019-01-23 18:07:14 +010059 }
Chris Masonb4ce94d2009-02-04 09:25:08 -050060 }
61}
62
Chris Masond352ac62008-09-29 15:18:18 -040063/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -040064void btrfs_free_path(struct btrfs_path *p)
65{
Jesper Juhlff175d52010-12-25 21:22:30 +000066 if (!p)
67 return;
David Sterbab3b4aa72011-04-21 01:20:15 +020068 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -040069 kmem_cache_free(btrfs_path_cachep, p);
70}
71
Chris Masond352ac62008-09-29 15:18:18 -040072/*
73 * path release drops references on the extent buffers in the path
74 * and it drops any locks held by this path
75 *
76 * It is safe to call this on paths that no locks or extent buffers held.
77 */
David Sterbab3b4aa72011-04-21 01:20:15 +020078noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -050079{
80 int i;
Chris Masona2135012008-06-25 16:01:30 -040081
Chris Mason234b63a2007-03-13 10:46:10 -040082 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -040083 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050084 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -040085 continue;
86 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -040087 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -040088 p->locks[i] = 0;
89 }
Chris Mason5f39d392007-10-15 16:14:19 -040090 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -040091 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -050092 }
93}
94
Chris Masond352ac62008-09-29 15:18:18 -040095/*
96 * safely gets a reference on the root node of a tree. A lock
97 * is not taken, so a concurrent writer may put a different node
98 * at the root of the tree. See btrfs_lock_root_node for the
99 * looping required.
100 *
101 * The extent buffer returned by this has a reference taken, so
102 * it won't disappear. It may stop being the root of the tree
103 * at any time because there are no locks held.
104 */
Chris Mason925baed2008-06-25 16:01:30 -0400105struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
106{
107 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400108
Josef Bacik3083ee22012-03-09 16:01:49 -0500109 while (1) {
110 rcu_read_lock();
111 eb = rcu_dereference(root->node);
112
113 /*
114 * RCU really hurts here, we could free up the root node because
Nicholas D Steeves01327612016-05-19 21:18:45 -0400115 * it was COWed but we may not get the new root node yet so do
Josef Bacik3083ee22012-03-09 16:01:49 -0500116 * the inc_not_zero dance and if it doesn't work then
117 * synchronize_rcu and try again.
118 */
119 if (atomic_inc_not_zero(&eb->refs)) {
120 rcu_read_unlock();
121 break;
122 }
123 rcu_read_unlock();
124 synchronize_rcu();
125 }
Chris Mason925baed2008-06-25 16:01:30 -0400126 return eb;
127}
128
Chris Masond352ac62008-09-29 15:18:18 -0400129/* loop around taking references on and locking the root node of the
130 * tree until you end up with a lock on the root. A locked buffer
131 * is returned, with a reference held.
132 */
Chris Mason925baed2008-06-25 16:01:30 -0400133struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
134{
135 struct extent_buffer *eb;
136
Chris Masond3977122009-01-05 21:25:51 -0500137 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400138 eb = btrfs_root_node(root);
139 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400140 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400141 break;
Chris Mason925baed2008-06-25 16:01:30 -0400142 btrfs_tree_unlock(eb);
143 free_extent_buffer(eb);
144 }
145 return eb;
146}
147
Chris Masonbd681512011-07-16 15:23:14 -0400148/* loop around taking references on and locking the root node of the
149 * tree until you end up with a lock on the root. A locked buffer
150 * is returned, with a reference held.
151 */
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400152struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400153{
154 struct extent_buffer *eb;
155
156 while (1) {
157 eb = btrfs_root_node(root);
158 btrfs_tree_read_lock(eb);
159 if (eb == root->node)
160 break;
161 btrfs_tree_read_unlock(eb);
162 free_extent_buffer(eb);
163 }
164 return eb;
165}
166
Chris Masond352ac62008-09-29 15:18:18 -0400167/* cowonly root (everything not a reference counted cow subvolume), just get
168 * put onto a simple dirty list. transaction.c walks this to make sure they
169 * get properly updated on disk.
170 */
Chris Mason0b86a832008-03-24 15:01:56 -0400171static void add_root_to_dirty_list(struct btrfs_root *root)
172{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400173 struct btrfs_fs_info *fs_info = root->fs_info;
174
Josef Bacike7070be2014-12-16 08:54:43 -0800175 if (test_bit(BTRFS_ROOT_DIRTY, &root->state) ||
176 !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state))
177 return;
178
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400179 spin_lock(&fs_info->trans_lock);
Josef Bacike7070be2014-12-16 08:54:43 -0800180 if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) {
181 /* Want the extent tree to be the last on the list */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +0900182 if (root->root_key.objectid == BTRFS_EXTENT_TREE_OBJECTID)
Josef Bacike7070be2014-12-16 08:54:43 -0800183 list_move_tail(&root->dirty_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400184 &fs_info->dirty_cowonly_roots);
Josef Bacike7070be2014-12-16 08:54:43 -0800185 else
186 list_move(&root->dirty_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400187 &fs_info->dirty_cowonly_roots);
Chris Mason0b86a832008-03-24 15:01:56 -0400188 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400189 spin_unlock(&fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400190}
191
Chris Masond352ac62008-09-29 15:18:18 -0400192/*
193 * used by snapshot creation to make a copy of a root for a tree with
194 * a given objectid. The buffer with the new root node is returned in
195 * cow_ret, and this func returns zero on success or a negative error code.
196 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500197int btrfs_copy_root(struct btrfs_trans_handle *trans,
198 struct btrfs_root *root,
199 struct extent_buffer *buf,
200 struct extent_buffer **cow_ret, u64 new_root_objectid)
201{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400202 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonbe20aa92007-12-17 20:14:01 -0500203 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 int ret = 0;
205 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400206 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500207
Miao Xie27cdeb72014-04-02 19:51:05 +0800208 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400209 trans->transid != fs_info->running_transaction->transid);
Miao Xie27cdeb72014-04-02 19:51:05 +0800210 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
211 trans->transid != root->last_trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500212
213 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400214 if (level == 0)
215 btrfs_item_key(buf, &disk_key, 0);
216 else
217 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400218
David Sterba4d75f8a2014-06-15 01:54:12 +0200219 cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
220 &disk_key, level, buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400221 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500222 return PTR_ERR(cow);
223
David Sterba58e80122016-11-08 18:30:31 +0100224 copy_extent_buffer_full(cow, buf);
Chris Masonbe20aa92007-12-17 20:14:01 -0500225 btrfs_set_header_bytenr(cow, cow->start);
226 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400227 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
228 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
229 BTRFS_HEADER_FLAG_RELOC);
230 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
231 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
232 else
233 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500234
Nikolay Borisovde37aa52018-10-30 16:43:24 +0200235 write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -0500236
Chris Masonbe20aa92007-12-17 20:14:01 -0500237 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400238 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700239 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400240 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700241 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500242
Chris Masonbe20aa92007-12-17 20:14:01 -0500243 if (ret)
244 return ret;
245
246 btrfs_mark_buffer_dirty(cow);
247 *cow_ret = cow;
248 return 0;
249}
250
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200251enum mod_log_op {
252 MOD_LOG_KEY_REPLACE,
253 MOD_LOG_KEY_ADD,
254 MOD_LOG_KEY_REMOVE,
255 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
256 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
257 MOD_LOG_MOVE_KEYS,
258 MOD_LOG_ROOT_REPLACE,
259};
260
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200261struct tree_mod_root {
262 u64 logical;
263 u8 level;
264};
265
266struct tree_mod_elem {
267 struct rb_node node;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530268 u64 logical;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200269 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200270 enum mod_log_op op;
271
272 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
273 int slot;
274
275 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
276 u64 generation;
277
278 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
279 struct btrfs_disk_key key;
280 u64 blockptr;
281
282 /* this is used for op == MOD_LOG_MOVE_KEYS */
David Sterbab6dfa352018-03-05 15:31:18 +0100283 struct {
284 int dst_slot;
285 int nr_items;
286 } move;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200287
288 /* this is used for op == MOD_LOG_ROOT_REPLACE */
289 struct tree_mod_root old_root;
290};
291
Jan Schmidt097b8a72012-06-21 11:08:04 +0200292/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700293 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000294 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700295static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000296{
297 return atomic64_inc_return(&fs_info->tree_mod_seq);
298}
299
300/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200301 * This adds a new blocker to the tree mod log's blocker list if the @elem
302 * passed does not already have a sequence number set. So when a caller expects
303 * to record tree modifications, it should ensure to set elem->seq to zero
304 * before calling btrfs_get_tree_mod_seq.
305 * Returns a fresh, unused tree log modification sequence number, even if no new
306 * blocker was added.
307 */
308u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
309 struct seq_list *elem)
310{
David Sterbab1a09f12018-03-05 15:43:41 +0100311 write_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200312 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200313 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700314 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200315 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
316 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200317 spin_unlock(&fs_info->tree_mod_seq_lock);
David Sterbab1a09f12018-03-05 15:43:41 +0100318 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200319
Josef Bacikfcebe452014-05-13 17:30:47 -0700320 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200321}
322
323void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
324 struct seq_list *elem)
325{
326 struct rb_root *tm_root;
327 struct rb_node *node;
328 struct rb_node *next;
329 struct seq_list *cur_elem;
330 struct tree_mod_elem *tm;
331 u64 min_seq = (u64)-1;
332 u64 seq_putting = elem->seq;
333
334 if (!seq_putting)
335 return;
336
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200337 spin_lock(&fs_info->tree_mod_seq_lock);
338 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200339 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200340
341 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200342 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200343 if (seq_putting > cur_elem->seq) {
344 /*
345 * blocker with lower sequence number exists, we
346 * cannot remove anything from the log
347 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200348 spin_unlock(&fs_info->tree_mod_seq_lock);
349 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200350 }
351 min_seq = cur_elem->seq;
352 }
353 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200354 spin_unlock(&fs_info->tree_mod_seq_lock);
355
356 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200357 * anything that's lower than the lowest existing (read: blocked)
358 * sequence number can be removed from the tree.
359 */
David Sterbab1a09f12018-03-05 15:43:41 +0100360 write_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200361 tm_root = &fs_info->tree_mod_log;
362 for (node = rb_first(tm_root); node; node = next) {
363 next = rb_next(node);
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800364 tm = rb_entry(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200365 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200366 continue;
367 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200368 kfree(tm);
369 }
David Sterbab1a09f12018-03-05 15:43:41 +0100370 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200371}
372
373/*
374 * key order of the log:
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530375 * node/leaf start address -> sequence
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200376 *
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530377 * The 'start address' is the logical address of the *new* root node
378 * for root replace operations, or the logical address of the affected
379 * block for all other operations.
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000380 *
David Sterbab1a09f12018-03-05 15:43:41 +0100381 * Note: must be called with write lock for fs_info::tree_mod_log_lock.
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200382 */
383static noinline int
384__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
385{
386 struct rb_root *tm_root;
387 struct rb_node **new;
388 struct rb_node *parent = NULL;
389 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200390
Josef Bacikfcebe452014-05-13 17:30:47 -0700391 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200392
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200393 tm_root = &fs_info->tree_mod_log;
394 new = &tm_root->rb_node;
395 while (*new) {
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800396 cur = rb_entry(*new, struct tree_mod_elem, node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200397 parent = *new;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530398 if (cur->logical < tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200399 new = &((*new)->rb_left);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530400 else if (cur->logical > tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200401 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200402 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200403 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200404 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200405 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000406 else
407 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200408 }
409
410 rb_link_node(&tm->node, parent, new);
411 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000412 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200413}
414
Jan Schmidt097b8a72012-06-21 11:08:04 +0200415/*
416 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
417 * returns zero with the tree_mod_log_lock acquired. The caller must hold
418 * this until all tree mod log insertions are recorded in the rb tree and then
David Sterbab1a09f12018-03-05 15:43:41 +0100419 * write unlock fs_info::tree_mod_log_lock.
Jan Schmidt097b8a72012-06-21 11:08:04 +0200420 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200421static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
422 struct extent_buffer *eb) {
423 smp_mb();
424 if (list_empty(&(fs_info)->tree_mod_seq_list))
425 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200426 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200427 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000428
David Sterbab1a09f12018-03-05 15:43:41 +0100429 write_lock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000430 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
David Sterbab1a09f12018-03-05 15:43:41 +0100431 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000432 return 1;
433 }
434
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200435 return 0;
436}
437
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000438/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
439static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
440 struct extent_buffer *eb)
441{
442 smp_mb();
443 if (list_empty(&(fs_info)->tree_mod_seq_list))
444 return 0;
445 if (eb && btrfs_header_level(eb) == 0)
446 return 0;
447
448 return 1;
449}
450
451static struct tree_mod_elem *
452alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
453 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200454{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200455 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200456
Josef Bacikc8cc6342013-07-01 16:18:19 -0400457 tm = kzalloc(sizeof(*tm), flags);
458 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000459 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200460
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530461 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200462 if (op != MOD_LOG_KEY_ADD) {
463 btrfs_node_key(eb, &tm->key, slot);
464 tm->blockptr = btrfs_node_blockptr(eb, slot);
465 }
466 tm->op = op;
467 tm->slot = slot;
468 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000469 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200470
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000471 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200472}
473
David Sterbae09c2ef2018-03-05 15:09:03 +0100474static noinline int tree_mod_log_insert_key(struct extent_buffer *eb, int slot,
475 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200476{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000477 struct tree_mod_elem *tm;
478 int ret;
479
David Sterbae09c2ef2018-03-05 15:09:03 +0100480 if (!tree_mod_need_log(eb->fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200481 return 0;
482
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000483 tm = alloc_tree_mod_elem(eb, slot, op, flags);
484 if (!tm)
485 return -ENOMEM;
486
David Sterbae09c2ef2018-03-05 15:09:03 +0100487 if (tree_mod_dont_log(eb->fs_info, eb)) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000488 kfree(tm);
489 return 0;
490 }
491
David Sterbae09c2ef2018-03-05 15:09:03 +0100492 ret = __tree_mod_log_insert(eb->fs_info, tm);
David Sterbab1a09f12018-03-05 15:43:41 +0100493 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000494 if (ret)
495 kfree(tm);
496
497 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200498}
499
David Sterba6074d452018-03-05 15:03:52 +0100500static noinline int tree_mod_log_insert_move(struct extent_buffer *eb,
501 int dst_slot, int src_slot, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200502{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000503 struct tree_mod_elem *tm = NULL;
504 struct tree_mod_elem **tm_list = NULL;
505 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200506 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000507 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200508
David Sterba6074d452018-03-05 15:03:52 +0100509 if (!tree_mod_need_log(eb->fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200510 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200511
David Sterba176ef8f2017-03-28 14:35:01 +0200512 tm_list = kcalloc(nr_items, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000513 if (!tm_list)
514 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200515
David Sterba176ef8f2017-03-28 14:35:01 +0200516 tm = kzalloc(sizeof(*tm), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000517 if (!tm) {
518 ret = -ENOMEM;
519 goto free_tms;
520 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200521
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530522 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200523 tm->slot = src_slot;
524 tm->move.dst_slot = dst_slot;
525 tm->move.nr_items = nr_items;
526 tm->op = MOD_LOG_MOVE_KEYS;
527
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000528 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
529 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
David Sterba176ef8f2017-03-28 14:35:01 +0200530 MOD_LOG_KEY_REMOVE_WHILE_MOVING, GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000531 if (!tm_list[i]) {
532 ret = -ENOMEM;
533 goto free_tms;
534 }
535 }
536
David Sterba6074d452018-03-05 15:03:52 +0100537 if (tree_mod_dont_log(eb->fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000538 goto free_tms;
539 locked = 1;
540
541 /*
542 * When we override something during the move, we log these removals.
543 * This can only happen when we move towards the beginning of the
544 * buffer, i.e. dst_slot < src_slot.
545 */
546 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
David Sterba6074d452018-03-05 15:03:52 +0100547 ret = __tree_mod_log_insert(eb->fs_info, tm_list[i]);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000548 if (ret)
549 goto free_tms;
550 }
551
David Sterba6074d452018-03-05 15:03:52 +0100552 ret = __tree_mod_log_insert(eb->fs_info, tm);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000553 if (ret)
554 goto free_tms;
David Sterbab1a09f12018-03-05 15:43:41 +0100555 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000556 kfree(tm_list);
557
558 return 0;
559free_tms:
560 for (i = 0; i < nr_items; i++) {
561 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
David Sterba6074d452018-03-05 15:03:52 +0100562 rb_erase(&tm_list[i]->node, &eb->fs_info->tree_mod_log);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000563 kfree(tm_list[i]);
564 }
565 if (locked)
David Sterbab1a09f12018-03-05 15:43:41 +0100566 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000567 kfree(tm_list);
568 kfree(tm);
569
570 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200571}
572
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000573static inline int
574__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
575 struct tree_mod_elem **tm_list,
576 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200577{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000578 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200579 int ret;
580
Jan Schmidt097b8a72012-06-21 11:08:04 +0200581 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000582 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
583 if (ret) {
584 for (j = nritems - 1; j > i; j--)
585 rb_erase(&tm_list[j]->node,
586 &fs_info->tree_mod_log);
587 return ret;
588 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200589 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000590
591 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200592}
593
David Sterba95b757c2018-03-05 15:22:30 +0100594static noinline int tree_mod_log_insert_root(struct extent_buffer *old_root,
595 struct extent_buffer *new_root, int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200596{
David Sterba95b757c2018-03-05 15:22:30 +0100597 struct btrfs_fs_info *fs_info = old_root->fs_info;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000598 struct tree_mod_elem *tm = NULL;
599 struct tree_mod_elem **tm_list = NULL;
600 int nritems = 0;
601 int ret = 0;
602 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200603
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000604 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200605 return 0;
606
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000607 if (log_removal && btrfs_header_level(old_root) > 0) {
608 nritems = btrfs_header_nritems(old_root);
David Sterba31e818f2015-02-20 18:00:26 +0100609 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *),
David Sterbabcc8e072017-03-28 14:35:42 +0200610 GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000611 if (!tm_list) {
612 ret = -ENOMEM;
613 goto free_tms;
614 }
615 for (i = 0; i < nritems; i++) {
616 tm_list[i] = alloc_tree_mod_elem(old_root, i,
David Sterbabcc8e072017-03-28 14:35:42 +0200617 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000618 if (!tm_list[i]) {
619 ret = -ENOMEM;
620 goto free_tms;
621 }
622 }
623 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000624
David Sterbabcc8e072017-03-28 14:35:42 +0200625 tm = kzalloc(sizeof(*tm), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000626 if (!tm) {
627 ret = -ENOMEM;
628 goto free_tms;
629 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200630
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530631 tm->logical = new_root->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200632 tm->old_root.logical = old_root->start;
633 tm->old_root.level = btrfs_header_level(old_root);
634 tm->generation = btrfs_header_generation(old_root);
635 tm->op = MOD_LOG_ROOT_REPLACE;
636
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000637 if (tree_mod_dont_log(fs_info, NULL))
638 goto free_tms;
639
640 if (tm_list)
641 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
642 if (!ret)
643 ret = __tree_mod_log_insert(fs_info, tm);
644
David Sterbab1a09f12018-03-05 15:43:41 +0100645 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000646 if (ret)
647 goto free_tms;
648 kfree(tm_list);
649
650 return ret;
651
652free_tms:
653 if (tm_list) {
654 for (i = 0; i < nritems; i++)
655 kfree(tm_list[i]);
656 kfree(tm_list);
657 }
658 kfree(tm);
659
660 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200661}
662
663static struct tree_mod_elem *
664__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
665 int smallest)
666{
667 struct rb_root *tm_root;
668 struct rb_node *node;
669 struct tree_mod_elem *cur = NULL;
670 struct tree_mod_elem *found = NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200671
David Sterbab1a09f12018-03-05 15:43:41 +0100672 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200673 tm_root = &fs_info->tree_mod_log;
674 node = tm_root->rb_node;
675 while (node) {
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800676 cur = rb_entry(node, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530677 if (cur->logical < start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200678 node = node->rb_left;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530679 } else if (cur->logical > start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200680 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200681 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200682 node = node->rb_left;
683 } else if (!smallest) {
684 /* we want the node with the highest seq */
685 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200686 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200687 found = cur;
688 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200689 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200690 /* we want the node with the smallest seq */
691 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200692 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200693 found = cur;
694 node = node->rb_right;
695 } else {
696 found = cur;
697 break;
698 }
699 }
David Sterbab1a09f12018-03-05 15:43:41 +0100700 read_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200701
702 return found;
703}
704
705/*
706 * this returns the element from the log with the smallest time sequence
707 * value that's in the log (the oldest log item). any element with a time
708 * sequence lower than min_seq will be ignored.
709 */
710static struct tree_mod_elem *
711tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
712 u64 min_seq)
713{
714 return __tree_mod_log_search(fs_info, start, min_seq, 1);
715}
716
717/*
718 * this returns the element from the log with the largest time sequence
719 * value that's in the log (the most recent log item). any element with
720 * a time sequence lower than min_seq will be ignored.
721 */
722static struct tree_mod_elem *
723tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
724{
725 return __tree_mod_log_search(fs_info, start, min_seq, 0);
726}
727
David Sterbaed874f02019-03-20 14:22:04 +0100728static noinline int tree_mod_log_eb_copy(struct extent_buffer *dst,
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200729 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000730 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200731{
David Sterbaed874f02019-03-20 14:22:04 +0100732 struct btrfs_fs_info *fs_info = dst->fs_info;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000733 int ret = 0;
734 struct tree_mod_elem **tm_list = NULL;
735 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200736 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000737 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200738
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000739 if (!tree_mod_need_log(fs_info, NULL))
740 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200741
Josef Bacikc8cc6342013-07-01 16:18:19 -0400742 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000743 return 0;
744
David Sterba31e818f2015-02-20 18:00:26 +0100745 tm_list = kcalloc(nr_items * 2, sizeof(struct tree_mod_elem *),
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000746 GFP_NOFS);
747 if (!tm_list)
748 return -ENOMEM;
749
750 tm_list_add = tm_list;
751 tm_list_rem = tm_list + nr_items;
752 for (i = 0; i < nr_items; i++) {
753 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
754 MOD_LOG_KEY_REMOVE, GFP_NOFS);
755 if (!tm_list_rem[i]) {
756 ret = -ENOMEM;
757 goto free_tms;
758 }
759
760 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
761 MOD_LOG_KEY_ADD, GFP_NOFS);
762 if (!tm_list_add[i]) {
763 ret = -ENOMEM;
764 goto free_tms;
765 }
766 }
767
768 if (tree_mod_dont_log(fs_info, NULL))
769 goto free_tms;
770 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200771
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200772 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000773 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
774 if (ret)
775 goto free_tms;
776 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
777 if (ret)
778 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200779 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000780
David Sterbab1a09f12018-03-05 15:43:41 +0100781 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000782 kfree(tm_list);
783
784 return 0;
785
786free_tms:
787 for (i = 0; i < nr_items * 2; i++) {
788 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
789 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
790 kfree(tm_list[i]);
791 }
792 if (locked)
David Sterbab1a09f12018-03-05 15:43:41 +0100793 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000794 kfree(tm_list);
795
796 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200797}
798
David Sterbadb7279a2018-03-05 15:14:25 +0100799static noinline int tree_mod_log_free_eb(struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200800{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000801 struct tree_mod_elem **tm_list = NULL;
802 int nritems = 0;
803 int i;
804 int ret = 0;
805
806 if (btrfs_header_level(eb) == 0)
807 return 0;
808
David Sterbadb7279a2018-03-05 15:14:25 +0100809 if (!tree_mod_need_log(eb->fs_info, NULL))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000810 return 0;
811
812 nritems = btrfs_header_nritems(eb);
David Sterba31e818f2015-02-20 18:00:26 +0100813 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000814 if (!tm_list)
815 return -ENOMEM;
816
817 for (i = 0; i < nritems; i++) {
818 tm_list[i] = alloc_tree_mod_elem(eb, i,
819 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
820 if (!tm_list[i]) {
821 ret = -ENOMEM;
822 goto free_tms;
823 }
824 }
825
David Sterbadb7279a2018-03-05 15:14:25 +0100826 if (tree_mod_dont_log(eb->fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000827 goto free_tms;
828
David Sterbadb7279a2018-03-05 15:14:25 +0100829 ret = __tree_mod_log_free_eb(eb->fs_info, tm_list, nritems);
David Sterbab1a09f12018-03-05 15:43:41 +0100830 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000831 if (ret)
832 goto free_tms;
833 kfree(tm_list);
834
835 return 0;
836
837free_tms:
838 for (i = 0; i < nritems; i++)
839 kfree(tm_list[i]);
840 kfree(tm_list);
841
842 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200843}
844
Chris Masond352ac62008-09-29 15:18:18 -0400845/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400846 * check if the tree block can be shared by multiple trees
847 */
848int btrfs_block_can_be_shared(struct btrfs_root *root,
849 struct extent_buffer *buf)
850{
851 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400852 * Tree blocks not in reference counted trees and tree roots
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400853 * are never shared. If a block was allocated after the last
854 * snapshot and the block was not allocated by tree relocation,
855 * we know the block is not shared.
856 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800857 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400858 buf != root->node && buf != root->commit_root &&
859 (btrfs_header_generation(buf) <=
860 btrfs_root_last_snapshot(&root->root_item) ||
861 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
862 return 1;
Nikolay Borisova79865c2018-06-21 09:45:00 +0300863
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400864 return 0;
865}
866
867static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
868 struct btrfs_root *root,
869 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400870 struct extent_buffer *cow,
871 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400872{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400873 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400874 u64 refs;
875 u64 owner;
876 u64 flags;
877 u64 new_flags = 0;
878 int ret;
879
880 /*
881 * Backrefs update rules:
882 *
883 * Always use full backrefs for extent pointers in tree block
884 * allocated by tree relocation.
885 *
886 * If a shared tree block is no longer referenced by its owner
887 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
888 * use full backrefs for extent pointers in tree block.
889 *
890 * If a tree block is been relocating
891 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
892 * use full backrefs for extent pointers in tree block.
893 * The reason for this is some operations (such as drop tree)
894 * are only allowed for blocks use full backrefs.
895 */
896
897 if (btrfs_block_can_be_shared(root, buf)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400898 ret = btrfs_lookup_extent_info(trans, fs_info, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -0500899 btrfs_header_level(buf), 1,
900 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700901 if (ret)
902 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -0700903 if (refs == 0) {
904 ret = -EROFS;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400905 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fashehe5df9572011-08-29 14:17:04 -0700906 return ret;
907 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400908 } else {
909 refs = 1;
910 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
911 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
912 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
913 else
914 flags = 0;
915 }
916
917 owner = btrfs_header_owner(buf);
918 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
919 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
920
921 if (refs > 1) {
922 if ((owner == root->root_key.objectid ||
923 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
924 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -0700925 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500926 if (ret)
927 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400928
929 if (root->root_key.objectid ==
930 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -0700931 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500932 if (ret)
933 return ret;
Josef Bacike339a6b2014-07-02 10:54:25 -0700934 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500935 if (ret)
936 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400937 }
938 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
939 } else {
940
941 if (root->root_key.objectid ==
942 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700943 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400944 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700945 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500946 if (ret)
947 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400948 }
949 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -0400950 int level = btrfs_header_level(buf);
951
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400952 ret = btrfs_set_disk_extent_flags(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 buf->start,
954 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -0400955 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700956 if (ret)
957 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400958 }
959 } else {
960 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
961 if (root->root_key.objectid ==
962 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700963 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400964 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700965 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500966 if (ret)
967 return ret;
Josef Bacike339a6b2014-07-02 10:54:25 -0700968 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500969 if (ret)
970 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400971 }
David Sterba6a884d7d2019-03-20 14:30:02 +0100972 btrfs_clean_tree_block(buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400973 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400974 }
975 return 0;
976}
977
Filipe Mananaa6279472019-01-25 11:48:51 +0000978static struct extent_buffer *alloc_tree_block_no_bg_flush(
979 struct btrfs_trans_handle *trans,
980 struct btrfs_root *root,
981 u64 parent_start,
982 const struct btrfs_disk_key *disk_key,
983 int level,
984 u64 hint,
985 u64 empty_size)
986{
987 struct btrfs_fs_info *fs_info = root->fs_info;
988 struct extent_buffer *ret;
989
990 /*
991 * If we are COWing a node/leaf from the extent, chunk, device or free
992 * space trees, make sure that we do not finish block group creation of
993 * pending block groups. We do this to avoid a deadlock.
994 * COWing can result in allocation of a new chunk, and flushing pending
995 * block groups (btrfs_create_pending_block_groups()) can be triggered
996 * when finishing allocation of a new chunk. Creation of a pending block
997 * group modifies the extent, chunk, device and free space trees,
998 * therefore we could deadlock with ourselves since we are holding a
999 * lock on an extent buffer that btrfs_create_pending_block_groups() may
1000 * try to COW later.
1001 * For similar reasons, we also need to delay flushing pending block
1002 * groups when splitting a leaf or node, from one of those trees, since
1003 * we are holding a write lock on it and its parent or when inserting a
1004 * new root node for one of those trees.
1005 */
1006 if (root == fs_info->extent_root ||
1007 root == fs_info->chunk_root ||
1008 root == fs_info->dev_root ||
1009 root == fs_info->free_space_root)
1010 trans->can_flush_pending_bgs = false;
1011
1012 ret = btrfs_alloc_tree_block(trans, root, parent_start,
1013 root->root_key.objectid, disk_key, level,
1014 hint, empty_size);
1015 trans->can_flush_pending_bgs = true;
1016
1017 return ret;
1018}
1019
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001020/*
Chris Masond3977122009-01-05 21:25:51 -05001021 * does the dirty work in cow of a single block. The parent block (if
1022 * supplied) is updated to point to the new cow copy. The new buffer is marked
1023 * dirty and returned locked. If you modify the block it needs to be marked
1024 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001025 *
1026 * search_start -- an allocation hint for the new block
1027 *
Chris Masond3977122009-01-05 21:25:51 -05001028 * empty_size -- a hint that you plan on doing more cow. This is the size in
1029 * bytes the allocator should try to find free next to the block it returns.
1030 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001031 */
Chris Masond3977122009-01-05 21:25:51 -05001032static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001033 struct btrfs_root *root,
1034 struct extent_buffer *buf,
1035 struct extent_buffer *parent, int parent_slot,
1036 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001037 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001038{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001039 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001041 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001042 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001043 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001044 int unlock_orig = 0;
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001045 u64 parent_start = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001046
Chris Mason925baed2008-06-25 16:01:30 -04001047 if (*cow_ret == buf)
1048 unlock_orig = 1;
1049
Chris Masonb9447ef82009-03-09 11:45:38 -04001050 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001051
Miao Xie27cdeb72014-04-02 19:51:05 +08001052 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001053 trans->transid != fs_info->running_transaction->transid);
Miao Xie27cdeb72014-04-02 19:51:05 +08001054 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1055 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001056
Chris Mason7bb86312007-12-11 09:25:06 -05001057 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001058
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001059 if (level == 0)
1060 btrfs_item_key(buf, &disk_key, 0);
1061 else
1062 btrfs_node_key(buf, &disk_key, 0);
1063
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001064 if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent)
1065 parent_start = parent->start;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001066
Filipe Mananaa6279472019-01-25 11:48:51 +00001067 cow = alloc_tree_block_no_bg_flush(trans, root, parent_start, &disk_key,
1068 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001069 if (IS_ERR(cow))
1070 return PTR_ERR(cow);
1071
Chris Masonb4ce94d2009-02-04 09:25:08 -05001072 /* cow is set to blocking by btrfs_init_new_buffer */
1073
David Sterba58e80122016-11-08 18:30:31 +01001074 copy_extent_buffer_full(cow, buf);
Chris Masondb945352007-10-15 16:15:53 -04001075 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001076 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1078 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1079 BTRFS_HEADER_FLAG_RELOC);
1080 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1081 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1082 else
1083 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001084
Nikolay Borisovde37aa52018-10-30 16:43:24 +02001085 write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05001086
Mark Fashehbe1a5562011-08-08 13:20:18 -07001087 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001088 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001089 btrfs_abort_transaction(trans, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001090 return ret;
1091 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001092
Miao Xie27cdeb72014-04-02 19:51:05 +08001093 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001094 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
Zhaolei93314e32015-08-06 21:56:58 +08001095 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001096 btrfs_abort_transaction(trans, ret);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001097 return ret;
Zhaolei93314e32015-08-06 21:56:58 +08001098 }
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001099 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001100
Chris Mason6702ed42007-08-07 16:15:09 -04001101 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001102 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001103 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1104 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1105 parent_start = buf->start;
Chris Mason925baed2008-06-25 16:01:30 -04001106
Chris Mason5f39d392007-10-15 16:14:19 -04001107 extent_buffer_get(cow);
David Sterbad9d19a02018-03-05 16:35:29 +01001108 ret = tree_mod_log_insert_root(root->node, cow, 1);
1109 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04001110 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001111
Yan, Zhengf0486c62010-05-16 10:46:25 -04001112 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001113 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001114 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001115 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001116 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001117 WARN_ON(trans->transid != btrfs_header_generation(parent));
David Sterbae09c2ef2018-03-05 15:09:03 +01001118 tree_mod_log_insert_key(parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001119 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001120 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001121 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001122 btrfs_set_node_ptr_generation(parent, parent_slot,
1123 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001124 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001125 if (last_ref) {
David Sterbadb7279a2018-03-05 15:14:25 +01001126 ret = tree_mod_log_free_eb(buf);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001127 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001128 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001129 return ret;
1130 }
1131 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001132 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001133 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001134 }
Chris Mason925baed2008-06-25 16:01:30 -04001135 if (unlock_orig)
1136 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001137 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001138 btrfs_mark_buffer_dirty(cow);
1139 *cow_ret = cow;
1140 return 0;
1141}
1142
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001143/*
1144 * returns the logical address of the oldest predecessor of the given root.
1145 * entries older than time_seq are ignored.
1146 */
David Sterbabcd24da2018-03-05 15:33:18 +01001147static struct tree_mod_elem *__tree_mod_log_oldest_root(
1148 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001149{
1150 struct tree_mod_elem *tm;
1151 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001152 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001153 int looped = 0;
1154
1155 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001156 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001157
1158 /*
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301159 * the very last operation that's logged for a root is the
1160 * replacement operation (if it is replaced at all). this has
1161 * the logical address of the *new* root, making it the very
1162 * first operation that's logged for this root.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001163 */
1164 while (1) {
David Sterbabcd24da2018-03-05 15:33:18 +01001165 tm = tree_mod_log_search_oldest(eb_root->fs_info, root_logical,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001166 time_seq);
1167 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001168 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001169 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001170 * if there are no tree operation for the oldest root, we simply
1171 * return it. this should only happen if that (old) root is at
1172 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001173 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001174 if (!tm)
1175 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001176
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001177 /*
1178 * if there's an operation that's not a root replacement, we
1179 * found the oldest version of our root. normally, we'll find a
1180 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1181 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001182 if (tm->op != MOD_LOG_ROOT_REPLACE)
1183 break;
1184
1185 found = tm;
1186 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001187 looped = 1;
1188 }
1189
Jan Schmidta95236d2012-06-05 16:41:24 +02001190 /* if there's no old root to return, return what we found instead */
1191 if (!found)
1192 found = tm;
1193
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001194 return found;
1195}
1196
1197/*
1198 * tm is a pointer to the first operation to rewind within eb. then, all
Nicholas D Steeves01327612016-05-19 21:18:45 -04001199 * previous operations will be rewound (until we reach something older than
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001200 * time_seq).
1201 */
1202static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001203__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1204 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001205{
1206 u32 n;
1207 struct rb_node *next;
1208 struct tree_mod_elem *tm = first_tm;
1209 unsigned long o_dst;
1210 unsigned long o_src;
1211 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1212
1213 n = btrfs_header_nritems(eb);
David Sterbab1a09f12018-03-05 15:43:41 +01001214 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001215 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001216 /*
1217 * all the operations are recorded with the operator used for
1218 * the modification. as we're going backwards, we do the
1219 * opposite of each operation here.
1220 */
1221 switch (tm->op) {
1222 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1223 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001224 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001225 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001226 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001227 btrfs_set_node_key(eb, &tm->key, tm->slot);
1228 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1229 btrfs_set_node_ptr_generation(eb, tm->slot,
1230 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001231 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001232 break;
1233 case MOD_LOG_KEY_REPLACE:
1234 BUG_ON(tm->slot >= n);
1235 btrfs_set_node_key(eb, &tm->key, tm->slot);
1236 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1237 btrfs_set_node_ptr_generation(eb, tm->slot,
1238 tm->generation);
1239 break;
1240 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001241 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001242 n--;
1243 break;
1244 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001245 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1246 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1247 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001248 tm->move.nr_items * p_size);
1249 break;
1250 case MOD_LOG_ROOT_REPLACE:
1251 /*
1252 * this operation is special. for roots, this must be
1253 * handled explicitly before rewinding.
1254 * for non-roots, this operation may exist if the node
1255 * was a root: root A -> child B; then A gets empty and
1256 * B is promoted to the new root. in the mod log, we'll
1257 * have a root-replace operation for B, a tree block
1258 * that is no root. we simply ignore that operation.
1259 */
1260 break;
1261 }
1262 next = rb_next(&tm->node);
1263 if (!next)
1264 break;
Geliang Tang6b4df8b2016-12-19 22:53:41 +08001265 tm = rb_entry(next, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301266 if (tm->logical != first_tm->logical)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001267 break;
1268 }
David Sterbab1a09f12018-03-05 15:43:41 +01001269 read_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001270 btrfs_set_header_nritems(eb, n);
1271}
1272
Jan Schmidt47fb0912013-04-13 13:19:55 +00001273/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04001274 * Called with eb read locked. If the buffer cannot be rewound, the same buffer
Jan Schmidt47fb0912013-04-13 13:19:55 +00001275 * is returned. If rewind operations happen, a fresh buffer is returned. The
1276 * returned buffer is always read-locked. If the returned buffer is not the
1277 * input buffer, the lock on the input buffer is released and the input buffer
1278 * is freed (its refcount is decremented).
1279 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001280static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001281tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1282 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001283{
1284 struct extent_buffer *eb_rewin;
1285 struct tree_mod_elem *tm;
1286
1287 if (!time_seq)
1288 return eb;
1289
1290 if (btrfs_header_level(eb) == 0)
1291 return eb;
1292
1293 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1294 if (!tm)
1295 return eb;
1296
Josef Bacik9ec72672013-08-07 16:57:23 -04001297 btrfs_set_path_blocking(path);
David Sterba300aa892018-04-04 02:00:17 +02001298 btrfs_set_lock_blocking_read(eb);
Josef Bacik9ec72672013-08-07 16:57:23 -04001299
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001300 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1301 BUG_ON(tm->slot != 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001302 eb_rewin = alloc_dummy_extent_buffer(fs_info, eb->start);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001303 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001304 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001305 free_extent_buffer(eb);
1306 return NULL;
1307 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001308 btrfs_set_header_bytenr(eb_rewin, eb->start);
1309 btrfs_set_header_backref_rev(eb_rewin,
1310 btrfs_header_backref_rev(eb));
1311 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001312 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001313 } else {
1314 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001315 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001316 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001317 free_extent_buffer(eb);
1318 return NULL;
1319 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001320 }
1321
Josef Bacik9ec72672013-08-07 16:57:23 -04001322 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001323 free_extent_buffer(eb);
1324
Jan Schmidt47fb0912013-04-13 13:19:55 +00001325 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001326 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001327 WARN_ON(btrfs_header_nritems(eb_rewin) >
Jeff Mahoneyda170662016-06-15 09:22:56 -04001328 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001329
1330 return eb_rewin;
1331}
1332
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001333/*
1334 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1335 * value. If there are no changes, the current root->root_node is returned. If
1336 * anything changed in between, there's a fresh buffer allocated on which the
1337 * rewind operations are done. In any case, the returned buffer is read locked.
1338 * Returns NULL on error (with no locks held).
1339 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001340static inline struct extent_buffer *
1341get_old_root(struct btrfs_root *root, u64 time_seq)
1342{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001343 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001344 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001345 struct extent_buffer *eb = NULL;
1346 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001347 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001348 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001349 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001350 u64 logical;
Qu Wenruo581c1762018-03-29 09:08:11 +08001351 int level;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001352
Jan Schmidt30b04632013-04-13 13:19:54 +00001353 eb_root = btrfs_read_lock_root_node(root);
David Sterbabcd24da2018-03-05 15:33:18 +01001354 tm = __tree_mod_log_oldest_root(eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001355 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001356 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001357
Jan Schmidta95236d2012-06-05 16:41:24 +02001358 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1359 old_root = &tm->old_root;
1360 old_generation = tm->generation;
1361 logical = old_root->logical;
Qu Wenruo581c1762018-03-29 09:08:11 +08001362 level = old_root->level;
Jan Schmidta95236d2012-06-05 16:41:24 +02001363 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001364 logical = eb_root->start;
Qu Wenruo581c1762018-03-29 09:08:11 +08001365 level = btrfs_header_level(eb_root);
Jan Schmidta95236d2012-06-05 16:41:24 +02001366 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001367
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001368 tm = tree_mod_log_search(fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001369 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001370 btrfs_tree_read_unlock(eb_root);
1371 free_extent_buffer(eb_root);
Qu Wenruo581c1762018-03-29 09:08:11 +08001372 old = read_tree_block(fs_info, logical, 0, level, NULL);
Liu Bo64c043d2015-05-25 17:30:15 +08001373 if (WARN_ON(IS_ERR(old) || !extent_buffer_uptodate(old))) {
1374 if (!IS_ERR(old))
1375 free_extent_buffer(old);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001376 btrfs_warn(fs_info,
1377 "failed to read tree block %llu from get_old_root",
1378 logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001379 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001380 eb = btrfs_clone_extent_buffer(old);
1381 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001382 }
1383 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001384 btrfs_tree_read_unlock(eb_root);
1385 free_extent_buffer(eb_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001386 eb = alloc_dummy_extent_buffer(fs_info, logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001387 } else {
David Sterba300aa892018-04-04 02:00:17 +02001388 btrfs_set_lock_blocking_read(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001389 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001390 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001391 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001392 }
1393
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001394 if (!eb)
1395 return NULL;
1396 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001397 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001398 btrfs_set_header_bytenr(eb, eb->start);
1399 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001400 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001401 btrfs_set_header_level(eb, old_root->level);
1402 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001403 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001404 if (tm)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001405 __tree_mod_log_rewind(fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001406 else
1407 WARN_ON(btrfs_header_level(eb) != 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001408 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001409
1410 return eb;
1411}
1412
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001413int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1414{
1415 struct tree_mod_elem *tm;
1416 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001417 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001418
David Sterbabcd24da2018-03-05 15:33:18 +01001419 tm = __tree_mod_log_oldest_root(eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001420 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1421 level = tm->old_root.level;
1422 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001423 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001424 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001425 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001426
1427 return level;
1428}
1429
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001430static inline int should_cow_block(struct btrfs_trans_handle *trans,
1431 struct btrfs_root *root,
1432 struct extent_buffer *buf)
1433{
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04001434 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001435 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02001436
David Sterbad1980132018-03-16 02:39:40 +01001437 /* Ensure we can see the FORCE_COW bit */
1438 smp_mb__before_atomic();
Liu Bof1ebcc72011-11-14 20:48:06 -05001439
1440 /*
1441 * We do not need to cow a block if
1442 * 1) this block is not created or changed in this transaction;
1443 * 2) this block does not belong to TREE_RELOC tree;
1444 * 3) the root is not forced COW.
1445 *
1446 * What is forced COW:
Nicholas D Steeves01327612016-05-19 21:18:45 -04001447 * when we create snapshot during committing the transaction,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001448 * after we've finished copying src root, we must COW the shared
Liu Bof1ebcc72011-11-14 20:48:06 -05001449 * block to ensure the metadata consistency.
1450 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001451 if (btrfs_header_generation(buf) == trans->transid &&
1452 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1453 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001454 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001455 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001456 return 0;
1457 return 1;
1458}
1459
Chris Masond352ac62008-09-29 15:18:18 -04001460/*
1461 * cows a single block, see __btrfs_cow_block for the real work.
Nicholas D Steeves01327612016-05-19 21:18:45 -04001462 * This version of it has extra checks so that a block isn't COWed more than
Chris Masond352ac62008-09-29 15:18:18 -04001463 * once per transaction, as long as it hasn't been written yet
1464 */
Chris Masond3977122009-01-05 21:25:51 -05001465noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001466 struct btrfs_root *root, struct extent_buffer *buf,
1467 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001468 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001469{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001470 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6702ed42007-08-07 16:15:09 -04001471 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001472 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001473
Josef Bacik83354f02018-11-30 11:52:13 -05001474 if (test_bit(BTRFS_ROOT_DELETING, &root->state))
1475 btrfs_err(fs_info,
1476 "COW'ing blocks on a fs root that's being dropped");
1477
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)
David Sterba8bead252018-04-04 02:03:48 +02001496 btrfs_set_lock_blocking_write(parent);
1497 btrfs_set_lock_blocking_write(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001498
Qu Wenruof616f5c2019-01-23 15:15:17 +08001499 /*
1500 * Before CoWing this block for later modification, check if it's
1501 * the subtree root and do the delayed subtree trace if needed.
1502 *
1503 * Also We don't care about the error, as it's handled internally.
1504 */
1505 btrfs_qgroup_trace_subtree_after_cow(trans, root, buf);
Chris Masonf510cfe2007-10-15 16:14:48 -04001506 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001507 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001508
1509 trace_btrfs_cow_block(root, buf, *cow_ret);
1510
Chris Masonf510cfe2007-10-15 16:14:48 -04001511 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001512}
1513
Chris Masond352ac62008-09-29 15:18:18 -04001514/*
1515 * helper function for defrag to decide if two blocks pointed to by a
1516 * node are actually close by
1517 */
Chris Mason6b800532007-10-15 16:17:34 -04001518static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001519{
Chris Mason6b800532007-10-15 16:17:34 -04001520 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001521 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001522 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001523 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001524 return 0;
1525}
1526
Chris Mason081e9572007-11-06 10:26:24 -05001527/*
1528 * compare two keys in a memcmp fashion
1529 */
Omar Sandoval310712b2017-01-17 23:24:37 -08001530static int comp_keys(const struct btrfs_disk_key *disk,
1531 const struct btrfs_key *k2)
Chris Mason081e9572007-11-06 10:26:24 -05001532{
1533 struct btrfs_key k1;
1534
1535 btrfs_disk_key_to_cpu(&k1, disk);
1536
Diego Calleja20736ab2009-07-24 11:06:52 -04001537 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001538}
1539
Josef Bacikf3465ca2008-11-12 14:19:50 -05001540/*
1541 * same as comp_keys only with two btrfs_key's
1542 */
Omar Sandoval310712b2017-01-17 23:24:37 -08001543int btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001544{
1545 if (k1->objectid > k2->objectid)
1546 return 1;
1547 if (k1->objectid < k2->objectid)
1548 return -1;
1549 if (k1->type > k2->type)
1550 return 1;
1551 if (k1->type < k2->type)
1552 return -1;
1553 if (k1->offset > k2->offset)
1554 return 1;
1555 if (k1->offset < k2->offset)
1556 return -1;
1557 return 0;
1558}
Chris Mason081e9572007-11-06 10:26:24 -05001559
Chris Masond352ac62008-09-29 15:18:18 -04001560/*
1561 * this is used by the defrag code to go through all the
1562 * leaves pointed to by a node and reallocate them so that
1563 * disk order is close to key order
1564 */
Chris Mason6702ed42007-08-07 16:15:09 -04001565int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001566 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001567 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001568 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001569{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001570 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6b800532007-10-15 16:17:34 -04001571 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001572 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001573 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001574 u64 search_start = *last_ret;
1575 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001576 u64 other;
1577 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001578 int end_slot;
1579 int i;
1580 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001581 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001582 int uptodate;
1583 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001584 int progress_passed = 0;
1585 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001586
Chris Mason5708b952007-10-25 15:43:18 -04001587 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001588
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001589 WARN_ON(trans->transaction != fs_info->running_transaction);
1590 WARN_ON(trans->transid != fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001591
Chris Mason6b800532007-10-15 16:17:34 -04001592 parent_nritems = btrfs_header_nritems(parent);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001593 blocksize = fs_info->nodesize;
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001594 end_slot = parent_nritems - 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001595
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001596 if (parent_nritems <= 1)
Chris Mason6702ed42007-08-07 16:15:09 -04001597 return 0;
1598
David Sterba8bead252018-04-04 02:03:48 +02001599 btrfs_set_lock_blocking_write(parent);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001600
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001601 for (i = start_slot; i <= end_slot; i++) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001602 struct btrfs_key first_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001603 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001604
Chris Mason081e9572007-11-06 10:26:24 -05001605 btrfs_node_key(parent, &disk_key, i);
1606 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1607 continue;
1608
1609 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001610 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001611 gen = btrfs_node_ptr_generation(parent, i);
Qu Wenruo581c1762018-03-29 09:08:11 +08001612 btrfs_node_key_to_cpu(parent, &first_key, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001613 if (last_block == 0)
1614 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001615
Chris Mason6702ed42007-08-07 16:15:09 -04001616 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001617 other = btrfs_node_blockptr(parent, i - 1);
1618 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001619 }
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001620 if (!close && i < end_slot) {
Chris Mason6b800532007-10-15 16:17:34 -04001621 other = btrfs_node_blockptr(parent, i + 1);
1622 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001623 }
Chris Masone9d0b132007-08-10 14:06:19 -04001624 if (close) {
1625 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001626 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001627 }
Chris Mason6702ed42007-08-07 16:15:09 -04001628
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001629 cur = find_extent_buffer(fs_info, blocknr);
Chris Mason6b800532007-10-15 16:17:34 -04001630 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001631 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001632 else
1633 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001634 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001635 if (!cur) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001636 cur = read_tree_block(fs_info, blocknr, gen,
1637 parent_level - 1,
1638 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08001639 if (IS_ERR(cur)) {
1640 return PTR_ERR(cur);
1641 } else if (!extent_buffer_uptodate(cur)) {
Josef Bacik416bc652013-04-23 14:17:42 -04001642 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001643 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001644 }
Chris Mason6b800532007-10-15 16:17:34 -04001645 } else if (!uptodate) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001646 err = btrfs_read_buffer(cur, gen,
1647 parent_level - 1,&first_key);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001648 if (err) {
1649 free_extent_buffer(cur);
1650 return err;
1651 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001652 }
Chris Mason6702ed42007-08-07 16:15:09 -04001653 }
Chris Masone9d0b132007-08-10 14:06:19 -04001654 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001655 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001656
Chris Masone7a84562008-06-25 16:01:31 -04001657 btrfs_tree_lock(cur);
David Sterba8bead252018-04-04 02:03:48 +02001658 btrfs_set_lock_blocking_write(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001659 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001660 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001661 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001662 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001663 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001664 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001665 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001666 break;
Yan252c38f2007-08-29 09:11:44 -04001667 }
Chris Masone7a84562008-06-25 16:01:31 -04001668 search_start = cur->start;
1669 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001670 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001671 btrfs_tree_unlock(cur);
1672 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001673 }
1674 return err;
1675}
1676
Chris Mason74123bd2007-02-02 11:05:29 -05001677/*
Chris Mason5f39d392007-10-15 16:14:19 -04001678 * search for key in the extent_buffer. The items start at offset p,
1679 * and they are item_size apart. There are 'max' items in p.
1680 *
Chris Mason74123bd2007-02-02 11:05:29 -05001681 * the slot in the array is returned via slot, and it points to
1682 * the place where you would insert key if it is not found in
1683 * the array.
1684 *
1685 * slot may point to max if the key is bigger than all of the keys
1686 */
Chris Masone02119d2008-09-05 16:13:11 -04001687static noinline int generic_bin_search(struct extent_buffer *eb,
Omar Sandoval310712b2017-01-17 23:24:37 -08001688 unsigned long p, int item_size,
1689 const struct btrfs_key *key,
Chris Masone02119d2008-09-05 16:13:11 -04001690 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001691{
1692 int low = 0;
1693 int high = max;
1694 int mid;
1695 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001696 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001697 struct btrfs_disk_key unaligned;
1698 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001699 char *kaddr = NULL;
1700 unsigned long map_start = 0;
1701 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001702 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001703
Liu Bo5e24e9a2016-06-23 16:32:45 -07001704 if (low > high) {
1705 btrfs_err(eb->fs_info,
1706 "%s: low (%d) > high (%d) eb %llu owner %llu level %d",
1707 __func__, low, high, eb->start,
1708 btrfs_header_owner(eb), btrfs_header_level(eb));
1709 return -EINVAL;
1710 }
1711
Chris Masond3977122009-01-05 21:25:51 -05001712 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001713 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001714 offset = p + mid * item_size;
1715
Chris Masona6591712011-07-19 12:04:14 -04001716 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001717 (offset + sizeof(struct btrfs_disk_key)) >
1718 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001719
1720 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001721 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001722 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001723
Chris Mason479965d2007-10-15 16:14:27 -04001724 if (!err) {
1725 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1726 map_start);
Liu Bo415b35a2016-06-17 19:16:21 -07001727 } else if (err == 1) {
Chris Mason479965d2007-10-15 16:14:27 -04001728 read_extent_buffer(eb, &unaligned,
1729 offset, sizeof(unaligned));
1730 tmp = &unaligned;
Liu Bo415b35a2016-06-17 19:16:21 -07001731 } else {
1732 return err;
Chris Mason479965d2007-10-15 16:14:27 -04001733 }
1734
Chris Mason5f39d392007-10-15 16:14:19 -04001735 } else {
1736 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1737 map_start);
1738 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001739 ret = comp_keys(tmp, key);
1740
1741 if (ret < 0)
1742 low = mid + 1;
1743 else if (ret > 0)
1744 high = mid;
1745 else {
1746 *slot = mid;
1747 return 0;
1748 }
1749 }
1750 *slot = low;
1751 return 1;
1752}
1753
Chris Mason97571fd2007-02-24 13:39:08 -05001754/*
1755 * simple bin_search frontend that does the right thing for
1756 * leaves vs nodes
1757 */
Nikolay Borisova74b35e2017-12-08 16:27:43 +02001758int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
1759 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001760{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001761 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001762 return generic_bin_search(eb,
1763 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001764 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001765 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001766 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001767 else
Chris Mason5f39d392007-10-15 16:14:19 -04001768 return generic_bin_search(eb,
1769 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001770 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001771 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001772 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001773}
1774
Yan, Zhengf0486c62010-05-16 10:46:25 -04001775static void root_add_used(struct btrfs_root *root, u32 size)
1776{
1777 spin_lock(&root->accounting_lock);
1778 btrfs_set_root_used(&root->root_item,
1779 btrfs_root_used(&root->root_item) + size);
1780 spin_unlock(&root->accounting_lock);
1781}
1782
1783static void root_sub_used(struct btrfs_root *root, u32 size)
1784{
1785 spin_lock(&root->accounting_lock);
1786 btrfs_set_root_used(&root->root_item,
1787 btrfs_root_used(&root->root_item) - size);
1788 spin_unlock(&root->accounting_lock);
1789}
1790
Chris Masond352ac62008-09-29 15:18:18 -04001791/* given a node and slot number, this reads the blocks it points to. The
1792 * extent buffer is returned with a reference taken (but unlocked).
Chris Masond352ac62008-09-29 15:18:18 -04001793 */
David Sterbad0d20b02019-03-20 14:54:01 +01001794static noinline struct extent_buffer *read_node_slot(
1795 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001796{
Chris Masonca7a79a2008-05-12 12:59:19 -04001797 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001798 struct extent_buffer *eb;
Qu Wenruo581c1762018-03-29 09:08:11 +08001799 struct btrfs_key first_key;
Josef Bacik416bc652013-04-23 14:17:42 -04001800
Liu Bofb770ae2016-07-05 12:10:14 -07001801 if (slot < 0 || slot >= btrfs_header_nritems(parent))
1802 return ERR_PTR(-ENOENT);
Chris Masonca7a79a2008-05-12 12:59:19 -04001803
1804 BUG_ON(level == 0);
1805
Qu Wenruo581c1762018-03-29 09:08:11 +08001806 btrfs_node_key_to_cpu(parent, &first_key, slot);
David Sterbad0d20b02019-03-20 14:54:01 +01001807 eb = read_tree_block(parent->fs_info, btrfs_node_blockptr(parent, slot),
Qu Wenruo581c1762018-03-29 09:08:11 +08001808 btrfs_node_ptr_generation(parent, slot),
1809 level - 1, &first_key);
Liu Bofb770ae2016-07-05 12:10:14 -07001810 if (!IS_ERR(eb) && !extent_buffer_uptodate(eb)) {
1811 free_extent_buffer(eb);
1812 eb = ERR_PTR(-EIO);
Josef Bacik416bc652013-04-23 14:17:42 -04001813 }
1814
1815 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001816}
1817
Chris Masond352ac62008-09-29 15:18:18 -04001818/*
1819 * node level balancing, used to make sure nodes are in proper order for
1820 * item deletion. We balance from the top down, so we have to make sure
1821 * that a deletion won't leave an node completely empty later on.
1822 */
Chris Masone02119d2008-09-05 16:13:11 -04001823static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001824 struct btrfs_root *root,
1825 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001826{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001827 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04001828 struct extent_buffer *right = NULL;
1829 struct extent_buffer *mid;
1830 struct extent_buffer *left = NULL;
1831 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001832 int ret = 0;
1833 int wret;
1834 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001835 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001836 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001837
Liu Bo98e6b1e2018-09-12 06:06:23 +08001838 ASSERT(level > 0);
Chris Masonbb803952007-03-01 12:04:21 -05001839
Chris Mason5f39d392007-10-15 16:14:19 -04001840 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001841
Chris Masonbd681512011-07-16 15:23:14 -04001842 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1843 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001844 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1845
Chris Mason1d4f8a02007-03-13 09:28:32 -04001846 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001847
Li Zefana05a9bb2011-09-06 16:55:34 +08001848 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001849 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001850 pslot = path->slots[level + 1];
1851 }
Chris Masonbb803952007-03-01 12:04:21 -05001852
Chris Mason40689472007-03-17 14:29:23 -04001853 /*
1854 * deal with the case where there is only one pointer in the root
1855 * by promoting the node below to a root
1856 */
Chris Mason5f39d392007-10-15 16:14:19 -04001857 if (!parent) {
1858 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001859
Chris Mason5f39d392007-10-15 16:14:19 -04001860 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001861 return 0;
1862
1863 /* promote the child to a root */
David Sterbad0d20b02019-03-20 14:54:01 +01001864 child = read_node_slot(mid, 0);
Liu Bofb770ae2016-07-05 12:10:14 -07001865 if (IS_ERR(child)) {
1866 ret = PTR_ERR(child);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001867 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001868 goto enospc;
1869 }
1870
Chris Mason925baed2008-06-25 16:01:30 -04001871 btrfs_tree_lock(child);
David Sterba8bead252018-04-04 02:03:48 +02001872 btrfs_set_lock_blocking_write(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001873 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001874 if (ret) {
1875 btrfs_tree_unlock(child);
1876 free_extent_buffer(child);
1877 goto enospc;
1878 }
Yan2f375ab2008-02-01 14:58:07 -05001879
David Sterbad9d19a02018-03-05 16:35:29 +01001880 ret = tree_mod_log_insert_root(root->node, child, 1);
1881 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04001882 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001883
Chris Mason0b86a832008-03-24 15:01:56 -04001884 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001885 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001886
Chris Mason925baed2008-06-25 16:01:30 -04001887 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001888 path->nodes[level] = NULL;
David Sterba6a884d7d2019-03-20 14:30:02 +01001889 btrfs_clean_tree_block(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001890 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001891 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001892 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001893
1894 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001895 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001896 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001897 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001898 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001899 }
Chris Mason5f39d392007-10-15 16:14:19 -04001900 if (btrfs_header_nritems(mid) >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001901 BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001902 return 0;
1903
David Sterbad0d20b02019-03-20 14:54:01 +01001904 left = read_node_slot(parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001905 if (IS_ERR(left))
1906 left = NULL;
1907
Chris Mason5f39d392007-10-15 16:14:19 -04001908 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001909 btrfs_tree_lock(left);
David Sterba8bead252018-04-04 02:03:48 +02001910 btrfs_set_lock_blocking_write(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001911 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001912 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001913 if (wret) {
1914 ret = wret;
1915 goto enospc;
1916 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001917 }
Liu Bofb770ae2016-07-05 12:10:14 -07001918
David Sterbad0d20b02019-03-20 14:54:01 +01001919 right = read_node_slot(parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001920 if (IS_ERR(right))
1921 right = NULL;
1922
Chris Mason5f39d392007-10-15 16:14:19 -04001923 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001924 btrfs_tree_lock(right);
David Sterba8bead252018-04-04 02:03:48 +02001925 btrfs_set_lock_blocking_write(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001926 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001927 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001928 if (wret) {
1929 ret = wret;
1930 goto enospc;
1931 }
1932 }
1933
1934 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001935 if (left) {
1936 orig_slot += btrfs_header_nritems(left);
David Sterbad30a6682019-03-20 14:16:45 +01001937 wret = push_node_left(trans, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001938 if (wret < 0)
1939 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001940 }
Chris Mason79f95c82007-03-01 15:16:26 -05001941
1942 /*
1943 * then try to empty the right most buffer into the middle
1944 */
Chris Mason5f39d392007-10-15 16:14:19 -04001945 if (right) {
David Sterbad30a6682019-03-20 14:16:45 +01001946 wret = push_node_left(trans, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001947 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001948 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001949 if (btrfs_header_nritems(right) == 0) {
David Sterba6a884d7d2019-03-20 14:30:02 +01001950 btrfs_clean_tree_block(right);
Chris Mason925baed2008-06-25 16:01:30 -04001951 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001952 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001953 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001954 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001955 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001956 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001957 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001958 struct btrfs_disk_key right_key;
1959 btrfs_node_key(right, &right_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01001960 ret = tree_mod_log_insert_key(parent, pslot + 1,
1961 MOD_LOG_KEY_REPLACE, GFP_NOFS);
1962 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001963 btrfs_set_node_key(parent, &right_key, pslot + 1);
1964 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001965 }
1966 }
Chris Mason5f39d392007-10-15 16:14:19 -04001967 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001968 /*
1969 * we're not allowed to leave a node with one item in the
1970 * tree during a delete. A deletion from lower in the tree
1971 * could try to delete the only pointer in this node.
1972 * So, pull some keys from the left.
1973 * There has to be a left pointer at this point because
1974 * otherwise we would have pulled some pointers from the
1975 * right
1976 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07001977 if (!left) {
1978 ret = -EROFS;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001979 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001980 goto enospc;
1981 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001982 wret = balance_node_right(trans, fs_info, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001983 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001984 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001985 goto enospc;
1986 }
Chris Masonbce4eae2008-04-24 14:42:46 -04001987 if (wret == 1) {
David Sterbad30a6682019-03-20 14:16:45 +01001988 wret = push_node_left(trans, left, mid, 1);
Chris Masonbce4eae2008-04-24 14:42:46 -04001989 if (wret < 0)
1990 ret = wret;
1991 }
Chris Mason79f95c82007-03-01 15:16:26 -05001992 BUG_ON(wret == 1);
1993 }
Chris Mason5f39d392007-10-15 16:14:19 -04001994 if (btrfs_header_nritems(mid) == 0) {
David Sterba6a884d7d2019-03-20 14:30:02 +01001995 btrfs_clean_tree_block(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001996 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001997 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001998 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001999 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002000 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002001 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05002002 } else {
2003 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04002004 struct btrfs_disk_key mid_key;
2005 btrfs_node_key(mid, &mid_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002006 ret = tree_mod_log_insert_key(parent, pslot,
2007 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2008 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002009 btrfs_set_node_key(parent, &mid_key, pslot);
2010 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05002011 }
Chris Masonbb803952007-03-01 12:04:21 -05002012
Chris Mason79f95c82007-03-01 15:16:26 -05002013 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002014 if (left) {
2015 if (btrfs_header_nritems(left) > orig_slot) {
2016 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04002017 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002018 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002019 path->slots[level + 1] -= 1;
2020 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002021 if (mid) {
2022 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002023 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002024 }
Chris Masonbb803952007-03-01 12:04:21 -05002025 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002026 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002027 path->slots[level] = orig_slot;
2028 }
2029 }
Chris Mason79f95c82007-03-01 15:16:26 -05002030 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002031 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002032 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002033 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002034enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002035 if (right) {
2036 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002037 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002038 }
2039 if (left) {
2040 if (path->nodes[level] != left)
2041 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002042 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002043 }
Chris Masonbb803952007-03-01 12:04:21 -05002044 return ret;
2045}
2046
Chris Masond352ac62008-09-29 15:18:18 -04002047/* Node balancing for insertion. Here we only split or push nodes around
2048 * when they are completely full. This is also done top down, so we
2049 * have to be pessimistic.
2050 */
Chris Masond3977122009-01-05 21:25:51 -05002051static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002052 struct btrfs_root *root,
2053 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002054{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002055 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04002056 struct extent_buffer *right = NULL;
2057 struct extent_buffer *mid;
2058 struct extent_buffer *left = NULL;
2059 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002060 int ret = 0;
2061 int wret;
2062 int pslot;
2063 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002064
2065 if (level == 0)
2066 return 1;
2067
Chris Mason5f39d392007-10-15 16:14:19 -04002068 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002069 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002070
Li Zefana05a9bb2011-09-06 16:55:34 +08002071 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002072 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002073 pslot = path->slots[level + 1];
2074 }
Chris Masone66f7092007-04-20 13:16:02 -04002075
Chris Mason5f39d392007-10-15 16:14:19 -04002076 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002077 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002078
David Sterbad0d20b02019-03-20 14:54:01 +01002079 left = read_node_slot(parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002080 if (IS_ERR(left))
2081 left = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002082
2083 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002084 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002085 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002086
2087 btrfs_tree_lock(left);
David Sterba8bead252018-04-04 02:03:48 +02002088 btrfs_set_lock_blocking_write(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002089
Chris Mason5f39d392007-10-15 16:14:19 -04002090 left_nr = btrfs_header_nritems(left);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002091 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002092 wret = 1;
2093 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002094 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002095 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002096 if (ret)
2097 wret = 1;
2098 else {
David Sterbad30a6682019-03-20 14:16:45 +01002099 wret = push_node_left(trans, left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002100 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002101 }
Chris Masone66f7092007-04-20 13:16:02 -04002102 if (wret < 0)
2103 ret = wret;
2104 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002105 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002106 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002107 btrfs_node_key(mid, &disk_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002108 ret = tree_mod_log_insert_key(parent, pslot,
2109 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2110 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002111 btrfs_set_node_key(parent, &disk_key, pslot);
2112 btrfs_mark_buffer_dirty(parent);
2113 if (btrfs_header_nritems(left) > orig_slot) {
2114 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002115 path->slots[level + 1] -= 1;
2116 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002117 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002118 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002119 } else {
2120 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002121 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002122 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002123 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002124 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002125 }
Chris Masone66f7092007-04-20 13:16:02 -04002126 return 0;
2127 }
Chris Mason925baed2008-06-25 16:01:30 -04002128 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002129 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002130 }
David Sterbad0d20b02019-03-20 14:54:01 +01002131 right = read_node_slot(parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002132 if (IS_ERR(right))
2133 right = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002134
2135 /*
2136 * then try to empty the right most buffer into the middle
2137 */
Chris Mason5f39d392007-10-15 16:14:19 -04002138 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002139 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002140
Chris Mason925baed2008-06-25 16:01:30 -04002141 btrfs_tree_lock(right);
David Sterba8bead252018-04-04 02:03:48 +02002142 btrfs_set_lock_blocking_write(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002143
Chris Mason5f39d392007-10-15 16:14:19 -04002144 right_nr = btrfs_header_nritems(right);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002145 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002146 wret = 1;
2147 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002148 ret = btrfs_cow_block(trans, root, right,
2149 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002150 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002151 if (ret)
2152 wret = 1;
2153 else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002154 wret = balance_node_right(trans, fs_info,
Chris Mason5f39d392007-10-15 16:14:19 -04002155 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002156 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002157 }
Chris Masone66f7092007-04-20 13:16:02 -04002158 if (wret < 0)
2159 ret = wret;
2160 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002161 struct btrfs_disk_key disk_key;
2162
2163 btrfs_node_key(right, &disk_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002164 ret = tree_mod_log_insert_key(parent, pslot + 1,
2165 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2166 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002167 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2168 btrfs_mark_buffer_dirty(parent);
2169
2170 if (btrfs_header_nritems(mid) <= orig_slot) {
2171 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002172 path->slots[level + 1] += 1;
2173 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002174 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002175 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002176 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002177 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002178 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002179 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002180 }
Chris Masone66f7092007-04-20 13:16:02 -04002181 return 0;
2182 }
Chris Mason925baed2008-06-25 16:01:30 -04002183 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002184 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002185 }
Chris Masone66f7092007-04-20 13:16:02 -04002186 return 1;
2187}
2188
Chris Mason74123bd2007-02-02 11:05:29 -05002189/*
Chris Masond352ac62008-09-29 15:18:18 -04002190 * readahead one full node of leaves, finding things that are close
2191 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002192 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002193static void reada_for_search(struct btrfs_fs_info *fs_info,
Chris Masonc8c42862009-04-03 10:14:18 -04002194 struct btrfs_path *path,
2195 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002196{
Chris Mason5f39d392007-10-15 16:14:19 -04002197 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002198 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002199 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002200 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002201 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002202 u64 nread = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002203 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002204 u32 nr;
2205 u32 blocksize;
2206 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002207
Chris Masona6b6e752007-10-15 16:22:39 -04002208 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002209 return;
2210
Chris Mason6702ed42007-08-07 16:15:09 -04002211 if (!path->nodes[level])
2212 return;
2213
Chris Mason5f39d392007-10-15 16:14:19 -04002214 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002215
Chris Mason3c69fae2007-08-07 15:52:22 -04002216 search = btrfs_node_blockptr(node, slot);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002217 blocksize = fs_info->nodesize;
2218 eb = find_extent_buffer(fs_info, search);
Chris Mason5f39d392007-10-15 16:14:19 -04002219 if (eb) {
2220 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002221 return;
2222 }
2223
Chris Masona7175312009-01-22 09:23:10 -05002224 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002225
Chris Mason5f39d392007-10-15 16:14:19 -04002226 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002227 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002228
Chris Masond3977122009-01-05 21:25:51 -05002229 while (1) {
David Sterbae4058b52015-11-27 16:31:35 +01002230 if (path->reada == READA_BACK) {
Chris Mason6b800532007-10-15 16:17:34 -04002231 if (nr == 0)
2232 break;
2233 nr--;
David Sterbae4058b52015-11-27 16:31:35 +01002234 } else if (path->reada == READA_FORWARD) {
Chris Mason6b800532007-10-15 16:17:34 -04002235 nr++;
2236 if (nr >= nritems)
2237 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002238 }
David Sterbae4058b52015-11-27 16:31:35 +01002239 if (path->reada == READA_BACK && objectid) {
Chris Mason01f46652007-12-21 16:24:26 -05002240 btrfs_node_key(node, &disk_key, nr);
2241 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2242 break;
2243 }
Chris Mason6b800532007-10-15 16:17:34 -04002244 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002245 if ((search <= target && target - search <= 65536) ||
2246 (search > target && search - target <= 65536)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002247 readahead_tree_block(fs_info, search);
Chris Mason6b800532007-10-15 16:17:34 -04002248 nread += blocksize;
2249 }
2250 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002251 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002252 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002253 }
2254}
Chris Mason925baed2008-06-25 16:01:30 -04002255
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002256static noinline void reada_for_balance(struct btrfs_fs_info *fs_info,
Josef Bacik0b088512013-06-17 14:23:02 -04002257 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002258{
2259 int slot;
2260 int nritems;
2261 struct extent_buffer *parent;
2262 struct extent_buffer *eb;
2263 u64 gen;
2264 u64 block1 = 0;
2265 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002266
Chris Mason8c594ea2009-04-20 15:50:10 -04002267 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002268 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002269 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002270
2271 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002272 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002273
2274 if (slot > 0) {
2275 block1 = btrfs_node_blockptr(parent, slot - 1);
2276 gen = btrfs_node_ptr_generation(parent, slot - 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002277 eb = find_extent_buffer(fs_info, block1);
Chris Masonb9fab912012-05-06 07:23:47 -04002278 /*
2279 * if we get -eagain from btrfs_buffer_uptodate, we
2280 * don't want to return eagain here. That will loop
2281 * forever
2282 */
2283 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002284 block1 = 0;
2285 free_extent_buffer(eb);
2286 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002287 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002288 block2 = btrfs_node_blockptr(parent, slot + 1);
2289 gen = btrfs_node_ptr_generation(parent, slot + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002290 eb = find_extent_buffer(fs_info, block2);
Chris Masonb9fab912012-05-06 07:23:47 -04002291 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002292 block2 = 0;
2293 free_extent_buffer(eb);
2294 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002295
Josef Bacik0b088512013-06-17 14:23:02 -04002296 if (block1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002297 readahead_tree_block(fs_info, block1);
Josef Bacik0b088512013-06-17 14:23:02 -04002298 if (block2)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002299 readahead_tree_block(fs_info, block2);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002300}
2301
2302
2303/*
Chris Masond3977122009-01-05 21:25:51 -05002304 * when we walk down the tree, it is usually safe to unlock the higher layers
2305 * in the tree. The exceptions are when our path goes through slot 0, because
2306 * operations on the tree might require changing key pointers higher up in the
2307 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002308 *
Chris Masond3977122009-01-05 21:25:51 -05002309 * callers might also have set path->keep_locks, which tells this code to keep
2310 * the lock if the path points to the last slot in the block. This is part of
2311 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002312 *
Chris Masond3977122009-01-05 21:25:51 -05002313 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2314 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002315 */
Chris Masone02119d2008-09-05 16:13:11 -04002316static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002317 int lowest_unlock, int min_write_lock_level,
2318 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002319{
2320 int i;
2321 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002322 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002323 struct extent_buffer *t;
2324
2325 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2326 if (!path->nodes[i])
2327 break;
2328 if (!path->locks[i])
2329 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002330 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002331 skip_level = i + 1;
2332 continue;
2333 }
Chris Mason051e1b92008-06-25 16:01:30 -04002334 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002335 u32 nritems;
2336 t = path->nodes[i];
2337 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002338 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002339 skip_level = i + 1;
2340 continue;
2341 }
2342 }
Chris Mason051e1b92008-06-25 16:01:30 -04002343 if (skip_level < i && i >= lowest_unlock)
2344 no_skips = 1;
2345
Chris Mason925baed2008-06-25 16:01:30 -04002346 t = path->nodes[i];
Liu Bod80bb3f2018-05-18 11:00:24 +08002347 if (i >= lowest_unlock && i > skip_level) {
Chris Masonbd681512011-07-16 15:23:14 -04002348 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002349 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002350 if (write_lock_level &&
2351 i > min_write_lock_level &&
2352 i <= *write_lock_level) {
2353 *write_lock_level = i - 1;
2354 }
Chris Mason925baed2008-06-25 16:01:30 -04002355 }
2356 }
2357}
2358
Chris Mason3c69fae2007-08-07 15:52:22 -04002359/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002360 * This releases any locks held in the path starting at level and
2361 * going all the way up to the root.
2362 *
2363 * btrfs_search_slot will keep the lock held on higher nodes in a few
2364 * corner cases, such as COW of the block at slot zero in the node. This
2365 * ignores those rules, and it should only be called when there are no
2366 * more updates to be done higher up in the tree.
2367 */
2368noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2369{
2370 int i;
2371
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002372 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002373 return;
2374
2375 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2376 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002377 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002378 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002379 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002380 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002381 path->locks[i] = 0;
2382 }
2383}
2384
2385/*
Chris Masonc8c42862009-04-03 10:14:18 -04002386 * helper function for btrfs_search_slot. The goal is to find a block
2387 * in cache without setting the path to blocking. If we find the block
2388 * we return zero and the path is unchanged.
2389 *
2390 * If we can't find the block, we set the path blocking and do some
2391 * reada. -EAGAIN is returned and the search must be repeated.
2392 */
2393static int
Liu Bod07b8522017-01-30 12:23:42 -08002394read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
2395 struct extent_buffer **eb_ret, int level, int slot,
David Sterbacda79c52017-02-10 18:44:32 +01002396 const struct btrfs_key *key)
Chris Masonc8c42862009-04-03 10:14:18 -04002397{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002398 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonc8c42862009-04-03 10:14:18 -04002399 u64 blocknr;
2400 u64 gen;
Chris Masonc8c42862009-04-03 10:14:18 -04002401 struct extent_buffer *b = *eb_ret;
2402 struct extent_buffer *tmp;
Qu Wenruo581c1762018-03-29 09:08:11 +08002403 struct btrfs_key first_key;
Chris Mason76a05b32009-05-14 13:24:30 -04002404 int ret;
Qu Wenruo581c1762018-03-29 09:08:11 +08002405 int parent_level;
Chris Masonc8c42862009-04-03 10:14:18 -04002406
2407 blocknr = btrfs_node_blockptr(b, slot);
2408 gen = btrfs_node_ptr_generation(b, slot);
Qu Wenruo581c1762018-03-29 09:08:11 +08002409 parent_level = btrfs_header_level(b);
2410 btrfs_node_key_to_cpu(b, &first_key, slot);
Chris Masonc8c42862009-04-03 10:14:18 -04002411
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002412 tmp = find_extent_buffer(fs_info, blocknr);
Chris Masoncb449212010-10-24 11:01:27 -04002413 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002414 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002415 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
Qu Wenruo448de472019-03-12 17:10:40 +08002416 /*
2417 * Do extra check for first_key, eb can be stale due to
2418 * being cached, read from scrub, or have multiple
2419 * parents (shared tree blocks).
2420 */
David Sterbae064d5e2019-03-20 14:58:13 +01002421 if (btrfs_verify_level_key(tmp,
Qu Wenruo448de472019-03-12 17:10:40 +08002422 parent_level - 1, &first_key, gen)) {
2423 free_extent_buffer(tmp);
2424 return -EUCLEAN;
2425 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002426 *eb_ret = tmp;
2427 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002428 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002429
2430 /* the pages were up to date, but we failed
2431 * the generation number check. Do a full
2432 * read for the generation number that is correct.
2433 * We must do this without dropping locks so
2434 * we can trust our generation number
2435 */
2436 btrfs_set_path_blocking(p);
2437
2438 /* now we're allowed to do a blocking uptodate check */
Qu Wenruo581c1762018-03-29 09:08:11 +08002439 ret = btrfs_read_buffer(tmp, gen, parent_level - 1, &first_key);
Josef Bacikbdf7c002013-06-17 13:44:48 -04002440 if (!ret) {
2441 *eb_ret = tmp;
2442 return 0;
2443 }
2444 free_extent_buffer(tmp);
2445 btrfs_release_path(p);
2446 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002447 }
2448
2449 /*
2450 * reduce lock contention at high levels
2451 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002452 * we read. Don't release the lock on the current
2453 * level because we need to walk this node to figure
2454 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002455 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002456 btrfs_unlock_up_safe(p, level + 1);
2457 btrfs_set_path_blocking(p);
2458
David Sterbae4058b52015-11-27 16:31:35 +01002459 if (p->reada != READA_NONE)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002460 reada_for_search(fs_info, p, level, slot, key->objectid);
Chris Masonc8c42862009-04-03 10:14:18 -04002461
Chris Mason76a05b32009-05-14 13:24:30 -04002462 ret = -EAGAIN;
Liu Bo02a33072018-05-16 01:37:36 +08002463 tmp = read_tree_block(fs_info, blocknr, gen, parent_level - 1,
Qu Wenruo581c1762018-03-29 09:08:11 +08002464 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08002465 if (!IS_ERR(tmp)) {
Chris Mason76a05b32009-05-14 13:24:30 -04002466 /*
2467 * If the read above didn't mark this buffer up to date,
2468 * it will never end up being up to date. Set ret to EIO now
2469 * and give up so that our caller doesn't loop forever
2470 * on our EAGAINs.
2471 */
Liu Boe6a1d6f2018-05-18 11:00:20 +08002472 if (!extent_buffer_uptodate(tmp))
Chris Mason76a05b32009-05-14 13:24:30 -04002473 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002474 free_extent_buffer(tmp);
Liu Boc871b0f2016-06-06 12:01:23 -07002475 } else {
2476 ret = PTR_ERR(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002477 }
Liu Bo02a33072018-05-16 01:37:36 +08002478
2479 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002480 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002481}
2482
2483/*
2484 * helper function for btrfs_search_slot. This does all of the checks
2485 * for node-level blocks and does any balancing required based on
2486 * the ins_len.
2487 *
2488 * If no extra work was required, zero is returned. If we had to
2489 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2490 * start over
2491 */
2492static int
2493setup_nodes_for_search(struct btrfs_trans_handle *trans,
2494 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002495 struct extent_buffer *b, int level, int ins_len,
2496 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002497{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002498 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonc8c42862009-04-03 10:14:18 -04002499 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002500
Chris Masonc8c42862009-04-03 10:14:18 -04002501 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002502 BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) {
Chris Masonc8c42862009-04-03 10:14:18 -04002503 int sret;
2504
Chris Masonbd681512011-07-16 15:23:14 -04002505 if (*write_lock_level < level + 1) {
2506 *write_lock_level = level + 1;
2507 btrfs_release_path(p);
2508 goto again;
2509 }
2510
Chris Masonc8c42862009-04-03 10:14:18 -04002511 btrfs_set_path_blocking(p);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002512 reada_for_balance(fs_info, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002513 sret = split_node(trans, root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002514
2515 BUG_ON(sret > 0);
2516 if (sret) {
2517 ret = sret;
2518 goto done;
2519 }
2520 b = p->nodes[level];
2521 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002522 BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002523 int sret;
2524
Chris Masonbd681512011-07-16 15:23:14 -04002525 if (*write_lock_level < level + 1) {
2526 *write_lock_level = level + 1;
2527 btrfs_release_path(p);
2528 goto again;
2529 }
2530
Chris Masonc8c42862009-04-03 10:14:18 -04002531 btrfs_set_path_blocking(p);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002532 reada_for_balance(fs_info, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002533 sret = balance_level(trans, root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002534
2535 if (sret) {
2536 ret = sret;
2537 goto done;
2538 }
2539 b = p->nodes[level];
2540 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002541 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002542 goto again;
2543 }
2544 BUG_ON(btrfs_header_nritems(b) == 1);
2545 }
2546 return 0;
2547
2548again:
2549 ret = -EAGAIN;
2550done:
2551 return ret;
2552}
2553
Omar Sandoval310712b2017-01-17 23:24:37 -08002554static int key_search(struct extent_buffer *b, const struct btrfs_key *key,
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002555 int level, int *prev_cmp, int *slot)
2556{
2557 if (*prev_cmp != 0) {
Nikolay Borisova74b35e2017-12-08 16:27:43 +02002558 *prev_cmp = btrfs_bin_search(b, key, level, slot);
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002559 return *prev_cmp;
2560 }
2561
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002562 *slot = 0;
2563
2564 return 0;
2565}
2566
David Sterba381cf652015-01-02 18:45:16 +01002567int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002568 u64 iobjectid, u64 ioff, u8 key_type,
2569 struct btrfs_key *found_key)
2570{
2571 int ret;
2572 struct btrfs_key key;
2573 struct extent_buffer *eb;
David Sterba381cf652015-01-02 18:45:16 +01002574
2575 ASSERT(path);
David Sterba1d4c08e2015-01-02 19:36:14 +01002576 ASSERT(found_key);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002577
2578 key.type = key_type;
2579 key.objectid = iobjectid;
2580 key.offset = ioff;
2581
2582 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
David Sterba1d4c08e2015-01-02 19:36:14 +01002583 if (ret < 0)
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002584 return ret;
2585
2586 eb = path->nodes[0];
2587 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2588 ret = btrfs_next_leaf(fs_root, path);
2589 if (ret)
2590 return ret;
2591 eb = path->nodes[0];
2592 }
2593
2594 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2595 if (found_key->type != key.type ||
2596 found_key->objectid != key.objectid)
2597 return 1;
2598
2599 return 0;
2600}
2601
Liu Bo1fc28d82018-05-18 11:00:21 +08002602static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root,
2603 struct btrfs_path *p,
2604 int write_lock_level)
2605{
2606 struct btrfs_fs_info *fs_info = root->fs_info;
2607 struct extent_buffer *b;
2608 int root_lock;
2609 int level = 0;
2610
2611 /* We try very hard to do read locks on the root */
2612 root_lock = BTRFS_READ_LOCK;
2613
2614 if (p->search_commit_root) {
Filipe Mananabe6821f2018-12-11 10:19:45 +00002615 /*
2616 * The commit roots are read only so we always do read locks,
2617 * and we always must hold the commit_root_sem when doing
2618 * searches on them, the only exception is send where we don't
2619 * want to block transaction commits for a long time, so
2620 * we need to clone the commit root in order to avoid races
2621 * with transaction commits that create a snapshot of one of
2622 * the roots used by a send operation.
2623 */
2624 if (p->need_commit_sem) {
Liu Bo1fc28d82018-05-18 11:00:21 +08002625 down_read(&fs_info->commit_root_sem);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002626 b = btrfs_clone_extent_buffer(root->commit_root);
Liu Bo1fc28d82018-05-18 11:00:21 +08002627 up_read(&fs_info->commit_root_sem);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002628 if (!b)
2629 return ERR_PTR(-ENOMEM);
2630
2631 } else {
2632 b = root->commit_root;
2633 extent_buffer_get(b);
2634 }
2635 level = btrfs_header_level(b);
Liu Bof9ddfd02018-05-29 21:27:06 +08002636 /*
2637 * Ensure that all callers have set skip_locking when
2638 * p->search_commit_root = 1.
2639 */
2640 ASSERT(p->skip_locking == 1);
Liu Bo1fc28d82018-05-18 11:00:21 +08002641
2642 goto out;
2643 }
2644
2645 if (p->skip_locking) {
2646 b = btrfs_root_node(root);
2647 level = btrfs_header_level(b);
2648 goto out;
2649 }
2650
2651 /*
Liu Bo662c6532018-05-18 11:00:23 +08002652 * If the level is set to maximum, we can skip trying to get the read
2653 * lock.
Liu Bo1fc28d82018-05-18 11:00:21 +08002654 */
Liu Bo662c6532018-05-18 11:00:23 +08002655 if (write_lock_level < BTRFS_MAX_LEVEL) {
2656 /*
2657 * We don't know the level of the root node until we actually
2658 * have it read locked
2659 */
2660 b = btrfs_read_lock_root_node(root);
2661 level = btrfs_header_level(b);
2662 if (level > write_lock_level)
2663 goto out;
Liu Bo1fc28d82018-05-18 11:00:21 +08002664
Liu Bo662c6532018-05-18 11:00:23 +08002665 /* Whoops, must trade for write lock */
2666 btrfs_tree_read_unlock(b);
2667 free_extent_buffer(b);
2668 }
2669
Liu Bo1fc28d82018-05-18 11:00:21 +08002670 b = btrfs_lock_root_node(root);
2671 root_lock = BTRFS_WRITE_LOCK;
2672
2673 /* The level might have changed, check again */
2674 level = btrfs_header_level(b);
2675
2676out:
2677 p->nodes[level] = b;
2678 if (!p->skip_locking)
2679 p->locks[level] = root_lock;
2680 /*
2681 * Callers are responsible for dropping b's references.
2682 */
2683 return b;
2684}
2685
2686
Chris Masonc8c42862009-04-03 10:14:18 -04002687/*
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002688 * btrfs_search_slot - look for a key in a tree and perform necessary
2689 * modifications to preserve tree invariants.
Chris Mason74123bd2007-02-02 11:05:29 -05002690 *
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002691 * @trans: Handle of transaction, used when modifying the tree
2692 * @p: Holds all btree nodes along the search path
2693 * @root: The root node of the tree
2694 * @key: The key we are looking for
2695 * @ins_len: Indicates purpose of search, for inserts it is 1, for
2696 * deletions it's -1. 0 for plain searches
2697 * @cow: boolean should CoW operations be performed. Must always be 1
2698 * when modifying the tree.
Chris Mason97571fd2007-02-24 13:39:08 -05002699 *
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002700 * If @ins_len > 0, nodes and leaves will be split as we walk down the tree.
2701 * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible)
2702 *
2703 * If @key is found, 0 is returned and you can find the item in the leaf level
2704 * of the path (level 0)
2705 *
2706 * If @key isn't found, 1 is returned and the leaf level of the path (level 0)
2707 * points to the slot where it should be inserted
2708 *
2709 * If an error is encountered while searching the tree a negative error number
2710 * is returned
Chris Mason74123bd2007-02-02 11:05:29 -05002711 */
Omar Sandoval310712b2017-01-17 23:24:37 -08002712int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2713 const struct btrfs_key *key, struct btrfs_path *p,
2714 int ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002715{
Chris Mason5f39d392007-10-15 16:14:19 -04002716 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002717 int slot;
2718 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002719 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002720 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002721 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002722 /* everything at write_lock_level or lower must be write locked */
2723 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002724 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002725 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002726 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002727
Chris Mason6702ed42007-08-07 16:15:09 -04002728 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002729 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002730 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002731 BUG_ON(!cow && ins_len);
Josef Bacik251792012008-10-29 14:49:05 -04002732
Chris Masonbd681512011-07-16 15:23:14 -04002733 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002734 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002735
Chris Masonbd681512011-07-16 15:23:14 -04002736 /* when we are removing items, we might have to go up to level
2737 * two as we update tree pointers Make sure we keep write
2738 * for those levels as well
2739 */
2740 write_lock_level = 2;
2741 } else if (ins_len > 0) {
2742 /*
2743 * for inserting items, make sure we have a write lock on
2744 * level 1 so we can update keys
2745 */
2746 write_lock_level = 1;
2747 }
2748
2749 if (!cow)
2750 write_lock_level = -1;
2751
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002752 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002753 write_lock_level = BTRFS_MAX_LEVEL;
2754
Chris Masonf7c79f32012-03-19 15:54:38 -04002755 min_write_lock_level = write_lock_level;
2756
Chris Masonbb803952007-03-01 12:04:21 -05002757again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002758 prev_cmp = -1;
Liu Bo1fc28d82018-05-18 11:00:21 +08002759 b = btrfs_search_slot_get_root(root, p, write_lock_level);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002760 if (IS_ERR(b)) {
2761 ret = PTR_ERR(b);
2762 goto done;
2763 }
Chris Mason925baed2008-06-25 16:01:30 -04002764
Chris Masoneb60cea2007-02-02 09:18:22 -05002765 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002766 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002767
2768 /*
2769 * setup the path here so we can release it under lock
2770 * contention with the cow code
2771 */
Chris Mason02217ed2007-03-02 16:08:05 -05002772 if (cow) {
Nikolay Borisov9ea2c7c2017-12-12 11:14:49 +02002773 bool last_level = (level == (BTRFS_MAX_LEVEL - 1));
2774
Chris Masonc8c42862009-04-03 10:14:18 -04002775 /*
2776 * if we don't really need to cow this block
2777 * then we don't want to set the path blocking,
2778 * so we test it here
2779 */
Jeff Mahoney64c12922016-06-08 00:36:38 -04002780 if (!should_cow_block(trans, root, b)) {
2781 trans->dirty = true;
Chris Mason65b51a02008-08-01 15:11:20 -04002782 goto cow_done;
Jeff Mahoney64c12922016-06-08 00:36:38 -04002783 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002784
Chris Masonbd681512011-07-16 15:23:14 -04002785 /*
2786 * must have write locks on this node and the
2787 * parent
2788 */
Josef Bacik5124e002012-11-07 13:44:13 -05002789 if (level > write_lock_level ||
2790 (level + 1 > write_lock_level &&
2791 level + 1 < BTRFS_MAX_LEVEL &&
2792 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002793 write_lock_level = level + 1;
2794 btrfs_release_path(p);
2795 goto again;
2796 }
2797
Filipe Manana160f4082014-07-28 19:37:17 +01002798 btrfs_set_path_blocking(p);
Nikolay Borisov9ea2c7c2017-12-12 11:14:49 +02002799 if (last_level)
2800 err = btrfs_cow_block(trans, root, b, NULL, 0,
2801 &b);
2802 else
2803 err = btrfs_cow_block(trans, root, b,
2804 p->nodes[level + 1],
2805 p->slots[level + 1], &b);
Yan Zheng33c66f42009-07-22 09:59:00 -04002806 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002807 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002808 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002809 }
Chris Mason02217ed2007-03-02 16:08:05 -05002810 }
Chris Mason65b51a02008-08-01 15:11:20 -04002811cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002812 p->nodes[level] = b;
Liu Bo52398342018-08-22 05:54:37 +08002813 /*
2814 * Leave path with blocking locks to avoid massive
2815 * lock context switch, this is made on purpose.
2816 */
Chris Masonb4ce94d2009-02-04 09:25:08 -05002817
2818 /*
2819 * we have a lock on b and as long as we aren't changing
2820 * the tree, there is no way to for the items in b to change.
2821 * It is safe to drop the lock on our parent before we
2822 * go through the expensive btree search on b.
2823 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002824 * If we're inserting or deleting (ins_len != 0), then we might
2825 * be changing slot zero, which may require changing the parent.
2826 * So, we can't drop the lock until after we know which slot
2827 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002828 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002829 if (!ins_len && !p->keep_locks) {
2830 int u = level + 1;
2831
2832 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2833 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2834 p->locks[u] = 0;
2835 }
2836 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002837
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002838 ret = key_search(b, key, level, &prev_cmp, &slot);
Liu Bo415b35a2016-06-17 19:16:21 -07002839 if (ret < 0)
2840 goto done;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002841
Chris Mason5f39d392007-10-15 16:14:19 -04002842 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002843 int dec = 0;
2844 if (ret && slot > 0) {
2845 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002846 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002847 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002848 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002849 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002850 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002851 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002852 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002853 if (err) {
2854 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002855 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002856 }
Chris Masonc8c42862009-04-03 10:14:18 -04002857 b = p->nodes[level];
2858 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002859
Chris Masonbd681512011-07-16 15:23:14 -04002860 /*
2861 * slot 0 is special, if we change the key
2862 * we have to update the parent pointer
2863 * which means we must have a write lock
2864 * on the parent
2865 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002866 if (slot == 0 && ins_len &&
Chris Masonbd681512011-07-16 15:23:14 -04002867 write_lock_level < level + 1) {
2868 write_lock_level = level + 1;
2869 btrfs_release_path(p);
2870 goto again;
2871 }
2872
Chris Masonf7c79f32012-03-19 15:54:38 -04002873 unlock_up(p, level, lowest_unlock,
2874 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002875
Chris Mason925baed2008-06-25 16:01:30 -04002876 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002877 if (dec)
2878 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002879 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002880 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002881
Liu Bod07b8522017-01-30 12:23:42 -08002882 err = read_block_for_search(root, p, &b, level,
David Sterbacda79c52017-02-10 18:44:32 +01002883 slot, key);
Yan Zheng33c66f42009-07-22 09:59:00 -04002884 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002885 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002886 if (err) {
2887 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002888 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002889 }
Chris Mason76a05b32009-05-14 13:24:30 -04002890
Chris Masonb4ce94d2009-02-04 09:25:08 -05002891 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002892 level = btrfs_header_level(b);
2893 if (level <= write_lock_level) {
2894 err = btrfs_try_tree_write_lock(b);
2895 if (!err) {
2896 btrfs_set_path_blocking(p);
2897 btrfs_tree_lock(b);
Chris Masonbd681512011-07-16 15:23:14 -04002898 }
2899 p->locks[level] = BTRFS_WRITE_LOCK;
2900 } else {
Chris Masonf82c4582014-11-19 10:25:09 -08002901 err = btrfs_tree_read_lock_atomic(b);
Chris Masonbd681512011-07-16 15:23:14 -04002902 if (!err) {
2903 btrfs_set_path_blocking(p);
2904 btrfs_tree_read_lock(b);
Chris Masonbd681512011-07-16 15:23:14 -04002905 }
2906 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002907 }
Chris Masonbd681512011-07-16 15:23:14 -04002908 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002909 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002910 } else {
2911 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002912 if (ins_len > 0 &&
David Sterbae902baa2019-03-20 14:36:46 +01002913 btrfs_leaf_free_space(b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002914 if (write_lock_level < 1) {
2915 write_lock_level = 1;
2916 btrfs_release_path(p);
2917 goto again;
2918 }
2919
Chris Masonb4ce94d2009-02-04 09:25:08 -05002920 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002921 err = split_leaf(trans, root, key,
2922 p, ins_len, ret == 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002923
Yan Zheng33c66f42009-07-22 09:59:00 -04002924 BUG_ON(err > 0);
2925 if (err) {
2926 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002927 goto done;
2928 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002929 }
Chris Mason459931e2008-12-10 09:10:46 -05002930 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002931 unlock_up(p, level, lowest_unlock,
Liu Bo4b6f8e92018-08-14 10:46:53 +08002932 min_write_lock_level, NULL);
Chris Mason65b51a02008-08-01 15:11:20 -04002933 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002934 }
2935 }
Chris Mason65b51a02008-08-01 15:11:20 -04002936 ret = 1;
2937done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002938 /*
2939 * we don't really know what they plan on doing with the path
2940 * from here on, so for now just mark it as blocking
2941 */
Chris Masonb9473432009-03-13 11:00:37 -04002942 if (!p->leave_spinning)
2943 btrfs_set_path_blocking(p);
Filipe Manana5f5bc6b2014-11-09 08:38:39 +00002944 if (ret < 0 && !p->skip_release_on_error)
David Sterbab3b4aa72011-04-21 01:20:15 +02002945 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002946 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002947}
2948
Chris Mason74123bd2007-02-02 11:05:29 -05002949/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002950 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2951 * current state of the tree together with the operations recorded in the tree
2952 * modification log to search for the key in a previous version of this tree, as
2953 * denoted by the time_seq parameter.
2954 *
2955 * Naturally, there is no support for insert, delete or cow operations.
2956 *
2957 * The resulting path and return value will be set up as if we called
2958 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2959 */
Omar Sandoval310712b2017-01-17 23:24:37 -08002960int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002961 struct btrfs_path *p, u64 time_seq)
2962{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002963 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002964 struct extent_buffer *b;
2965 int slot;
2966 int ret;
2967 int err;
2968 int level;
2969 int lowest_unlock = 1;
2970 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002971 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002972
2973 lowest_level = p->lowest_level;
2974 WARN_ON(p->nodes[0] != NULL);
2975
2976 if (p->search_commit_root) {
2977 BUG_ON(time_seq);
2978 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2979 }
2980
2981again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002982 b = get_old_root(root, time_seq);
Nikolay Borisov315bed42018-09-13 11:35:10 +03002983 if (!b) {
2984 ret = -EIO;
2985 goto done;
2986 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002987 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002988 p->locks[level] = BTRFS_READ_LOCK;
2989
2990 while (b) {
2991 level = btrfs_header_level(b);
2992 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002993
2994 /*
2995 * we have a lock on b and as long as we aren't changing
2996 * the tree, there is no way to for the items in b to change.
2997 * It is safe to drop the lock on our parent before we
2998 * go through the expensive btree search on b.
2999 */
3000 btrfs_unlock_up_safe(p, level + 1);
3001
Josef Bacikd4b40872013-09-24 14:09:34 -04003002 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04003003 * Since we can unwind ebs we want to do a real search every
Josef Bacikd4b40872013-09-24 14:09:34 -04003004 * time.
3005 */
3006 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01003007 ret = key_search(b, key, level, &prev_cmp, &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00003008 if (ret < 0)
3009 goto done;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003010
3011 if (level != 0) {
3012 int dec = 0;
3013 if (ret && slot > 0) {
3014 dec = 1;
3015 slot -= 1;
3016 }
3017 p->slots[level] = slot;
3018 unlock_up(p, level, lowest_unlock, 0, NULL);
3019
3020 if (level == lowest_level) {
3021 if (dec)
3022 p->slots[level]++;
3023 goto done;
3024 }
3025
Liu Bod07b8522017-01-30 12:23:42 -08003026 err = read_block_for_search(root, p, &b, level,
David Sterbacda79c52017-02-10 18:44:32 +01003027 slot, key);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003028 if (err == -EAGAIN)
3029 goto again;
3030 if (err) {
3031 ret = err;
3032 goto done;
3033 }
3034
3035 level = btrfs_header_level(b);
Chris Masonf82c4582014-11-19 10:25:09 -08003036 err = btrfs_tree_read_lock_atomic(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003037 if (!err) {
3038 btrfs_set_path_blocking(p);
3039 btrfs_tree_read_lock(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003040 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003041 b = tree_mod_log_rewind(fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04003042 if (!b) {
3043 ret = -ENOMEM;
3044 goto done;
3045 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003046 p->locks[level] = BTRFS_READ_LOCK;
3047 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003048 } else {
3049 p->slots[level] = slot;
3050 unlock_up(p, level, lowest_unlock, 0, NULL);
3051 goto done;
3052 }
3053 }
3054 ret = 1;
3055done:
3056 if (!p->leave_spinning)
3057 btrfs_set_path_blocking(p);
3058 if (ret < 0)
3059 btrfs_release_path(p);
3060
3061 return ret;
3062}
3063
3064/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003065 * helper to use instead of search slot if no exact match is needed but
3066 * instead the next or previous item should be returned.
3067 * When find_higher is true, the next higher item is returned, the next lower
3068 * otherwise.
3069 * When return_any and find_higher are both true, and no higher item is found,
3070 * return the next lower instead.
3071 * When return_any is true and find_higher is false, and no lower item is found,
3072 * return the next higher instead.
3073 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3074 * < 0 on error
3075 */
3076int btrfs_search_slot_for_read(struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -08003077 const struct btrfs_key *key,
3078 struct btrfs_path *p, int find_higher,
3079 int return_any)
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003080{
3081 int ret;
3082 struct extent_buffer *leaf;
3083
3084again:
3085 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3086 if (ret <= 0)
3087 return ret;
3088 /*
3089 * a return value of 1 means the path is at the position where the
3090 * item should be inserted. Normally this is the next bigger item,
3091 * but in case the previous item is the last in a leaf, path points
3092 * to the first free slot in the previous leaf, i.e. at an invalid
3093 * item.
3094 */
3095 leaf = p->nodes[0];
3096
3097 if (find_higher) {
3098 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3099 ret = btrfs_next_leaf(root, p);
3100 if (ret <= 0)
3101 return ret;
3102 if (!return_any)
3103 return 1;
3104 /*
3105 * no higher item found, return the next
3106 * lower instead
3107 */
3108 return_any = 0;
3109 find_higher = 0;
3110 btrfs_release_path(p);
3111 goto again;
3112 }
3113 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003114 if (p->slots[0] == 0) {
3115 ret = btrfs_prev_leaf(root, p);
3116 if (ret < 0)
3117 return ret;
3118 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003119 leaf = p->nodes[0];
3120 if (p->slots[0] == btrfs_header_nritems(leaf))
3121 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003122 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003123 }
Arne Jansene6793762011-09-13 11:18:10 +02003124 if (!return_any)
3125 return 1;
3126 /*
3127 * no lower item found, return the next
3128 * higher instead
3129 */
3130 return_any = 0;
3131 find_higher = 1;
3132 btrfs_release_path(p);
3133 goto again;
3134 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003135 --p->slots[0];
3136 }
3137 }
3138 return 0;
3139}
3140
3141/*
Chris Mason74123bd2007-02-02 11:05:29 -05003142 * adjust the pointers going up the tree, starting at level
3143 * making sure the right key of each node is points to 'key'.
3144 * This is used after shifting pointers to the left, so it stops
3145 * fixing up pointers when a given leaf/node is not in slot 0 of the
3146 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003147 *
Chris Mason74123bd2007-02-02 11:05:29 -05003148 */
Nikolay Borisovb167fa92018-06-20 15:48:47 +03003149static void fixup_low_keys(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003150 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003151{
3152 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003153 struct extent_buffer *t;
David Sterba0e82bcf2018-03-05 16:16:54 +01003154 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04003155
Chris Mason234b63a2007-03-13 10:46:10 -04003156 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003157 int tslot = path->slots[i];
David Sterba0e82bcf2018-03-05 16:16:54 +01003158
Chris Masoneb60cea2007-02-02 09:18:22 -05003159 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003160 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003161 t = path->nodes[i];
David Sterba0e82bcf2018-03-05 16:16:54 +01003162 ret = tree_mod_log_insert_key(t, tslot, MOD_LOG_KEY_REPLACE,
3163 GFP_ATOMIC);
3164 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003165 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003166 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003167 if (tslot != 0)
3168 break;
3169 }
3170}
3171
Chris Mason74123bd2007-02-02 11:05:29 -05003172/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003173 * update item key.
3174 *
3175 * This function isn't completely safe. It's the caller's responsibility
3176 * that the new key won't break the order
3177 */
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003178void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
3179 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08003180 const struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003181{
3182 struct btrfs_disk_key disk_key;
3183 struct extent_buffer *eb;
3184 int slot;
3185
3186 eb = path->nodes[0];
3187 slot = path->slots[0];
3188 if (slot > 0) {
3189 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003190 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003191 }
3192 if (slot < btrfs_header_nritems(eb) - 1) {
3193 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003194 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003195 }
3196
3197 btrfs_cpu_key_to_disk(&disk_key, new_key);
3198 btrfs_set_item_key(eb, &disk_key, slot);
3199 btrfs_mark_buffer_dirty(eb);
3200 if (slot == 0)
Nikolay Borisovb167fa92018-06-20 15:48:47 +03003201 fixup_low_keys(path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003202}
3203
3204/*
Chris Mason74123bd2007-02-02 11:05:29 -05003205 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003206 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003207 *
3208 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3209 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003210 */
Chris Mason98ed5172008-01-03 10:01:48 -05003211static int push_node_left(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003212 struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003213 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003214{
David Sterbad30a6682019-03-20 14:16:45 +01003215 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003216 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003217 int src_nritems;
3218 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003219 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003220
Chris Mason5f39d392007-10-15 16:14:19 -04003221 src_nritems = btrfs_header_nritems(src);
3222 dst_nritems = btrfs_header_nritems(dst);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003223 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003224 WARN_ON(btrfs_header_generation(src) != trans->transid);
3225 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003226
Chris Masonbce4eae2008-04-24 14:42:46 -04003227 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003228 return 1;
3229
Chris Masond3977122009-01-05 21:25:51 -05003230 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003231 return 1;
3232
Chris Masonbce4eae2008-04-24 14:42:46 -04003233 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003234 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003235 if (push_items < src_nritems) {
3236 /* leave at least 8 pointers in the node if
3237 * we aren't going to empty it
3238 */
3239 if (src_nritems - push_items < 8) {
3240 if (push_items <= 8)
3241 return 1;
3242 push_items -= 8;
3243 }
3244 }
3245 } else
3246 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003247
David Sterbaed874f02019-03-20 14:22:04 +01003248 ret = tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003249 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003250 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003251 return ret;
3252 }
Chris Mason5f39d392007-10-15 16:14:19 -04003253 copy_extent_buffer(dst, src,
3254 btrfs_node_key_ptr_offset(dst_nritems),
3255 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003256 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003257
Chris Masonbb803952007-03-01 12:04:21 -05003258 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003259 /*
David Sterbabf1d3422018-03-05 15:47:39 +01003260 * Don't call tree_mod_log_insert_move here, key removal was
3261 * already fully logged by tree_mod_log_eb_copy above.
Jan Schmidt57911b82012-10-19 09:22:03 +02003262 */
Chris Mason5f39d392007-10-15 16:14:19 -04003263 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3264 btrfs_node_key_ptr_offset(push_items),
3265 (src_nritems - push_items) *
3266 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003267 }
Chris Mason5f39d392007-10-15 16:14:19 -04003268 btrfs_set_header_nritems(src, src_nritems - push_items);
3269 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3270 btrfs_mark_buffer_dirty(src);
3271 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003272
Chris Masonbb803952007-03-01 12:04:21 -05003273 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003274}
3275
Chris Mason97571fd2007-02-24 13:39:08 -05003276/*
Chris Mason79f95c82007-03-01 15:16:26 -05003277 * try to push data from one node into the next node right in the
3278 * tree.
3279 *
3280 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3281 * error, and > 0 if there was no room in the right hand block.
3282 *
3283 * this will only push up to 1/2 the contents of the left node over
3284 */
Chris Mason5f39d392007-10-15 16:14:19 -04003285static int balance_node_right(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003286 struct btrfs_fs_info *fs_info,
Chris Mason5f39d392007-10-15 16:14:19 -04003287 struct extent_buffer *dst,
3288 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003289{
Chris Mason79f95c82007-03-01 15:16:26 -05003290 int push_items = 0;
3291 int max_push;
3292 int src_nritems;
3293 int dst_nritems;
3294 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003295
Chris Mason7bb86312007-12-11 09:25:06 -05003296 WARN_ON(btrfs_header_generation(src) != trans->transid);
3297 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3298
Chris Mason5f39d392007-10-15 16:14:19 -04003299 src_nritems = btrfs_header_nritems(src);
3300 dst_nritems = btrfs_header_nritems(dst);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003301 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003302 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003303 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003304
Chris Masond3977122009-01-05 21:25:51 -05003305 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003306 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003307
3308 max_push = src_nritems / 2 + 1;
3309 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003310 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003311 return 1;
Yan252c38f2007-08-29 09:11:44 -04003312
Chris Mason79f95c82007-03-01 15:16:26 -05003313 if (max_push < push_items)
3314 push_items = max_push;
3315
David Sterbabf1d3422018-03-05 15:47:39 +01003316 ret = tree_mod_log_insert_move(dst, push_items, 0, dst_nritems);
3317 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003318 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3319 btrfs_node_key_ptr_offset(0),
3320 (dst_nritems) *
3321 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003322
David Sterbaed874f02019-03-20 14:22:04 +01003323 ret = tree_mod_log_eb_copy(dst, src, 0, src_nritems - push_items,
3324 push_items);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003325 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003326 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003327 return ret;
3328 }
Chris Mason5f39d392007-10-15 16:14:19 -04003329 copy_extent_buffer(dst, src,
3330 btrfs_node_key_ptr_offset(0),
3331 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003332 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003333
Chris Mason5f39d392007-10-15 16:14:19 -04003334 btrfs_set_header_nritems(src, src_nritems - push_items);
3335 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003336
Chris Mason5f39d392007-10-15 16:14:19 -04003337 btrfs_mark_buffer_dirty(src);
3338 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003339
Chris Mason79f95c82007-03-01 15:16:26 -05003340 return ret;
3341}
3342
3343/*
Chris Mason97571fd2007-02-24 13:39:08 -05003344 * helper function to insert a new root level in the tree.
3345 * A new node is allocated, and a single item is inserted to
3346 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003347 *
3348 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003349 */
Chris Masond3977122009-01-05 21:25:51 -05003350static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003351 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003352 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003353{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003354 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason7bb86312007-12-11 09:25:06 -05003355 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003356 struct extent_buffer *lower;
3357 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003358 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003359 struct btrfs_disk_key lower_key;
David Sterbad9d19a02018-03-05 16:35:29 +01003360 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003361
3362 BUG_ON(path->nodes[level]);
3363 BUG_ON(path->nodes[level-1] != root->node);
3364
Chris Mason7bb86312007-12-11 09:25:06 -05003365 lower = path->nodes[level-1];
3366 if (level == 1)
3367 btrfs_item_key(lower, &lower_key, 0);
3368 else
3369 btrfs_node_key(lower, &lower_key, 0);
3370
Filipe Mananaa6279472019-01-25 11:48:51 +00003371 c = alloc_tree_block_no_bg_flush(trans, root, 0, &lower_key, level,
3372 root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003373 if (IS_ERR(c))
3374 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003375
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003376 root_add_used(root, fs_info->nodesize);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003377
Chris Mason5f39d392007-10-15 16:14:19 -04003378 btrfs_set_header_nritems(c, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003379 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003380 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003381 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003382 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003383
3384 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003385
3386 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003387
Chris Mason925baed2008-06-25 16:01:30 -04003388 old = root->node;
David Sterbad9d19a02018-03-05 16:35:29 +01003389 ret = tree_mod_log_insert_root(root->node, c, 0);
3390 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003391 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003392
3393 /* the super has an extra ref to root->node */
3394 free_extent_buffer(old);
3395
Chris Mason0b86a832008-03-24 15:01:56 -04003396 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003397 extent_buffer_get(c);
3398 path->nodes[level] = c;
chandan95449a12015-01-15 12:22:03 +05303399 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Mason5c680ed2007-02-22 11:39:13 -05003400 path->slots[level] = 0;
3401 return 0;
3402}
3403
Chris Mason74123bd2007-02-02 11:05:29 -05003404/*
3405 * worker function to insert a single pointer in a node.
3406 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003407 *
Chris Mason74123bd2007-02-02 11:05:29 -05003408 * slot and level indicate where you want the key to go, and
3409 * blocknr is the block the key points to.
3410 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003411static void insert_ptr(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003412 struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003413 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003414 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003415{
Chris Mason5f39d392007-10-15 16:14:19 -04003416 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003417 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003418 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003419
3420 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003421 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003422 lower = path->nodes[level];
3423 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003424 BUG_ON(slot > nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003425 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Chris Mason74123bd2007-02-02 11:05:29 -05003426 if (slot != nritems) {
David Sterbabf1d3422018-03-05 15:47:39 +01003427 if (level) {
3428 ret = tree_mod_log_insert_move(lower, slot + 1, slot,
David Sterbaa446a972018-03-05 15:26:29 +01003429 nritems - slot);
David Sterbabf1d3422018-03-05 15:47:39 +01003430 BUG_ON(ret < 0);
3431 }
Chris Mason5f39d392007-10-15 16:14:19 -04003432 memmove_extent_buffer(lower,
3433 btrfs_node_key_ptr_offset(slot + 1),
3434 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003435 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003436 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003437 if (level) {
David Sterbae09c2ef2018-03-05 15:09:03 +01003438 ret = tree_mod_log_insert_key(lower, slot, MOD_LOG_KEY_ADD,
3439 GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003440 BUG_ON(ret < 0);
3441 }
Chris Mason5f39d392007-10-15 16:14:19 -04003442 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003443 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003444 WARN_ON(trans->transid == 0);
3445 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003446 btrfs_set_header_nritems(lower, nritems + 1);
3447 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003448}
3449
Chris Mason97571fd2007-02-24 13:39:08 -05003450/*
3451 * split the node at the specified level in path in two.
3452 * The path is corrected to point to the appropriate node after the split
3453 *
3454 * Before splitting this tries to make some room in the node by pushing
3455 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003456 *
3457 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003458 */
Chris Masone02119d2008-09-05 16:13:11 -04003459static noinline int split_node(struct btrfs_trans_handle *trans,
3460 struct btrfs_root *root,
3461 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003462{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003463 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003464 struct extent_buffer *c;
3465 struct extent_buffer *split;
3466 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003467 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003468 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003469 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003470
Chris Mason5f39d392007-10-15 16:14:19 -04003471 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003472 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003473 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003474 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003475 * trying to split the root, lets make a new one
3476 *
Liu Bofdd99c72013-05-22 12:06:51 +00003477 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003478 * insert_new_root, because that root buffer will be kept as a
3479 * normal node. We are going to log removal of half of the
3480 * elements below with tree_mod_log_eb_copy. We're holding a
3481 * tree lock on the buffer, which is why we cannot race with
3482 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003483 */
Liu Bofdd99c72013-05-22 12:06:51 +00003484 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003485 if (ret)
3486 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003487 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003488 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003489 c = path->nodes[level];
3490 if (!ret && btrfs_header_nritems(c) <
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003491 BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003492 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003493 if (ret < 0)
3494 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003495 }
Chris Masone66f7092007-04-20 13:16:02 -04003496
Chris Mason5f39d392007-10-15 16:14:19 -04003497 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003498 mid = (c_nritems + 1) / 2;
3499 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003500
Filipe Mananaa6279472019-01-25 11:48:51 +00003501 split = alloc_tree_block_no_bg_flush(trans, root, 0, &disk_key, level,
3502 c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003503 if (IS_ERR(split))
3504 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003505
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003506 root_add_used(root, fs_info->nodesize);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03003507 ASSERT(btrfs_header_level(c) == level);
Chris Mason5f39d392007-10-15 16:14:19 -04003508
David Sterbaed874f02019-03-20 14:22:04 +01003509 ret = tree_mod_log_eb_copy(split, c, 0, mid, c_nritems - mid);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003510 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003511 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003512 return ret;
3513 }
Chris Mason5f39d392007-10-15 16:14:19 -04003514 copy_extent_buffer(split, c,
3515 btrfs_node_key_ptr_offset(0),
3516 btrfs_node_key_ptr_offset(mid),
3517 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3518 btrfs_set_header_nritems(split, c_nritems - mid);
3519 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003520 ret = 0;
3521
Chris Mason5f39d392007-10-15 16:14:19 -04003522 btrfs_mark_buffer_dirty(c);
3523 btrfs_mark_buffer_dirty(split);
3524
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003525 insert_ptr(trans, fs_info, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003526 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003527
Chris Mason5de08d72007-02-24 06:24:44 -05003528 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003529 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003530 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003531 free_extent_buffer(c);
3532 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003533 path->slots[level + 1] += 1;
3534 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003535 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003536 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003537 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003538 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003539}
3540
Chris Mason74123bd2007-02-02 11:05:29 -05003541/*
3542 * how many bytes are required to store the items in a leaf. start
3543 * and nr indicate which items in the leaf to check. This totals up the
3544 * space used both by the item structs and the item data
3545 */
Chris Mason5f39d392007-10-15 16:14:19 -04003546static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003547{
Josef Bacik41be1f32012-10-15 13:43:18 -04003548 struct btrfs_item *start_item;
3549 struct btrfs_item *end_item;
3550 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003551 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003552 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003553 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003554
3555 if (!nr)
3556 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003557 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003558 start_item = btrfs_item_nr(start);
3559 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003560 data_len = btrfs_token_item_offset(l, start_item, &token) +
3561 btrfs_token_item_size(l, start_item, &token);
3562 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003563 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003564 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003565 return data_len;
3566}
3567
Chris Mason74123bd2007-02-02 11:05:29 -05003568/*
Chris Masond4dbff92007-04-04 14:08:15 -04003569 * The space between the end of the leaf items and
3570 * the start of the leaf data. IOW, how much room
3571 * the leaf has left for both items and data
3572 */
David Sterbae902baa2019-03-20 14:36:46 +01003573noinline int btrfs_leaf_free_space(struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003574{
David Sterbae902baa2019-03-20 14:36:46 +01003575 struct btrfs_fs_info *fs_info = leaf->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003576 int nritems = btrfs_header_nritems(leaf);
3577 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003578
3579 ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003580 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003581 btrfs_crit(fs_info,
3582 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
3583 ret,
3584 (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info),
3585 leaf_space_used(leaf, 0, nritems), nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003586 }
3587 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003588}
3589
Chris Mason99d8f832010-07-07 10:51:48 -04003590/*
3591 * min slot controls the lowest index we're willing to push to the
3592 * right. We'll push up to and including min_slot, but no lower
3593 */
David Sterba1e47eef2017-02-10 19:13:06 +01003594static noinline int __push_leaf_right(struct btrfs_fs_info *fs_info,
Chris Mason44871b12009-03-13 10:04:31 -04003595 struct btrfs_path *path,
3596 int data_size, int empty,
3597 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003598 int free_space, u32 left_nritems,
3599 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003600{
Chris Mason5f39d392007-10-15 16:14:19 -04003601 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003602 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003603 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003604 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003605 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003606 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003607 int push_space = 0;
3608 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003609 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003610 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003611 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003612 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003613 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003614
Chris Masoncfed81a2012-03-03 07:40:03 -05003615 btrfs_init_map_token(&token);
3616
Chris Mason34a38212007-11-07 13:31:03 -05003617 if (empty)
3618 nr = 0;
3619 else
Chris Mason99d8f832010-07-07 10:51:48 -04003620 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003621
Zheng Yan31840ae2008-09-23 13:14:14 -04003622 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003623 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003624
Chris Mason44871b12009-03-13 10:04:31 -04003625 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003626 i = left_nritems - 1;
3627 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003628 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003629
Zheng Yan31840ae2008-09-23 13:14:14 -04003630 if (!empty && push_items > 0) {
3631 if (path->slots[0] > i)
3632 break;
3633 if (path->slots[0] == i) {
David Sterbae902baa2019-03-20 14:36:46 +01003634 int space = btrfs_leaf_free_space(left);
3635
Zheng Yan31840ae2008-09-23 13:14:14 -04003636 if (space + push_space * 2 > free_space)
3637 break;
3638 }
3639 }
3640
Chris Mason00ec4c52007-02-24 12:47:20 -05003641 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003642 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003643
Chris Masondb945352007-10-15 16:15:53 -04003644 this_item_size = btrfs_item_size(left, item);
3645 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003646 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003647
Chris Mason00ec4c52007-02-24 12:47:20 -05003648 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003649 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003650 if (i == 0)
3651 break;
3652 i--;
Chris Masondb945352007-10-15 16:15:53 -04003653 }
Chris Mason5f39d392007-10-15 16:14:19 -04003654
Chris Mason925baed2008-06-25 16:01:30 -04003655 if (push_items == 0)
3656 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003657
Julia Lawall6c1500f2012-11-03 20:30:18 +00003658 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003659
Chris Mason00ec4c52007-02-24 12:47:20 -05003660 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003661 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003662
Chris Mason5f39d392007-10-15 16:14:19 -04003663 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
David Sterba8f881e82019-03-20 11:33:10 +01003664 push_space -= leaf_data_end(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003665
Chris Mason00ec4c52007-02-24 12:47:20 -05003666 /* make room in the right data area */
David Sterba8f881e82019-03-20 11:33:10 +01003667 data_end = leaf_data_end(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003668 memmove_extent_buffer(right,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003669 BTRFS_LEAF_DATA_OFFSET + data_end - push_space,
3670 BTRFS_LEAF_DATA_OFFSET + data_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003671 BTRFS_LEAF_DATA_SIZE(fs_info) - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003672
Chris Mason00ec4c52007-02-24 12:47:20 -05003673 /* copy from the left data area */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003674 copy_extent_buffer(right, left, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003675 BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
David Sterba8f881e82019-03-20 11:33:10 +01003676 BTRFS_LEAF_DATA_OFFSET + leaf_data_end(left),
Chris Masond6025572007-03-30 14:27:56 -04003677 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003678
3679 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3680 btrfs_item_nr_offset(0),
3681 right_nritems * sizeof(struct btrfs_item));
3682
Chris Mason00ec4c52007-02-24 12:47:20 -05003683 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003684 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3685 btrfs_item_nr_offset(left_nritems - push_items),
3686 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003687
3688 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003689 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003690 btrfs_set_header_nritems(right, right_nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003691 push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
Chris Mason7518a232007-03-12 12:01:18 -04003692 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003693 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003694 push_space -= btrfs_token_item_size(right, item, &token);
3695 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003696 }
3697
Chris Mason7518a232007-03-12 12:01:18 -04003698 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003699 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003700
Chris Mason34a38212007-11-07 13:31:03 -05003701 if (left_nritems)
3702 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003703 else
David Sterba6a884d7d2019-03-20 14:30:02 +01003704 btrfs_clean_tree_block(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003705
Chris Mason5f39d392007-10-15 16:14:19 -04003706 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003707
Chris Mason5f39d392007-10-15 16:14:19 -04003708 btrfs_item_key(right, &disk_key, 0);
3709 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003710 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003711
Chris Mason00ec4c52007-02-24 12:47:20 -05003712 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003713 if (path->slots[0] >= left_nritems) {
3714 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003715 if (btrfs_header_nritems(path->nodes[0]) == 0)
David Sterba6a884d7d2019-03-20 14:30:02 +01003716 btrfs_clean_tree_block(path->nodes[0]);
Chris Mason925baed2008-06-25 16:01:30 -04003717 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003718 free_extent_buffer(path->nodes[0]);
3719 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003720 path->slots[1] += 1;
3721 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003722 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003723 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003724 }
3725 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003726
3727out_unlock:
3728 btrfs_tree_unlock(right);
3729 free_extent_buffer(right);
3730 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003731}
Chris Mason925baed2008-06-25 16:01:30 -04003732
Chris Mason00ec4c52007-02-24 12:47:20 -05003733/*
Chris Mason44871b12009-03-13 10:04:31 -04003734 * push some data in the path leaf to the right, trying to free up at
3735 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3736 *
3737 * returns 1 if the push failed because the other node didn't have enough
3738 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003739 *
3740 * this will push starting from min_slot to the end of the leaf. It won't
3741 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003742 */
3743static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003744 *root, struct btrfs_path *path,
3745 int min_data_size, int data_size,
3746 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003747{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003748 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04003749 struct extent_buffer *left = path->nodes[0];
3750 struct extent_buffer *right;
3751 struct extent_buffer *upper;
3752 int slot;
3753 int free_space;
3754 u32 left_nritems;
3755 int ret;
3756
3757 if (!path->nodes[1])
3758 return 1;
3759
3760 slot = path->slots[1];
3761 upper = path->nodes[1];
3762 if (slot >= btrfs_header_nritems(upper) - 1)
3763 return 1;
3764
3765 btrfs_assert_tree_locked(path->nodes[1]);
3766
David Sterbad0d20b02019-03-20 14:54:01 +01003767 right = read_node_slot(upper, slot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07003768 /*
3769 * slot + 1 is not valid or we fail to read the right node,
3770 * no big deal, just return.
3771 */
3772 if (IS_ERR(right))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003773 return 1;
3774
Chris Mason44871b12009-03-13 10:04:31 -04003775 btrfs_tree_lock(right);
David Sterba8bead252018-04-04 02:03:48 +02003776 btrfs_set_lock_blocking_write(right);
Chris Mason44871b12009-03-13 10:04:31 -04003777
David Sterbae902baa2019-03-20 14:36:46 +01003778 free_space = btrfs_leaf_free_space(right);
Chris Mason44871b12009-03-13 10:04:31 -04003779 if (free_space < data_size)
3780 goto out_unlock;
3781
3782 /* cow and double check */
3783 ret = btrfs_cow_block(trans, root, right, upper,
3784 slot + 1, &right);
3785 if (ret)
3786 goto out_unlock;
3787
David Sterbae902baa2019-03-20 14:36:46 +01003788 free_space = btrfs_leaf_free_space(right);
Chris Mason44871b12009-03-13 10:04:31 -04003789 if (free_space < data_size)
3790 goto out_unlock;
3791
3792 left_nritems = btrfs_header_nritems(left);
3793 if (left_nritems == 0)
3794 goto out_unlock;
3795
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003796 if (path->slots[0] == left_nritems && !empty) {
3797 /* Key greater than all keys in the leaf, right neighbor has
3798 * enough room for it and we're not emptying our leaf to delete
3799 * it, therefore use right neighbor to insert the new item and
Andrea Gelmini52042d82018-11-28 12:05:13 +01003800 * no need to touch/dirty our left leaf. */
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003801 btrfs_tree_unlock(left);
3802 free_extent_buffer(left);
3803 path->nodes[0] = right;
3804 path->slots[0] = 0;
3805 path->slots[1]++;
3806 return 0;
3807 }
3808
David Sterba1e47eef2017-02-10 19:13:06 +01003809 return __push_leaf_right(fs_info, path, min_data_size, empty,
Chris Mason99d8f832010-07-07 10:51:48 -04003810 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003811out_unlock:
3812 btrfs_tree_unlock(right);
3813 free_extent_buffer(right);
3814 return 1;
3815}
3816
3817/*
Chris Mason74123bd2007-02-02 11:05:29 -05003818 * push some data in the path leaf to the left, trying to free up at
3819 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003820 *
3821 * max_slot can put a limit on how far into the leaf we'll push items. The
3822 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3823 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003824 */
David Sterba66cb7dd2017-02-10 19:14:36 +01003825static noinline int __push_leaf_left(struct btrfs_fs_info *fs_info,
Chris Mason44871b12009-03-13 10:04:31 -04003826 struct btrfs_path *path, int data_size,
3827 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003828 int free_space, u32 right_nritems,
3829 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003830{
Chris Mason5f39d392007-10-15 16:14:19 -04003831 struct btrfs_disk_key disk_key;
3832 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003833 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003834 int push_space = 0;
3835 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003836 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003837 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003838 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003839 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003840 u32 this_item_size;
3841 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003842 struct btrfs_map_token token;
3843
3844 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003845
Chris Mason34a38212007-11-07 13:31:03 -05003846 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003847 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003848 else
Chris Mason99d8f832010-07-07 10:51:48 -04003849 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003850
3851 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003852 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003853
Zheng Yan31840ae2008-09-23 13:14:14 -04003854 if (!empty && push_items > 0) {
3855 if (path->slots[0] < i)
3856 break;
3857 if (path->slots[0] == i) {
David Sterbae902baa2019-03-20 14:36:46 +01003858 int space = btrfs_leaf_free_space(right);
3859
Zheng Yan31840ae2008-09-23 13:14:14 -04003860 if (space + push_space * 2 > free_space)
3861 break;
3862 }
3863 }
3864
Chris Masonbe0e5c02007-01-26 15:51:26 -05003865 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003866 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003867
3868 this_item_size = btrfs_item_size(right, item);
3869 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003870 break;
Chris Masondb945352007-10-15 16:15:53 -04003871
Chris Masonbe0e5c02007-01-26 15:51:26 -05003872 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003873 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003874 }
Chris Masondb945352007-10-15 16:15:53 -04003875
Chris Masonbe0e5c02007-01-26 15:51:26 -05003876 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003877 ret = 1;
3878 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003879 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303880 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003881
Chris Masonbe0e5c02007-01-26 15:51:26 -05003882 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003883 copy_extent_buffer(left, right,
3884 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3885 btrfs_item_nr_offset(0),
3886 push_items * sizeof(struct btrfs_item));
3887
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003888 push_space = BTRFS_LEAF_DATA_SIZE(fs_info) -
Chris Masond3977122009-01-05 21:25:51 -05003889 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003890
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003891 copy_extent_buffer(left, right, BTRFS_LEAF_DATA_OFFSET +
David Sterba8f881e82019-03-20 11:33:10 +01003892 leaf_data_end(left) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003893 BTRFS_LEAF_DATA_OFFSET +
Chris Mason5f39d392007-10-15 16:14:19 -04003894 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003895 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003896 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003897 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003898
Chris Masondb945352007-10-15 16:15:53 -04003899 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003900 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003901 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003902
Ross Kirkdd3cc162013-09-16 15:58:09 +01003903 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003904
Chris Masoncfed81a2012-03-03 07:40:03 -05003905 ioff = btrfs_token_item_offset(left, item, &token);
3906 btrfs_set_token_item_offset(left, item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003907 ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size),
Chris Masoncfed81a2012-03-03 07:40:03 -05003908 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003909 }
Chris Mason5f39d392007-10-15 16:14:19 -04003910 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003911
3912 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003913 if (push_items > right_nritems)
3914 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003915 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003916
Chris Mason34a38212007-11-07 13:31:03 -05003917 if (push_items < right_nritems) {
3918 push_space = btrfs_item_offset_nr(right, push_items - 1) -
David Sterba8f881e82019-03-20 11:33:10 +01003919 leaf_data_end(right);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003920 memmove_extent_buffer(right, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003921 BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003922 BTRFS_LEAF_DATA_OFFSET +
David Sterba8f881e82019-03-20 11:33:10 +01003923 leaf_data_end(right), push_space);
Chris Mason34a38212007-11-07 13:31:03 -05003924
3925 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003926 btrfs_item_nr_offset(push_items),
3927 (btrfs_header_nritems(right) - push_items) *
3928 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003929 }
Yaneef1c492007-11-26 10:58:13 -05003930 right_nritems -= push_items;
3931 btrfs_set_header_nritems(right, right_nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003932 push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
Chris Mason5f39d392007-10-15 16:14:19 -04003933 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003934 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003935
Chris Masoncfed81a2012-03-03 07:40:03 -05003936 push_space = push_space - btrfs_token_item_size(right,
3937 item, &token);
3938 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003939 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003940
Chris Mason5f39d392007-10-15 16:14:19 -04003941 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003942 if (right_nritems)
3943 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003944 else
David Sterba6a884d7d2019-03-20 14:30:02 +01003945 btrfs_clean_tree_block(right);
Chris Mason098f59c2007-05-11 11:33:21 -04003946
Chris Mason5f39d392007-10-15 16:14:19 -04003947 btrfs_item_key(right, &disk_key, 0);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03003948 fixup_low_keys(path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003949
3950 /* then fixup the leaf pointer in the path */
3951 if (path->slots[0] < push_items) {
3952 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003953 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003954 free_extent_buffer(path->nodes[0]);
3955 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003956 path->slots[1] -= 1;
3957 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003958 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003959 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003960 path->slots[0] -= push_items;
3961 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003962 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003963 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003964out:
3965 btrfs_tree_unlock(left);
3966 free_extent_buffer(left);
3967 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003968}
3969
Chris Mason74123bd2007-02-02 11:05:29 -05003970/*
Chris Mason44871b12009-03-13 10:04:31 -04003971 * push some data in the path leaf to the left, trying to free up at
3972 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003973 *
3974 * max_slot can put a limit on how far into the leaf we'll push items. The
3975 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3976 * items
Chris Mason44871b12009-03-13 10:04:31 -04003977 */
3978static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003979 *root, struct btrfs_path *path, int min_data_size,
3980 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003981{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003982 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04003983 struct extent_buffer *right = path->nodes[0];
3984 struct extent_buffer *left;
3985 int slot;
3986 int free_space;
3987 u32 right_nritems;
3988 int ret = 0;
3989
3990 slot = path->slots[1];
3991 if (slot == 0)
3992 return 1;
3993 if (!path->nodes[1])
3994 return 1;
3995
3996 right_nritems = btrfs_header_nritems(right);
3997 if (right_nritems == 0)
3998 return 1;
3999
4000 btrfs_assert_tree_locked(path->nodes[1]);
4001
David Sterbad0d20b02019-03-20 14:54:01 +01004002 left = read_node_slot(path->nodes[1], slot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07004003 /*
4004 * slot - 1 is not valid or we fail to read the left node,
4005 * no big deal, just return.
4006 */
4007 if (IS_ERR(left))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004008 return 1;
4009
Chris Mason44871b12009-03-13 10:04:31 -04004010 btrfs_tree_lock(left);
David Sterba8bead252018-04-04 02:03:48 +02004011 btrfs_set_lock_blocking_write(left);
Chris Mason44871b12009-03-13 10:04:31 -04004012
David Sterbae902baa2019-03-20 14:36:46 +01004013 free_space = btrfs_leaf_free_space(left);
Chris Mason44871b12009-03-13 10:04:31 -04004014 if (free_space < data_size) {
4015 ret = 1;
4016 goto out;
4017 }
4018
4019 /* cow and double check */
4020 ret = btrfs_cow_block(trans, root, left,
4021 path->nodes[1], slot - 1, &left);
4022 if (ret) {
4023 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004024 if (ret == -ENOSPC)
4025 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004026 goto out;
4027 }
4028
David Sterbae902baa2019-03-20 14:36:46 +01004029 free_space = btrfs_leaf_free_space(left);
Chris Mason44871b12009-03-13 10:04:31 -04004030 if (free_space < data_size) {
4031 ret = 1;
4032 goto out;
4033 }
4034
David Sterba66cb7dd2017-02-10 19:14:36 +01004035 return __push_leaf_left(fs_info, path, min_data_size,
Chris Mason99d8f832010-07-07 10:51:48 -04004036 empty, left, free_space, right_nritems,
4037 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004038out:
4039 btrfs_tree_unlock(left);
4040 free_extent_buffer(left);
4041 return ret;
4042}
4043
4044/*
Chris Mason74123bd2007-02-02 11:05:29 -05004045 * split the path's leaf in two, making sure there is at least data_size
4046 * available for the resulting leaf level of the path.
4047 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004048static noinline void copy_for_split(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004049 struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004050 struct btrfs_path *path,
4051 struct extent_buffer *l,
4052 struct extent_buffer *right,
4053 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004054{
Chris Masonbe0e5c02007-01-26 15:51:26 -05004055 int data_copy_size;
4056 int rt_data_off;
4057 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004058 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004059 struct btrfs_map_token token;
4060
4061 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004062
Chris Mason5f39d392007-10-15 16:14:19 -04004063 nritems = nritems - mid;
4064 btrfs_set_header_nritems(right, nritems);
David Sterba8f881e82019-03-20 11:33:10 +01004065 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(l);
Chris Mason5f39d392007-10-15 16:14:19 -04004066
4067 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4068 btrfs_item_nr_offset(mid),
4069 nritems * sizeof(struct btrfs_item));
4070
4071 copy_extent_buffer(right, l,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004072 BTRFS_LEAF_DATA_OFFSET + BTRFS_LEAF_DATA_SIZE(fs_info) -
4073 data_copy_size, BTRFS_LEAF_DATA_OFFSET +
David Sterba8f881e82019-03-20 11:33:10 +01004074 leaf_data_end(l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004075
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004076 rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_end_nr(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004077
4078 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004079 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004080 u32 ioff;
4081
Chris Masoncfed81a2012-03-03 07:40:03 -05004082 ioff = btrfs_token_item_offset(right, item, &token);
4083 btrfs_set_token_item_offset(right, item,
4084 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004085 }
Chris Mason74123bd2007-02-02 11:05:29 -05004086
Chris Mason5f39d392007-10-15 16:14:19 -04004087 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004088 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004089 insert_ptr(trans, fs_info, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004090 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004091
4092 btrfs_mark_buffer_dirty(right);
4093 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004094 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004095
Chris Masonbe0e5c02007-01-26 15:51:26 -05004096 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004097 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004098 free_extent_buffer(path->nodes[0]);
4099 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004100 path->slots[0] -= mid;
4101 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004102 } else {
4103 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004104 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004105 }
Chris Mason5f39d392007-10-15 16:14:19 -04004106
Chris Masoneb60cea2007-02-02 09:18:22 -05004107 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004108}
4109
4110/*
Chris Mason99d8f832010-07-07 10:51:48 -04004111 * double splits happen when we need to insert a big item in the middle
4112 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4113 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4114 * A B C
4115 *
4116 * We avoid this by trying to push the items on either side of our target
4117 * into the adjacent leaves. If all goes well we can avoid the double split
4118 * completely.
4119 */
4120static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4121 struct btrfs_root *root,
4122 struct btrfs_path *path,
4123 int data_size)
4124{
4125 int ret;
4126 int progress = 0;
4127 int slot;
4128 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004129 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004130
4131 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004132 if (slot < btrfs_header_nritems(path->nodes[0]))
David Sterbae902baa2019-03-20 14:36:46 +01004133 space_needed -= btrfs_leaf_free_space(path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004134
4135 /*
4136 * try to push all the items after our slot into the
4137 * right leaf
4138 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004139 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004140 if (ret < 0)
4141 return ret;
4142
4143 if (ret == 0)
4144 progress++;
4145
4146 nritems = btrfs_header_nritems(path->nodes[0]);
4147 /*
4148 * our goal is to get our slot at the start or end of a leaf. If
4149 * we've done so we're done
4150 */
4151 if (path->slots[0] == 0 || path->slots[0] == nritems)
4152 return 0;
4153
David Sterbae902baa2019-03-20 14:36:46 +01004154 if (btrfs_leaf_free_space(path->nodes[0]) >= data_size)
Chris Mason99d8f832010-07-07 10:51:48 -04004155 return 0;
4156
4157 /* try to push all the items before our slot into the next leaf */
4158 slot = path->slots[0];
Filipe Manana263d3992017-02-17 18:43:57 +00004159 space_needed = data_size;
4160 if (slot > 0)
David Sterbae902baa2019-03-20 14:36:46 +01004161 space_needed -= btrfs_leaf_free_space(path->nodes[0]);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004162 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004163 if (ret < 0)
4164 return ret;
4165
4166 if (ret == 0)
4167 progress++;
4168
4169 if (progress)
4170 return 0;
4171 return 1;
4172}
4173
4174/*
Chris Mason44871b12009-03-13 10:04:31 -04004175 * split the path's leaf in two, making sure there is at least data_size
4176 * available for the resulting leaf level of the path.
4177 *
4178 * returns 0 if all went well and < 0 on failure.
4179 */
4180static noinline int split_leaf(struct btrfs_trans_handle *trans,
4181 struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -08004182 const struct btrfs_key *ins_key,
Chris Mason44871b12009-03-13 10:04:31 -04004183 struct btrfs_path *path, int data_size,
4184 int extend)
4185{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004186 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004187 struct extent_buffer *l;
4188 u32 nritems;
4189 int mid;
4190 int slot;
4191 struct extent_buffer *right;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004192 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04004193 int ret = 0;
4194 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004195 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004196 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004197 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004198
Yan, Zhenga5719522009-09-24 09:17:31 -04004199 l = path->nodes[0];
4200 slot = path->slots[0];
4201 if (extend && data_size + btrfs_item_size_nr(l, slot) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004202 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info))
Yan, Zhenga5719522009-09-24 09:17:31 -04004203 return -EOVERFLOW;
4204
Chris Mason44871b12009-03-13 10:04:31 -04004205 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004206 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004207 int space_needed = data_size;
4208
4209 if (slot < btrfs_header_nritems(l))
David Sterbae902baa2019-03-20 14:36:46 +01004210 space_needed -= btrfs_leaf_free_space(l);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004211
4212 wret = push_leaf_right(trans, root, path, space_needed,
4213 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004214 if (wret < 0)
4215 return wret;
4216 if (wret) {
Filipe Manana263d3992017-02-17 18:43:57 +00004217 space_needed = data_size;
4218 if (slot > 0)
David Sterbae902baa2019-03-20 14:36:46 +01004219 space_needed -= btrfs_leaf_free_space(l);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004220 wret = push_leaf_left(trans, root, path, space_needed,
4221 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004222 if (wret < 0)
4223 return wret;
4224 }
4225 l = path->nodes[0];
4226
4227 /* did the pushes work? */
David Sterbae902baa2019-03-20 14:36:46 +01004228 if (btrfs_leaf_free_space(l) >= data_size)
Chris Mason44871b12009-03-13 10:04:31 -04004229 return 0;
4230 }
4231
4232 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004233 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004234 if (ret)
4235 return ret;
4236 }
4237again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004238 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004239 l = path->nodes[0];
4240 slot = path->slots[0];
4241 nritems = btrfs_header_nritems(l);
4242 mid = (nritems + 1) / 2;
4243
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004244 if (mid <= slot) {
4245 if (nritems == 1 ||
4246 leaf_space_used(l, mid, nritems - mid) + data_size >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004247 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004248 if (slot >= nritems) {
4249 split = 0;
4250 } else {
4251 mid = slot;
4252 if (mid != nritems &&
4253 leaf_space_used(l, mid, nritems - mid) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004254 data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004255 if (data_size && !tried_avoid_double)
4256 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004257 split = 2;
4258 }
4259 }
4260 }
4261 } else {
4262 if (leaf_space_used(l, 0, mid) + data_size >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004263 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004264 if (!extend && data_size && slot == 0) {
4265 split = 0;
4266 } else if ((extend || !data_size) && slot == 0) {
4267 mid = 1;
4268 } else {
4269 mid = slot;
4270 if (mid != nritems &&
4271 leaf_space_used(l, mid, nritems - mid) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004272 data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004273 if (data_size && !tried_avoid_double)
4274 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304275 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004276 }
4277 }
4278 }
4279 }
4280
4281 if (split == 0)
4282 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4283 else
4284 btrfs_item_key(l, &disk_key, mid);
4285
Filipe Mananaa6279472019-01-25 11:48:51 +00004286 right = alloc_tree_block_no_bg_flush(trans, root, 0, &disk_key, 0,
4287 l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004288 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004289 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004290
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004291 root_add_used(root, fs_info->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004292
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004293 if (split == 0) {
4294 if (mid <= slot) {
4295 btrfs_set_header_nritems(right, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004296 insert_ptr(trans, fs_info, path, &disk_key,
4297 right->start, path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004298 btrfs_tree_unlock(path->nodes[0]);
4299 free_extent_buffer(path->nodes[0]);
4300 path->nodes[0] = right;
4301 path->slots[0] = 0;
4302 path->slots[1] += 1;
4303 } else {
4304 btrfs_set_header_nritems(right, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004305 insert_ptr(trans, fs_info, path, &disk_key,
4306 right->start, path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004307 btrfs_tree_unlock(path->nodes[0]);
4308 free_extent_buffer(path->nodes[0]);
4309 path->nodes[0] = right;
4310 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004311 if (path->slots[1] == 0)
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004312 fixup_low_keys(path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004313 }
Liu Bo196e0242016-09-07 14:48:28 -07004314 /*
4315 * We create a new leaf 'right' for the required ins_len and
4316 * we'll do btrfs_mark_buffer_dirty() on this leaf after copying
4317 * the content of ins_len to 'right'.
4318 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004319 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004320 }
4321
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004322 copy_for_split(trans, fs_info, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004323
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004324 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004325 BUG_ON(num_doubles != 0);
4326 num_doubles++;
4327 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004328 }
Chris Mason44871b12009-03-13 10:04:31 -04004329
Jeff Mahoney143bede2012-03-01 14:56:26 +01004330 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004331
4332push_for_double:
4333 push_for_double_split(trans, root, path, data_size);
4334 tried_avoid_double = 1;
David Sterbae902baa2019-03-20 14:36:46 +01004335 if (btrfs_leaf_free_space(path->nodes[0]) >= data_size)
Chris Mason99d8f832010-07-07 10:51:48 -04004336 return 0;
4337 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004338}
4339
Yan, Zhengad48fd752009-11-12 09:33:58 +00004340static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4341 struct btrfs_root *root,
4342 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004343{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004344 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004345 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004346 struct btrfs_file_extent_item *fi;
4347 u64 extent_len = 0;
4348 u32 item_size;
4349 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004350
4351 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004352 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4353
4354 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4355 key.type != BTRFS_EXTENT_CSUM_KEY);
4356
David Sterbae902baa2019-03-20 14:36:46 +01004357 if (btrfs_leaf_free_space(leaf) >= ins_len)
Yan, Zhengad48fd752009-11-12 09:33:58 +00004358 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004359
4360 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004361 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4362 fi = btrfs_item_ptr(leaf, path->slots[0],
4363 struct btrfs_file_extent_item);
4364 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4365 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004366 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004367
Chris Mason459931e2008-12-10 09:10:46 -05004368 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004369 path->search_for_split = 1;
4370 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004371 path->search_for_split = 0;
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004372 if (ret > 0)
4373 ret = -EAGAIN;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004374 if (ret < 0)
4375 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004376
Yan, Zhengad48fd752009-11-12 09:33:58 +00004377 ret = -EAGAIN;
4378 leaf = path->nodes[0];
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004379 /* if our item isn't there, return now */
4380 if (item_size != btrfs_item_size_nr(leaf, path->slots[0]))
Yan, Zhengad48fd752009-11-12 09:33:58 +00004381 goto err;
4382
Chris Mason109f6ae2010-04-02 09:20:18 -04004383 /* the leaf has changed, it now has room. return now */
David Sterbae902baa2019-03-20 14:36:46 +01004384 if (btrfs_leaf_free_space(path->nodes[0]) >= ins_len)
Chris Mason109f6ae2010-04-02 09:20:18 -04004385 goto err;
4386
Yan, Zhengad48fd752009-11-12 09:33:58 +00004387 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4388 fi = btrfs_item_ptr(leaf, path->slots[0],
4389 struct btrfs_file_extent_item);
4390 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4391 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004392 }
4393
Chris Masonb9473432009-03-13 11:00:37 -04004394 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004395 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004396 if (ret)
4397 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004398
Yan, Zhengad48fd752009-11-12 09:33:58 +00004399 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004400 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004401 return 0;
4402err:
4403 path->keep_locks = 0;
4404 return ret;
4405}
4406
David Sterba4961e292017-02-10 18:49:53 +01004407static noinline int split_item(struct btrfs_fs_info *fs_info,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004408 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004409 const struct btrfs_key *new_key,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004410 unsigned long split_offset)
4411{
4412 struct extent_buffer *leaf;
4413 struct btrfs_item *item;
4414 struct btrfs_item *new_item;
4415 int slot;
4416 char *buf;
4417 u32 nritems;
4418 u32 item_size;
4419 u32 orig_offset;
4420 struct btrfs_disk_key disk_key;
4421
Chris Masonb9473432009-03-13 11:00:37 -04004422 leaf = path->nodes[0];
David Sterbae902baa2019-03-20 14:36:46 +01004423 BUG_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item));
Chris Masonb9473432009-03-13 11:00:37 -04004424
Chris Masonb4ce94d2009-02-04 09:25:08 -05004425 btrfs_set_path_blocking(path);
4426
Ross Kirkdd3cc162013-09-16 15:58:09 +01004427 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004428 orig_offset = btrfs_item_offset(leaf, item);
4429 item_size = btrfs_item_size(leaf, item);
4430
Chris Mason459931e2008-12-10 09:10:46 -05004431 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004432 if (!buf)
4433 return -ENOMEM;
4434
Chris Mason459931e2008-12-10 09:10:46 -05004435 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4436 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004437
Chris Mason459931e2008-12-10 09:10:46 -05004438 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004439 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004440 if (slot != nritems) {
4441 /* shift the items */
4442 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004443 btrfs_item_nr_offset(slot),
4444 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004445 }
4446
4447 btrfs_cpu_key_to_disk(&disk_key, new_key);
4448 btrfs_set_item_key(leaf, &disk_key, slot);
4449
Ross Kirkdd3cc162013-09-16 15:58:09 +01004450 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004451
4452 btrfs_set_item_offset(leaf, new_item, orig_offset);
4453 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4454
4455 btrfs_set_item_offset(leaf, item,
4456 orig_offset + item_size - split_offset);
4457 btrfs_set_item_size(leaf, item, split_offset);
4458
4459 btrfs_set_header_nritems(leaf, nritems + 1);
4460
4461 /* write the data for the start of the original item */
4462 write_extent_buffer(leaf, buf,
4463 btrfs_item_ptr_offset(leaf, path->slots[0]),
4464 split_offset);
4465
4466 /* write the data for the new item */
4467 write_extent_buffer(leaf, buf + split_offset,
4468 btrfs_item_ptr_offset(leaf, slot),
4469 item_size - split_offset);
4470 btrfs_mark_buffer_dirty(leaf);
4471
David Sterbae902baa2019-03-20 14:36:46 +01004472 BUG_ON(btrfs_leaf_free_space(leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004473 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004474 return 0;
4475}
4476
4477/*
4478 * This function splits a single item into two items,
4479 * giving 'new_key' to the new item and splitting the
4480 * old one at split_offset (from the start of the item).
4481 *
4482 * The path may be released by this operation. After
4483 * the split, the path is pointing to the old item. The
4484 * new item is going to be in the same node as the old one.
4485 *
4486 * Note, the item being split must be smaller enough to live alone on
4487 * a tree block with room for one extra struct btrfs_item
4488 *
4489 * This allows us to split the item in place, keeping a lock on the
4490 * leaf the entire time.
4491 */
4492int btrfs_split_item(struct btrfs_trans_handle *trans,
4493 struct btrfs_root *root,
4494 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004495 const struct btrfs_key *new_key,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004496 unsigned long split_offset)
4497{
4498 int ret;
4499 ret = setup_leaf_for_split(trans, root, path,
4500 sizeof(struct btrfs_item));
4501 if (ret)
4502 return ret;
4503
David Sterba4961e292017-02-10 18:49:53 +01004504 ret = split_item(root->fs_info, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004505 return ret;
4506}
4507
4508/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004509 * This function duplicate a item, giving 'new_key' to the new item.
4510 * It guarantees both items live in the same tree leaf and the new item
4511 * is contiguous with the original item.
4512 *
4513 * This allows us to split file extent in place, keeping a lock on the
4514 * leaf the entire time.
4515 */
4516int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4517 struct btrfs_root *root,
4518 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004519 const struct btrfs_key *new_key)
Yan, Zhengad48fd752009-11-12 09:33:58 +00004520{
4521 struct extent_buffer *leaf;
4522 int ret;
4523 u32 item_size;
4524
4525 leaf = path->nodes[0];
4526 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4527 ret = setup_leaf_for_split(trans, root, path,
4528 item_size + sizeof(struct btrfs_item));
4529 if (ret)
4530 return ret;
4531
4532 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004533 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004534 item_size, item_size +
4535 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004536 leaf = path->nodes[0];
4537 memcpy_extent_buffer(leaf,
4538 btrfs_item_ptr_offset(leaf, path->slots[0]),
4539 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4540 item_size);
4541 return 0;
4542}
4543
4544/*
Chris Masond352ac62008-09-29 15:18:18 -04004545 * make the item pointed to by the path smaller. new_size indicates
4546 * how small to make it, and from_end tells us if we just chop bytes
4547 * off the end of the item or if we shift the item to chop bytes off
4548 * the front.
4549 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004550void btrfs_truncate_item(struct btrfs_fs_info *fs_info,
4551 struct btrfs_path *path, u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004552{
Chris Masonb18c6682007-04-17 13:26:50 -04004553 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004554 struct extent_buffer *leaf;
4555 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004556 u32 nritems;
4557 unsigned int data_end;
4558 unsigned int old_data_start;
4559 unsigned int old_size;
4560 unsigned int size_diff;
4561 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004562 struct btrfs_map_token token;
4563
4564 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004565
Chris Mason5f39d392007-10-15 16:14:19 -04004566 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004567 slot = path->slots[0];
4568
4569 old_size = btrfs_item_size_nr(leaf, slot);
4570 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004571 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004572
Chris Mason5f39d392007-10-15 16:14:19 -04004573 nritems = btrfs_header_nritems(leaf);
David Sterba8f881e82019-03-20 11:33:10 +01004574 data_end = leaf_data_end(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004575
Chris Mason5f39d392007-10-15 16:14:19 -04004576 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004577
Chris Masonb18c6682007-04-17 13:26:50 -04004578 size_diff = old_size - new_size;
4579
4580 BUG_ON(slot < 0);
4581 BUG_ON(slot >= nritems);
4582
4583 /*
4584 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4585 */
4586 /* first correct the data pointers */
4587 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004588 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004589 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004590
Chris Masoncfed81a2012-03-03 07:40:03 -05004591 ioff = btrfs_token_item_offset(leaf, item, &token);
4592 btrfs_set_token_item_offset(leaf, item,
4593 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004594 }
Chris Masondb945352007-10-15 16:15:53 -04004595
Chris Masonb18c6682007-04-17 13:26:50 -04004596 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004597 if (from_end) {
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004598 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4599 data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
Chris Mason179e29e2007-11-01 11:28:41 -04004600 data_end, old_data_start + new_size - data_end);
4601 } else {
4602 struct btrfs_disk_key disk_key;
4603 u64 offset;
4604
4605 btrfs_item_key(leaf, &disk_key, slot);
4606
4607 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4608 unsigned long ptr;
4609 struct btrfs_file_extent_item *fi;
4610
4611 fi = btrfs_item_ptr(leaf, slot,
4612 struct btrfs_file_extent_item);
4613 fi = (struct btrfs_file_extent_item *)(
4614 (unsigned long)fi - size_diff);
4615
4616 if (btrfs_file_extent_type(leaf, fi) ==
4617 BTRFS_FILE_EXTENT_INLINE) {
4618 ptr = btrfs_item_ptr_offset(leaf, slot);
4619 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004620 (unsigned long)fi,
David Sterba7ec20af2014-07-24 17:34:58 +02004621 BTRFS_FILE_EXTENT_INLINE_DATA_START);
Chris Mason179e29e2007-11-01 11:28:41 -04004622 }
4623 }
4624
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004625 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4626 data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
Chris Mason179e29e2007-11-01 11:28:41 -04004627 data_end, old_data_start - data_end);
4628
4629 offset = btrfs_disk_key_offset(&disk_key);
4630 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4631 btrfs_set_item_key(leaf, &disk_key, slot);
4632 if (slot == 0)
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004633 fixup_low_keys(path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004634 }
Chris Mason5f39d392007-10-15 16:14:19 -04004635
Ross Kirkdd3cc162013-09-16 15:58:09 +01004636 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004637 btrfs_set_item_size(leaf, item, new_size);
4638 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004639
David Sterbae902baa2019-03-20 14:36:46 +01004640 if (btrfs_leaf_free_space(leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004641 btrfs_print_leaf(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004642 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004643 }
Chris Masonb18c6682007-04-17 13:26:50 -04004644}
4645
Chris Masond352ac62008-09-29 15:18:18 -04004646/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004647 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004648 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004649void btrfs_extend_item(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004650 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004651{
Chris Mason6567e832007-04-16 09:22:45 -04004652 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004653 struct extent_buffer *leaf;
4654 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004655 u32 nritems;
4656 unsigned int data_end;
4657 unsigned int old_data;
4658 unsigned int old_size;
4659 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004660 struct btrfs_map_token token;
4661
4662 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004663
Chris Mason5f39d392007-10-15 16:14:19 -04004664 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004665
Chris Mason5f39d392007-10-15 16:14:19 -04004666 nritems = btrfs_header_nritems(leaf);
David Sterba8f881e82019-03-20 11:33:10 +01004667 data_end = leaf_data_end(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004668
David Sterbae902baa2019-03-20 14:36:46 +01004669 if (btrfs_leaf_free_space(leaf) < data_size) {
David Sterbaa4f78752017-06-29 18:37:49 +02004670 btrfs_print_leaf(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004671 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004672 }
Chris Mason6567e832007-04-16 09:22:45 -04004673 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004674 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004675
4676 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004677 if (slot >= nritems) {
David Sterbaa4f78752017-06-29 18:37:49 +02004678 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004679 btrfs_crit(fs_info, "slot %d too large, nritems %d",
4680 slot, nritems);
Arnd Bergmann290342f2019-03-25 14:02:25 +01004681 BUG();
Chris Mason3326d1b2007-10-15 16:18:25 -04004682 }
Chris Mason6567e832007-04-16 09:22:45 -04004683
4684 /*
4685 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4686 */
4687 /* first correct the data pointers */
4688 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004689 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004690 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004691
Chris Masoncfed81a2012-03-03 07:40:03 -05004692 ioff = btrfs_token_item_offset(leaf, item, &token);
4693 btrfs_set_token_item_offset(leaf, item,
4694 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004695 }
Chris Mason5f39d392007-10-15 16:14:19 -04004696
Chris Mason6567e832007-04-16 09:22:45 -04004697 /* shift the data */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004698 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4699 data_end - data_size, BTRFS_LEAF_DATA_OFFSET +
Chris Mason6567e832007-04-16 09:22:45 -04004700 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004701
Chris Mason6567e832007-04-16 09:22:45 -04004702 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004703 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004704 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004705 btrfs_set_item_size(leaf, item, old_size + data_size);
4706 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004707
David Sterbae902baa2019-03-20 14:36:46 +01004708 if (btrfs_leaf_free_space(leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004709 btrfs_print_leaf(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004710 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004711 }
Chris Mason6567e832007-04-16 09:22:45 -04004712}
4713
Chris Mason74123bd2007-02-02 11:05:29 -05004714/*
Chris Mason44871b12009-03-13 10:04:31 -04004715 * this is a helper for btrfs_insert_empty_items, the main goal here is
4716 * to save stack depth by doing the bulk of the work in a function
4717 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004718 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004719void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004720 const struct btrfs_key *cpu_key, u32 *data_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004721 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004722{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004723 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004724 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004725 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004726 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004727 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004728 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004729 struct extent_buffer *leaf;
4730 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004731 struct btrfs_map_token token;
4732
Filipe Manana24cdc842014-07-28 19:34:35 +01004733 if (path->slots[0] == 0) {
4734 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004735 fixup_low_keys(path, &disk_key, 1);
Filipe Manana24cdc842014-07-28 19:34:35 +01004736 }
4737 btrfs_unlock_up_safe(path, 1);
4738
Chris Masoncfed81a2012-03-03 07:40:03 -05004739 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004740
Chris Mason5f39d392007-10-15 16:14:19 -04004741 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004742 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004743
Chris Mason5f39d392007-10-15 16:14:19 -04004744 nritems = btrfs_header_nritems(leaf);
David Sterba8f881e82019-03-20 11:33:10 +01004745 data_end = leaf_data_end(leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004746
David Sterbae902baa2019-03-20 14:36:46 +01004747 if (btrfs_leaf_free_space(leaf) < total_size) {
David Sterbaa4f78752017-06-29 18:37:49 +02004748 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004749 btrfs_crit(fs_info, "not enough freespace need %u have %d",
David Sterbae902baa2019-03-20 14:36:46 +01004750 total_size, btrfs_leaf_free_space(leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004751 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004752 }
Chris Mason5f39d392007-10-15 16:14:19 -04004753
Chris Masonbe0e5c02007-01-26 15:51:26 -05004754 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004755 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004756
Chris Mason5f39d392007-10-15 16:14:19 -04004757 if (old_data < data_end) {
David Sterbaa4f78752017-06-29 18:37:49 +02004758 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004759 btrfs_crit(fs_info, "slot %d old_data %d data_end %d",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004760 slot, old_data, data_end);
Arnd Bergmann290342f2019-03-25 14:02:25 +01004761 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004762 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004763 /*
4764 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4765 */
4766 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004767 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004768 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004769
Jeff Mahoney62e85572016-09-20 10:05:01 -04004770 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004771 ioff = btrfs_token_item_offset(leaf, item, &token);
4772 btrfs_set_token_item_offset(leaf, item,
4773 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004774 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004775 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004776 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004777 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004778 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004779
4780 /* shift the data */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004781 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4782 data_end - total_data, BTRFS_LEAF_DATA_OFFSET +
Chris Masond6025572007-03-30 14:27:56 -04004783 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004784 data_end = old_data;
4785 }
Chris Mason5f39d392007-10-15 16:14:19 -04004786
Chris Mason62e27492007-03-15 12:56:47 -04004787 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004788 for (i = 0; i < nr; i++) {
4789 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4790 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004791 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004792 btrfs_set_token_item_offset(leaf, item,
4793 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004794 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004795 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004796 }
Chris Mason44871b12009-03-13 10:04:31 -04004797
Chris Mason9c583092008-01-29 15:15:18 -05004798 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004799 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004800
David Sterbae902baa2019-03-20 14:36:46 +01004801 if (btrfs_leaf_free_space(leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004802 btrfs_print_leaf(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004803 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004804 }
Chris Mason44871b12009-03-13 10:04:31 -04004805}
4806
4807/*
4808 * Given a key and some data, insert items into the tree.
4809 * This does all the path init required, making room in the tree if needed.
4810 */
4811int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4812 struct btrfs_root *root,
4813 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004814 const struct btrfs_key *cpu_key, u32 *data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004815 int nr)
4816{
Chris Mason44871b12009-03-13 10:04:31 -04004817 int ret = 0;
4818 int slot;
4819 int i;
4820 u32 total_size = 0;
4821 u32 total_data = 0;
4822
4823 for (i = 0; i < nr; i++)
4824 total_data += data_size[i];
4825
4826 total_size = total_data + (nr * sizeof(struct btrfs_item));
4827 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4828 if (ret == 0)
4829 return -EEXIST;
4830 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004831 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004832
Chris Mason44871b12009-03-13 10:04:31 -04004833 slot = path->slots[0];
4834 BUG_ON(slot < 0);
4835
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004836 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004837 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004838 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004839}
4840
4841/*
4842 * Given a key and some data, insert an item into the tree.
4843 * This does all the path init required, making room in the tree if needed.
4844 */
Omar Sandoval310712b2017-01-17 23:24:37 -08004845int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4846 const struct btrfs_key *cpu_key, void *data,
4847 u32 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004848{
4849 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004850 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004851 struct extent_buffer *leaf;
4852 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004853
Chris Mason2c90e5d2007-04-02 10:50:19 -04004854 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004855 if (!path)
4856 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004857 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004858 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004859 leaf = path->nodes[0];
4860 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4861 write_extent_buffer(leaf, data, ptr, data_size);
4862 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004863 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004864 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004865 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004866}
4867
Chris Mason74123bd2007-02-02 11:05:29 -05004868/*
Chris Mason5de08d72007-02-24 06:24:44 -05004869 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004870 *
Chris Masond352ac62008-09-29 15:18:18 -04004871 * the tree should have been previously balanced so the deletion does not
4872 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004873 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004874static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4875 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004876{
Chris Mason5f39d392007-10-15 16:14:19 -04004877 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004878 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004879 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004880
Chris Mason5f39d392007-10-15 16:14:19 -04004881 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004882 if (slot != nritems - 1) {
David Sterbabf1d3422018-03-05 15:47:39 +01004883 if (level) {
4884 ret = tree_mod_log_insert_move(parent, slot, slot + 1,
David Sterbaa446a972018-03-05 15:26:29 +01004885 nritems - slot - 1);
David Sterbabf1d3422018-03-05 15:47:39 +01004886 BUG_ON(ret < 0);
4887 }
Chris Mason5f39d392007-10-15 16:14:19 -04004888 memmove_extent_buffer(parent,
4889 btrfs_node_key_ptr_offset(slot),
4890 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004891 sizeof(struct btrfs_key_ptr) *
4892 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004893 } else if (level) {
David Sterbae09c2ef2018-03-05 15:09:03 +01004894 ret = tree_mod_log_insert_key(parent, slot, MOD_LOG_KEY_REMOVE,
4895 GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004896 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004897 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004898
Chris Mason7518a232007-03-12 12:01:18 -04004899 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004900 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004901 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004902 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004903 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004904 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004905 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004906 struct btrfs_disk_key disk_key;
4907
4908 btrfs_node_key(parent, &disk_key, 0);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004909 fixup_low_keys(path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004910 }
Chris Masond6025572007-03-30 14:27:56 -04004911 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004912}
4913
Chris Mason74123bd2007-02-02 11:05:29 -05004914/*
Chris Mason323ac952008-10-01 19:05:46 -04004915 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004916 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004917 *
4918 * This deletes the pointer in path->nodes[1] and frees the leaf
4919 * block extent. zero is returned if it all worked out, < 0 otherwise.
4920 *
4921 * The path must have already been setup for deleting the leaf, including
4922 * all the proper balancing. path->nodes[1] must be locked.
4923 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004924static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4925 struct btrfs_root *root,
4926 struct btrfs_path *path,
4927 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004928{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004929 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004930 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004931
Chris Mason4d081c42009-02-04 09:31:28 -05004932 /*
4933 * btrfs_free_extent is expensive, we want to make sure we
4934 * aren't holding any locks when we call it
4935 */
4936 btrfs_unlock_up_safe(path, 0);
4937
Yan, Zhengf0486c62010-05-16 10:46:25 -04004938 root_sub_used(root, leaf->len);
4939
Josef Bacik3083ee22012-03-09 16:01:49 -05004940 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004941 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004942 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004943}
4944/*
Chris Mason74123bd2007-02-02 11:05:29 -05004945 * delete the item at the leaf level in path. If that empties
4946 * the leaf, remove it from the tree
4947 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004948int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4949 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004950{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004951 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004952 struct extent_buffer *leaf;
4953 struct btrfs_item *item;
Alexandru Moisece0eac22015-08-23 16:01:42 +00004954 u32 last_off;
4955 u32 dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004956 int ret = 0;
4957 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004958 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004959 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004960 struct btrfs_map_token token;
4961
4962 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004963
Chris Mason5f39d392007-10-15 16:14:19 -04004964 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004965 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4966
4967 for (i = 0; i < nr; i++)
4968 dsize += btrfs_item_size_nr(leaf, slot + i);
4969
Chris Mason5f39d392007-10-15 16:14:19 -04004970 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004971
Chris Mason85e21ba2008-01-29 15:11:36 -05004972 if (slot + nr != nritems) {
David Sterba8f881e82019-03-20 11:33:10 +01004973 int data_end = leaf_data_end(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004974
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004975 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
Chris Masond6025572007-03-30 14:27:56 -04004976 data_end + dsize,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004977 BTRFS_LEAF_DATA_OFFSET + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004978 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004979
Chris Mason85e21ba2008-01-29 15:11:36 -05004980 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004981 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004982
Ross Kirkdd3cc162013-09-16 15:58:09 +01004983 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004984 ioff = btrfs_token_item_offset(leaf, item, &token);
4985 btrfs_set_token_item_offset(leaf, item,
4986 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004987 }
Chris Masondb945352007-10-15 16:15:53 -04004988
Chris Mason5f39d392007-10-15 16:14:19 -04004989 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004990 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004991 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004992 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004993 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004994 btrfs_set_header_nritems(leaf, nritems - nr);
4995 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004996
Chris Mason74123bd2007-02-02 11:05:29 -05004997 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004998 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004999 if (leaf == root->node) {
5000 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05005001 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005002 btrfs_set_path_blocking(path);
David Sterba6a884d7d2019-03-20 14:30:02 +01005003 btrfs_clean_tree_block(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005004 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05005005 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05005006 } else {
Chris Mason7518a232007-03-12 12:01:18 -04005007 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005008 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005009 struct btrfs_disk_key disk_key;
5010
5011 btrfs_item_key(leaf, &disk_key, 0);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03005012 fixup_low_keys(path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005013 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005014
Chris Mason74123bd2007-02-02 11:05:29 -05005015 /* delete the leaf if it is mostly empty */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005016 if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005017 /* push_leaf_left fixes the path.
5018 * make sure the path still points to our leaf
5019 * for possible call to del_ptr below
5020 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005021 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04005022 extent_buffer_get(leaf);
5023
Chris Masonb9473432009-03-13 11:00:37 -04005024 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005025 wret = push_leaf_left(trans, root, path, 1, 1,
5026 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005027 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005028 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005029
5030 if (path->nodes[0] == leaf &&
5031 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005032 wret = push_leaf_right(trans, root, path, 1,
5033 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005034 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005035 ret = wret;
5036 }
Chris Mason5f39d392007-10-15 16:14:19 -04005037
5038 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005039 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005040 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005041 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005042 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005043 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005044 /* if we're still in the path, make sure
5045 * we're dirty. Otherwise, one of the
5046 * push_leaf functions must have already
5047 * dirtied this buffer
5048 */
5049 if (path->nodes[0] == leaf)
5050 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005051 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005052 }
Chris Masond5719762007-03-23 10:01:08 -04005053 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005054 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005055 }
5056 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005057 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005058}
5059
Chris Mason97571fd2007-02-24 13:39:08 -05005060/*
Chris Mason925baed2008-06-25 16:01:30 -04005061 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005062 * returns 0 if it found something or 1 if there are no lesser leaves.
5063 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005064 *
5065 * This may release the path, and so you may lose any locks held at the
5066 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005067 */
Josef Bacik16e75492013-10-22 12:18:51 -04005068int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005069{
Chris Mason925baed2008-06-25 16:01:30 -04005070 struct btrfs_key key;
5071 struct btrfs_disk_key found_key;
5072 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005073
Chris Mason925baed2008-06-25 16:01:30 -04005074 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005075
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005076 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005077 key.offset--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005078 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005079 key.type--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005080 key.offset = (u64)-1;
5081 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005082 key.objectid--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005083 key.type = (u8)-1;
5084 key.offset = (u64)-1;
5085 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005086 return 1;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005087 }
Chris Mason7bb86312007-12-11 09:25:06 -05005088
David Sterbab3b4aa72011-04-21 01:20:15 +02005089 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005090 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5091 if (ret < 0)
5092 return ret;
5093 btrfs_item_key(path->nodes[0], &found_key, 0);
5094 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005095 /*
5096 * We might have had an item with the previous key in the tree right
5097 * before we released our path. And after we released our path, that
5098 * item might have been pushed to the first slot (0) of the leaf we
5099 * were holding due to a tree balance. Alternatively, an item with the
5100 * previous key can exist as the only element of a leaf (big fat item).
5101 * Therefore account for these 2 cases, so that our callers (like
5102 * btrfs_previous_item) don't miss an existing item with a key matching
5103 * the previous key we computed above.
5104 */
5105 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005106 return 0;
5107 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005108}
5109
Chris Mason3f157a22008-06-25 16:01:31 -04005110/*
5111 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005112 * for nodes or leaves that are have a minimum transaction id.
5113 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005114 *
5115 * This does not cow, but it does stuff the starting key it finds back
5116 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5117 * key and get a writable path.
5118 *
Chris Mason3f157a22008-06-25 16:01:31 -04005119 * This honors path->lowest_level to prevent descent past a given level
5120 * of the tree.
5121 *
Chris Masond352ac62008-09-29 15:18:18 -04005122 * min_trans indicates the oldest transaction that you are interested
5123 * in walking through. Any nodes or leaves older than min_trans are
5124 * skipped over (without reading them).
5125 *
Chris Mason3f157a22008-06-25 16:01:31 -04005126 * returns zero if something useful was found, < 0 on error and 1 if there
5127 * was nothing in the tree that matched the search criteria.
5128 */
5129int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005130 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005131 u64 min_trans)
5132{
5133 struct extent_buffer *cur;
5134 struct btrfs_key found_key;
5135 int slot;
Yan96524802008-07-24 12:19:49 -04005136 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005137 u32 nritems;
5138 int level;
5139 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005140 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005141
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005142 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005143again:
Chris Masonbd681512011-07-16 15:23:14 -04005144 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005145 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005146 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005147 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005148 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005149
5150 if (btrfs_header_generation(cur) < min_trans) {
5151 ret = 1;
5152 goto out;
5153 }
Chris Masond3977122009-01-05 21:25:51 -05005154 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005155 nritems = btrfs_header_nritems(cur);
5156 level = btrfs_header_level(cur);
Nikolay Borisova74b35e2017-12-08 16:27:43 +02005157 sret = btrfs_bin_search(cur, min_key, level, &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00005158 if (sret < 0) {
5159 ret = sret;
5160 goto out;
5161 }
Chris Mason3f157a22008-06-25 16:01:31 -04005162
Chris Mason323ac952008-10-01 19:05:46 -04005163 /* at the lowest level, we're done, setup the path and exit */
5164 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005165 if (slot >= nritems)
5166 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005167 ret = 0;
5168 path->slots[level] = slot;
5169 btrfs_item_key_to_cpu(cur, &found_key, slot);
5170 goto out;
5171 }
Yan96524802008-07-24 12:19:49 -04005172 if (sret && slot > 0)
5173 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005174 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005175 * check this node pointer against the min_trans parameters.
5176 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005177 */
Chris Masond3977122009-01-05 21:25:51 -05005178 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005179 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005180
Chris Mason3f157a22008-06-25 16:01:31 -04005181 gen = btrfs_node_ptr_generation(cur, slot);
5182 if (gen < min_trans) {
5183 slot++;
5184 continue;
5185 }
Eric Sandeende78b512013-01-31 18:21:12 +00005186 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005187 }
Chris Masone02119d2008-09-05 16:13:11 -04005188find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005189 /*
5190 * we didn't find a candidate key in this node, walk forward
5191 * and find another one
5192 */
5193 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005194 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005195 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005196 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005197 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005198 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005199 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005200 goto again;
5201 } else {
5202 goto out;
5203 }
5204 }
5205 /* save our key for returning back */
5206 btrfs_node_key_to_cpu(cur, &found_key, slot);
5207 path->slots[level] = slot;
5208 if (level == path->lowest_level) {
5209 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005210 goto out;
5211 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005212 btrfs_set_path_blocking(path);
David Sterbad0d20b02019-03-20 14:54:01 +01005213 cur = read_node_slot(cur, slot);
Liu Bofb770ae2016-07-05 12:10:14 -07005214 if (IS_ERR(cur)) {
5215 ret = PTR_ERR(cur);
5216 goto out;
5217 }
Chris Mason3f157a22008-06-25 16:01:31 -04005218
Chris Masonbd681512011-07-16 15:23:14 -04005219 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005220
Chris Masonbd681512011-07-16 15:23:14 -04005221 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005222 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005223 unlock_up(path, level, 1, 0, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04005224 }
5225out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005226 path->keep_locks = keep_locks;
5227 if (ret == 0) {
5228 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5229 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005230 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005231 }
Chris Mason3f157a22008-06-25 16:01:31 -04005232 return ret;
5233}
5234
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005235static int tree_move_down(struct btrfs_fs_info *fs_info,
Alexander Block70698302012-06-05 21:07:48 +02005236 struct btrfs_path *path,
David Sterbaab6a43e2017-02-10 19:24:53 +01005237 int *level)
Alexander Block70698302012-06-05 21:07:48 +02005238{
Liu Bofb770ae2016-07-05 12:10:14 -07005239 struct extent_buffer *eb;
5240
Chris Mason74dd17f2012-08-07 16:25:13 -04005241 BUG_ON(*level == 0);
David Sterbad0d20b02019-03-20 14:54:01 +01005242 eb = read_node_slot(path->nodes[*level], path->slots[*level]);
Liu Bofb770ae2016-07-05 12:10:14 -07005243 if (IS_ERR(eb))
5244 return PTR_ERR(eb);
5245
5246 path->nodes[*level - 1] = eb;
Alexander Block70698302012-06-05 21:07:48 +02005247 path->slots[*level - 1] = 0;
5248 (*level)--;
Liu Bofb770ae2016-07-05 12:10:14 -07005249 return 0;
Alexander Block70698302012-06-05 21:07:48 +02005250}
5251
David Sterbaf1e30262017-02-10 19:25:51 +01005252static int tree_move_next_or_upnext(struct btrfs_path *path,
Alexander Block70698302012-06-05 21:07:48 +02005253 int *level, int root_level)
5254{
5255 int ret = 0;
5256 int nritems;
5257 nritems = btrfs_header_nritems(path->nodes[*level]);
5258
5259 path->slots[*level]++;
5260
Chris Mason74dd17f2012-08-07 16:25:13 -04005261 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02005262 if (*level == root_level)
5263 return -1;
5264
5265 /* move upnext */
5266 path->slots[*level] = 0;
5267 free_extent_buffer(path->nodes[*level]);
5268 path->nodes[*level] = NULL;
5269 (*level)++;
5270 path->slots[*level]++;
5271
5272 nritems = btrfs_header_nritems(path->nodes[*level]);
5273 ret = 1;
5274 }
5275 return ret;
5276}
5277
5278/*
5279 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5280 * or down.
5281 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005282static int tree_advance(struct btrfs_fs_info *fs_info,
Alexander Block70698302012-06-05 21:07:48 +02005283 struct btrfs_path *path,
5284 int *level, int root_level,
5285 int allow_down,
5286 struct btrfs_key *key)
5287{
5288 int ret;
5289
5290 if (*level == 0 || !allow_down) {
David Sterbaf1e30262017-02-10 19:25:51 +01005291 ret = tree_move_next_or_upnext(path, level, root_level);
Alexander Block70698302012-06-05 21:07:48 +02005292 } else {
David Sterbaab6a43e2017-02-10 19:24:53 +01005293 ret = tree_move_down(fs_info, path, level);
Alexander Block70698302012-06-05 21:07:48 +02005294 }
5295 if (ret >= 0) {
5296 if (*level == 0)
5297 btrfs_item_key_to_cpu(path->nodes[*level], key,
5298 path->slots[*level]);
5299 else
5300 btrfs_node_key_to_cpu(path->nodes[*level], key,
5301 path->slots[*level]);
5302 }
5303 return ret;
5304}
5305
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005306static int tree_compare_item(struct btrfs_path *left_path,
Alexander Block70698302012-06-05 21:07:48 +02005307 struct btrfs_path *right_path,
5308 char *tmp_buf)
5309{
5310 int cmp;
5311 int len1, len2;
5312 unsigned long off1, off2;
5313
5314 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5315 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5316 if (len1 != len2)
5317 return 1;
5318
5319 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5320 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5321 right_path->slots[0]);
5322
5323 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5324
5325 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5326 if (cmp)
5327 return 1;
5328 return 0;
5329}
5330
5331#define ADVANCE 1
5332#define ADVANCE_ONLY_NEXT -1
5333
5334/*
5335 * This function compares two trees and calls the provided callback for
5336 * every changed/new/deleted item it finds.
5337 * If shared tree blocks are encountered, whole subtrees are skipped, making
5338 * the compare pretty fast on snapshotted subvolumes.
5339 *
5340 * This currently works on commit roots only. As commit roots are read only,
5341 * we don't do any locking. The commit roots are protected with transactions.
5342 * Transactions are ended and rejoined when a commit is tried in between.
5343 *
5344 * This function checks for modifications done to the trees while comparing.
5345 * If it detects a change, it aborts immediately.
5346 */
5347int btrfs_compare_trees(struct btrfs_root *left_root,
5348 struct btrfs_root *right_root,
5349 btrfs_changed_cb_t changed_cb, void *ctx)
5350{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005351 struct btrfs_fs_info *fs_info = left_root->fs_info;
Alexander Block70698302012-06-05 21:07:48 +02005352 int ret;
5353 int cmp;
Alexander Block70698302012-06-05 21:07:48 +02005354 struct btrfs_path *left_path = NULL;
5355 struct btrfs_path *right_path = NULL;
5356 struct btrfs_key left_key;
5357 struct btrfs_key right_key;
5358 char *tmp_buf = NULL;
5359 int left_root_level;
5360 int right_root_level;
5361 int left_level;
5362 int right_level;
5363 int left_end_reached;
5364 int right_end_reached;
5365 int advance_left;
5366 int advance_right;
5367 u64 left_blockptr;
5368 u64 right_blockptr;
Filipe Manana6baa4292014-02-20 21:15:25 +00005369 u64 left_gen;
5370 u64 right_gen;
Alexander Block70698302012-06-05 21:07:48 +02005371
5372 left_path = btrfs_alloc_path();
5373 if (!left_path) {
5374 ret = -ENOMEM;
5375 goto out;
5376 }
5377 right_path = btrfs_alloc_path();
5378 if (!right_path) {
5379 ret = -ENOMEM;
5380 goto out;
5381 }
5382
Michal Hocko752ade62017-05-08 15:57:27 -07005383 tmp_buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
Alexander Block70698302012-06-05 21:07:48 +02005384 if (!tmp_buf) {
Michal Hocko752ade62017-05-08 15:57:27 -07005385 ret = -ENOMEM;
5386 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005387 }
5388
5389 left_path->search_commit_root = 1;
5390 left_path->skip_locking = 1;
5391 right_path->search_commit_root = 1;
5392 right_path->skip_locking = 1;
5393
Alexander Block70698302012-06-05 21:07:48 +02005394 /*
5395 * Strategy: Go to the first items of both trees. Then do
5396 *
5397 * If both trees are at level 0
5398 * Compare keys of current items
5399 * If left < right treat left item as new, advance left tree
5400 * and repeat
5401 * If left > right treat right item as deleted, advance right tree
5402 * and repeat
5403 * If left == right do deep compare of items, treat as changed if
5404 * needed, advance both trees and repeat
5405 * If both trees are at the same level but not at level 0
5406 * Compare keys of current nodes/leafs
5407 * If left < right advance left tree and repeat
5408 * If left > right advance right tree and repeat
5409 * If left == right compare blockptrs of the next nodes/leafs
5410 * If they match advance both trees but stay at the same level
5411 * and repeat
5412 * If they don't match advance both trees while allowing to go
5413 * deeper and repeat
5414 * If tree levels are different
5415 * Advance the tree that needs it and repeat
5416 *
5417 * Advancing a tree means:
5418 * If we are at level 0, try to go to the next slot. If that's not
5419 * possible, go one level up and repeat. Stop when we found a level
5420 * where we could go to the next slot. We may at this point be on a
5421 * node or a leaf.
5422 *
5423 * If we are not at level 0 and not on shared tree blocks, go one
5424 * level deeper.
5425 *
5426 * If we are not at level 0 and on shared tree blocks, go one slot to
5427 * the right if possible or go up and right.
5428 */
5429
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005430 down_read(&fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005431 left_level = btrfs_header_level(left_root->commit_root);
5432 left_root_level = left_level;
Robbie Ko6f2f0b32018-05-14 10:51:34 +08005433 left_path->nodes[left_level] =
5434 btrfs_clone_extent_buffer(left_root->commit_root);
5435 if (!left_path->nodes[left_level]) {
5436 up_read(&fs_info->commit_root_sem);
5437 ret = -ENOMEM;
5438 goto out;
5439 }
Alexander Block70698302012-06-05 21:07:48 +02005440
5441 right_level = btrfs_header_level(right_root->commit_root);
5442 right_root_level = right_level;
Robbie Ko6f2f0b32018-05-14 10:51:34 +08005443 right_path->nodes[right_level] =
5444 btrfs_clone_extent_buffer(right_root->commit_root);
5445 if (!right_path->nodes[right_level]) {
5446 up_read(&fs_info->commit_root_sem);
5447 ret = -ENOMEM;
5448 goto out;
5449 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005450 up_read(&fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005451
5452 if (left_level == 0)
5453 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5454 &left_key, left_path->slots[left_level]);
5455 else
5456 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5457 &left_key, left_path->slots[left_level]);
5458 if (right_level == 0)
5459 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5460 &right_key, right_path->slots[right_level]);
5461 else
5462 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5463 &right_key, right_path->slots[right_level]);
5464
5465 left_end_reached = right_end_reached = 0;
5466 advance_left = advance_right = 0;
5467
5468 while (1) {
Alexander Block70698302012-06-05 21:07:48 +02005469 if (advance_left && !left_end_reached) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005470 ret = tree_advance(fs_info, left_path, &left_level,
Alexander Block70698302012-06-05 21:07:48 +02005471 left_root_level,
5472 advance_left != ADVANCE_ONLY_NEXT,
5473 &left_key);
Liu Bofb770ae2016-07-05 12:10:14 -07005474 if (ret == -1)
Alexander Block70698302012-06-05 21:07:48 +02005475 left_end_reached = ADVANCE;
Liu Bofb770ae2016-07-05 12:10:14 -07005476 else if (ret < 0)
5477 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005478 advance_left = 0;
5479 }
5480 if (advance_right && !right_end_reached) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005481 ret = tree_advance(fs_info, right_path, &right_level,
Alexander Block70698302012-06-05 21:07:48 +02005482 right_root_level,
5483 advance_right != ADVANCE_ONLY_NEXT,
5484 &right_key);
Liu Bofb770ae2016-07-05 12:10:14 -07005485 if (ret == -1)
Alexander Block70698302012-06-05 21:07:48 +02005486 right_end_reached = ADVANCE;
Liu Bofb770ae2016-07-05 12:10:14 -07005487 else if (ret < 0)
5488 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005489 advance_right = 0;
5490 }
5491
5492 if (left_end_reached && right_end_reached) {
5493 ret = 0;
5494 goto out;
5495 } else if (left_end_reached) {
5496 if (right_level == 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005497 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005498 &right_key,
5499 BTRFS_COMPARE_TREE_DELETED,
5500 ctx);
5501 if (ret < 0)
5502 goto out;
5503 }
5504 advance_right = ADVANCE;
5505 continue;
5506 } else if (right_end_reached) {
5507 if (left_level == 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005508 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005509 &left_key,
5510 BTRFS_COMPARE_TREE_NEW,
5511 ctx);
5512 if (ret < 0)
5513 goto out;
5514 }
5515 advance_left = ADVANCE;
5516 continue;
5517 }
5518
5519 if (left_level == 0 && right_level == 0) {
5520 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5521 if (cmp < 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005522 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005523 &left_key,
5524 BTRFS_COMPARE_TREE_NEW,
5525 ctx);
5526 if (ret < 0)
5527 goto out;
5528 advance_left = ADVANCE;
5529 } else if (cmp > 0) {
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005530 ret = changed_cb(left_path, right_path,
Alexander Block70698302012-06-05 21:07:48 +02005531 &right_key,
5532 BTRFS_COMPARE_TREE_DELETED,
5533 ctx);
5534 if (ret < 0)
5535 goto out;
5536 advance_right = ADVANCE;
5537 } else {
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005538 enum btrfs_compare_tree_result result;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005539
Chris Mason74dd17f2012-08-07 16:25:13 -04005540 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005541 ret = tree_compare_item(left_path, right_path,
5542 tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005543 if (ret)
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005544 result = BTRFS_COMPARE_TREE_CHANGED;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005545 else
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005546 result = BTRFS_COMPARE_TREE_SAME;
Nikolay Borisovee8c4942017-08-21 12:43:45 +03005547 ret = changed_cb(left_path, right_path,
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005548 &left_key, result, ctx);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005549 if (ret < 0)
5550 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005551 advance_left = ADVANCE;
5552 advance_right = ADVANCE;
5553 }
5554 } else if (left_level == right_level) {
5555 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5556 if (cmp < 0) {
5557 advance_left = ADVANCE;
5558 } else if (cmp > 0) {
5559 advance_right = ADVANCE;
5560 } else {
5561 left_blockptr = btrfs_node_blockptr(
5562 left_path->nodes[left_level],
5563 left_path->slots[left_level]);
5564 right_blockptr = btrfs_node_blockptr(
5565 right_path->nodes[right_level],
5566 right_path->slots[right_level]);
Filipe Manana6baa4292014-02-20 21:15:25 +00005567 left_gen = btrfs_node_ptr_generation(
5568 left_path->nodes[left_level],
5569 left_path->slots[left_level]);
5570 right_gen = btrfs_node_ptr_generation(
5571 right_path->nodes[right_level],
5572 right_path->slots[right_level]);
5573 if (left_blockptr == right_blockptr &&
5574 left_gen == right_gen) {
Alexander Block70698302012-06-05 21:07:48 +02005575 /*
5576 * As we're on a shared block, don't
5577 * allow to go deeper.
5578 */
5579 advance_left = ADVANCE_ONLY_NEXT;
5580 advance_right = ADVANCE_ONLY_NEXT;
5581 } else {
5582 advance_left = ADVANCE;
5583 advance_right = ADVANCE;
5584 }
5585 }
5586 } else if (left_level < right_level) {
5587 advance_right = ADVANCE;
5588 } else {
5589 advance_left = ADVANCE;
5590 }
5591 }
5592
5593out:
5594 btrfs_free_path(left_path);
5595 btrfs_free_path(right_path);
David Sterba8f282f72016-03-30 16:01:12 +02005596 kvfree(tmp_buf);
Alexander Block70698302012-06-05 21:07:48 +02005597 return ret;
5598}
5599
Chris Mason3f157a22008-06-25 16:01:31 -04005600/*
5601 * this is similar to btrfs_next_leaf, but does not try to preserve
5602 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005603 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005604 *
5605 * 0 is returned if another key is found, < 0 if there are any errors
5606 * and 1 is returned if there are no higher keys in the tree
5607 *
5608 * path->keep_locks should be set to 1 on the search made before
5609 * calling this function.
5610 */
Chris Masone7a84562008-06-25 16:01:31 -04005611int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005612 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005613{
Chris Masone7a84562008-06-25 16:01:31 -04005614 int slot;
5615 struct extent_buffer *c;
5616
Chris Mason934d3752008-12-08 16:43:10 -05005617 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005618 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005619 if (!path->nodes[level])
5620 return 1;
5621
5622 slot = path->slots[level] + 1;
5623 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005624next:
Chris Masone7a84562008-06-25 16:01:31 -04005625 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005626 int ret;
5627 int orig_lowest;
5628 struct btrfs_key cur_key;
5629 if (level + 1 >= BTRFS_MAX_LEVEL ||
5630 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005631 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005632
5633 if (path->locks[level + 1]) {
5634 level++;
5635 continue;
5636 }
5637
5638 slot = btrfs_header_nritems(c) - 1;
5639 if (level == 0)
5640 btrfs_item_key_to_cpu(c, &cur_key, slot);
5641 else
5642 btrfs_node_key_to_cpu(c, &cur_key, slot);
5643
5644 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005645 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005646 path->lowest_level = level;
5647 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5648 0, 0);
5649 path->lowest_level = orig_lowest;
5650 if (ret < 0)
5651 return ret;
5652
5653 c = path->nodes[level];
5654 slot = path->slots[level];
5655 if (ret == 0)
5656 slot++;
5657 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005658 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005659
Chris Masone7a84562008-06-25 16:01:31 -04005660 if (level == 0)
5661 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005662 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005663 u64 gen = btrfs_node_ptr_generation(c, slot);
5664
Chris Mason3f157a22008-06-25 16:01:31 -04005665 if (gen < min_trans) {
5666 slot++;
5667 goto next;
5668 }
Chris Masone7a84562008-06-25 16:01:31 -04005669 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005670 }
Chris Masone7a84562008-06-25 16:01:31 -04005671 return 0;
5672 }
5673 return 1;
5674}
5675
Chris Mason7bb86312007-12-11 09:25:06 -05005676/*
Chris Mason925baed2008-06-25 16:01:30 -04005677 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005678 * returns 0 if it found something or 1 if there are no greater leaves.
5679 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005680 */
Chris Mason234b63a2007-03-13 10:46:10 -04005681int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005682{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005683 return btrfs_next_old_leaf(root, path, 0);
5684}
5685
5686int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5687 u64 time_seq)
5688{
Chris Masond97e63b2007-02-20 16:40:44 -05005689 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005690 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005691 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005692 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005693 struct btrfs_key key;
5694 u32 nritems;
5695 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005696 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005697 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005698
5699 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005700 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005701 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005702
Chris Mason8e73f272009-04-03 10:14:18 -04005703 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5704again:
5705 level = 1;
5706 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005707 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005708 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005709
Chris Masona2135012008-06-25 16:01:30 -04005710 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005711 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005712
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005713 if (time_seq)
5714 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5715 else
5716 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005717 path->keep_locks = 0;
5718
5719 if (ret < 0)
5720 return ret;
5721
Chris Masona2135012008-06-25 16:01:30 -04005722 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005723 /*
5724 * by releasing the path above we dropped all our locks. A balance
5725 * could have added more items next to the key that used to be
5726 * at the very end of the block. So, check again here and
5727 * advance the path if there are now more items available.
5728 */
Chris Masona2135012008-06-25 16:01:30 -04005729 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005730 if (ret == 0)
5731 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005732 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005733 goto done;
5734 }
Liu Bo0b43e042014-06-09 11:04:49 +08005735 /*
5736 * So the above check misses one case:
5737 * - after releasing the path above, someone has removed the item that
5738 * used to be at the very end of the block, and balance between leafs
5739 * gets another one with bigger key.offset to replace it.
5740 *
5741 * This one should be returned as well, or we can get leaf corruption
5742 * later(esp. in __btrfs_drop_extents()).
5743 *
5744 * And a bit more explanation about this check,
5745 * with ret > 0, the key isn't found, the path points to the slot
5746 * where it should be inserted, so the path->slots[0] item must be the
5747 * bigger one.
5748 */
5749 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5750 ret = 0;
5751 goto done;
5752 }
Chris Masond97e63b2007-02-20 16:40:44 -05005753
Chris Masond3977122009-01-05 21:25:51 -05005754 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005755 if (!path->nodes[level]) {
5756 ret = 1;
5757 goto done;
5758 }
Chris Mason5f39d392007-10-15 16:14:19 -04005759
Chris Masond97e63b2007-02-20 16:40:44 -05005760 slot = path->slots[level] + 1;
5761 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005762 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005763 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005764 if (level == BTRFS_MAX_LEVEL) {
5765 ret = 1;
5766 goto done;
5767 }
Chris Masond97e63b2007-02-20 16:40:44 -05005768 continue;
5769 }
Chris Mason5f39d392007-10-15 16:14:19 -04005770
Chris Mason925baed2008-06-25 16:01:30 -04005771 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005772 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005773 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005774 }
Chris Mason5f39d392007-10-15 16:14:19 -04005775
Chris Mason8e73f272009-04-03 10:14:18 -04005776 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005777 next_rw_lock = path->locks[level];
Liu Bod07b8522017-01-30 12:23:42 -08005778 ret = read_block_for_search(root, path, &next, level,
David Sterbacda79c52017-02-10 18:44:32 +01005779 slot, &key);
Chris Mason8e73f272009-04-03 10:14:18 -04005780 if (ret == -EAGAIN)
5781 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005782
Chris Mason76a05b32009-05-14 13:24:30 -04005783 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005784 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005785 goto done;
5786 }
5787
Chris Mason5cd57b22008-06-25 16:01:30 -04005788 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005789 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005790 if (!ret && time_seq) {
5791 /*
5792 * If we don't get the lock, we may be racing
5793 * with push_leaf_left, holding that lock while
5794 * itself waiting for the leaf we've currently
5795 * locked. To solve this situation, we give up
5796 * on our lock and cycle.
5797 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005798 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005799 btrfs_release_path(path);
5800 cond_resched();
5801 goto again;
5802 }
Chris Mason8e73f272009-04-03 10:14:18 -04005803 if (!ret) {
5804 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005805 btrfs_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005806 }
Chris Mason31533fb2011-07-26 16:01:59 -04005807 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005808 }
Chris Masond97e63b2007-02-20 16:40:44 -05005809 break;
5810 }
5811 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005812 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005813 level--;
5814 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005815 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005816 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005817
Chris Mason5f39d392007-10-15 16:14:19 -04005818 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005819 path->nodes[level] = next;
5820 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005821 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005822 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005823 if (!level)
5824 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005825
Liu Bod07b8522017-01-30 12:23:42 -08005826 ret = read_block_for_search(root, path, &next, level,
David Sterbacda79c52017-02-10 18:44:32 +01005827 0, &key);
Chris Mason8e73f272009-04-03 10:14:18 -04005828 if (ret == -EAGAIN)
5829 goto again;
5830
Chris Mason76a05b32009-05-14 13:24:30 -04005831 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005832 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005833 goto done;
5834 }
5835
Chris Mason5cd57b22008-06-25 16:01:30 -04005836 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005837 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005838 if (!ret) {
5839 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005840 btrfs_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005841 }
Chris Mason31533fb2011-07-26 16:01:59 -04005842 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005843 }
Chris Masond97e63b2007-02-20 16:40:44 -05005844 }
Chris Mason8e73f272009-04-03 10:14:18 -04005845 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005846done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005847 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005848 path->leave_spinning = old_spinning;
5849 if (!old_spinning)
5850 btrfs_set_path_blocking(path);
5851
5852 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005853}
Chris Mason0b86a832008-03-24 15:01:56 -04005854
Chris Mason3f157a22008-06-25 16:01:31 -04005855/*
5856 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5857 * searching until it gets past min_objectid or finds an item of 'type'
5858 *
5859 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5860 */
Chris Mason0b86a832008-03-24 15:01:56 -04005861int btrfs_previous_item(struct btrfs_root *root,
5862 struct btrfs_path *path, u64 min_objectid,
5863 int type)
5864{
5865 struct btrfs_key found_key;
5866 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005867 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005868 int ret;
5869
Chris Masond3977122009-01-05 21:25:51 -05005870 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005871 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005872 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005873 ret = btrfs_prev_leaf(root, path);
5874 if (ret != 0)
5875 return ret;
5876 } else {
5877 path->slots[0]--;
5878 }
5879 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005880 nritems = btrfs_header_nritems(leaf);
5881 if (nritems == 0)
5882 return 1;
5883 if (path->slots[0] == nritems)
5884 path->slots[0]--;
5885
Chris Mason0b86a832008-03-24 15:01:56 -04005886 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005887 if (found_key.objectid < min_objectid)
5888 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005889 if (found_key.type == type)
5890 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005891 if (found_key.objectid == min_objectid &&
5892 found_key.type < type)
5893 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005894 }
5895 return 1;
5896}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005897
5898/*
5899 * search in extent tree to find a previous Metadata/Data extent item with
5900 * min objecitd.
5901 *
5902 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5903 */
5904int btrfs_previous_extent_item(struct btrfs_root *root,
5905 struct btrfs_path *path, u64 min_objectid)
5906{
5907 struct btrfs_key found_key;
5908 struct extent_buffer *leaf;
5909 u32 nritems;
5910 int ret;
5911
5912 while (1) {
5913 if (path->slots[0] == 0) {
5914 btrfs_set_path_blocking(path);
5915 ret = btrfs_prev_leaf(root, path);
5916 if (ret != 0)
5917 return ret;
5918 } else {
5919 path->slots[0]--;
5920 }
5921 leaf = path->nodes[0];
5922 nritems = btrfs_header_nritems(leaf);
5923 if (nritems == 0)
5924 return 1;
5925 if (path->slots[0] == nritems)
5926 path->slots[0]--;
5927
5928 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5929 if (found_key.objectid < min_objectid)
5930 break;
5931 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5932 found_key.type == BTRFS_METADATA_ITEM_KEY)
5933 return 0;
5934 if (found_key.objectid == min_objectid &&
5935 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5936 break;
5937 }
5938 return 1;
5939}