blob: f2ec1a9bae287169e4ee6bb0494d14f4dc674cf8 [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,
Chris Mason5f39d392007-10-15 16:14:19 -040027 struct extent_buffer *dst_buf,
28 struct extent_buffer *src_buf);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +000029static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
30 int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050031
Johannes Thumshirnaf024ed2019-08-30 13:36:09 +020032static const struct btrfs_csums {
33 u16 size;
34 const char *name;
David Sterbab4e967b2019-10-08 18:41:33 +020035 const char *driver;
Johannes Thumshirnaf024ed2019-08-30 13:36:09 +020036} btrfs_csums[] = {
37 [BTRFS_CSUM_TYPE_CRC32] = { .size = 4, .name = "crc32c" },
Johannes Thumshirn3951e7f2019-10-07 11:11:01 +020038 [BTRFS_CSUM_TYPE_XXHASH] = { .size = 8, .name = "xxhash64" },
Johannes Thumshirn3831bf02019-10-07 11:11:02 +020039 [BTRFS_CSUM_TYPE_SHA256] = { .size = 32, .name = "sha256" },
David Sterba352ae072019-10-07 11:11:02 +020040 [BTRFS_CSUM_TYPE_BLAKE2] = { .size = 32, .name = "blake2b",
41 .driver = "blake2b-256" },
Johannes Thumshirnaf024ed2019-08-30 13:36:09 +020042};
43
44int btrfs_super_csum_size(const struct btrfs_super_block *s)
45{
46 u16 t = btrfs_super_csum_type(s);
47 /*
48 * csum type is validated at mount time
49 */
50 return btrfs_csums[t].size;
51}
52
53const char *btrfs_super_csum_name(u16 csum_type)
54{
55 /* csum type is validated at mount time */
56 return btrfs_csums[csum_type].name;
57}
58
David Sterbab4e967b2019-10-08 18:41:33 +020059/*
60 * Return driver name if defined, otherwise the name that's also a valid driver
61 * name
62 */
63const char *btrfs_super_csum_driver(u16 csum_type)
64{
65 /* csum type is validated at mount time */
66 return btrfs_csums[csum_type].driver ?:
67 btrfs_csums[csum_type].name;
68}
69
David Sterbaf7cea562019-10-07 11:11:03 +020070size_t __const btrfs_get_num_csums(void)
71{
72 return ARRAY_SIZE(btrfs_csums);
73}
74
Chris Mason2c90e5d2007-04-02 10:50:19 -040075struct btrfs_path *btrfs_alloc_path(void)
76{
Masahiro Yamadae2c89902016-09-13 04:35:52 +090077 return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Mason2c90e5d2007-04-02 10:50:19 -040078}
79
Chris Masond352ac62008-09-29 15:18:18 -040080/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -040081void btrfs_free_path(struct btrfs_path *p)
82{
Jesper Juhlff175d52010-12-25 21:22:30 +000083 if (!p)
84 return;
David Sterbab3b4aa72011-04-21 01:20:15 +020085 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -040086 kmem_cache_free(btrfs_path_cachep, p);
87}
88
Chris Masond352ac62008-09-29 15:18:18 -040089/*
90 * path release drops references on the extent buffers in the path
91 * and it drops any locks held by this path
92 *
93 * It is safe to call this on paths that no locks or extent buffers held.
94 */
David Sterbab3b4aa72011-04-21 01:20:15 +020095noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -050096{
97 int i;
Chris Masona2135012008-06-25 16:01:30 -040098
Chris Mason234b63a2007-03-13 10:46:10 -040099 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400100 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500101 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400102 continue;
103 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400104 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400105 p->locks[i] = 0;
106 }
Chris Mason5f39d392007-10-15 16:14:19 -0400107 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400108 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500109 }
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
113 * safely gets a reference on the root node of a tree. A lock
114 * is not taken, so a concurrent writer may put a different node
115 * at the root of the tree. See btrfs_lock_root_node for the
116 * looping required.
117 *
118 * The extent buffer returned by this has a reference taken, so
119 * it won't disappear. It may stop being the root of the tree
120 * at any time because there are no locks held.
121 */
Chris Mason925baed2008-06-25 16:01:30 -0400122struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
123{
124 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400125
Josef Bacik3083ee22012-03-09 16:01:49 -0500126 while (1) {
127 rcu_read_lock();
128 eb = rcu_dereference(root->node);
129
130 /*
131 * RCU really hurts here, we could free up the root node because
Nicholas D Steeves01327612016-05-19 21:18:45 -0400132 * it was COWed but we may not get the new root node yet so do
Josef Bacik3083ee22012-03-09 16:01:49 -0500133 * the inc_not_zero dance and if it doesn't work then
134 * synchronize_rcu and try again.
135 */
136 if (atomic_inc_not_zero(&eb->refs)) {
137 rcu_read_unlock();
138 break;
139 }
140 rcu_read_unlock();
141 synchronize_rcu();
142 }
Chris Mason925baed2008-06-25 16:01:30 -0400143 return eb;
144}
145
Chris Masond352ac62008-09-29 15:18:18 -0400146/* loop around taking references on and locking the root node of the
147 * tree until you end up with a lock on the root. A locked buffer
148 * is returned, with a reference held.
149 */
Chris Mason925baed2008-06-25 16:01:30 -0400150struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
151{
152 struct extent_buffer *eb;
153
Chris Masond3977122009-01-05 21:25:51 -0500154 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400155 eb = btrfs_root_node(root);
156 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400157 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400158 break;
Chris Mason925baed2008-06-25 16:01:30 -0400159 btrfs_tree_unlock(eb);
160 free_extent_buffer(eb);
161 }
162 return eb;
163}
164
Chris Masonbd681512011-07-16 15:23:14 -0400165/* loop around taking references on and locking the root node of the
166 * tree until you end up with a lock on the root. A locked buffer
167 * is returned, with a reference held.
168 */
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400169struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400170{
171 struct extent_buffer *eb;
172
173 while (1) {
174 eb = btrfs_root_node(root);
175 btrfs_tree_read_lock(eb);
176 if (eb == root->node)
177 break;
178 btrfs_tree_read_unlock(eb);
179 free_extent_buffer(eb);
180 }
181 return eb;
182}
183
Chris Masond352ac62008-09-29 15:18:18 -0400184/* cowonly root (everything not a reference counted cow subvolume), just get
185 * put onto a simple dirty list. transaction.c walks this to make sure they
186 * get properly updated on disk.
187 */
Chris Mason0b86a832008-03-24 15:01:56 -0400188static void add_root_to_dirty_list(struct btrfs_root *root)
189{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400190 struct btrfs_fs_info *fs_info = root->fs_info;
191
Josef Bacike7070be2014-12-16 08:54:43 -0800192 if (test_bit(BTRFS_ROOT_DIRTY, &root->state) ||
193 !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state))
194 return;
195
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400196 spin_lock(&fs_info->trans_lock);
Josef Bacike7070be2014-12-16 08:54:43 -0800197 if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) {
198 /* Want the extent tree to be the last on the list */
Misono Tomohiro4fd786e2018-08-06 14:25:24 +0900199 if (root->root_key.objectid == BTRFS_EXTENT_TREE_OBJECTID)
Josef Bacike7070be2014-12-16 08:54:43 -0800200 list_move_tail(&root->dirty_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400201 &fs_info->dirty_cowonly_roots);
Josef Bacike7070be2014-12-16 08:54:43 -0800202 else
203 list_move(&root->dirty_list,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400204 &fs_info->dirty_cowonly_roots);
Chris Mason0b86a832008-03-24 15:01:56 -0400205 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400206 spin_unlock(&fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400207}
208
Chris Masond352ac62008-09-29 15:18:18 -0400209/*
210 * used by snapshot creation to make a copy of a root for a tree with
211 * a given objectid. The buffer with the new root node is returned in
212 * cow_ret, and this func returns zero on success or a negative error code.
213 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500214int btrfs_copy_root(struct btrfs_trans_handle *trans,
215 struct btrfs_root *root,
216 struct extent_buffer *buf,
217 struct extent_buffer **cow_ret, u64 new_root_objectid)
218{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400219 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonbe20aa92007-12-17 20:14:01 -0500220 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500221 int ret = 0;
222 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400223 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500224
Miao Xie27cdeb72014-04-02 19:51:05 +0800225 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400226 trans->transid != fs_info->running_transaction->transid);
Miao Xie27cdeb72014-04-02 19:51:05 +0800227 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
228 trans->transid != root->last_trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500229
230 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400231 if (level == 0)
232 btrfs_item_key(buf, &disk_key, 0);
233 else
234 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400235
David Sterba4d75f8a2014-06-15 01:54:12 +0200236 cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
237 &disk_key, level, buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400238 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500239 return PTR_ERR(cow);
240
David Sterba58e80122016-11-08 18:30:31 +0100241 copy_extent_buffer_full(cow, buf);
Chris Masonbe20aa92007-12-17 20:14:01 -0500242 btrfs_set_header_bytenr(cow, cow->start);
243 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400244 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
245 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
246 BTRFS_HEADER_FLAG_RELOC);
247 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
248 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
249 else
250 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500251
Nikolay Borisovde37aa52018-10-30 16:43:24 +0200252 write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -0500253
Chris Masonbe20aa92007-12-17 20:14:01 -0500254 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400255 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700256 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400257 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700258 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500259
Chris Masonbe20aa92007-12-17 20:14:01 -0500260 if (ret)
261 return ret;
262
263 btrfs_mark_buffer_dirty(cow);
264 *cow_ret = cow;
265 return 0;
266}
267
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200268enum mod_log_op {
269 MOD_LOG_KEY_REPLACE,
270 MOD_LOG_KEY_ADD,
271 MOD_LOG_KEY_REMOVE,
272 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
273 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
274 MOD_LOG_MOVE_KEYS,
275 MOD_LOG_ROOT_REPLACE,
276};
277
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200278struct tree_mod_root {
279 u64 logical;
280 u8 level;
281};
282
283struct tree_mod_elem {
284 struct rb_node node;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530285 u64 logical;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200286 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200287 enum mod_log_op op;
288
289 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
290 int slot;
291
292 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
293 u64 generation;
294
295 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
296 struct btrfs_disk_key key;
297 u64 blockptr;
298
299 /* this is used for op == MOD_LOG_MOVE_KEYS */
David Sterbab6dfa352018-03-05 15:31:18 +0100300 struct {
301 int dst_slot;
302 int nr_items;
303 } move;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200304
305 /* this is used for op == MOD_LOG_ROOT_REPLACE */
306 struct tree_mod_root old_root;
307};
308
Jan Schmidt097b8a72012-06-21 11:08:04 +0200309/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700310 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000311 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700312static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000313{
314 return atomic64_inc_return(&fs_info->tree_mod_seq);
315}
316
317/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200318 * This adds a new blocker to the tree mod log's blocker list if the @elem
319 * passed does not already have a sequence number set. So when a caller expects
320 * to record tree modifications, it should ensure to set elem->seq to zero
321 * before calling btrfs_get_tree_mod_seq.
322 * Returns a fresh, unused tree log modification sequence number, even if no new
323 * blocker was added.
324 */
325u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
326 struct seq_list *elem)
327{
David Sterbab1a09f12018-03-05 15:43:41 +0100328 write_lock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200329 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700330 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200331 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
332 }
David Sterbab1a09f12018-03-05 15:43:41 +0100333 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200334
Josef Bacikfcebe452014-05-13 17:30:47 -0700335 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200336}
337
338void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
339 struct seq_list *elem)
340{
341 struct rb_root *tm_root;
342 struct rb_node *node;
343 struct rb_node *next;
344 struct seq_list *cur_elem;
345 struct tree_mod_elem *tm;
346 u64 min_seq = (u64)-1;
347 u64 seq_putting = elem->seq;
348
349 if (!seq_putting)
350 return;
351
Filipe Manana7227ff42020-01-22 12:23:20 +0000352 write_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200353 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200354 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200355
356 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200357 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200358 if (seq_putting > cur_elem->seq) {
359 /*
360 * blocker with lower sequence number exists, we
361 * cannot remove anything from the log
362 */
Filipe Manana7227ff42020-01-22 12:23:20 +0000363 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200364 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200365 }
366 min_seq = cur_elem->seq;
367 }
368 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200369
370 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200371 * anything that's lower than the lowest existing (read: blocked)
372 * sequence number can be removed from the tree.
373 */
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200374 tm_root = &fs_info->tree_mod_log;
375 for (node = rb_first(tm_root); node; node = next) {
376 next = rb_next(node);
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800377 tm = rb_entry(node, struct tree_mod_elem, node);
Filipe Manana6609fee2019-12-06 12:27:39 +0000378 if (tm->seq >= min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200379 continue;
380 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200381 kfree(tm);
382 }
David Sterbab1a09f12018-03-05 15:43:41 +0100383 write_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200384}
385
386/*
387 * key order of the log:
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530388 * node/leaf start address -> sequence
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200389 *
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530390 * The 'start address' is the logical address of the *new* root node
391 * for root replace operations, or the logical address of the affected
392 * block for all other operations.
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200393 */
394static noinline int
395__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
396{
397 struct rb_root *tm_root;
398 struct rb_node **new;
399 struct rb_node *parent = NULL;
400 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200401
David Sterba73e82fe2019-03-27 16:19:55 +0100402 lockdep_assert_held_write(&fs_info->tree_mod_log_lock);
403
Josef Bacikfcebe452014-05-13 17:30:47 -0700404 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200405
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200406 tm_root = &fs_info->tree_mod_log;
407 new = &tm_root->rb_node;
408 while (*new) {
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800409 cur = rb_entry(*new, struct tree_mod_elem, node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200410 parent = *new;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530411 if (cur->logical < tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200412 new = &((*new)->rb_left);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530413 else if (cur->logical > tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200414 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200415 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200416 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200417 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200418 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000419 else
420 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200421 }
422
423 rb_link_node(&tm->node, parent, new);
424 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000425 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200426}
427
Jan Schmidt097b8a72012-06-21 11:08:04 +0200428/*
429 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
430 * returns zero with the tree_mod_log_lock acquired. The caller must hold
431 * this until all tree mod log insertions are recorded in the rb tree and then
David Sterbab1a09f12018-03-05 15:43:41 +0100432 * write unlock fs_info::tree_mod_log_lock.
Jan Schmidt097b8a72012-06-21 11:08:04 +0200433 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200434static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
435 struct extent_buffer *eb) {
436 smp_mb();
437 if (list_empty(&(fs_info)->tree_mod_seq_list))
438 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200439 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200440 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000441
David Sterbab1a09f12018-03-05 15:43:41 +0100442 write_lock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000443 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
David Sterbab1a09f12018-03-05 15:43:41 +0100444 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000445 return 1;
446 }
447
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200448 return 0;
449}
450
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000451/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
452static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
453 struct extent_buffer *eb)
454{
455 smp_mb();
456 if (list_empty(&(fs_info)->tree_mod_seq_list))
457 return 0;
458 if (eb && btrfs_header_level(eb) == 0)
459 return 0;
460
461 return 1;
462}
463
464static struct tree_mod_elem *
465alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
466 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200467{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200468 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200469
Josef Bacikc8cc6342013-07-01 16:18:19 -0400470 tm = kzalloc(sizeof(*tm), flags);
471 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000472 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200473
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530474 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200475 if (op != MOD_LOG_KEY_ADD) {
476 btrfs_node_key(eb, &tm->key, slot);
477 tm->blockptr = btrfs_node_blockptr(eb, slot);
478 }
479 tm->op = op;
480 tm->slot = slot;
481 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000482 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200483
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000484 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200485}
486
David Sterbae09c2ef2018-03-05 15:09:03 +0100487static noinline int tree_mod_log_insert_key(struct extent_buffer *eb, int slot,
488 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200489{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000490 struct tree_mod_elem *tm;
491 int ret;
492
David Sterbae09c2ef2018-03-05 15:09:03 +0100493 if (!tree_mod_need_log(eb->fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200494 return 0;
495
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000496 tm = alloc_tree_mod_elem(eb, slot, op, flags);
497 if (!tm)
498 return -ENOMEM;
499
David Sterbae09c2ef2018-03-05 15:09:03 +0100500 if (tree_mod_dont_log(eb->fs_info, eb)) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000501 kfree(tm);
502 return 0;
503 }
504
David Sterbae09c2ef2018-03-05 15:09:03 +0100505 ret = __tree_mod_log_insert(eb->fs_info, tm);
David Sterbab1a09f12018-03-05 15:43:41 +0100506 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000507 if (ret)
508 kfree(tm);
509
510 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200511}
512
David Sterba6074d452018-03-05 15:03:52 +0100513static noinline int tree_mod_log_insert_move(struct extent_buffer *eb,
514 int dst_slot, int src_slot, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200515{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000516 struct tree_mod_elem *tm = NULL;
517 struct tree_mod_elem **tm_list = NULL;
518 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200519 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000520 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200521
David Sterba6074d452018-03-05 15:03:52 +0100522 if (!tree_mod_need_log(eb->fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200523 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200524
David Sterba176ef8f2017-03-28 14:35:01 +0200525 tm_list = kcalloc(nr_items, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000526 if (!tm_list)
527 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200528
David Sterba176ef8f2017-03-28 14:35:01 +0200529 tm = kzalloc(sizeof(*tm), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000530 if (!tm) {
531 ret = -ENOMEM;
532 goto free_tms;
533 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200534
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530535 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200536 tm->slot = src_slot;
537 tm->move.dst_slot = dst_slot;
538 tm->move.nr_items = nr_items;
539 tm->op = MOD_LOG_MOVE_KEYS;
540
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000541 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
542 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
David Sterba176ef8f2017-03-28 14:35:01 +0200543 MOD_LOG_KEY_REMOVE_WHILE_MOVING, GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000544 if (!tm_list[i]) {
545 ret = -ENOMEM;
546 goto free_tms;
547 }
548 }
549
David Sterba6074d452018-03-05 15:03:52 +0100550 if (tree_mod_dont_log(eb->fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000551 goto free_tms;
552 locked = 1;
553
554 /*
555 * When we override something during the move, we log these removals.
556 * This can only happen when we move towards the beginning of the
557 * buffer, i.e. dst_slot < src_slot.
558 */
559 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
David Sterba6074d452018-03-05 15:03:52 +0100560 ret = __tree_mod_log_insert(eb->fs_info, tm_list[i]);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000561 if (ret)
562 goto free_tms;
563 }
564
David Sterba6074d452018-03-05 15:03:52 +0100565 ret = __tree_mod_log_insert(eb->fs_info, tm);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000566 if (ret)
567 goto free_tms;
David Sterbab1a09f12018-03-05 15:43:41 +0100568 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000569 kfree(tm_list);
570
571 return 0;
572free_tms:
573 for (i = 0; i < nr_items; i++) {
574 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
David Sterba6074d452018-03-05 15:03:52 +0100575 rb_erase(&tm_list[i]->node, &eb->fs_info->tree_mod_log);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000576 kfree(tm_list[i]);
577 }
578 if (locked)
David Sterbab1a09f12018-03-05 15:43:41 +0100579 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000580 kfree(tm_list);
581 kfree(tm);
582
583 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200584}
585
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000586static inline int
587__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
588 struct tree_mod_elem **tm_list,
589 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200590{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000591 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200592 int ret;
593
Jan Schmidt097b8a72012-06-21 11:08:04 +0200594 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000595 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
596 if (ret) {
597 for (j = nritems - 1; j > i; j--)
598 rb_erase(&tm_list[j]->node,
599 &fs_info->tree_mod_log);
600 return ret;
601 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200602 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000603
604 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200605}
606
David Sterba95b757c2018-03-05 15:22:30 +0100607static noinline int tree_mod_log_insert_root(struct extent_buffer *old_root,
608 struct extent_buffer *new_root, int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200609{
David Sterba95b757c2018-03-05 15:22:30 +0100610 struct btrfs_fs_info *fs_info = old_root->fs_info;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000611 struct tree_mod_elem *tm = NULL;
612 struct tree_mod_elem **tm_list = NULL;
613 int nritems = 0;
614 int ret = 0;
615 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200616
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000617 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200618 return 0;
619
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000620 if (log_removal && btrfs_header_level(old_root) > 0) {
621 nritems = btrfs_header_nritems(old_root);
David Sterba31e818f2015-02-20 18:00:26 +0100622 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *),
David Sterbabcc8e072017-03-28 14:35:42 +0200623 GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000624 if (!tm_list) {
625 ret = -ENOMEM;
626 goto free_tms;
627 }
628 for (i = 0; i < nritems; i++) {
629 tm_list[i] = alloc_tree_mod_elem(old_root, i,
David Sterbabcc8e072017-03-28 14:35:42 +0200630 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000631 if (!tm_list[i]) {
632 ret = -ENOMEM;
633 goto free_tms;
634 }
635 }
636 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000637
David Sterbabcc8e072017-03-28 14:35:42 +0200638 tm = kzalloc(sizeof(*tm), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000639 if (!tm) {
640 ret = -ENOMEM;
641 goto free_tms;
642 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200643
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530644 tm->logical = new_root->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200645 tm->old_root.logical = old_root->start;
646 tm->old_root.level = btrfs_header_level(old_root);
647 tm->generation = btrfs_header_generation(old_root);
648 tm->op = MOD_LOG_ROOT_REPLACE;
649
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000650 if (tree_mod_dont_log(fs_info, NULL))
651 goto free_tms;
652
653 if (tm_list)
654 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
655 if (!ret)
656 ret = __tree_mod_log_insert(fs_info, tm);
657
David Sterbab1a09f12018-03-05 15:43:41 +0100658 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000659 if (ret)
660 goto free_tms;
661 kfree(tm_list);
662
663 return ret;
664
665free_tms:
666 if (tm_list) {
667 for (i = 0; i < nritems; i++)
668 kfree(tm_list[i]);
669 kfree(tm_list);
670 }
671 kfree(tm);
672
673 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200674}
675
676static struct tree_mod_elem *
677__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
678 int smallest)
679{
680 struct rb_root *tm_root;
681 struct rb_node *node;
682 struct tree_mod_elem *cur = NULL;
683 struct tree_mod_elem *found = NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200684
David Sterbab1a09f12018-03-05 15:43:41 +0100685 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200686 tm_root = &fs_info->tree_mod_log;
687 node = tm_root->rb_node;
688 while (node) {
Geliang Tang6b4df8b2016-12-19 22:53:41 +0800689 cur = rb_entry(node, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530690 if (cur->logical < start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200691 node = node->rb_left;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530692 } else if (cur->logical > start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200693 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200694 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200695 node = node->rb_left;
696 } else if (!smallest) {
697 /* we want the node with the highest seq */
698 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200699 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200700 found = cur;
701 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200702 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200703 /* we want the node with the smallest seq */
704 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200705 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200706 found = cur;
707 node = node->rb_right;
708 } else {
709 found = cur;
710 break;
711 }
712 }
David Sterbab1a09f12018-03-05 15:43:41 +0100713 read_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200714
715 return found;
716}
717
718/*
719 * this returns the element from the log with the smallest time sequence
720 * value that's in the log (the oldest log item). any element with a time
721 * sequence lower than min_seq will be ignored.
722 */
723static struct tree_mod_elem *
724tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
725 u64 min_seq)
726{
727 return __tree_mod_log_search(fs_info, start, min_seq, 1);
728}
729
730/*
731 * this returns the element from the log with the largest time sequence
732 * value that's in the log (the most recent log item). any element with
733 * a time sequence lower than min_seq will be ignored.
734 */
735static struct tree_mod_elem *
736tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
737{
738 return __tree_mod_log_search(fs_info, start, min_seq, 0);
739}
740
David Sterbaed874f02019-03-20 14:22:04 +0100741static noinline int tree_mod_log_eb_copy(struct extent_buffer *dst,
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200742 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000743 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200744{
David Sterbaed874f02019-03-20 14:22:04 +0100745 struct btrfs_fs_info *fs_info = dst->fs_info;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000746 int ret = 0;
747 struct tree_mod_elem **tm_list = NULL;
748 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200749 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000750 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200751
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000752 if (!tree_mod_need_log(fs_info, NULL))
753 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200754
Josef Bacikc8cc6342013-07-01 16:18:19 -0400755 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000756 return 0;
757
David Sterba31e818f2015-02-20 18:00:26 +0100758 tm_list = kcalloc(nr_items * 2, sizeof(struct tree_mod_elem *),
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000759 GFP_NOFS);
760 if (!tm_list)
761 return -ENOMEM;
762
763 tm_list_add = tm_list;
764 tm_list_rem = tm_list + nr_items;
765 for (i = 0; i < nr_items; i++) {
766 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
767 MOD_LOG_KEY_REMOVE, GFP_NOFS);
768 if (!tm_list_rem[i]) {
769 ret = -ENOMEM;
770 goto free_tms;
771 }
772
773 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
774 MOD_LOG_KEY_ADD, GFP_NOFS);
775 if (!tm_list_add[i]) {
776 ret = -ENOMEM;
777 goto free_tms;
778 }
779 }
780
781 if (tree_mod_dont_log(fs_info, NULL))
782 goto free_tms;
783 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200784
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200785 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000786 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
787 if (ret)
788 goto free_tms;
789 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
790 if (ret)
791 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200792 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000793
David Sterbab1a09f12018-03-05 15:43:41 +0100794 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000795 kfree(tm_list);
796
797 return 0;
798
799free_tms:
800 for (i = 0; i < nr_items * 2; i++) {
801 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
802 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
803 kfree(tm_list[i]);
804 }
805 if (locked)
David Sterbab1a09f12018-03-05 15:43:41 +0100806 write_unlock(&fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000807 kfree(tm_list);
808
809 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200810}
811
David Sterbadb7279a2018-03-05 15:14:25 +0100812static noinline int tree_mod_log_free_eb(struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200813{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000814 struct tree_mod_elem **tm_list = NULL;
815 int nritems = 0;
816 int i;
817 int ret = 0;
818
819 if (btrfs_header_level(eb) == 0)
820 return 0;
821
David Sterbadb7279a2018-03-05 15:14:25 +0100822 if (!tree_mod_need_log(eb->fs_info, NULL))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000823 return 0;
824
825 nritems = btrfs_header_nritems(eb);
David Sterba31e818f2015-02-20 18:00:26 +0100826 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000827 if (!tm_list)
828 return -ENOMEM;
829
830 for (i = 0; i < nritems; i++) {
831 tm_list[i] = alloc_tree_mod_elem(eb, i,
832 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
833 if (!tm_list[i]) {
834 ret = -ENOMEM;
835 goto free_tms;
836 }
837 }
838
David Sterbadb7279a2018-03-05 15:14:25 +0100839 if (tree_mod_dont_log(eb->fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000840 goto free_tms;
841
David Sterbadb7279a2018-03-05 15:14:25 +0100842 ret = __tree_mod_log_free_eb(eb->fs_info, tm_list, nritems);
David Sterbab1a09f12018-03-05 15:43:41 +0100843 write_unlock(&eb->fs_info->tree_mod_log_lock);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000844 if (ret)
845 goto free_tms;
846 kfree(tm_list);
847
848 return 0;
849
850free_tms:
851 for (i = 0; i < nritems; i++)
852 kfree(tm_list[i]);
853 kfree(tm_list);
854
855 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200856}
857
Chris Masond352ac62008-09-29 15:18:18 -0400858/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400859 * check if the tree block can be shared by multiple trees
860 */
861int btrfs_block_can_be_shared(struct btrfs_root *root,
862 struct extent_buffer *buf)
863{
864 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400865 * Tree blocks not in reference counted trees and tree roots
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400866 * are never shared. If a block was allocated after the last
867 * snapshot and the block was not allocated by tree relocation,
868 * we know the block is not shared.
869 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800870 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400871 buf != root->node && buf != root->commit_root &&
872 (btrfs_header_generation(buf) <=
873 btrfs_root_last_snapshot(&root->root_item) ||
874 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
875 return 1;
Nikolay Borisova79865c2018-06-21 09:45:00 +0300876
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400877 return 0;
878}
879
880static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
881 struct btrfs_root *root,
882 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400883 struct extent_buffer *cow,
884 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400885{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400886 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400887 u64 refs;
888 u64 owner;
889 u64 flags;
890 u64 new_flags = 0;
891 int ret;
892
893 /*
894 * Backrefs update rules:
895 *
896 * Always use full backrefs for extent pointers in tree block
897 * allocated by tree relocation.
898 *
899 * If a shared tree block is no longer referenced by its owner
900 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
901 * use full backrefs for extent pointers in tree block.
902 *
903 * If a tree block is been relocating
904 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
905 * use full backrefs for extent pointers in tree block.
906 * The reason for this is some operations (such as drop tree)
907 * are only allowed for blocks use full backrefs.
908 */
909
910 if (btrfs_block_can_be_shared(root, buf)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400911 ret = btrfs_lookup_extent_info(trans, fs_info, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -0500912 btrfs_header_level(buf), 1,
913 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700914 if (ret)
915 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -0700916 if (refs == 0) {
917 ret = -EROFS;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400918 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fashehe5df9572011-08-29 14:17:04 -0700919 return ret;
920 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400921 } else {
922 refs = 1;
923 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
924 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
925 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
926 else
927 flags = 0;
928 }
929
930 owner = btrfs_header_owner(buf);
931 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
932 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
933
934 if (refs > 1) {
935 if ((owner == root->root_key.objectid ||
936 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
937 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -0700938 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500939 if (ret)
940 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400941
942 if (root->root_key.objectid ==
943 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -0700944 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500945 if (ret)
946 return ret;
Josef Bacike339a6b2014-07-02 10:54:25 -0700947 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500948 if (ret)
949 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400950 }
951 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
952 } else {
953
954 if (root->root_key.objectid ==
955 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700956 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400957 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700958 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500959 if (ret)
960 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961 }
962 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -0400963 int level = btrfs_header_level(buf);
964
David Sterbaf5c8daa2019-03-20 11:43:36 +0100965 ret = btrfs_set_disk_extent_flags(trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400966 buf->start,
967 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -0400968 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -0700969 if (ret)
970 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400971 }
972 } else {
973 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
974 if (root->root_key.objectid ==
975 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700976 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400977 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700978 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500979 if (ret)
980 return ret;
Josef Bacike339a6b2014-07-02 10:54:25 -0700981 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney692826b2017-11-21 13:58:49 -0500982 if (ret)
983 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400984 }
David Sterba6a884d7d2019-03-20 14:30:02 +0100985 btrfs_clean_tree_block(buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400986 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400987 }
988 return 0;
989}
990
Filipe Mananaa6279472019-01-25 11:48:51 +0000991static struct extent_buffer *alloc_tree_block_no_bg_flush(
992 struct btrfs_trans_handle *trans,
993 struct btrfs_root *root,
994 u64 parent_start,
995 const struct btrfs_disk_key *disk_key,
996 int level,
997 u64 hint,
998 u64 empty_size)
999{
1000 struct btrfs_fs_info *fs_info = root->fs_info;
1001 struct extent_buffer *ret;
1002
1003 /*
1004 * If we are COWing a node/leaf from the extent, chunk, device or free
1005 * space trees, make sure that we do not finish block group creation of
1006 * pending block groups. We do this to avoid a deadlock.
1007 * COWing can result in allocation of a new chunk, and flushing pending
1008 * block groups (btrfs_create_pending_block_groups()) can be triggered
1009 * when finishing allocation of a new chunk. Creation of a pending block
1010 * group modifies the extent, chunk, device and free space trees,
1011 * therefore we could deadlock with ourselves since we are holding a
1012 * lock on an extent buffer that btrfs_create_pending_block_groups() may
1013 * try to COW later.
1014 * For similar reasons, we also need to delay flushing pending block
1015 * groups when splitting a leaf or node, from one of those trees, since
1016 * we are holding a write lock on it and its parent or when inserting a
1017 * new root node for one of those trees.
1018 */
1019 if (root == fs_info->extent_root ||
1020 root == fs_info->chunk_root ||
1021 root == fs_info->dev_root ||
1022 root == fs_info->free_space_root)
1023 trans->can_flush_pending_bgs = false;
1024
1025 ret = btrfs_alloc_tree_block(trans, root, parent_start,
1026 root->root_key.objectid, disk_key, level,
1027 hint, empty_size);
1028 trans->can_flush_pending_bgs = true;
1029
1030 return ret;
1031}
1032
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001033/*
Chris Masond3977122009-01-05 21:25:51 -05001034 * does the dirty work in cow of a single block. The parent block (if
1035 * supplied) is updated to point to the new cow copy. The new buffer is marked
1036 * dirty and returned locked. If you modify the block it needs to be marked
1037 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001038 *
1039 * search_start -- an allocation hint for the new block
1040 *
Chris Masond3977122009-01-05 21:25:51 -05001041 * empty_size -- a hint that you plan on doing more cow. This is the size in
1042 * bytes the allocator should try to find free next to the block it returns.
1043 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001044 */
Chris Masond3977122009-01-05 21:25:51 -05001045static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001046 struct btrfs_root *root,
1047 struct extent_buffer *buf,
1048 struct extent_buffer *parent, int parent_slot,
1049 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001050 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001051{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001052 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001053 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001054 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001055 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001056 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001057 int unlock_orig = 0;
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001058 u64 parent_start = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001059
Chris Mason925baed2008-06-25 16:01:30 -04001060 if (*cow_ret == buf)
1061 unlock_orig = 1;
1062
Chris Masonb9447ef82009-03-09 11:45:38 -04001063 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001064
Miao Xie27cdeb72014-04-02 19:51:05 +08001065 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001066 trans->transid != fs_info->running_transaction->transid);
Miao Xie27cdeb72014-04-02 19:51:05 +08001067 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1068 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001069
Chris Mason7bb86312007-12-11 09:25:06 -05001070 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001071
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072 if (level == 0)
1073 btrfs_item_key(buf, &disk_key, 0);
1074 else
1075 btrfs_node_key(buf, &disk_key, 0);
1076
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001077 if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent)
1078 parent_start = parent->start;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001079
Filipe Mananaa6279472019-01-25 11:48:51 +00001080 cow = alloc_tree_block_no_bg_flush(trans, root, parent_start, &disk_key,
1081 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001082 if (IS_ERR(cow))
1083 return PTR_ERR(cow);
1084
Chris Masonb4ce94d2009-02-04 09:25:08 -05001085 /* cow is set to blocking by btrfs_init_new_buffer */
1086
David Sterba58e80122016-11-08 18:30:31 +01001087 copy_extent_buffer_full(cow, buf);
Chris Masondb945352007-10-15 16:15:53 -04001088 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001089 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001090 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1091 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1092 BTRFS_HEADER_FLAG_RELOC);
1093 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1094 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1095 else
1096 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001097
Nikolay Borisovde37aa52018-10-30 16:43:24 +02001098 write_extent_buffer_fsid(cow, fs_info->fs_devices->metadata_uuid);
Yan Zheng2b820322008-11-17 21:11:30 -05001099
Mark Fashehbe1a5562011-08-08 13:20:18 -07001100 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001101 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001102 btrfs_abort_transaction(trans, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001103 return ret;
1104 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001105
Miao Xie27cdeb72014-04-02 19:51:05 +08001106 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001107 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
Zhaolei93314e32015-08-06 21:56:58 +08001108 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001109 btrfs_abort_transaction(trans, ret);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001110 return ret;
Zhaolei93314e32015-08-06 21:56:58 +08001111 }
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001112 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001113
Chris Mason6702ed42007-08-07 16:15:09 -04001114 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001115 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001116 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1117 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1118 parent_start = buf->start;
Chris Mason925baed2008-06-25 16:01:30 -04001119
David Sterba67439da2019-10-08 13:28:47 +02001120 atomic_inc(&cow->refs);
David Sterbad9d19a02018-03-05 16:35:29 +01001121 ret = tree_mod_log_insert_root(root->node, cow, 1);
1122 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04001123 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001124
Yan, Zhengf0486c62010-05-16 10:46:25 -04001125 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001126 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001127 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001128 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001129 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001130 WARN_ON(trans->transid != btrfs_header_generation(parent));
David Sterbae09c2ef2018-03-05 15:09:03 +01001131 tree_mod_log_insert_key(parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001132 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001133 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001134 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001135 btrfs_set_node_ptr_generation(parent, parent_slot,
1136 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001137 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001138 if (last_ref) {
David Sterbadb7279a2018-03-05 15:14:25 +01001139 ret = tree_mod_log_free_eb(buf);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001140 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001141 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001142 return ret;
1143 }
1144 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001145 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001146 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001147 }
Chris Mason925baed2008-06-25 16:01:30 -04001148 if (unlock_orig)
1149 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001150 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001151 btrfs_mark_buffer_dirty(cow);
1152 *cow_ret = cow;
1153 return 0;
1154}
1155
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001156/*
1157 * returns the logical address of the oldest predecessor of the given root.
1158 * entries older than time_seq are ignored.
1159 */
David Sterbabcd24da2018-03-05 15:33:18 +01001160static struct tree_mod_elem *__tree_mod_log_oldest_root(
1161 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001162{
1163 struct tree_mod_elem *tm;
1164 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001165 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001166 int looped = 0;
1167
1168 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001169 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001170
1171 /*
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301172 * the very last operation that's logged for a root is the
1173 * replacement operation (if it is replaced at all). this has
1174 * the logical address of the *new* root, making it the very
1175 * first operation that's logged for this root.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001176 */
1177 while (1) {
David Sterbabcd24da2018-03-05 15:33:18 +01001178 tm = tree_mod_log_search_oldest(eb_root->fs_info, root_logical,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001179 time_seq);
1180 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001181 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001182 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001183 * if there are no tree operation for the oldest root, we simply
1184 * return it. this should only happen if that (old) root is at
1185 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001186 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001187 if (!tm)
1188 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001189
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001190 /*
1191 * if there's an operation that's not a root replacement, we
1192 * found the oldest version of our root. normally, we'll find a
1193 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1194 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001195 if (tm->op != MOD_LOG_ROOT_REPLACE)
1196 break;
1197
1198 found = tm;
1199 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001200 looped = 1;
1201 }
1202
Jan Schmidta95236d2012-06-05 16:41:24 +02001203 /* if there's no old root to return, return what we found instead */
1204 if (!found)
1205 found = tm;
1206
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001207 return found;
1208}
1209
1210/*
1211 * tm is a pointer to the first operation to rewind within eb. then, all
Nicholas D Steeves01327612016-05-19 21:18:45 -04001212 * previous operations will be rewound (until we reach something older than
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001213 * time_seq).
1214 */
1215static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001216__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1217 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001218{
1219 u32 n;
1220 struct rb_node *next;
1221 struct tree_mod_elem *tm = first_tm;
1222 unsigned long o_dst;
1223 unsigned long o_src;
1224 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1225
1226 n = btrfs_header_nritems(eb);
David Sterbab1a09f12018-03-05 15:43:41 +01001227 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001228 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001229 /*
1230 * all the operations are recorded with the operator used for
1231 * the modification. as we're going backwards, we do the
1232 * opposite of each operation here.
1233 */
1234 switch (tm->op) {
1235 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1236 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001237 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001238 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001239 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001240 btrfs_set_node_key(eb, &tm->key, tm->slot);
1241 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1242 btrfs_set_node_ptr_generation(eb, tm->slot,
1243 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001244 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001245 break;
1246 case MOD_LOG_KEY_REPLACE:
1247 BUG_ON(tm->slot >= n);
1248 btrfs_set_node_key(eb, &tm->key, tm->slot);
1249 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1250 btrfs_set_node_ptr_generation(eb, tm->slot,
1251 tm->generation);
1252 break;
1253 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001254 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001255 n--;
1256 break;
1257 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001258 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1259 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1260 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001261 tm->move.nr_items * p_size);
1262 break;
1263 case MOD_LOG_ROOT_REPLACE:
1264 /*
1265 * this operation is special. for roots, this must be
1266 * handled explicitly before rewinding.
1267 * for non-roots, this operation may exist if the node
1268 * was a root: root A -> child B; then A gets empty and
1269 * B is promoted to the new root. in the mod log, we'll
1270 * have a root-replace operation for B, a tree block
1271 * that is no root. we simply ignore that operation.
1272 */
1273 break;
1274 }
1275 next = rb_next(&tm->node);
1276 if (!next)
1277 break;
Geliang Tang6b4df8b2016-12-19 22:53:41 +08001278 tm = rb_entry(next, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301279 if (tm->logical != first_tm->logical)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001280 break;
1281 }
David Sterbab1a09f12018-03-05 15:43:41 +01001282 read_unlock(&fs_info->tree_mod_log_lock);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001283 btrfs_set_header_nritems(eb, n);
1284}
1285
Jan Schmidt47fb0912013-04-13 13:19:55 +00001286/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04001287 * Called with eb read locked. If the buffer cannot be rewound, the same buffer
Jan Schmidt47fb0912013-04-13 13:19:55 +00001288 * is returned. If rewind operations happen, a fresh buffer is returned. The
1289 * returned buffer is always read-locked. If the returned buffer is not the
1290 * input buffer, the lock on the input buffer is released and the input buffer
1291 * is freed (its refcount is decremented).
1292 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001293static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001294tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1295 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001296{
1297 struct extent_buffer *eb_rewin;
1298 struct tree_mod_elem *tm;
1299
1300 if (!time_seq)
1301 return eb;
1302
1303 if (btrfs_header_level(eb) == 0)
1304 return eb;
1305
1306 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1307 if (!tm)
1308 return eb;
1309
Josef Bacik9ec72672013-08-07 16:57:23 -04001310 btrfs_set_path_blocking(path);
David Sterba300aa892018-04-04 02:00:17 +02001311 btrfs_set_lock_blocking_read(eb);
Josef Bacik9ec72672013-08-07 16:57:23 -04001312
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001313 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1314 BUG_ON(tm->slot != 0);
Jeff Mahoneyda170662016-06-15 09:22:56 -04001315 eb_rewin = alloc_dummy_extent_buffer(fs_info, eb->start);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001316 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001317 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001318 free_extent_buffer(eb);
1319 return NULL;
1320 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001321 btrfs_set_header_bytenr(eb_rewin, eb->start);
1322 btrfs_set_header_backref_rev(eb_rewin,
1323 btrfs_header_backref_rev(eb));
1324 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001325 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001326 } else {
1327 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001328 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001329 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001330 free_extent_buffer(eb);
1331 return NULL;
1332 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001333 }
1334
Josef Bacik9ec72672013-08-07 16:57:23 -04001335 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001336 free_extent_buffer(eb);
1337
Jan Schmidt47fb0912013-04-13 13:19:55 +00001338 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001339 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001340 WARN_ON(btrfs_header_nritems(eb_rewin) >
Jeff Mahoneyda170662016-06-15 09:22:56 -04001341 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001342
1343 return eb_rewin;
1344}
1345
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001346/*
1347 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1348 * value. If there are no changes, the current root->root_node is returned. If
1349 * anything changed in between, there's a fresh buffer allocated on which the
1350 * rewind operations are done. In any case, the returned buffer is read locked.
1351 * Returns NULL on error (with no locks held).
1352 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001353static inline struct extent_buffer *
1354get_old_root(struct btrfs_root *root, u64 time_seq)
1355{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001356 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001357 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001358 struct extent_buffer *eb = NULL;
1359 struct extent_buffer *eb_root;
Filipe Mananaefad8a82019-08-12 19:14:29 +01001360 u64 eb_root_owner = 0;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001361 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001362 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001363 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001364 u64 logical;
Qu Wenruo581c1762018-03-29 09:08:11 +08001365 int level;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001366
Jan Schmidt30b04632013-04-13 13:19:54 +00001367 eb_root = btrfs_read_lock_root_node(root);
David Sterbabcd24da2018-03-05 15:33:18 +01001368 tm = __tree_mod_log_oldest_root(eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001369 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001370 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001371
Jan Schmidta95236d2012-06-05 16:41:24 +02001372 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1373 old_root = &tm->old_root;
1374 old_generation = tm->generation;
1375 logical = old_root->logical;
Qu Wenruo581c1762018-03-29 09:08:11 +08001376 level = old_root->level;
Jan Schmidta95236d2012-06-05 16:41:24 +02001377 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001378 logical = eb_root->start;
Qu Wenruo581c1762018-03-29 09:08:11 +08001379 level = btrfs_header_level(eb_root);
Jan Schmidta95236d2012-06-05 16:41:24 +02001380 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001381
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001382 tm = tree_mod_log_search(fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001383 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001384 btrfs_tree_read_unlock(eb_root);
1385 free_extent_buffer(eb_root);
Qu Wenruo581c1762018-03-29 09:08:11 +08001386 old = read_tree_block(fs_info, logical, 0, level, NULL);
Liu Bo64c043d2015-05-25 17:30:15 +08001387 if (WARN_ON(IS_ERR(old) || !extent_buffer_uptodate(old))) {
1388 if (!IS_ERR(old))
1389 free_extent_buffer(old);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001390 btrfs_warn(fs_info,
1391 "failed to read tree block %llu from get_old_root",
1392 logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001393 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001394 eb = btrfs_clone_extent_buffer(old);
1395 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001396 }
1397 } else if (old_root) {
Filipe Mananaefad8a82019-08-12 19:14:29 +01001398 eb_root_owner = btrfs_header_owner(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001399 btrfs_tree_read_unlock(eb_root);
1400 free_extent_buffer(eb_root);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001401 eb = alloc_dummy_extent_buffer(fs_info, logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001402 } else {
David Sterba300aa892018-04-04 02:00:17 +02001403 btrfs_set_lock_blocking_read(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001404 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001405 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001406 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001407 }
1408
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001409 if (!eb)
1410 return NULL;
1411 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001412 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001413 btrfs_set_header_bytenr(eb, eb->start);
1414 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Filipe Mananaefad8a82019-08-12 19:14:29 +01001415 btrfs_set_header_owner(eb, eb_root_owner);
Jan Schmidta95236d2012-06-05 16:41:24 +02001416 btrfs_set_header_level(eb, old_root->level);
1417 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001418 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001419 if (tm)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001420 __tree_mod_log_rewind(fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001421 else
1422 WARN_ON(btrfs_header_level(eb) != 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001423 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001424
1425 return eb;
1426}
1427
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001428int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1429{
1430 struct tree_mod_elem *tm;
1431 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001432 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001433
David Sterbabcd24da2018-03-05 15:33:18 +01001434 tm = __tree_mod_log_oldest_root(eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001435 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1436 level = tm->old_root.level;
1437 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001438 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001439 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001440 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001441
1442 return level;
1443}
1444
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001445static inline int should_cow_block(struct btrfs_trans_handle *trans,
1446 struct btrfs_root *root,
1447 struct extent_buffer *buf)
1448{
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04001449 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001450 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02001451
David Sterbad1980132018-03-16 02:39:40 +01001452 /* Ensure we can see the FORCE_COW bit */
1453 smp_mb__before_atomic();
Liu Bof1ebcc72011-11-14 20:48:06 -05001454
1455 /*
1456 * We do not need to cow a block if
1457 * 1) this block is not created or changed in this transaction;
1458 * 2) this block does not belong to TREE_RELOC tree;
1459 * 3) the root is not forced COW.
1460 *
1461 * What is forced COW:
Nicholas D Steeves01327612016-05-19 21:18:45 -04001462 * when we create snapshot during committing the transaction,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001463 * after we've finished copying src root, we must COW the shared
Liu Bof1ebcc72011-11-14 20:48:06 -05001464 * block to ensure the metadata consistency.
1465 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001466 if (btrfs_header_generation(buf) == trans->transid &&
1467 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1468 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001469 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001470 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001471 return 0;
1472 return 1;
1473}
1474
Chris Masond352ac62008-09-29 15:18:18 -04001475/*
1476 * cows a single block, see __btrfs_cow_block for the real work.
Nicholas D Steeves01327612016-05-19 21:18:45 -04001477 * This version of it has extra checks so that a block isn't COWed more than
Chris Masond352ac62008-09-29 15:18:18 -04001478 * once per transaction, as long as it hasn't been written yet
1479 */
Chris Masond3977122009-01-05 21:25:51 -05001480noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001481 struct btrfs_root *root, struct extent_buffer *buf,
1482 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001483 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001484{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001485 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6702ed42007-08-07 16:15:09 -04001486 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001487 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001488
Josef Bacik83354f02018-11-30 11:52:13 -05001489 if (test_bit(BTRFS_ROOT_DELETING, &root->state))
1490 btrfs_err(fs_info,
1491 "COW'ing blocks on a fs root that's being dropped");
1492
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001493 if (trans->transaction != fs_info->running_transaction)
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001494 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001495 trans->transid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001496 fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001497
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001498 if (trans->transid != fs_info->generation)
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001499 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001500 trans->transid, fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001501
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001502 if (!should_cow_block(trans, root, buf)) {
Jeff Mahoney64c12922016-06-08 00:36:38 -04001503 trans->dirty = true;
Chris Mason02217ed2007-03-02 16:08:05 -05001504 *cow_ret = buf;
1505 return 0;
1506 }
Chris Masonc4876852009-02-04 09:24:25 -05001507
Byongho Leeee221842015-12-15 01:42:10 +09001508 search_start = buf->start & ~((u64)SZ_1G - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001509
1510 if (parent)
David Sterba8bead252018-04-04 02:03:48 +02001511 btrfs_set_lock_blocking_write(parent);
1512 btrfs_set_lock_blocking_write(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001513
Qu Wenruof616f5c2019-01-23 15:15:17 +08001514 /*
1515 * Before CoWing this block for later modification, check if it's
1516 * the subtree root and do the delayed subtree trace if needed.
1517 *
1518 * Also We don't care about the error, as it's handled internally.
1519 */
1520 btrfs_qgroup_trace_subtree_after_cow(trans, root, buf);
Chris Masonf510cfe2007-10-15 16:14:48 -04001521 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001522 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001523
1524 trace_btrfs_cow_block(root, buf, *cow_ret);
1525
Chris Masonf510cfe2007-10-15 16:14:48 -04001526 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001527}
1528
Chris Masond352ac62008-09-29 15:18:18 -04001529/*
1530 * helper function for defrag to decide if two blocks pointed to by a
1531 * node are actually close by
1532 */
Chris Mason6b800532007-10-15 16:17:34 -04001533static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001534{
Chris Mason6b800532007-10-15 16:17:34 -04001535 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001536 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001537 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001538 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001539 return 0;
1540}
1541
Chris Mason081e9572007-11-06 10:26:24 -05001542/*
1543 * compare two keys in a memcmp fashion
1544 */
Omar Sandoval310712b2017-01-17 23:24:37 -08001545static int comp_keys(const struct btrfs_disk_key *disk,
1546 const struct btrfs_key *k2)
Chris Mason081e9572007-11-06 10:26:24 -05001547{
1548 struct btrfs_key k1;
1549
1550 btrfs_disk_key_to_cpu(&k1, disk);
1551
Diego Calleja20736ab2009-07-24 11:06:52 -04001552 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001553}
1554
Josef Bacikf3465ca2008-11-12 14:19:50 -05001555/*
1556 * same as comp_keys only with two btrfs_key's
1557 */
David Sterbae1f60a62019-10-01 19:57:39 +02001558int __pure btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001559{
1560 if (k1->objectid > k2->objectid)
1561 return 1;
1562 if (k1->objectid < k2->objectid)
1563 return -1;
1564 if (k1->type > k2->type)
1565 return 1;
1566 if (k1->type < k2->type)
1567 return -1;
1568 if (k1->offset > k2->offset)
1569 return 1;
1570 if (k1->offset < k2->offset)
1571 return -1;
1572 return 0;
1573}
Chris Mason081e9572007-11-06 10:26:24 -05001574
Chris Masond352ac62008-09-29 15:18:18 -04001575/*
1576 * this is used by the defrag code to go through all the
1577 * leaves pointed to by a node and reallocate them so that
1578 * disk order is close to key order
1579 */
Chris Mason6702ed42007-08-07 16:15:09 -04001580int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001581 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001582 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001583 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001584{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001585 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason6b800532007-10-15 16:17:34 -04001586 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001587 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001588 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001589 u64 search_start = *last_ret;
1590 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001591 u64 other;
1592 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001593 int end_slot;
1594 int i;
1595 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001596 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001597 int uptodate;
1598 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001599 int progress_passed = 0;
1600 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001601
Chris Mason5708b952007-10-25 15:43:18 -04001602 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001603
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001604 WARN_ON(trans->transaction != fs_info->running_transaction);
1605 WARN_ON(trans->transid != fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001606
Chris Mason6b800532007-10-15 16:17:34 -04001607 parent_nritems = btrfs_header_nritems(parent);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001608 blocksize = fs_info->nodesize;
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001609 end_slot = parent_nritems - 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001610
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001611 if (parent_nritems <= 1)
Chris Mason6702ed42007-08-07 16:15:09 -04001612 return 0;
1613
David Sterba8bead252018-04-04 02:03:48 +02001614 btrfs_set_lock_blocking_write(parent);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001615
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001616 for (i = start_slot; i <= end_slot; i++) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001617 struct btrfs_key first_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001618 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001619
Chris Mason081e9572007-11-06 10:26:24 -05001620 btrfs_node_key(parent, &disk_key, i);
1621 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1622 continue;
1623
1624 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001625 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001626 gen = btrfs_node_ptr_generation(parent, i);
Qu Wenruo581c1762018-03-29 09:08:11 +08001627 btrfs_node_key_to_cpu(parent, &first_key, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001628 if (last_block == 0)
1629 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001630
Chris Mason6702ed42007-08-07 16:15:09 -04001631 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001632 other = btrfs_node_blockptr(parent, i - 1);
1633 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001634 }
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001635 if (!close && i < end_slot) {
Chris Mason6b800532007-10-15 16:17:34 -04001636 other = btrfs_node_blockptr(parent, i + 1);
1637 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001638 }
Chris Masone9d0b132007-08-10 14:06:19 -04001639 if (close) {
1640 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001641 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001642 }
Chris Mason6702ed42007-08-07 16:15:09 -04001643
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001644 cur = find_extent_buffer(fs_info, blocknr);
Chris Mason6b800532007-10-15 16:17:34 -04001645 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001646 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001647 else
1648 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001649 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001650 if (!cur) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001651 cur = read_tree_block(fs_info, blocknr, gen,
1652 parent_level - 1,
1653 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08001654 if (IS_ERR(cur)) {
1655 return PTR_ERR(cur);
1656 } else if (!extent_buffer_uptodate(cur)) {
Josef Bacik416bc652013-04-23 14:17:42 -04001657 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001658 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001659 }
Chris Mason6b800532007-10-15 16:17:34 -04001660 } else if (!uptodate) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001661 err = btrfs_read_buffer(cur, gen,
1662 parent_level - 1,&first_key);
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001663 if (err) {
1664 free_extent_buffer(cur);
1665 return err;
1666 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001667 }
Chris Mason6702ed42007-08-07 16:15:09 -04001668 }
Chris Masone9d0b132007-08-10 14:06:19 -04001669 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001670 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001671
Chris Masone7a84562008-06-25 16:01:31 -04001672 btrfs_tree_lock(cur);
David Sterba8bead252018-04-04 02:03:48 +02001673 btrfs_set_lock_blocking_write(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001674 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001675 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001676 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001677 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001678 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001679 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001680 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001681 break;
Yan252c38f2007-08-29 09:11:44 -04001682 }
Chris Masone7a84562008-06-25 16:01:31 -04001683 search_start = cur->start;
1684 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001685 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001686 btrfs_tree_unlock(cur);
1687 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001688 }
1689 return err;
1690}
1691
Chris Mason74123bd2007-02-02 11:05:29 -05001692/*
Chris Mason5f39d392007-10-15 16:14:19 -04001693 * search for key in the extent_buffer. The items start at offset p,
1694 * and they are item_size apart. There are 'max' items in p.
1695 *
Chris Mason74123bd2007-02-02 11:05:29 -05001696 * the slot in the array is returned via slot, and it points to
1697 * the place where you would insert key if it is not found in
1698 * the array.
1699 *
1700 * slot may point to max if the key is bigger than all of the keys
1701 */
Chris Masone02119d2008-09-05 16:13:11 -04001702static noinline int generic_bin_search(struct extent_buffer *eb,
Omar Sandoval310712b2017-01-17 23:24:37 -08001703 unsigned long p, int item_size,
1704 const struct btrfs_key *key,
Chris Masone02119d2008-09-05 16:13:11 -04001705 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001706{
1707 int low = 0;
1708 int high = max;
1709 int mid;
1710 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001711 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001712 struct btrfs_disk_key unaligned;
1713 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001714 char *kaddr = NULL;
1715 unsigned long map_start = 0;
1716 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001717 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001718
Liu Bo5e24e9a2016-06-23 16:32:45 -07001719 if (low > high) {
1720 btrfs_err(eb->fs_info,
1721 "%s: low (%d) > high (%d) eb %llu owner %llu level %d",
1722 __func__, low, high, eb->start,
1723 btrfs_header_owner(eb), btrfs_header_level(eb));
1724 return -EINVAL;
1725 }
1726
Chris Masond3977122009-01-05 21:25:51 -05001727 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001728 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001729 offset = p + mid * item_size;
1730
Chris Masona6591712011-07-19 12:04:14 -04001731 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001732 (offset + sizeof(struct btrfs_disk_key)) >
1733 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001734
1735 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001736 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001737 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001738
Chris Mason479965d2007-10-15 16:14:27 -04001739 if (!err) {
1740 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1741 map_start);
Liu Bo415b35a2016-06-17 19:16:21 -07001742 } else if (err == 1) {
Chris Mason479965d2007-10-15 16:14:27 -04001743 read_extent_buffer(eb, &unaligned,
1744 offset, sizeof(unaligned));
1745 tmp = &unaligned;
Liu Bo415b35a2016-06-17 19:16:21 -07001746 } else {
1747 return err;
Chris Mason479965d2007-10-15 16:14:27 -04001748 }
1749
Chris Mason5f39d392007-10-15 16:14:19 -04001750 } else {
1751 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1752 map_start);
1753 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001754 ret = comp_keys(tmp, key);
1755
1756 if (ret < 0)
1757 low = mid + 1;
1758 else if (ret > 0)
1759 high = mid;
1760 else {
1761 *slot = mid;
1762 return 0;
1763 }
1764 }
1765 *slot = low;
1766 return 1;
1767}
1768
Chris Mason97571fd2007-02-24 13:39:08 -05001769/*
1770 * simple bin_search frontend that does the right thing for
1771 * leaves vs nodes
1772 */
Nikolay Borisova74b35e2017-12-08 16:27:43 +02001773int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
1774 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001775{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001776 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001777 return generic_bin_search(eb,
1778 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001779 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001780 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001781 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001782 else
Chris Mason5f39d392007-10-15 16:14:19 -04001783 return generic_bin_search(eb,
1784 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001785 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001786 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001787 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001788}
1789
Yan, Zhengf0486c62010-05-16 10:46:25 -04001790static void root_add_used(struct btrfs_root *root, u32 size)
1791{
1792 spin_lock(&root->accounting_lock);
1793 btrfs_set_root_used(&root->root_item,
1794 btrfs_root_used(&root->root_item) + size);
1795 spin_unlock(&root->accounting_lock);
1796}
1797
1798static void root_sub_used(struct btrfs_root *root, u32 size)
1799{
1800 spin_lock(&root->accounting_lock);
1801 btrfs_set_root_used(&root->root_item,
1802 btrfs_root_used(&root->root_item) - size);
1803 spin_unlock(&root->accounting_lock);
1804}
1805
Chris Masond352ac62008-09-29 15:18:18 -04001806/* given a node and slot number, this reads the blocks it points to. The
1807 * extent buffer is returned with a reference taken (but unlocked).
Chris Masond352ac62008-09-29 15:18:18 -04001808 */
David Sterba4b231ae2019-08-21 19:16:27 +02001809struct extent_buffer *btrfs_read_node_slot(struct extent_buffer *parent,
1810 int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001811{
Chris Masonca7a79a2008-05-12 12:59:19 -04001812 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001813 struct extent_buffer *eb;
Qu Wenruo581c1762018-03-29 09:08:11 +08001814 struct btrfs_key first_key;
Josef Bacik416bc652013-04-23 14:17:42 -04001815
Liu Bofb770ae2016-07-05 12:10:14 -07001816 if (slot < 0 || slot >= btrfs_header_nritems(parent))
1817 return ERR_PTR(-ENOENT);
Chris Masonca7a79a2008-05-12 12:59:19 -04001818
1819 BUG_ON(level == 0);
1820
Qu Wenruo581c1762018-03-29 09:08:11 +08001821 btrfs_node_key_to_cpu(parent, &first_key, slot);
David Sterbad0d20b02019-03-20 14:54:01 +01001822 eb = read_tree_block(parent->fs_info, btrfs_node_blockptr(parent, slot),
Qu Wenruo581c1762018-03-29 09:08:11 +08001823 btrfs_node_ptr_generation(parent, slot),
1824 level - 1, &first_key);
Liu Bofb770ae2016-07-05 12:10:14 -07001825 if (!IS_ERR(eb) && !extent_buffer_uptodate(eb)) {
1826 free_extent_buffer(eb);
1827 eb = ERR_PTR(-EIO);
Josef Bacik416bc652013-04-23 14:17:42 -04001828 }
1829
1830 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001831}
1832
Chris Masond352ac62008-09-29 15:18:18 -04001833/*
1834 * node level balancing, used to make sure nodes are in proper order for
1835 * item deletion. We balance from the top down, so we have to make sure
1836 * that a deletion won't leave an node completely empty later on.
1837 */
Chris Masone02119d2008-09-05 16:13:11 -04001838static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001839 struct btrfs_root *root,
1840 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001841{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001842 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04001843 struct extent_buffer *right = NULL;
1844 struct extent_buffer *mid;
1845 struct extent_buffer *left = NULL;
1846 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001847 int ret = 0;
1848 int wret;
1849 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001850 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001851 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001852
Liu Bo98e6b1e2018-09-12 06:06:23 +08001853 ASSERT(level > 0);
Chris Masonbb803952007-03-01 12:04:21 -05001854
Chris Mason5f39d392007-10-15 16:14:19 -04001855 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001856
Chris Masonbd681512011-07-16 15:23:14 -04001857 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1858 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001859 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1860
Chris Mason1d4f8a02007-03-13 09:28:32 -04001861 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001862
Li Zefana05a9bb2011-09-06 16:55:34 +08001863 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001864 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001865 pslot = path->slots[level + 1];
1866 }
Chris Masonbb803952007-03-01 12:04:21 -05001867
Chris Mason40689472007-03-17 14:29:23 -04001868 /*
1869 * deal with the case where there is only one pointer in the root
1870 * by promoting the node below to a root
1871 */
Chris Mason5f39d392007-10-15 16:14:19 -04001872 if (!parent) {
1873 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001874
Chris Mason5f39d392007-10-15 16:14:19 -04001875 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001876 return 0;
1877
1878 /* promote the child to a root */
David Sterba4b231ae2019-08-21 19:16:27 +02001879 child = btrfs_read_node_slot(mid, 0);
Liu Bofb770ae2016-07-05 12:10:14 -07001880 if (IS_ERR(child)) {
1881 ret = PTR_ERR(child);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001882 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001883 goto enospc;
1884 }
1885
Chris Mason925baed2008-06-25 16:01:30 -04001886 btrfs_tree_lock(child);
David Sterba8bead252018-04-04 02:03:48 +02001887 btrfs_set_lock_blocking_write(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001888 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001889 if (ret) {
1890 btrfs_tree_unlock(child);
1891 free_extent_buffer(child);
1892 goto enospc;
1893 }
Yan2f375ab2008-02-01 14:58:07 -05001894
David Sterbad9d19a02018-03-05 16:35:29 +01001895 ret = tree_mod_log_insert_root(root->node, child, 1);
1896 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04001897 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001898
Chris Mason0b86a832008-03-24 15:01:56 -04001899 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001900 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001901
Chris Mason925baed2008-06-25 16:01:30 -04001902 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001903 path->nodes[level] = NULL;
David Sterba6a884d7d2019-03-20 14:30:02 +01001904 btrfs_clean_tree_block(mid);
Chris Mason925baed2008-06-25 16:01:30 -04001905 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001906 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001907 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001908
1909 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001910 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001911 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001912 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001913 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001914 }
Chris Mason5f39d392007-10-15 16:14:19 -04001915 if (btrfs_header_nritems(mid) >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001916 BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001917 return 0;
1918
David Sterba4b231ae2019-08-21 19:16:27 +02001919 left = btrfs_read_node_slot(parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001920 if (IS_ERR(left))
1921 left = NULL;
1922
Chris Mason5f39d392007-10-15 16:14:19 -04001923 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001924 btrfs_tree_lock(left);
David Sterba8bead252018-04-04 02:03:48 +02001925 btrfs_set_lock_blocking_write(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001926 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001927 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001928 if (wret) {
1929 ret = wret;
1930 goto enospc;
1931 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001932 }
Liu Bofb770ae2016-07-05 12:10:14 -07001933
David Sterba4b231ae2019-08-21 19:16:27 +02001934 right = btrfs_read_node_slot(parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001935 if (IS_ERR(right))
1936 right = NULL;
1937
Chris Mason5f39d392007-10-15 16:14:19 -04001938 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001939 btrfs_tree_lock(right);
David Sterba8bead252018-04-04 02:03:48 +02001940 btrfs_set_lock_blocking_write(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001941 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001942 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001943 if (wret) {
1944 ret = wret;
1945 goto enospc;
1946 }
1947 }
1948
1949 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001950 if (left) {
1951 orig_slot += btrfs_header_nritems(left);
David Sterbad30a6682019-03-20 14:16:45 +01001952 wret = push_node_left(trans, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001953 if (wret < 0)
1954 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001955 }
Chris Mason79f95c82007-03-01 15:16:26 -05001956
1957 /*
1958 * then try to empty the right most buffer into the middle
1959 */
Chris Mason5f39d392007-10-15 16:14:19 -04001960 if (right) {
David Sterbad30a6682019-03-20 14:16:45 +01001961 wret = push_node_left(trans, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001962 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001963 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001964 if (btrfs_header_nritems(right) == 0) {
David Sterba6a884d7d2019-03-20 14:30:02 +01001965 btrfs_clean_tree_block(right);
Chris Mason925baed2008-06-25 16:01:30 -04001966 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001967 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001968 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001969 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05001970 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001971 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001972 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04001973 struct btrfs_disk_key right_key;
1974 btrfs_node_key(right, &right_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01001975 ret = tree_mod_log_insert_key(parent, pslot + 1,
1976 MOD_LOG_KEY_REPLACE, GFP_NOFS);
1977 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001978 btrfs_set_node_key(parent, &right_key, pslot + 1);
1979 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05001980 }
1981 }
Chris Mason5f39d392007-10-15 16:14:19 -04001982 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05001983 /*
1984 * we're not allowed to leave a node with one item in the
1985 * tree during a delete. A deletion from lower in the tree
1986 * could try to delete the only pointer in this node.
1987 * So, pull some keys from the left.
1988 * There has to be a left pointer at this point because
1989 * otherwise we would have pulled some pointers from the
1990 * right
1991 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07001992 if (!left) {
1993 ret = -EROFS;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001994 btrfs_handle_fs_error(fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001995 goto enospc;
1996 }
David Sterba55d32ed2019-03-20 14:18:06 +01001997 wret = balance_node_right(trans, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001998 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05001999 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002000 goto enospc;
2001 }
Chris Masonbce4eae2008-04-24 14:42:46 -04002002 if (wret == 1) {
David Sterbad30a6682019-03-20 14:16:45 +01002003 wret = push_node_left(trans, left, mid, 1);
Chris Masonbce4eae2008-04-24 14:42:46 -04002004 if (wret < 0)
2005 ret = wret;
2006 }
Chris Mason79f95c82007-03-01 15:16:26 -05002007 BUG_ON(wret == 1);
2008 }
Chris Mason5f39d392007-10-15 16:14:19 -04002009 if (btrfs_header_nritems(mid) == 0) {
David Sterba6a884d7d2019-03-20 14:30:02 +01002010 btrfs_clean_tree_block(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002011 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002012 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002013 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002014 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002015 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002016 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05002017 } else {
2018 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04002019 struct btrfs_disk_key mid_key;
2020 btrfs_node_key(mid, &mid_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002021 ret = tree_mod_log_insert_key(parent, pslot,
2022 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2023 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002024 btrfs_set_node_key(parent, &mid_key, pslot);
2025 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05002026 }
Chris Masonbb803952007-03-01 12:04:21 -05002027
Chris Mason79f95c82007-03-01 15:16:26 -05002028 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002029 if (left) {
2030 if (btrfs_header_nritems(left) > orig_slot) {
David Sterba67439da2019-10-08 13:28:47 +02002031 atomic_inc(&left->refs);
Chris Mason925baed2008-06-25 16:01:30 -04002032 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002033 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002034 path->slots[level + 1] -= 1;
2035 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002036 if (mid) {
2037 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002038 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002039 }
Chris Masonbb803952007-03-01 12:04:21 -05002040 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002041 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002042 path->slots[level] = orig_slot;
2043 }
2044 }
Chris Mason79f95c82007-03-01 15:16:26 -05002045 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002046 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002047 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002048 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002049enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002050 if (right) {
2051 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002052 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002053 }
2054 if (left) {
2055 if (path->nodes[level] != left)
2056 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002057 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002058 }
Chris Masonbb803952007-03-01 12:04:21 -05002059 return ret;
2060}
2061
Chris Masond352ac62008-09-29 15:18:18 -04002062/* Node balancing for insertion. Here we only split or push nodes around
2063 * when they are completely full. This is also done top down, so we
2064 * have to be pessimistic.
2065 */
Chris Masond3977122009-01-05 21:25:51 -05002066static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002067 struct btrfs_root *root,
2068 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002069{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002070 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04002071 struct extent_buffer *right = NULL;
2072 struct extent_buffer *mid;
2073 struct extent_buffer *left = NULL;
2074 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002075 int ret = 0;
2076 int wret;
2077 int pslot;
2078 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002079
2080 if (level == 0)
2081 return 1;
2082
Chris Mason5f39d392007-10-15 16:14:19 -04002083 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002084 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002085
Li Zefana05a9bb2011-09-06 16:55:34 +08002086 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002087 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002088 pslot = path->slots[level + 1];
2089 }
Chris Masone66f7092007-04-20 13:16:02 -04002090
Chris Mason5f39d392007-10-15 16:14:19 -04002091 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002092 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002093
David Sterba4b231ae2019-08-21 19:16:27 +02002094 left = btrfs_read_node_slot(parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002095 if (IS_ERR(left))
2096 left = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002097
2098 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002099 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002100 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002101
2102 btrfs_tree_lock(left);
David Sterba8bead252018-04-04 02:03:48 +02002103 btrfs_set_lock_blocking_write(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002104
Chris Mason5f39d392007-10-15 16:14:19 -04002105 left_nr = btrfs_header_nritems(left);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002106 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002107 wret = 1;
2108 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002109 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002110 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002111 if (ret)
2112 wret = 1;
2113 else {
David Sterbad30a6682019-03-20 14:16:45 +01002114 wret = push_node_left(trans, left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002115 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002116 }
Chris Masone66f7092007-04-20 13:16:02 -04002117 if (wret < 0)
2118 ret = wret;
2119 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002120 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002121 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002122 btrfs_node_key(mid, &disk_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002123 ret = tree_mod_log_insert_key(parent, pslot,
2124 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2125 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002126 btrfs_set_node_key(parent, &disk_key, pslot);
2127 btrfs_mark_buffer_dirty(parent);
2128 if (btrfs_header_nritems(left) > orig_slot) {
2129 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002130 path->slots[level + 1] -= 1;
2131 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002132 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002133 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002134 } else {
2135 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002136 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002137 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002138 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002139 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002140 }
Chris Masone66f7092007-04-20 13:16:02 -04002141 return 0;
2142 }
Chris Mason925baed2008-06-25 16:01:30 -04002143 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002144 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002145 }
David Sterba4b231ae2019-08-21 19:16:27 +02002146 right = btrfs_read_node_slot(parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002147 if (IS_ERR(right))
2148 right = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002149
2150 /*
2151 * then try to empty the right most buffer into the middle
2152 */
Chris Mason5f39d392007-10-15 16:14:19 -04002153 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002154 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002155
Chris Mason925baed2008-06-25 16:01:30 -04002156 btrfs_tree_lock(right);
David Sterba8bead252018-04-04 02:03:48 +02002157 btrfs_set_lock_blocking_write(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002158
Chris Mason5f39d392007-10-15 16:14:19 -04002159 right_nr = btrfs_header_nritems(right);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002160 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002161 wret = 1;
2162 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002163 ret = btrfs_cow_block(trans, root, right,
2164 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002165 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002166 if (ret)
2167 wret = 1;
2168 else {
David Sterba55d32ed2019-03-20 14:18:06 +01002169 wret = balance_node_right(trans, right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002170 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002171 }
Chris Masone66f7092007-04-20 13:16:02 -04002172 if (wret < 0)
2173 ret = wret;
2174 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002175 struct btrfs_disk_key disk_key;
2176
2177 btrfs_node_key(right, &disk_key, 0);
David Sterba0e82bcf2018-03-05 16:16:54 +01002178 ret = tree_mod_log_insert_key(parent, pslot + 1,
2179 MOD_LOG_KEY_REPLACE, GFP_NOFS);
2180 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002181 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2182 btrfs_mark_buffer_dirty(parent);
2183
2184 if (btrfs_header_nritems(mid) <= orig_slot) {
2185 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002186 path->slots[level + 1] += 1;
2187 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002188 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002189 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002190 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002191 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002192 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002193 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002194 }
Chris Masone66f7092007-04-20 13:16:02 -04002195 return 0;
2196 }
Chris Mason925baed2008-06-25 16:01:30 -04002197 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002198 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002199 }
Chris Masone66f7092007-04-20 13:16:02 -04002200 return 1;
2201}
2202
Chris Mason74123bd2007-02-02 11:05:29 -05002203/*
Chris Masond352ac62008-09-29 15:18:18 -04002204 * readahead one full node of leaves, finding things that are close
2205 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002206 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002207static void reada_for_search(struct btrfs_fs_info *fs_info,
Chris Masonc8c42862009-04-03 10:14:18 -04002208 struct btrfs_path *path,
2209 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002210{
Chris Mason5f39d392007-10-15 16:14:19 -04002211 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002212 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002213 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002214 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002215 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002216 u64 nread = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002217 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002218 u32 nr;
2219 u32 blocksize;
2220 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002221
Chris Masona6b6e752007-10-15 16:22:39 -04002222 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002223 return;
2224
Chris Mason6702ed42007-08-07 16:15:09 -04002225 if (!path->nodes[level])
2226 return;
2227
Chris Mason5f39d392007-10-15 16:14:19 -04002228 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002229
Chris Mason3c69fae2007-08-07 15:52:22 -04002230 search = btrfs_node_blockptr(node, slot);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002231 blocksize = fs_info->nodesize;
2232 eb = find_extent_buffer(fs_info, search);
Chris Mason5f39d392007-10-15 16:14:19 -04002233 if (eb) {
2234 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002235 return;
2236 }
2237
Chris Masona7175312009-01-22 09:23:10 -05002238 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002239
Chris Mason5f39d392007-10-15 16:14:19 -04002240 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002241 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002242
Chris Masond3977122009-01-05 21:25:51 -05002243 while (1) {
David Sterbae4058b52015-11-27 16:31:35 +01002244 if (path->reada == READA_BACK) {
Chris Mason6b800532007-10-15 16:17:34 -04002245 if (nr == 0)
2246 break;
2247 nr--;
David Sterbae4058b52015-11-27 16:31:35 +01002248 } else if (path->reada == READA_FORWARD) {
Chris Mason6b800532007-10-15 16:17:34 -04002249 nr++;
2250 if (nr >= nritems)
2251 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002252 }
David Sterbae4058b52015-11-27 16:31:35 +01002253 if (path->reada == READA_BACK && objectid) {
Chris Mason01f46652007-12-21 16:24:26 -05002254 btrfs_node_key(node, &disk_key, nr);
2255 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2256 break;
2257 }
Chris Mason6b800532007-10-15 16:17:34 -04002258 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002259 if ((search <= target && target - search <= 65536) ||
2260 (search > target && search - target <= 65536)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002261 readahead_tree_block(fs_info, search);
Chris Mason6b800532007-10-15 16:17:34 -04002262 nread += blocksize;
2263 }
2264 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002265 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002266 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002267 }
2268}
Chris Mason925baed2008-06-25 16:01:30 -04002269
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002270static noinline void reada_for_balance(struct btrfs_fs_info *fs_info,
Josef Bacik0b088512013-06-17 14:23:02 -04002271 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002272{
2273 int slot;
2274 int nritems;
2275 struct extent_buffer *parent;
2276 struct extent_buffer *eb;
2277 u64 gen;
2278 u64 block1 = 0;
2279 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002280
Chris Mason8c594ea2009-04-20 15:50:10 -04002281 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002282 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002283 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002284
2285 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002286 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002287
2288 if (slot > 0) {
2289 block1 = btrfs_node_blockptr(parent, slot - 1);
2290 gen = btrfs_node_ptr_generation(parent, slot - 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002291 eb = find_extent_buffer(fs_info, block1);
Chris Masonb9fab912012-05-06 07:23:47 -04002292 /*
2293 * if we get -eagain from btrfs_buffer_uptodate, we
2294 * don't want to return eagain here. That will loop
2295 * forever
2296 */
2297 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002298 block1 = 0;
2299 free_extent_buffer(eb);
2300 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002301 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002302 block2 = btrfs_node_blockptr(parent, slot + 1);
2303 gen = btrfs_node_ptr_generation(parent, slot + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002304 eb = find_extent_buffer(fs_info, block2);
Chris Masonb9fab912012-05-06 07:23:47 -04002305 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002306 block2 = 0;
2307 free_extent_buffer(eb);
2308 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002309
Josef Bacik0b088512013-06-17 14:23:02 -04002310 if (block1)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002311 readahead_tree_block(fs_info, block1);
Josef Bacik0b088512013-06-17 14:23:02 -04002312 if (block2)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002313 readahead_tree_block(fs_info, block2);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002314}
2315
2316
2317/*
Chris Masond3977122009-01-05 21:25:51 -05002318 * when we walk down the tree, it is usually safe to unlock the higher layers
2319 * in the tree. The exceptions are when our path goes through slot 0, because
2320 * operations on the tree might require changing key pointers higher up in the
2321 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002322 *
Chris Masond3977122009-01-05 21:25:51 -05002323 * callers might also have set path->keep_locks, which tells this code to keep
2324 * the lock if the path points to the last slot in the block. This is part of
2325 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002326 *
Chris Masond3977122009-01-05 21:25:51 -05002327 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2328 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002329 */
Chris Masone02119d2008-09-05 16:13:11 -04002330static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002331 int lowest_unlock, int min_write_lock_level,
2332 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002333{
2334 int i;
2335 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002336 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002337 struct extent_buffer *t;
2338
2339 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2340 if (!path->nodes[i])
2341 break;
2342 if (!path->locks[i])
2343 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002344 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002345 skip_level = i + 1;
2346 continue;
2347 }
Chris Mason051e1b92008-06-25 16:01:30 -04002348 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002349 u32 nritems;
2350 t = path->nodes[i];
2351 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002352 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002353 skip_level = i + 1;
2354 continue;
2355 }
2356 }
Chris Mason051e1b92008-06-25 16:01:30 -04002357 if (skip_level < i && i >= lowest_unlock)
2358 no_skips = 1;
2359
Chris Mason925baed2008-06-25 16:01:30 -04002360 t = path->nodes[i];
Liu Bod80bb3f2018-05-18 11:00:24 +08002361 if (i >= lowest_unlock && i > skip_level) {
Chris Masonbd681512011-07-16 15:23:14 -04002362 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002363 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002364 if (write_lock_level &&
2365 i > min_write_lock_level &&
2366 i <= *write_lock_level) {
2367 *write_lock_level = i - 1;
2368 }
Chris Mason925baed2008-06-25 16:01:30 -04002369 }
2370 }
2371}
2372
Chris Mason3c69fae2007-08-07 15:52:22 -04002373/*
Chris Masonc8c42862009-04-03 10:14:18 -04002374 * helper function for btrfs_search_slot. The goal is to find a block
2375 * in cache without setting the path to blocking. If we find the block
2376 * we return zero and the path is unchanged.
2377 *
2378 * If we can't find the block, we set the path blocking and do some
2379 * reada. -EAGAIN is returned and the search must be repeated.
2380 */
2381static int
Liu Bod07b8522017-01-30 12:23:42 -08002382read_block_for_search(struct btrfs_root *root, struct btrfs_path *p,
2383 struct extent_buffer **eb_ret, int level, int slot,
David Sterbacda79c52017-02-10 18:44:32 +01002384 const struct btrfs_key *key)
Chris Masonc8c42862009-04-03 10:14:18 -04002385{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002386 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonc8c42862009-04-03 10:14:18 -04002387 u64 blocknr;
2388 u64 gen;
Chris Masonc8c42862009-04-03 10:14:18 -04002389 struct extent_buffer *b = *eb_ret;
2390 struct extent_buffer *tmp;
Qu Wenruo581c1762018-03-29 09:08:11 +08002391 struct btrfs_key first_key;
Chris Mason76a05b32009-05-14 13:24:30 -04002392 int ret;
Qu Wenruo581c1762018-03-29 09:08:11 +08002393 int parent_level;
Chris Masonc8c42862009-04-03 10:14:18 -04002394
2395 blocknr = btrfs_node_blockptr(b, slot);
2396 gen = btrfs_node_ptr_generation(b, slot);
Qu Wenruo581c1762018-03-29 09:08:11 +08002397 parent_level = btrfs_header_level(b);
2398 btrfs_node_key_to_cpu(b, &first_key, slot);
Chris Masonc8c42862009-04-03 10:14:18 -04002399
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002400 tmp = find_extent_buffer(fs_info, blocknr);
Chris Masoncb449212010-10-24 11:01:27 -04002401 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002402 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002403 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
Qu Wenruo448de472019-03-12 17:10:40 +08002404 /*
2405 * Do extra check for first_key, eb can be stale due to
2406 * being cached, read from scrub, or have multiple
2407 * parents (shared tree blocks).
2408 */
David Sterbae064d5e2019-03-20 14:58:13 +01002409 if (btrfs_verify_level_key(tmp,
Qu Wenruo448de472019-03-12 17:10:40 +08002410 parent_level - 1, &first_key, gen)) {
2411 free_extent_buffer(tmp);
2412 return -EUCLEAN;
2413 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002414 *eb_ret = tmp;
2415 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002416 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002417
2418 /* the pages were up to date, but we failed
2419 * the generation number check. Do a full
2420 * read for the generation number that is correct.
2421 * We must do this without dropping locks so
2422 * we can trust our generation number
2423 */
2424 btrfs_set_path_blocking(p);
2425
2426 /* now we're allowed to do a blocking uptodate check */
Qu Wenruo581c1762018-03-29 09:08:11 +08002427 ret = btrfs_read_buffer(tmp, gen, parent_level - 1, &first_key);
Josef Bacikbdf7c002013-06-17 13:44:48 -04002428 if (!ret) {
2429 *eb_ret = tmp;
2430 return 0;
2431 }
2432 free_extent_buffer(tmp);
2433 btrfs_release_path(p);
2434 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002435 }
2436
2437 /*
2438 * reduce lock contention at high levels
2439 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002440 * we read. Don't release the lock on the current
2441 * level because we need to walk this node to figure
2442 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002443 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002444 btrfs_unlock_up_safe(p, level + 1);
2445 btrfs_set_path_blocking(p);
2446
David Sterbae4058b52015-11-27 16:31:35 +01002447 if (p->reada != READA_NONE)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002448 reada_for_search(fs_info, p, level, slot, key->objectid);
Chris Masonc8c42862009-04-03 10:14:18 -04002449
Chris Mason76a05b32009-05-14 13:24:30 -04002450 ret = -EAGAIN;
Liu Bo02a33072018-05-16 01:37:36 +08002451 tmp = read_tree_block(fs_info, blocknr, gen, parent_level - 1,
Qu Wenruo581c1762018-03-29 09:08:11 +08002452 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08002453 if (!IS_ERR(tmp)) {
Chris Mason76a05b32009-05-14 13:24:30 -04002454 /*
2455 * If the read above didn't mark this buffer up to date,
2456 * it will never end up being up to date. Set ret to EIO now
2457 * and give up so that our caller doesn't loop forever
2458 * on our EAGAINs.
2459 */
Liu Boe6a1d6f2018-05-18 11:00:20 +08002460 if (!extent_buffer_uptodate(tmp))
Chris Mason76a05b32009-05-14 13:24:30 -04002461 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002462 free_extent_buffer(tmp);
Liu Boc871b0f2016-06-06 12:01:23 -07002463 } else {
2464 ret = PTR_ERR(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002465 }
Liu Bo02a33072018-05-16 01:37:36 +08002466
2467 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002468 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002469}
2470
2471/*
2472 * helper function for btrfs_search_slot. This does all of the checks
2473 * for node-level blocks and does any balancing required based on
2474 * the ins_len.
2475 *
2476 * If no extra work was required, zero is returned. If we had to
2477 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2478 * start over
2479 */
2480static int
2481setup_nodes_for_search(struct btrfs_trans_handle *trans,
2482 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002483 struct extent_buffer *b, int level, int ins_len,
2484 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002485{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002486 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masonc8c42862009-04-03 10:14:18 -04002487 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002488
Chris Masonc8c42862009-04-03 10:14:18 -04002489 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002490 BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) {
Chris Masonc8c42862009-04-03 10:14:18 -04002491 int sret;
2492
Chris Masonbd681512011-07-16 15:23:14 -04002493 if (*write_lock_level < level + 1) {
2494 *write_lock_level = level + 1;
2495 btrfs_release_path(p);
2496 goto again;
2497 }
2498
Chris Masonc8c42862009-04-03 10:14:18 -04002499 btrfs_set_path_blocking(p);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002500 reada_for_balance(fs_info, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002501 sret = split_node(trans, root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002502
2503 BUG_ON(sret > 0);
2504 if (sret) {
2505 ret = sret;
2506 goto done;
2507 }
2508 b = p->nodes[level];
2509 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002510 BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002511 int sret;
2512
Chris Masonbd681512011-07-16 15:23:14 -04002513 if (*write_lock_level < level + 1) {
2514 *write_lock_level = level + 1;
2515 btrfs_release_path(p);
2516 goto again;
2517 }
2518
Chris Masonc8c42862009-04-03 10:14:18 -04002519 btrfs_set_path_blocking(p);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002520 reada_for_balance(fs_info, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002521 sret = balance_level(trans, root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002522
2523 if (sret) {
2524 ret = sret;
2525 goto done;
2526 }
2527 b = p->nodes[level];
2528 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002529 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002530 goto again;
2531 }
2532 BUG_ON(btrfs_header_nritems(b) == 1);
2533 }
2534 return 0;
2535
2536again:
2537 ret = -EAGAIN;
2538done:
2539 return ret;
2540}
2541
Omar Sandoval310712b2017-01-17 23:24:37 -08002542static int key_search(struct extent_buffer *b, const struct btrfs_key *key,
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002543 int level, int *prev_cmp, int *slot)
2544{
2545 if (*prev_cmp != 0) {
Nikolay Borisova74b35e2017-12-08 16:27:43 +02002546 *prev_cmp = btrfs_bin_search(b, key, level, slot);
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002547 return *prev_cmp;
2548 }
2549
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002550 *slot = 0;
2551
2552 return 0;
2553}
2554
David Sterba381cf652015-01-02 18:45:16 +01002555int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002556 u64 iobjectid, u64 ioff, u8 key_type,
2557 struct btrfs_key *found_key)
2558{
2559 int ret;
2560 struct btrfs_key key;
2561 struct extent_buffer *eb;
David Sterba381cf652015-01-02 18:45:16 +01002562
2563 ASSERT(path);
David Sterba1d4c08e2015-01-02 19:36:14 +01002564 ASSERT(found_key);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002565
2566 key.type = key_type;
2567 key.objectid = iobjectid;
2568 key.offset = ioff;
2569
2570 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
David Sterba1d4c08e2015-01-02 19:36:14 +01002571 if (ret < 0)
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002572 return ret;
2573
2574 eb = path->nodes[0];
2575 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2576 ret = btrfs_next_leaf(fs_root, path);
2577 if (ret)
2578 return ret;
2579 eb = path->nodes[0];
2580 }
2581
2582 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2583 if (found_key->type != key.type ||
2584 found_key->objectid != key.objectid)
2585 return 1;
2586
2587 return 0;
2588}
2589
Liu Bo1fc28d82018-05-18 11:00:21 +08002590static struct extent_buffer *btrfs_search_slot_get_root(struct btrfs_root *root,
2591 struct btrfs_path *p,
2592 int write_lock_level)
2593{
2594 struct btrfs_fs_info *fs_info = root->fs_info;
2595 struct extent_buffer *b;
2596 int root_lock;
2597 int level = 0;
2598
2599 /* We try very hard to do read locks on the root */
2600 root_lock = BTRFS_READ_LOCK;
2601
2602 if (p->search_commit_root) {
Filipe Mananabe6821f2018-12-11 10:19:45 +00002603 /*
2604 * The commit roots are read only so we always do read locks,
2605 * and we always must hold the commit_root_sem when doing
2606 * searches on them, the only exception is send where we don't
2607 * want to block transaction commits for a long time, so
2608 * we need to clone the commit root in order to avoid races
2609 * with transaction commits that create a snapshot of one of
2610 * the roots used by a send operation.
2611 */
2612 if (p->need_commit_sem) {
Liu Bo1fc28d82018-05-18 11:00:21 +08002613 down_read(&fs_info->commit_root_sem);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002614 b = btrfs_clone_extent_buffer(root->commit_root);
Liu Bo1fc28d82018-05-18 11:00:21 +08002615 up_read(&fs_info->commit_root_sem);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002616 if (!b)
2617 return ERR_PTR(-ENOMEM);
2618
2619 } else {
2620 b = root->commit_root;
David Sterba67439da2019-10-08 13:28:47 +02002621 atomic_inc(&b->refs);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002622 }
2623 level = btrfs_header_level(b);
Liu Bof9ddfd02018-05-29 21:27:06 +08002624 /*
2625 * Ensure that all callers have set skip_locking when
2626 * p->search_commit_root = 1.
2627 */
2628 ASSERT(p->skip_locking == 1);
Liu Bo1fc28d82018-05-18 11:00:21 +08002629
2630 goto out;
2631 }
2632
2633 if (p->skip_locking) {
2634 b = btrfs_root_node(root);
2635 level = btrfs_header_level(b);
2636 goto out;
2637 }
2638
2639 /*
Liu Bo662c6532018-05-18 11:00:23 +08002640 * If the level is set to maximum, we can skip trying to get the read
2641 * lock.
Liu Bo1fc28d82018-05-18 11:00:21 +08002642 */
Liu Bo662c6532018-05-18 11:00:23 +08002643 if (write_lock_level < BTRFS_MAX_LEVEL) {
2644 /*
2645 * We don't know the level of the root node until we actually
2646 * have it read locked
2647 */
2648 b = btrfs_read_lock_root_node(root);
2649 level = btrfs_header_level(b);
2650 if (level > write_lock_level)
2651 goto out;
Liu Bo1fc28d82018-05-18 11:00:21 +08002652
Liu Bo662c6532018-05-18 11:00:23 +08002653 /* Whoops, must trade for write lock */
2654 btrfs_tree_read_unlock(b);
2655 free_extent_buffer(b);
2656 }
2657
Liu Bo1fc28d82018-05-18 11:00:21 +08002658 b = btrfs_lock_root_node(root);
2659 root_lock = BTRFS_WRITE_LOCK;
2660
2661 /* The level might have changed, check again */
2662 level = btrfs_header_level(b);
2663
2664out:
2665 p->nodes[level] = b;
2666 if (!p->skip_locking)
2667 p->locks[level] = root_lock;
2668 /*
2669 * Callers are responsible for dropping b's references.
2670 */
2671 return b;
2672}
2673
2674
Chris Masonc8c42862009-04-03 10:14:18 -04002675/*
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002676 * btrfs_search_slot - look for a key in a tree and perform necessary
2677 * modifications to preserve tree invariants.
Chris Mason74123bd2007-02-02 11:05:29 -05002678 *
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002679 * @trans: Handle of transaction, used when modifying the tree
2680 * @p: Holds all btree nodes along the search path
2681 * @root: The root node of the tree
2682 * @key: The key we are looking for
2683 * @ins_len: Indicates purpose of search, for inserts it is 1, for
2684 * deletions it's -1. 0 for plain searches
2685 * @cow: boolean should CoW operations be performed. Must always be 1
2686 * when modifying the tree.
Chris Mason97571fd2007-02-24 13:39:08 -05002687 *
Nikolay Borisov4271ece2017-12-13 09:38:14 +02002688 * If @ins_len > 0, nodes and leaves will be split as we walk down the tree.
2689 * If @ins_len < 0, nodes will be merged as we walk down the tree (if possible)
2690 *
2691 * If @key is found, 0 is returned and you can find the item in the leaf level
2692 * of the path (level 0)
2693 *
2694 * If @key isn't found, 1 is returned and the leaf level of the path (level 0)
2695 * points to the slot where it should be inserted
2696 *
2697 * If an error is encountered while searching the tree a negative error number
2698 * is returned
Chris Mason74123bd2007-02-02 11:05:29 -05002699 */
Omar Sandoval310712b2017-01-17 23:24:37 -08002700int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2701 const struct btrfs_key *key, struct btrfs_path *p,
2702 int ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002703{
Chris Mason5f39d392007-10-15 16:14:19 -04002704 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002705 int slot;
2706 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002707 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002708 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002709 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002710 /* everything at write_lock_level or lower must be write locked */
2711 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002712 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002713 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002714 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002715
Chris Mason6702ed42007-08-07 16:15:09 -04002716 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002717 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002718 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002719 BUG_ON(!cow && ins_len);
Josef Bacik25179202008-10-29 14:49:05 -04002720
Chris Masonbd681512011-07-16 15:23:14 -04002721 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002722 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002723
Chris Masonbd681512011-07-16 15:23:14 -04002724 /* when we are removing items, we might have to go up to level
2725 * two as we update tree pointers Make sure we keep write
2726 * for those levels as well
2727 */
2728 write_lock_level = 2;
2729 } else if (ins_len > 0) {
2730 /*
2731 * for inserting items, make sure we have a write lock on
2732 * level 1 so we can update keys
2733 */
2734 write_lock_level = 1;
2735 }
2736
2737 if (!cow)
2738 write_lock_level = -1;
2739
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002740 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002741 write_lock_level = BTRFS_MAX_LEVEL;
2742
Chris Masonf7c79f32012-03-19 15:54:38 -04002743 min_write_lock_level = write_lock_level;
2744
Chris Masonbb803952007-03-01 12:04:21 -05002745again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002746 prev_cmp = -1;
Liu Bo1fc28d82018-05-18 11:00:21 +08002747 b = btrfs_search_slot_get_root(root, p, write_lock_level);
Filipe Mananabe6821f2018-12-11 10:19:45 +00002748 if (IS_ERR(b)) {
2749 ret = PTR_ERR(b);
2750 goto done;
2751 }
Chris Mason925baed2008-06-25 16:01:30 -04002752
Chris Masoneb60cea2007-02-02 09:18:22 -05002753 while (b) {
Qu Wenruof624d972019-09-10 15:40:17 +08002754 int dec = 0;
2755
Chris Mason5f39d392007-10-15 16:14:19 -04002756 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002757
Chris Mason02217ed2007-03-02 16:08:05 -05002758 if (cow) {
Nikolay Borisov9ea2c7c2017-12-12 11:14:49 +02002759 bool last_level = (level == (BTRFS_MAX_LEVEL - 1));
2760
Chris Masonc8c42862009-04-03 10:14:18 -04002761 /*
2762 * if we don't really need to cow this block
2763 * then we don't want to set the path blocking,
2764 * so we test it here
2765 */
Jeff Mahoney64c12922016-06-08 00:36:38 -04002766 if (!should_cow_block(trans, root, b)) {
2767 trans->dirty = true;
Chris Mason65b51a02008-08-01 15:11:20 -04002768 goto cow_done;
Jeff Mahoney64c12922016-06-08 00:36:38 -04002769 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002770
Chris Masonbd681512011-07-16 15:23:14 -04002771 /*
2772 * must have write locks on this node and the
2773 * parent
2774 */
Josef Bacik5124e002012-11-07 13:44:13 -05002775 if (level > write_lock_level ||
2776 (level + 1 > write_lock_level &&
2777 level + 1 < BTRFS_MAX_LEVEL &&
2778 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002779 write_lock_level = level + 1;
2780 btrfs_release_path(p);
2781 goto again;
2782 }
2783
Filipe Manana160f4082014-07-28 19:37:17 +01002784 btrfs_set_path_blocking(p);
Nikolay Borisov9ea2c7c2017-12-12 11:14:49 +02002785 if (last_level)
2786 err = btrfs_cow_block(trans, root, b, NULL, 0,
2787 &b);
2788 else
2789 err = btrfs_cow_block(trans, root, b,
2790 p->nodes[level + 1],
2791 p->slots[level + 1], &b);
Yan Zheng33c66f42009-07-22 09:59:00 -04002792 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002793 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002794 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002795 }
Chris Mason02217ed2007-03-02 16:08:05 -05002796 }
Chris Mason65b51a02008-08-01 15:11:20 -04002797cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002798 p->nodes[level] = b;
Liu Bo52398342018-08-22 05:54:37 +08002799 /*
2800 * Leave path with blocking locks to avoid massive
2801 * lock context switch, this is made on purpose.
2802 */
Chris Masonb4ce94d2009-02-04 09:25:08 -05002803
2804 /*
2805 * we have a lock on b and as long as we aren't changing
2806 * the tree, there is no way to for the items in b to change.
2807 * It is safe to drop the lock on our parent before we
2808 * go through the expensive btree search on b.
2809 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002810 * If we're inserting or deleting (ins_len != 0), then we might
2811 * be changing slot zero, which may require changing the parent.
2812 * So, we can't drop the lock until after we know which slot
2813 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002814 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002815 if (!ins_len && !p->keep_locks) {
2816 int u = level + 1;
2817
2818 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2819 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2820 p->locks[u] = 0;
2821 }
2822 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002823
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002824 ret = key_search(b, key, level, &prev_cmp, &slot);
Liu Bo415b35a2016-06-17 19:16:21 -07002825 if (ret < 0)
2826 goto done;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002827
Qu Wenruof624d972019-09-10 15:40:17 +08002828 if (level == 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05002829 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002830 if (ins_len > 0 &&
David Sterbae902baa2019-03-20 14:36:46 +01002831 btrfs_leaf_free_space(b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002832 if (write_lock_level < 1) {
2833 write_lock_level = 1;
2834 btrfs_release_path(p);
2835 goto again;
2836 }
2837
Chris Masonb4ce94d2009-02-04 09:25:08 -05002838 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002839 err = split_leaf(trans, root, key,
2840 p, ins_len, ret == 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002841
Yan Zheng33c66f42009-07-22 09:59:00 -04002842 BUG_ON(err > 0);
2843 if (err) {
2844 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002845 goto done;
2846 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002847 }
Chris Mason459931e2008-12-10 09:10:46 -05002848 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002849 unlock_up(p, level, lowest_unlock,
Liu Bo4b6f8e92018-08-14 10:46:53 +08002850 min_write_lock_level, NULL);
Chris Mason65b51a02008-08-01 15:11:20 -04002851 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002852 }
Qu Wenruof624d972019-09-10 15:40:17 +08002853 if (ret && slot > 0) {
2854 dec = 1;
2855 slot--;
2856 }
2857 p->slots[level] = slot;
2858 err = setup_nodes_for_search(trans, root, p, b, level, ins_len,
2859 &write_lock_level);
2860 if (err == -EAGAIN)
2861 goto again;
2862 if (err) {
2863 ret = err;
2864 goto done;
2865 }
2866 b = p->nodes[level];
2867 slot = p->slots[level];
2868
2869 /*
2870 * Slot 0 is special, if we change the key we have to update
2871 * the parent pointer which means we must have a write lock on
2872 * the parent
2873 */
2874 if (slot == 0 && ins_len && write_lock_level < level + 1) {
2875 write_lock_level = level + 1;
2876 btrfs_release_path(p);
2877 goto again;
2878 }
2879
2880 unlock_up(p, level, lowest_unlock, min_write_lock_level,
2881 &write_lock_level);
2882
2883 if (level == lowest_level) {
2884 if (dec)
2885 p->slots[level]++;
2886 goto done;
2887 }
2888
2889 err = read_block_for_search(root, p, &b, level, slot, key);
2890 if (err == -EAGAIN)
2891 goto again;
2892 if (err) {
2893 ret = err;
2894 goto done;
2895 }
2896
2897 if (!p->skip_locking) {
2898 level = btrfs_header_level(b);
2899 if (level <= write_lock_level) {
2900 if (!btrfs_try_tree_write_lock(b)) {
2901 btrfs_set_path_blocking(p);
2902 btrfs_tree_lock(b);
2903 }
2904 p->locks[level] = BTRFS_WRITE_LOCK;
2905 } else {
2906 if (!btrfs_tree_read_lock_atomic(b)) {
2907 btrfs_set_path_blocking(p);
2908 btrfs_tree_read_lock(b);
2909 }
2910 p->locks[level] = BTRFS_READ_LOCK;
2911 }
2912 p->nodes[level] = b;
2913 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002914 }
Chris Mason65b51a02008-08-01 15:11:20 -04002915 ret = 1;
2916done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002917 /*
2918 * we don't really know what they plan on doing with the path
2919 * from here on, so for now just mark it as blocking
2920 */
Chris Masonb9473432009-03-13 11:00:37 -04002921 if (!p->leave_spinning)
2922 btrfs_set_path_blocking(p);
Filipe Manana5f5bc6b2014-11-09 08:38:39 +00002923 if (ret < 0 && !p->skip_release_on_error)
David Sterbab3b4aa72011-04-21 01:20:15 +02002924 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002925 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002926}
2927
Chris Mason74123bd2007-02-02 11:05:29 -05002928/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002929 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2930 * current state of the tree together with the operations recorded in the tree
2931 * modification log to search for the key in a previous version of this tree, as
2932 * denoted by the time_seq parameter.
2933 *
2934 * Naturally, there is no support for insert, delete or cow operations.
2935 *
2936 * The resulting path and return value will be set up as if we called
2937 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2938 */
Omar Sandoval310712b2017-01-17 23:24:37 -08002939int btrfs_search_old_slot(struct btrfs_root *root, const struct btrfs_key *key,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002940 struct btrfs_path *p, u64 time_seq)
2941{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002942 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002943 struct extent_buffer *b;
2944 int slot;
2945 int ret;
2946 int err;
2947 int level;
2948 int lowest_unlock = 1;
2949 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002950 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002951
2952 lowest_level = p->lowest_level;
2953 WARN_ON(p->nodes[0] != NULL);
2954
2955 if (p->search_commit_root) {
2956 BUG_ON(time_seq);
2957 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2958 }
2959
2960again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002961 b = get_old_root(root, time_seq);
Nikolay Borisov315bed42018-09-13 11:35:10 +03002962 if (!b) {
2963 ret = -EIO;
2964 goto done;
2965 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002966 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002967 p->locks[level] = BTRFS_READ_LOCK;
2968
2969 while (b) {
Qu Wenruoabe93392019-09-10 15:40:18 +08002970 int dec = 0;
2971
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002972 level = btrfs_header_level(b);
2973 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002974
2975 /*
2976 * we have a lock on b and as long as we aren't changing
2977 * the tree, there is no way to for the items in b to change.
2978 * It is safe to drop the lock on our parent before we
2979 * go through the expensive btree search on b.
2980 */
2981 btrfs_unlock_up_safe(p, level + 1);
2982
Josef Bacikd4b40872013-09-24 14:09:34 -04002983 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002984 * Since we can unwind ebs we want to do a real search every
Josef Bacikd4b40872013-09-24 14:09:34 -04002985 * time.
2986 */
2987 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002988 ret = key_search(b, key, level, &prev_cmp, &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00002989 if (ret < 0)
2990 goto done;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002991
Qu Wenruoabe93392019-09-10 15:40:18 +08002992 if (level == 0) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002993 p->slots[level] = slot;
2994 unlock_up(p, level, lowest_unlock, 0, NULL);
2995 goto done;
2996 }
Qu Wenruoabe93392019-09-10 15:40:18 +08002997
2998 if (ret && slot > 0) {
2999 dec = 1;
3000 slot--;
3001 }
3002 p->slots[level] = slot;
3003 unlock_up(p, level, lowest_unlock, 0, NULL);
3004
3005 if (level == lowest_level) {
3006 if (dec)
3007 p->slots[level]++;
3008 goto done;
3009 }
3010
3011 err = read_block_for_search(root, p, &b, level, slot, key);
3012 if (err == -EAGAIN)
3013 goto again;
3014 if (err) {
3015 ret = err;
3016 goto done;
3017 }
3018
3019 level = btrfs_header_level(b);
3020 if (!btrfs_tree_read_lock_atomic(b)) {
3021 btrfs_set_path_blocking(p);
3022 btrfs_tree_read_lock(b);
3023 }
3024 b = tree_mod_log_rewind(fs_info, p, b, time_seq);
3025 if (!b) {
3026 ret = -ENOMEM;
3027 goto done;
3028 }
3029 p->locks[level] = BTRFS_READ_LOCK;
3030 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003031 }
3032 ret = 1;
3033done:
3034 if (!p->leave_spinning)
3035 btrfs_set_path_blocking(p);
3036 if (ret < 0)
3037 btrfs_release_path(p);
3038
3039 return ret;
3040}
3041
3042/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003043 * helper to use instead of search slot if no exact match is needed but
3044 * instead the next or previous item should be returned.
3045 * When find_higher is true, the next higher item is returned, the next lower
3046 * otherwise.
3047 * When return_any and find_higher are both true, and no higher item is found,
3048 * return the next lower instead.
3049 * When return_any is true and find_higher is false, and no lower item is found,
3050 * return the next higher instead.
3051 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3052 * < 0 on error
3053 */
3054int btrfs_search_slot_for_read(struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -08003055 const struct btrfs_key *key,
3056 struct btrfs_path *p, int find_higher,
3057 int return_any)
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003058{
3059 int ret;
3060 struct extent_buffer *leaf;
3061
3062again:
3063 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3064 if (ret <= 0)
3065 return ret;
3066 /*
3067 * a return value of 1 means the path is at the position where the
3068 * item should be inserted. Normally this is the next bigger item,
3069 * but in case the previous item is the last in a leaf, path points
3070 * to the first free slot in the previous leaf, i.e. at an invalid
3071 * item.
3072 */
3073 leaf = p->nodes[0];
3074
3075 if (find_higher) {
3076 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3077 ret = btrfs_next_leaf(root, p);
3078 if (ret <= 0)
3079 return ret;
3080 if (!return_any)
3081 return 1;
3082 /*
3083 * no higher item found, return the next
3084 * lower instead
3085 */
3086 return_any = 0;
3087 find_higher = 0;
3088 btrfs_release_path(p);
3089 goto again;
3090 }
3091 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003092 if (p->slots[0] == 0) {
3093 ret = btrfs_prev_leaf(root, p);
3094 if (ret < 0)
3095 return ret;
3096 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003097 leaf = p->nodes[0];
3098 if (p->slots[0] == btrfs_header_nritems(leaf))
3099 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003100 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003101 }
Arne Jansene6793762011-09-13 11:18:10 +02003102 if (!return_any)
3103 return 1;
3104 /*
3105 * no lower item found, return the next
3106 * higher instead
3107 */
3108 return_any = 0;
3109 find_higher = 1;
3110 btrfs_release_path(p);
3111 goto again;
3112 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003113 --p->slots[0];
3114 }
3115 }
3116 return 0;
3117}
3118
3119/*
Chris Mason74123bd2007-02-02 11:05:29 -05003120 * adjust the pointers going up the tree, starting at level
3121 * making sure the right key of each node is points to 'key'.
3122 * This is used after shifting pointers to the left, so it stops
3123 * fixing up pointers when a given leaf/node is not in slot 0 of the
3124 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003125 *
Chris Mason74123bd2007-02-02 11:05:29 -05003126 */
Nikolay Borisovb167fa92018-06-20 15:48:47 +03003127static void fixup_low_keys(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003128 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003129{
3130 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003131 struct extent_buffer *t;
David Sterba0e82bcf2018-03-05 16:16:54 +01003132 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04003133
Chris Mason234b63a2007-03-13 10:46:10 -04003134 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003135 int tslot = path->slots[i];
David Sterba0e82bcf2018-03-05 16:16:54 +01003136
Chris Masoneb60cea2007-02-02 09:18:22 -05003137 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003138 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003139 t = path->nodes[i];
David Sterba0e82bcf2018-03-05 16:16:54 +01003140 ret = tree_mod_log_insert_key(t, tslot, MOD_LOG_KEY_REPLACE,
3141 GFP_ATOMIC);
3142 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003143 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003144 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003145 if (tslot != 0)
3146 break;
3147 }
3148}
3149
Chris Mason74123bd2007-02-02 11:05:29 -05003150/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003151 * update item key.
3152 *
3153 * This function isn't completely safe. It's the caller's responsibility
3154 * that the new key won't break the order
3155 */
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003156void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
3157 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08003158 const struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003159{
3160 struct btrfs_disk_key disk_key;
3161 struct extent_buffer *eb;
3162 int slot;
3163
3164 eb = path->nodes[0];
3165 slot = path->slots[0];
3166 if (slot > 0) {
3167 btrfs_item_key(eb, &disk_key, slot - 1);
Qu Wenruo7c15d412019-04-25 08:55:53 +08003168 if (unlikely(comp_keys(&disk_key, new_key) >= 0)) {
3169 btrfs_crit(fs_info,
3170 "slot %u key (%llu %u %llu) new key (%llu %u %llu)",
3171 slot, btrfs_disk_key_objectid(&disk_key),
3172 btrfs_disk_key_type(&disk_key),
3173 btrfs_disk_key_offset(&disk_key),
3174 new_key->objectid, new_key->type,
3175 new_key->offset);
3176 btrfs_print_leaf(eb);
3177 BUG();
3178 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003179 }
3180 if (slot < btrfs_header_nritems(eb) - 1) {
3181 btrfs_item_key(eb, &disk_key, slot + 1);
Qu Wenruo7c15d412019-04-25 08:55:53 +08003182 if (unlikely(comp_keys(&disk_key, new_key) <= 0)) {
3183 btrfs_crit(fs_info,
3184 "slot %u key (%llu %u %llu) new key (%llu %u %llu)",
3185 slot, btrfs_disk_key_objectid(&disk_key),
3186 btrfs_disk_key_type(&disk_key),
3187 btrfs_disk_key_offset(&disk_key),
3188 new_key->objectid, new_key->type,
3189 new_key->offset);
3190 btrfs_print_leaf(eb);
3191 BUG();
3192 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003193 }
3194
3195 btrfs_cpu_key_to_disk(&disk_key, new_key);
3196 btrfs_set_item_key(eb, &disk_key, slot);
3197 btrfs_mark_buffer_dirty(eb);
3198 if (slot == 0)
Nikolay Borisovb167fa92018-06-20 15:48:47 +03003199 fixup_low_keys(path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003200}
3201
3202/*
Chris Mason74123bd2007-02-02 11:05:29 -05003203 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003204 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003205 *
3206 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3207 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003208 */
Chris Mason98ed5172008-01-03 10:01:48 -05003209static int push_node_left(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003210 struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003211 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003212{
David Sterbad30a6682019-03-20 14:16:45 +01003213 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003214 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003215 int src_nritems;
3216 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003217 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003218
Chris Mason5f39d392007-10-15 16:14:19 -04003219 src_nritems = btrfs_header_nritems(src);
3220 dst_nritems = btrfs_header_nritems(dst);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003221 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003222 WARN_ON(btrfs_header_generation(src) != trans->transid);
3223 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003224
Chris Masonbce4eae2008-04-24 14:42:46 -04003225 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003226 return 1;
3227
Chris Masond3977122009-01-05 21:25:51 -05003228 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003229 return 1;
3230
Chris Masonbce4eae2008-04-24 14:42:46 -04003231 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003232 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003233 if (push_items < src_nritems) {
3234 /* leave at least 8 pointers in the node if
3235 * we aren't going to empty it
3236 */
3237 if (src_nritems - push_items < 8) {
3238 if (push_items <= 8)
3239 return 1;
3240 push_items -= 8;
3241 }
3242 }
3243 } else
3244 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003245
David Sterbaed874f02019-03-20 14:22:04 +01003246 ret = tree_mod_log_eb_copy(dst, src, dst_nritems, 0, push_items);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003247 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003248 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003249 return ret;
3250 }
Chris Mason5f39d392007-10-15 16:14:19 -04003251 copy_extent_buffer(dst, src,
3252 btrfs_node_key_ptr_offset(dst_nritems),
3253 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003254 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003255
Chris Masonbb803952007-03-01 12:04:21 -05003256 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003257 /*
David Sterbabf1d3422018-03-05 15:47:39 +01003258 * Don't call tree_mod_log_insert_move here, key removal was
3259 * already fully logged by tree_mod_log_eb_copy above.
Jan Schmidt57911b82012-10-19 09:22:03 +02003260 */
Chris Mason5f39d392007-10-15 16:14:19 -04003261 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3262 btrfs_node_key_ptr_offset(push_items),
3263 (src_nritems - push_items) *
3264 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003265 }
Chris Mason5f39d392007-10-15 16:14:19 -04003266 btrfs_set_header_nritems(src, src_nritems - push_items);
3267 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3268 btrfs_mark_buffer_dirty(src);
3269 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003270
Chris Masonbb803952007-03-01 12:04:21 -05003271 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003272}
3273
Chris Mason97571fd2007-02-24 13:39:08 -05003274/*
Chris Mason79f95c82007-03-01 15:16:26 -05003275 * try to push data from one node into the next node right in the
3276 * tree.
3277 *
3278 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3279 * error, and > 0 if there was no room in the right hand block.
3280 *
3281 * this will only push up to 1/2 the contents of the left node over
3282 */
Chris Mason5f39d392007-10-15 16:14:19 -04003283static int balance_node_right(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003284 struct extent_buffer *dst,
3285 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003286{
David Sterba55d32ed2019-03-20 14:18:06 +01003287 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason79f95c82007-03-01 15:16:26 -05003288 int push_items = 0;
3289 int max_push;
3290 int src_nritems;
3291 int dst_nritems;
3292 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003293
Chris Mason7bb86312007-12-11 09:25:06 -05003294 WARN_ON(btrfs_header_generation(src) != trans->transid);
3295 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3296
Chris Mason5f39d392007-10-15 16:14:19 -04003297 src_nritems = btrfs_header_nritems(src);
3298 dst_nritems = btrfs_header_nritems(dst);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003299 push_items = BTRFS_NODEPTRS_PER_BLOCK(fs_info) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003300 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003301 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003302
Chris Masond3977122009-01-05 21:25:51 -05003303 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003304 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003305
3306 max_push = src_nritems / 2 + 1;
3307 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003308 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003309 return 1;
Yan252c38f2007-08-29 09:11:44 -04003310
Chris Mason79f95c82007-03-01 15:16:26 -05003311 if (max_push < push_items)
3312 push_items = max_push;
3313
David Sterbabf1d3422018-03-05 15:47:39 +01003314 ret = tree_mod_log_insert_move(dst, push_items, 0, dst_nritems);
3315 BUG_ON(ret < 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003316 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3317 btrfs_node_key_ptr_offset(0),
3318 (dst_nritems) *
3319 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003320
David Sterbaed874f02019-03-20 14:22:04 +01003321 ret = tree_mod_log_eb_copy(dst, src, 0, src_nritems - push_items,
3322 push_items);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003323 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003324 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003325 return ret;
3326 }
Chris Mason5f39d392007-10-15 16:14:19 -04003327 copy_extent_buffer(dst, src,
3328 btrfs_node_key_ptr_offset(0),
3329 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003330 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003331
Chris Mason5f39d392007-10-15 16:14:19 -04003332 btrfs_set_header_nritems(src, src_nritems - push_items);
3333 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003334
Chris Mason5f39d392007-10-15 16:14:19 -04003335 btrfs_mark_buffer_dirty(src);
3336 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003337
Chris Mason79f95c82007-03-01 15:16:26 -05003338 return ret;
3339}
3340
3341/*
Chris Mason97571fd2007-02-24 13:39:08 -05003342 * helper function to insert a new root level in the tree.
3343 * A new node is allocated, and a single item is inserted to
3344 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003345 *
3346 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003347 */
Chris Masond3977122009-01-05 21:25:51 -05003348static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003349 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003350 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003351{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003352 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason7bb86312007-12-11 09:25:06 -05003353 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003354 struct extent_buffer *lower;
3355 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003356 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003357 struct btrfs_disk_key lower_key;
David Sterbad9d19a02018-03-05 16:35:29 +01003358 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003359
3360 BUG_ON(path->nodes[level]);
3361 BUG_ON(path->nodes[level-1] != root->node);
3362
Chris Mason7bb86312007-12-11 09:25:06 -05003363 lower = path->nodes[level-1];
3364 if (level == 1)
3365 btrfs_item_key(lower, &lower_key, 0);
3366 else
3367 btrfs_node_key(lower, &lower_key, 0);
3368
Filipe Mananaa6279472019-01-25 11:48:51 +00003369 c = alloc_tree_block_no_bg_flush(trans, root, 0, &lower_key, level,
3370 root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003371 if (IS_ERR(c))
3372 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003373
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003374 root_add_used(root, fs_info->nodesize);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003375
Chris Mason5f39d392007-10-15 16:14:19 -04003376 btrfs_set_header_nritems(c, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003377 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003378 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003379 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003380 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003381
3382 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003383
3384 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003385
Chris Mason925baed2008-06-25 16:01:30 -04003386 old = root->node;
David Sterbad9d19a02018-03-05 16:35:29 +01003387 ret = tree_mod_log_insert_root(root->node, c, 0);
3388 BUG_ON(ret < 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003389 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003390
3391 /* the super has an extra ref to root->node */
3392 free_extent_buffer(old);
3393
Chris Mason0b86a832008-03-24 15:01:56 -04003394 add_root_to_dirty_list(root);
David Sterba67439da2019-10-08 13:28:47 +02003395 atomic_inc(&c->refs);
Chris Mason5f39d392007-10-15 16:14:19 -04003396 path->nodes[level] = c;
chandan95449a12015-01-15 12:22:03 +05303397 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Mason5c680ed2007-02-22 11:39:13 -05003398 path->slots[level] = 0;
3399 return 0;
3400}
3401
Chris Mason74123bd2007-02-02 11:05:29 -05003402/*
3403 * worker function to insert a single pointer in a node.
3404 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003405 *
Chris Mason74123bd2007-02-02 11:05:29 -05003406 * slot and level indicate where you want the key to go, and
3407 * blocknr is the block the key points to.
3408 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003409static void insert_ptr(struct btrfs_trans_handle *trans,
David Sterba6ad3cf62019-03-20 14:32:45 +01003410 struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003411 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003412 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003413{
Chris Mason5f39d392007-10-15 16:14:19 -04003414 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003415 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003416 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003417
3418 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003419 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003420 lower = path->nodes[level];
3421 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003422 BUG_ON(slot > nritems);
David Sterba6ad3cf62019-03-20 14:32:45 +01003423 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(trans->fs_info));
Chris Mason74123bd2007-02-02 11:05:29 -05003424 if (slot != nritems) {
David Sterbabf1d3422018-03-05 15:47:39 +01003425 if (level) {
3426 ret = tree_mod_log_insert_move(lower, slot + 1, slot,
David Sterbaa446a972018-03-05 15:26:29 +01003427 nritems - slot);
David Sterbabf1d3422018-03-05 15:47:39 +01003428 BUG_ON(ret < 0);
3429 }
Chris Mason5f39d392007-10-15 16:14:19 -04003430 memmove_extent_buffer(lower,
3431 btrfs_node_key_ptr_offset(slot + 1),
3432 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003433 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003434 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003435 if (level) {
David Sterbae09c2ef2018-03-05 15:09:03 +01003436 ret = tree_mod_log_insert_key(lower, slot, MOD_LOG_KEY_ADD,
3437 GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003438 BUG_ON(ret < 0);
3439 }
Chris Mason5f39d392007-10-15 16:14:19 -04003440 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003441 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003442 WARN_ON(trans->transid == 0);
3443 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003444 btrfs_set_header_nritems(lower, nritems + 1);
3445 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003446}
3447
Chris Mason97571fd2007-02-24 13:39:08 -05003448/*
3449 * split the node at the specified level in path in two.
3450 * The path is corrected to point to the appropriate node after the split
3451 *
3452 * Before splitting this tries to make some room in the node by pushing
3453 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003454 *
3455 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003456 */
Chris Masone02119d2008-09-05 16:13:11 -04003457static noinline int split_node(struct btrfs_trans_handle *trans,
3458 struct btrfs_root *root,
3459 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003460{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003461 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003462 struct extent_buffer *c;
3463 struct extent_buffer *split;
3464 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003465 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003466 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003467 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003468
Chris Mason5f39d392007-10-15 16:14:19 -04003469 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003470 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003471 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003472 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003473 * trying to split the root, lets make a new one
3474 *
Liu Bofdd99c72013-05-22 12:06:51 +00003475 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003476 * insert_new_root, because that root buffer will be kept as a
3477 * normal node. We are going to log removal of half of the
3478 * elements below with tree_mod_log_eb_copy. We're holding a
3479 * tree lock on the buffer, which is why we cannot race with
3480 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003481 */
Liu Bofdd99c72013-05-22 12:06:51 +00003482 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003483 if (ret)
3484 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003485 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003486 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003487 c = path->nodes[level];
3488 if (!ret && btrfs_header_nritems(c) <
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003489 BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003490 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003491 if (ret < 0)
3492 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003493 }
Chris Masone66f7092007-04-20 13:16:02 -04003494
Chris Mason5f39d392007-10-15 16:14:19 -04003495 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003496 mid = (c_nritems + 1) / 2;
3497 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003498
Filipe Mananaa6279472019-01-25 11:48:51 +00003499 split = alloc_tree_block_no_bg_flush(trans, root, 0, &disk_key, level,
3500 c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003501 if (IS_ERR(split))
3502 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003503
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003504 root_add_used(root, fs_info->nodesize);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03003505 ASSERT(btrfs_header_level(c) == level);
Chris Mason5f39d392007-10-15 16:14:19 -04003506
David Sterbaed874f02019-03-20 14:22:04 +01003507 ret = tree_mod_log_eb_copy(split, c, 0, mid, c_nritems - mid);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003508 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003509 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003510 return ret;
3511 }
Chris Mason5f39d392007-10-15 16:14:19 -04003512 copy_extent_buffer(split, c,
3513 btrfs_node_key_ptr_offset(0),
3514 btrfs_node_key_ptr_offset(mid),
3515 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3516 btrfs_set_header_nritems(split, c_nritems - mid);
3517 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003518 ret = 0;
3519
Chris Mason5f39d392007-10-15 16:14:19 -04003520 btrfs_mark_buffer_dirty(c);
3521 btrfs_mark_buffer_dirty(split);
3522
David Sterba6ad3cf62019-03-20 14:32:45 +01003523 insert_ptr(trans, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003524 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003525
Chris Mason5de08d72007-02-24 06:24:44 -05003526 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003527 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003528 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003529 free_extent_buffer(c);
3530 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003531 path->slots[level + 1] += 1;
3532 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003533 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003534 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003535 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003536 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003537}
3538
Chris Mason74123bd2007-02-02 11:05:29 -05003539/*
3540 * how many bytes are required to store the items in a leaf. start
3541 * and nr indicate which items in the leaf to check. This totals up the
3542 * space used both by the item structs and the item data
3543 */
Chris Mason5f39d392007-10-15 16:14:19 -04003544static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003545{
Josef Bacik41be1f32012-10-15 13:43:18 -04003546 struct btrfs_item *start_item;
3547 struct btrfs_item *end_item;
3548 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003549 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003550 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003551 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003552
3553 if (!nr)
3554 return 0;
David Sterbac82f8232019-08-09 17:48:21 +02003555 btrfs_init_map_token(&token, l);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003556 start_item = btrfs_item_nr(start);
3557 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003558 data_len = btrfs_token_item_offset(l, start_item, &token) +
3559 btrfs_token_item_size(l, start_item, &token);
3560 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003561 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003562 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003563 return data_len;
3564}
3565
Chris Mason74123bd2007-02-02 11:05:29 -05003566/*
Chris Masond4dbff92007-04-04 14:08:15 -04003567 * The space between the end of the leaf items and
3568 * the start of the leaf data. IOW, how much room
3569 * the leaf has left for both items and data
3570 */
David Sterbae902baa2019-03-20 14:36:46 +01003571noinline int btrfs_leaf_free_space(struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003572{
David Sterbae902baa2019-03-20 14:36:46 +01003573 struct btrfs_fs_info *fs_info = leaf->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003574 int nritems = btrfs_header_nritems(leaf);
3575 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003576
3577 ret = BTRFS_LEAF_DATA_SIZE(fs_info) - leaf_space_used(leaf, 0, nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003578 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003579 btrfs_crit(fs_info,
3580 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
3581 ret,
3582 (unsigned long) BTRFS_LEAF_DATA_SIZE(fs_info),
3583 leaf_space_used(leaf, 0, nritems), nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003584 }
3585 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003586}
3587
Chris Mason99d8f832010-07-07 10:51:48 -04003588/*
3589 * min slot controls the lowest index we're willing to push to the
3590 * right. We'll push up to and including min_slot, but no lower
3591 */
David Sterbaf72f0012019-03-20 14:39:45 +01003592static noinline int __push_leaf_right(struct btrfs_path *path,
Chris Mason44871b12009-03-13 10:04:31 -04003593 int data_size, int empty,
3594 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003595 int free_space, u32 left_nritems,
3596 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003597{
David Sterbaf72f0012019-03-20 14:39:45 +01003598 struct btrfs_fs_info *fs_info = right->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003599 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003600 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003601 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003602 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003603 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003604 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003605 int push_space = 0;
3606 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003607 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003608 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003609 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003610 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003611 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003612
Chris Mason34a38212007-11-07 13:31:03 -05003613 if (empty)
3614 nr = 0;
3615 else
Chris Mason99d8f832010-07-07 10:51:48 -04003616 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003617
Zheng Yan31840ae2008-09-23 13:14:14 -04003618 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003619 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003620
Chris Mason44871b12009-03-13 10:04:31 -04003621 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003622 i = left_nritems - 1;
3623 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003624 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003625
Zheng Yan31840ae2008-09-23 13:14:14 -04003626 if (!empty && push_items > 0) {
3627 if (path->slots[0] > i)
3628 break;
3629 if (path->slots[0] == i) {
David Sterbae902baa2019-03-20 14:36:46 +01003630 int space = btrfs_leaf_free_space(left);
3631
Zheng Yan31840ae2008-09-23 13:14:14 -04003632 if (space + push_space * 2 > free_space)
3633 break;
3634 }
3635 }
3636
Chris Mason00ec4c52007-02-24 12:47:20 -05003637 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003638 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003639
Chris Masondb945352007-10-15 16:15:53 -04003640 this_item_size = btrfs_item_size(left, item);
3641 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003642 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003643
Chris Mason00ec4c52007-02-24 12:47:20 -05003644 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003645 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003646 if (i == 0)
3647 break;
3648 i--;
Chris Masondb945352007-10-15 16:15:53 -04003649 }
Chris Mason5f39d392007-10-15 16:14:19 -04003650
Chris Mason925baed2008-06-25 16:01:30 -04003651 if (push_items == 0)
3652 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003653
Julia Lawall6c1500f2012-11-03 20:30:18 +00003654 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003655
Chris Mason00ec4c52007-02-24 12:47:20 -05003656 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003657 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003658
Chris Mason5f39d392007-10-15 16:14:19 -04003659 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
David Sterba8f881e82019-03-20 11:33:10 +01003660 push_space -= leaf_data_end(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003661
Chris Mason00ec4c52007-02-24 12:47:20 -05003662 /* make room in the right data area */
David Sterba8f881e82019-03-20 11:33:10 +01003663 data_end = leaf_data_end(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003664 memmove_extent_buffer(right,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003665 BTRFS_LEAF_DATA_OFFSET + data_end - push_space,
3666 BTRFS_LEAF_DATA_OFFSET + data_end,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003667 BTRFS_LEAF_DATA_SIZE(fs_info) - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04003668
Chris Mason00ec4c52007-02-24 12:47:20 -05003669 /* copy from the left data area */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003670 copy_extent_buffer(right, left, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003671 BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
David Sterba8f881e82019-03-20 11:33:10 +01003672 BTRFS_LEAF_DATA_OFFSET + leaf_data_end(left),
Chris Masond6025572007-03-30 14:27:56 -04003673 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003674
3675 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3676 btrfs_item_nr_offset(0),
3677 right_nritems * sizeof(struct btrfs_item));
3678
Chris Mason00ec4c52007-02-24 12:47:20 -05003679 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003680 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3681 btrfs_item_nr_offset(left_nritems - push_items),
3682 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003683
3684 /* update the item pointers */
David Sterbac82f8232019-08-09 17:48:21 +02003685 btrfs_init_map_token(&token, right);
Chris Mason7518a232007-03-12 12:01:18 -04003686 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003687 btrfs_set_header_nritems(right, right_nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003688 push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
Chris Mason7518a232007-03-12 12:01:18 -04003689 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003690 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003691 push_space -= btrfs_token_item_size(right, item, &token);
3692 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003693 }
3694
Chris Mason7518a232007-03-12 12:01:18 -04003695 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003696 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003697
Chris Mason34a38212007-11-07 13:31:03 -05003698 if (left_nritems)
3699 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003700 else
David Sterba6a884d7d2019-03-20 14:30:02 +01003701 btrfs_clean_tree_block(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003702
Chris Mason5f39d392007-10-15 16:14:19 -04003703 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003704
Chris Mason5f39d392007-10-15 16:14:19 -04003705 btrfs_item_key(right, &disk_key, 0);
3706 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003707 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003708
Chris Mason00ec4c52007-02-24 12:47:20 -05003709 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003710 if (path->slots[0] >= left_nritems) {
3711 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003712 if (btrfs_header_nritems(path->nodes[0]) == 0)
David Sterba6a884d7d2019-03-20 14:30:02 +01003713 btrfs_clean_tree_block(path->nodes[0]);
Chris Mason925baed2008-06-25 16:01:30 -04003714 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003715 free_extent_buffer(path->nodes[0]);
3716 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003717 path->slots[1] += 1;
3718 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003719 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003720 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003721 }
3722 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003723
3724out_unlock:
3725 btrfs_tree_unlock(right);
3726 free_extent_buffer(right);
3727 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003728}
Chris Mason925baed2008-06-25 16:01:30 -04003729
Chris Mason00ec4c52007-02-24 12:47:20 -05003730/*
Chris Mason44871b12009-03-13 10:04:31 -04003731 * push some data in the path leaf to the right, trying to free up at
3732 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3733 *
3734 * returns 1 if the push failed because the other node didn't have enough
3735 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003736 *
3737 * this will push starting from min_slot to the end of the leaf. It won't
3738 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003739 */
3740static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003741 *root, struct btrfs_path *path,
3742 int min_data_size, int data_size,
3743 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003744{
3745 struct extent_buffer *left = path->nodes[0];
3746 struct extent_buffer *right;
3747 struct extent_buffer *upper;
3748 int slot;
3749 int free_space;
3750 u32 left_nritems;
3751 int ret;
3752
3753 if (!path->nodes[1])
3754 return 1;
3755
3756 slot = path->slots[1];
3757 upper = path->nodes[1];
3758 if (slot >= btrfs_header_nritems(upper) - 1)
3759 return 1;
3760
3761 btrfs_assert_tree_locked(path->nodes[1]);
3762
David Sterba4b231ae2019-08-21 19:16:27 +02003763 right = btrfs_read_node_slot(upper, slot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07003764 /*
3765 * slot + 1 is not valid or we fail to read the right node,
3766 * no big deal, just return.
3767 */
3768 if (IS_ERR(right))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003769 return 1;
3770
Chris Mason44871b12009-03-13 10:04:31 -04003771 btrfs_tree_lock(right);
David Sterba8bead252018-04-04 02:03:48 +02003772 btrfs_set_lock_blocking_write(right);
Chris Mason44871b12009-03-13 10:04:31 -04003773
David Sterbae902baa2019-03-20 14:36:46 +01003774 free_space = btrfs_leaf_free_space(right);
Chris Mason44871b12009-03-13 10:04:31 -04003775 if (free_space < data_size)
3776 goto out_unlock;
3777
3778 /* cow and double check */
3779 ret = btrfs_cow_block(trans, root, right, upper,
3780 slot + 1, &right);
3781 if (ret)
3782 goto out_unlock;
3783
David Sterbae902baa2019-03-20 14:36:46 +01003784 free_space = btrfs_leaf_free_space(right);
Chris Mason44871b12009-03-13 10:04:31 -04003785 if (free_space < data_size)
3786 goto out_unlock;
3787
3788 left_nritems = btrfs_header_nritems(left);
3789 if (left_nritems == 0)
3790 goto out_unlock;
3791
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003792 if (path->slots[0] == left_nritems && !empty) {
3793 /* Key greater than all keys in the leaf, right neighbor has
3794 * enough room for it and we're not emptying our leaf to delete
3795 * it, therefore use right neighbor to insert the new item and
Andrea Gelmini52042d82018-11-28 12:05:13 +01003796 * no need to touch/dirty our left leaf. */
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003797 btrfs_tree_unlock(left);
3798 free_extent_buffer(left);
3799 path->nodes[0] = right;
3800 path->slots[0] = 0;
3801 path->slots[1]++;
3802 return 0;
3803 }
3804
David Sterbaf72f0012019-03-20 14:39:45 +01003805 return __push_leaf_right(path, min_data_size, empty,
Chris Mason99d8f832010-07-07 10:51:48 -04003806 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003807out_unlock:
3808 btrfs_tree_unlock(right);
3809 free_extent_buffer(right);
3810 return 1;
3811}
3812
3813/*
Chris Mason74123bd2007-02-02 11:05:29 -05003814 * push some data in the path leaf to the left, trying to free up at
3815 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003816 *
3817 * max_slot can put a limit on how far into the leaf we'll push items. The
3818 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3819 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003820 */
David Sterba8087c192019-03-20 14:40:41 +01003821static noinline int __push_leaf_left(struct btrfs_path *path, int data_size,
Chris Mason44871b12009-03-13 10:04:31 -04003822 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003823 int free_space, u32 right_nritems,
3824 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003825{
David Sterba8087c192019-03-20 14:40:41 +01003826 struct btrfs_fs_info *fs_info = left->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04003827 struct btrfs_disk_key disk_key;
3828 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003829 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003830 int push_space = 0;
3831 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003832 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003833 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003834 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003835 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003836 u32 this_item_size;
3837 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003838 struct btrfs_map_token token;
3839
Chris Mason34a38212007-11-07 13:31:03 -05003840 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003841 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003842 else
Chris Mason99d8f832010-07-07 10:51:48 -04003843 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003844
3845 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003846 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003847
Zheng Yan31840ae2008-09-23 13:14:14 -04003848 if (!empty && push_items > 0) {
3849 if (path->slots[0] < i)
3850 break;
3851 if (path->slots[0] == i) {
David Sterbae902baa2019-03-20 14:36:46 +01003852 int space = btrfs_leaf_free_space(right);
3853
Zheng Yan31840ae2008-09-23 13:14:14 -04003854 if (space + push_space * 2 > free_space)
3855 break;
3856 }
3857 }
3858
Chris Masonbe0e5c02007-01-26 15:51:26 -05003859 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003860 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003861
3862 this_item_size = btrfs_item_size(right, item);
3863 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003864 break;
Chris Masondb945352007-10-15 16:15:53 -04003865
Chris Masonbe0e5c02007-01-26 15:51:26 -05003866 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003867 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003868 }
Chris Masondb945352007-10-15 16:15:53 -04003869
Chris Masonbe0e5c02007-01-26 15:51:26 -05003870 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003871 ret = 1;
3872 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003873 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303874 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003875
Chris Masonbe0e5c02007-01-26 15:51:26 -05003876 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003877 copy_extent_buffer(left, right,
3878 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3879 btrfs_item_nr_offset(0),
3880 push_items * sizeof(struct btrfs_item));
3881
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003882 push_space = BTRFS_LEAF_DATA_SIZE(fs_info) -
Chris Masond3977122009-01-05 21:25:51 -05003883 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003884
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003885 copy_extent_buffer(left, right, BTRFS_LEAF_DATA_OFFSET +
David Sterba8f881e82019-03-20 11:33:10 +01003886 leaf_data_end(left) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003887 BTRFS_LEAF_DATA_OFFSET +
Chris Mason5f39d392007-10-15 16:14:19 -04003888 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003889 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003890 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003891 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003892
David Sterbac82f8232019-08-09 17:48:21 +02003893 btrfs_init_map_token(&token, left);
Chris Masondb945352007-10-15 16:15:53 -04003894 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003895 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003896 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003897
Ross Kirkdd3cc162013-09-16 15:58:09 +01003898 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003899
Chris Masoncfed81a2012-03-03 07:40:03 -05003900 ioff = btrfs_token_item_offset(left, item, &token);
3901 btrfs_set_token_item_offset(left, item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003902 ioff - (BTRFS_LEAF_DATA_SIZE(fs_info) - old_left_item_size),
Chris Masoncfed81a2012-03-03 07:40:03 -05003903 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003904 }
Chris Mason5f39d392007-10-15 16:14:19 -04003905 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003906
3907 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003908 if (push_items > right_nritems)
3909 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003910 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003911
Chris Mason34a38212007-11-07 13:31:03 -05003912 if (push_items < right_nritems) {
3913 push_space = btrfs_item_offset_nr(right, push_items - 1) -
David Sterba8f881e82019-03-20 11:33:10 +01003914 leaf_data_end(right);
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003915 memmove_extent_buffer(right, BTRFS_LEAF_DATA_OFFSET +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003916 BTRFS_LEAF_DATA_SIZE(fs_info) - push_space,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03003917 BTRFS_LEAF_DATA_OFFSET +
David Sterba8f881e82019-03-20 11:33:10 +01003918 leaf_data_end(right), push_space);
Chris Mason34a38212007-11-07 13:31:03 -05003919
3920 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003921 btrfs_item_nr_offset(push_items),
3922 (btrfs_header_nritems(right) - push_items) *
3923 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003924 }
David Sterbac82f8232019-08-09 17:48:21 +02003925
3926 btrfs_init_map_token(&token, right);
Yaneef1c492007-11-26 10:58:13 -05003927 right_nritems -= push_items;
3928 btrfs_set_header_nritems(right, right_nritems);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003929 push_space = BTRFS_LEAF_DATA_SIZE(fs_info);
Chris Mason5f39d392007-10-15 16:14:19 -04003930 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003931 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003932
Chris Masoncfed81a2012-03-03 07:40:03 -05003933 push_space = push_space - btrfs_token_item_size(right,
3934 item, &token);
3935 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003936 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003937
Chris Mason5f39d392007-10-15 16:14:19 -04003938 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003939 if (right_nritems)
3940 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003941 else
David Sterba6a884d7d2019-03-20 14:30:02 +01003942 btrfs_clean_tree_block(right);
Chris Mason098f59c2007-05-11 11:33:21 -04003943
Chris Mason5f39d392007-10-15 16:14:19 -04003944 btrfs_item_key(right, &disk_key, 0);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03003945 fixup_low_keys(path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003946
3947 /* then fixup the leaf pointer in the path */
3948 if (path->slots[0] < push_items) {
3949 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003950 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003951 free_extent_buffer(path->nodes[0]);
3952 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003953 path->slots[1] -= 1;
3954 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003955 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003956 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003957 path->slots[0] -= push_items;
3958 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003959 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003960 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003961out:
3962 btrfs_tree_unlock(left);
3963 free_extent_buffer(left);
3964 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003965}
3966
Chris Mason74123bd2007-02-02 11:05:29 -05003967/*
Chris Mason44871b12009-03-13 10:04:31 -04003968 * push some data in the path leaf to the left, trying to free up at
3969 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003970 *
3971 * max_slot can put a limit on how far into the leaf we'll push items. The
3972 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3973 * items
Chris Mason44871b12009-03-13 10:04:31 -04003974 */
3975static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003976 *root, struct btrfs_path *path, int min_data_size,
3977 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003978{
3979 struct extent_buffer *right = path->nodes[0];
3980 struct extent_buffer *left;
3981 int slot;
3982 int free_space;
3983 u32 right_nritems;
3984 int ret = 0;
3985
3986 slot = path->slots[1];
3987 if (slot == 0)
3988 return 1;
3989 if (!path->nodes[1])
3990 return 1;
3991
3992 right_nritems = btrfs_header_nritems(right);
3993 if (right_nritems == 0)
3994 return 1;
3995
3996 btrfs_assert_tree_locked(path->nodes[1]);
3997
David Sterba4b231ae2019-08-21 19:16:27 +02003998 left = btrfs_read_node_slot(path->nodes[1], slot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07003999 /*
4000 * slot - 1 is not valid or we fail to read the left node,
4001 * no big deal, just return.
4002 */
4003 if (IS_ERR(left))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004004 return 1;
4005
Chris Mason44871b12009-03-13 10:04:31 -04004006 btrfs_tree_lock(left);
David Sterba8bead252018-04-04 02:03:48 +02004007 btrfs_set_lock_blocking_write(left);
Chris Mason44871b12009-03-13 10:04:31 -04004008
David Sterbae902baa2019-03-20 14:36:46 +01004009 free_space = btrfs_leaf_free_space(left);
Chris Mason44871b12009-03-13 10:04:31 -04004010 if (free_space < data_size) {
4011 ret = 1;
4012 goto out;
4013 }
4014
4015 /* cow and double check */
4016 ret = btrfs_cow_block(trans, root, left,
4017 path->nodes[1], slot - 1, &left);
4018 if (ret) {
4019 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004020 if (ret == -ENOSPC)
4021 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004022 goto out;
4023 }
4024
David Sterbae902baa2019-03-20 14:36:46 +01004025 free_space = btrfs_leaf_free_space(left);
Chris Mason44871b12009-03-13 10:04:31 -04004026 if (free_space < data_size) {
4027 ret = 1;
4028 goto out;
4029 }
4030
David Sterba8087c192019-03-20 14:40:41 +01004031 return __push_leaf_left(path, min_data_size,
Chris Mason99d8f832010-07-07 10:51:48 -04004032 empty, left, free_space, right_nritems,
4033 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004034out:
4035 btrfs_tree_unlock(left);
4036 free_extent_buffer(left);
4037 return ret;
4038}
4039
4040/*
Chris Mason74123bd2007-02-02 11:05:29 -05004041 * split the path's leaf in two, making sure there is at least data_size
4042 * available for the resulting leaf level of the path.
4043 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004044static noinline void copy_for_split(struct btrfs_trans_handle *trans,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004045 struct btrfs_path *path,
4046 struct extent_buffer *l,
4047 struct extent_buffer *right,
4048 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004049{
David Sterba94f94ad2019-03-20 14:42:33 +01004050 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004051 int data_copy_size;
4052 int rt_data_off;
4053 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004054 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004055 struct btrfs_map_token token;
4056
Chris Mason5f39d392007-10-15 16:14:19 -04004057 nritems = nritems - mid;
4058 btrfs_set_header_nritems(right, nritems);
David Sterba8f881e82019-03-20 11:33:10 +01004059 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(l);
Chris Mason5f39d392007-10-15 16:14:19 -04004060
4061 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4062 btrfs_item_nr_offset(mid),
4063 nritems * sizeof(struct btrfs_item));
4064
4065 copy_extent_buffer(right, l,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004066 BTRFS_LEAF_DATA_OFFSET + BTRFS_LEAF_DATA_SIZE(fs_info) -
4067 data_copy_size, BTRFS_LEAF_DATA_OFFSET +
David Sterba8f881e82019-03-20 11:33:10 +01004068 leaf_data_end(l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004069
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004070 rt_data_off = BTRFS_LEAF_DATA_SIZE(fs_info) - btrfs_item_end_nr(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004071
David Sterbac82f8232019-08-09 17:48:21 +02004072 btrfs_init_map_token(&token, right);
Chris Mason5f39d392007-10-15 16:14:19 -04004073 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004074 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004075 u32 ioff;
4076
Chris Masoncfed81a2012-03-03 07:40:03 -05004077 ioff = btrfs_token_item_offset(right, item, &token);
4078 btrfs_set_token_item_offset(right, item,
4079 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004080 }
Chris Mason74123bd2007-02-02 11:05:29 -05004081
Chris Mason5f39d392007-10-15 16:14:19 -04004082 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004083 btrfs_item_key(right, &disk_key, 0);
David Sterba6ad3cf62019-03-20 14:32:45 +01004084 insert_ptr(trans, path, &disk_key, right->start, path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004085
4086 btrfs_mark_buffer_dirty(right);
4087 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004088 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004089
Chris Masonbe0e5c02007-01-26 15:51:26 -05004090 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004091 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004092 free_extent_buffer(path->nodes[0]);
4093 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004094 path->slots[0] -= mid;
4095 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004096 } else {
4097 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004098 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004099 }
Chris Mason5f39d392007-10-15 16:14:19 -04004100
Chris Masoneb60cea2007-02-02 09:18:22 -05004101 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004102}
4103
4104/*
Chris Mason99d8f832010-07-07 10:51:48 -04004105 * double splits happen when we need to insert a big item in the middle
4106 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4107 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4108 * A B C
4109 *
4110 * We avoid this by trying to push the items on either side of our target
4111 * into the adjacent leaves. If all goes well we can avoid the double split
4112 * completely.
4113 */
4114static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4115 struct btrfs_root *root,
4116 struct btrfs_path *path,
4117 int data_size)
4118{
4119 int ret;
4120 int progress = 0;
4121 int slot;
4122 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004123 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004124
4125 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004126 if (slot < btrfs_header_nritems(path->nodes[0]))
David Sterbae902baa2019-03-20 14:36:46 +01004127 space_needed -= btrfs_leaf_free_space(path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004128
4129 /*
4130 * try to push all the items after our slot into the
4131 * right leaf
4132 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004133 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004134 if (ret < 0)
4135 return ret;
4136
4137 if (ret == 0)
4138 progress++;
4139
4140 nritems = btrfs_header_nritems(path->nodes[0]);
4141 /*
4142 * our goal is to get our slot at the start or end of a leaf. If
4143 * we've done so we're done
4144 */
4145 if (path->slots[0] == 0 || path->slots[0] == nritems)
4146 return 0;
4147
David Sterbae902baa2019-03-20 14:36:46 +01004148 if (btrfs_leaf_free_space(path->nodes[0]) >= data_size)
Chris Mason99d8f832010-07-07 10:51:48 -04004149 return 0;
4150
4151 /* try to push all the items before our slot into the next leaf */
4152 slot = path->slots[0];
Filipe Manana263d3992017-02-17 18:43:57 +00004153 space_needed = data_size;
4154 if (slot > 0)
David Sterbae902baa2019-03-20 14:36:46 +01004155 space_needed -= btrfs_leaf_free_space(path->nodes[0]);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004156 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004157 if (ret < 0)
4158 return ret;
4159
4160 if (ret == 0)
4161 progress++;
4162
4163 if (progress)
4164 return 0;
4165 return 1;
4166}
4167
4168/*
Chris Mason44871b12009-03-13 10:04:31 -04004169 * split the path's leaf in two, making sure there is at least data_size
4170 * available for the resulting leaf level of the path.
4171 *
4172 * returns 0 if all went well and < 0 on failure.
4173 */
4174static noinline int split_leaf(struct btrfs_trans_handle *trans,
4175 struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -08004176 const struct btrfs_key *ins_key,
Chris Mason44871b12009-03-13 10:04:31 -04004177 struct btrfs_path *path, int data_size,
4178 int extend)
4179{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004180 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004181 struct extent_buffer *l;
4182 u32 nritems;
4183 int mid;
4184 int slot;
4185 struct extent_buffer *right;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004186 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04004187 int ret = 0;
4188 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004189 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004190 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004191 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004192
Yan, Zhenga5719522009-09-24 09:17:31 -04004193 l = path->nodes[0];
4194 slot = path->slots[0];
4195 if (extend && data_size + btrfs_item_size_nr(l, slot) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004196 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(fs_info))
Yan, Zhenga5719522009-09-24 09:17:31 -04004197 return -EOVERFLOW;
4198
Chris Mason44871b12009-03-13 10:04:31 -04004199 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004200 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004201 int space_needed = data_size;
4202
4203 if (slot < btrfs_header_nritems(l))
David Sterbae902baa2019-03-20 14:36:46 +01004204 space_needed -= btrfs_leaf_free_space(l);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004205
4206 wret = push_leaf_right(trans, root, path, space_needed,
4207 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004208 if (wret < 0)
4209 return wret;
4210 if (wret) {
Filipe Manana263d3992017-02-17 18:43:57 +00004211 space_needed = data_size;
4212 if (slot > 0)
David Sterbae902baa2019-03-20 14:36:46 +01004213 space_needed -= btrfs_leaf_free_space(l);
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004214 wret = push_leaf_left(trans, root, path, space_needed,
4215 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004216 if (wret < 0)
4217 return wret;
4218 }
4219 l = path->nodes[0];
4220
4221 /* did the pushes work? */
David Sterbae902baa2019-03-20 14:36:46 +01004222 if (btrfs_leaf_free_space(l) >= data_size)
Chris Mason44871b12009-03-13 10:04:31 -04004223 return 0;
4224 }
4225
4226 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004227 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004228 if (ret)
4229 return ret;
4230 }
4231again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004232 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004233 l = path->nodes[0];
4234 slot = path->slots[0];
4235 nritems = btrfs_header_nritems(l);
4236 mid = (nritems + 1) / 2;
4237
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004238 if (mid <= slot) {
4239 if (nritems == 1 ||
4240 leaf_space_used(l, mid, nritems - mid) + data_size >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004241 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004242 if (slot >= nritems) {
4243 split = 0;
4244 } else {
4245 mid = slot;
4246 if (mid != nritems &&
4247 leaf_space_used(l, mid, nritems - mid) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004248 data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004249 if (data_size && !tried_avoid_double)
4250 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004251 split = 2;
4252 }
4253 }
4254 }
4255 } else {
4256 if (leaf_space_used(l, 0, mid) + data_size >
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004257 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004258 if (!extend && data_size && slot == 0) {
4259 split = 0;
4260 } else if ((extend || !data_size) && slot == 0) {
4261 mid = 1;
4262 } else {
4263 mid = slot;
4264 if (mid != nritems &&
4265 leaf_space_used(l, mid, nritems - mid) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004266 data_size > BTRFS_LEAF_DATA_SIZE(fs_info)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004267 if (data_size && !tried_avoid_double)
4268 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304269 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004270 }
4271 }
4272 }
4273 }
4274
4275 if (split == 0)
4276 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4277 else
4278 btrfs_item_key(l, &disk_key, mid);
4279
Filipe Mananaa6279472019-01-25 11:48:51 +00004280 right = alloc_tree_block_no_bg_flush(trans, root, 0, &disk_key, 0,
4281 l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004282 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004283 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004284
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004285 root_add_used(root, fs_info->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004286
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004287 if (split == 0) {
4288 if (mid <= slot) {
4289 btrfs_set_header_nritems(right, 0);
David Sterba6ad3cf62019-03-20 14:32:45 +01004290 insert_ptr(trans, path, &disk_key,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004291 right->start, path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004292 btrfs_tree_unlock(path->nodes[0]);
4293 free_extent_buffer(path->nodes[0]);
4294 path->nodes[0] = right;
4295 path->slots[0] = 0;
4296 path->slots[1] += 1;
4297 } else {
4298 btrfs_set_header_nritems(right, 0);
David Sterba6ad3cf62019-03-20 14:32:45 +01004299 insert_ptr(trans, path, &disk_key,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004300 right->start, path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004301 btrfs_tree_unlock(path->nodes[0]);
4302 free_extent_buffer(path->nodes[0]);
4303 path->nodes[0] = right;
4304 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004305 if (path->slots[1] == 0)
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004306 fixup_low_keys(path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004307 }
Liu Bo196e0242016-09-07 14:48:28 -07004308 /*
4309 * We create a new leaf 'right' for the required ins_len and
4310 * we'll do btrfs_mark_buffer_dirty() on this leaf after copying
4311 * the content of ins_len to 'right'.
4312 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004313 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004314 }
4315
David Sterba94f94ad2019-03-20 14:42:33 +01004316 copy_for_split(trans, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004317
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004318 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004319 BUG_ON(num_doubles != 0);
4320 num_doubles++;
4321 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004322 }
Chris Mason44871b12009-03-13 10:04:31 -04004323
Jeff Mahoney143bede2012-03-01 14:56:26 +01004324 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004325
4326push_for_double:
4327 push_for_double_split(trans, root, path, data_size);
4328 tried_avoid_double = 1;
David Sterbae902baa2019-03-20 14:36:46 +01004329 if (btrfs_leaf_free_space(path->nodes[0]) >= data_size)
Chris Mason99d8f832010-07-07 10:51:48 -04004330 return 0;
4331 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004332}
4333
Yan, Zhengad48fd752009-11-12 09:33:58 +00004334static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4335 struct btrfs_root *root,
4336 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004337{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004338 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004339 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004340 struct btrfs_file_extent_item *fi;
4341 u64 extent_len = 0;
4342 u32 item_size;
4343 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004344
4345 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004346 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4347
4348 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4349 key.type != BTRFS_EXTENT_CSUM_KEY);
4350
David Sterbae902baa2019-03-20 14:36:46 +01004351 if (btrfs_leaf_free_space(leaf) >= ins_len)
Yan, Zhengad48fd752009-11-12 09:33:58 +00004352 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004353
4354 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004355 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4356 fi = btrfs_item_ptr(leaf, path->slots[0],
4357 struct btrfs_file_extent_item);
4358 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4359 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004360 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004361
Chris Mason459931e2008-12-10 09:10:46 -05004362 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004363 path->search_for_split = 1;
4364 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004365 path->search_for_split = 0;
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004366 if (ret > 0)
4367 ret = -EAGAIN;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004368 if (ret < 0)
4369 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004370
Yan, Zhengad48fd752009-11-12 09:33:58 +00004371 ret = -EAGAIN;
4372 leaf = path->nodes[0];
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004373 /* if our item isn't there, return now */
4374 if (item_size != btrfs_item_size_nr(leaf, path->slots[0]))
Yan, Zhengad48fd752009-11-12 09:33:58 +00004375 goto err;
4376
Chris Mason109f6ae2010-04-02 09:20:18 -04004377 /* the leaf has changed, it now has room. return now */
David Sterbae902baa2019-03-20 14:36:46 +01004378 if (btrfs_leaf_free_space(path->nodes[0]) >= ins_len)
Chris Mason109f6ae2010-04-02 09:20:18 -04004379 goto err;
4380
Yan, Zhengad48fd752009-11-12 09:33:58 +00004381 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4382 fi = btrfs_item_ptr(leaf, path->slots[0],
4383 struct btrfs_file_extent_item);
4384 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4385 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004386 }
4387
Chris Masonb9473432009-03-13 11:00:37 -04004388 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004389 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004390 if (ret)
4391 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004392
Yan, Zhengad48fd752009-11-12 09:33:58 +00004393 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004394 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004395 return 0;
4396err:
4397 path->keep_locks = 0;
4398 return ret;
4399}
4400
David Sterba25263cd2019-03-20 14:44:57 +01004401static noinline int split_item(struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004402 const struct btrfs_key *new_key,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004403 unsigned long split_offset)
4404{
4405 struct extent_buffer *leaf;
4406 struct btrfs_item *item;
4407 struct btrfs_item *new_item;
4408 int slot;
4409 char *buf;
4410 u32 nritems;
4411 u32 item_size;
4412 u32 orig_offset;
4413 struct btrfs_disk_key disk_key;
4414
Chris Masonb9473432009-03-13 11:00:37 -04004415 leaf = path->nodes[0];
David Sterbae902baa2019-03-20 14:36:46 +01004416 BUG_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item));
Chris Masonb9473432009-03-13 11:00:37 -04004417
Chris Masonb4ce94d2009-02-04 09:25:08 -05004418 btrfs_set_path_blocking(path);
4419
Ross Kirkdd3cc162013-09-16 15:58:09 +01004420 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004421 orig_offset = btrfs_item_offset(leaf, item);
4422 item_size = btrfs_item_size(leaf, item);
4423
Chris Mason459931e2008-12-10 09:10:46 -05004424 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004425 if (!buf)
4426 return -ENOMEM;
4427
Chris Mason459931e2008-12-10 09:10:46 -05004428 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4429 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004430
Chris Mason459931e2008-12-10 09:10:46 -05004431 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004432 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004433 if (slot != nritems) {
4434 /* shift the items */
4435 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004436 btrfs_item_nr_offset(slot),
4437 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004438 }
4439
4440 btrfs_cpu_key_to_disk(&disk_key, new_key);
4441 btrfs_set_item_key(leaf, &disk_key, slot);
4442
Ross Kirkdd3cc162013-09-16 15:58:09 +01004443 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004444
4445 btrfs_set_item_offset(leaf, new_item, orig_offset);
4446 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4447
4448 btrfs_set_item_offset(leaf, item,
4449 orig_offset + item_size - split_offset);
4450 btrfs_set_item_size(leaf, item, split_offset);
4451
4452 btrfs_set_header_nritems(leaf, nritems + 1);
4453
4454 /* write the data for the start of the original item */
4455 write_extent_buffer(leaf, buf,
4456 btrfs_item_ptr_offset(leaf, path->slots[0]),
4457 split_offset);
4458
4459 /* write the data for the new item */
4460 write_extent_buffer(leaf, buf + split_offset,
4461 btrfs_item_ptr_offset(leaf, slot),
4462 item_size - split_offset);
4463 btrfs_mark_buffer_dirty(leaf);
4464
David Sterbae902baa2019-03-20 14:36:46 +01004465 BUG_ON(btrfs_leaf_free_space(leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004466 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004467 return 0;
4468}
4469
4470/*
4471 * This function splits a single item into two items,
4472 * giving 'new_key' to the new item and splitting the
4473 * old one at split_offset (from the start of the item).
4474 *
4475 * The path may be released by this operation. After
4476 * the split, the path is pointing to the old item. The
4477 * new item is going to be in the same node as the old one.
4478 *
4479 * Note, the item being split must be smaller enough to live alone on
4480 * a tree block with room for one extra struct btrfs_item
4481 *
4482 * This allows us to split the item in place, keeping a lock on the
4483 * leaf the entire time.
4484 */
4485int btrfs_split_item(struct btrfs_trans_handle *trans,
4486 struct btrfs_root *root,
4487 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004488 const struct btrfs_key *new_key,
Yan, Zhengad48fd752009-11-12 09:33:58 +00004489 unsigned long split_offset)
4490{
4491 int ret;
4492 ret = setup_leaf_for_split(trans, root, path,
4493 sizeof(struct btrfs_item));
4494 if (ret)
4495 return ret;
4496
David Sterba25263cd2019-03-20 14:44:57 +01004497 ret = split_item(path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004498 return ret;
4499}
4500
4501/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004502 * This function duplicate a item, giving 'new_key' to the new item.
4503 * It guarantees both items live in the same tree leaf and the new item
4504 * is contiguous with the original item.
4505 *
4506 * This allows us to split file extent in place, keeping a lock on the
4507 * leaf the entire time.
4508 */
4509int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4510 struct btrfs_root *root,
4511 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004512 const struct btrfs_key *new_key)
Yan, Zhengad48fd752009-11-12 09:33:58 +00004513{
4514 struct extent_buffer *leaf;
4515 int ret;
4516 u32 item_size;
4517
4518 leaf = path->nodes[0];
4519 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4520 ret = setup_leaf_for_split(trans, root, path,
4521 item_size + sizeof(struct btrfs_item));
4522 if (ret)
4523 return ret;
4524
4525 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004526 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004527 item_size, item_size +
4528 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004529 leaf = path->nodes[0];
4530 memcpy_extent_buffer(leaf,
4531 btrfs_item_ptr_offset(leaf, path->slots[0]),
4532 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4533 item_size);
4534 return 0;
4535}
4536
4537/*
Chris Masond352ac62008-09-29 15:18:18 -04004538 * make the item pointed to by the path smaller. new_size indicates
4539 * how small to make it, and from_end tells us if we just chop bytes
4540 * off the end of the item or if we shift the item to chop bytes off
4541 * the front.
4542 */
David Sterba78ac4f92019-03-20 14:49:12 +01004543void btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004544{
Chris Masonb18c6682007-04-17 13:26:50 -04004545 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004546 struct extent_buffer *leaf;
4547 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004548 u32 nritems;
4549 unsigned int data_end;
4550 unsigned int old_data_start;
4551 unsigned int old_size;
4552 unsigned int size_diff;
4553 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004554 struct btrfs_map_token token;
4555
Chris Mason5f39d392007-10-15 16:14:19 -04004556 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004557 slot = path->slots[0];
4558
4559 old_size = btrfs_item_size_nr(leaf, slot);
4560 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004561 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004562
Chris Mason5f39d392007-10-15 16:14:19 -04004563 nritems = btrfs_header_nritems(leaf);
David Sterba8f881e82019-03-20 11:33:10 +01004564 data_end = leaf_data_end(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004565
Chris Mason5f39d392007-10-15 16:14:19 -04004566 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004567
Chris Masonb18c6682007-04-17 13:26:50 -04004568 size_diff = old_size - new_size;
4569
4570 BUG_ON(slot < 0);
4571 BUG_ON(slot >= nritems);
4572
4573 /*
4574 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4575 */
4576 /* first correct the data pointers */
David Sterbac82f8232019-08-09 17:48:21 +02004577 btrfs_init_map_token(&token, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004578 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004579 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004580 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004581
Chris Masoncfed81a2012-03-03 07:40:03 -05004582 ioff = btrfs_token_item_offset(leaf, item, &token);
4583 btrfs_set_token_item_offset(leaf, item,
4584 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004585 }
Chris Masondb945352007-10-15 16:15:53 -04004586
Chris Masonb18c6682007-04-17 13:26:50 -04004587 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004588 if (from_end) {
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004589 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4590 data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
Chris Mason179e29e2007-11-01 11:28:41 -04004591 data_end, old_data_start + new_size - data_end);
4592 } else {
4593 struct btrfs_disk_key disk_key;
4594 u64 offset;
4595
4596 btrfs_item_key(leaf, &disk_key, slot);
4597
4598 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4599 unsigned long ptr;
4600 struct btrfs_file_extent_item *fi;
4601
4602 fi = btrfs_item_ptr(leaf, slot,
4603 struct btrfs_file_extent_item);
4604 fi = (struct btrfs_file_extent_item *)(
4605 (unsigned long)fi - size_diff);
4606
4607 if (btrfs_file_extent_type(leaf, fi) ==
4608 BTRFS_FILE_EXTENT_INLINE) {
4609 ptr = btrfs_item_ptr_offset(leaf, slot);
4610 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004611 (unsigned long)fi,
David Sterba7ec20af2014-07-24 17:34:58 +02004612 BTRFS_FILE_EXTENT_INLINE_DATA_START);
Chris Mason179e29e2007-11-01 11:28:41 -04004613 }
4614 }
4615
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004616 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4617 data_end + size_diff, BTRFS_LEAF_DATA_OFFSET +
Chris Mason179e29e2007-11-01 11:28:41 -04004618 data_end, old_data_start - data_end);
4619
4620 offset = btrfs_disk_key_offset(&disk_key);
4621 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4622 btrfs_set_item_key(leaf, &disk_key, slot);
4623 if (slot == 0)
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004624 fixup_low_keys(path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004625 }
Chris Mason5f39d392007-10-15 16:14:19 -04004626
Ross Kirkdd3cc162013-09-16 15:58:09 +01004627 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004628 btrfs_set_item_size(leaf, item, new_size);
4629 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004630
David Sterbae902baa2019-03-20 14:36:46 +01004631 if (btrfs_leaf_free_space(leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004632 btrfs_print_leaf(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004633 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004634 }
Chris Masonb18c6682007-04-17 13:26:50 -04004635}
4636
Chris Masond352ac62008-09-29 15:18:18 -04004637/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004638 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004639 */
David Sterbac71dd882019-03-20 14:51:10 +01004640void btrfs_extend_item(struct btrfs_path *path, u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004641{
Chris Mason6567e832007-04-16 09:22:45 -04004642 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004643 struct extent_buffer *leaf;
4644 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004645 u32 nritems;
4646 unsigned int data_end;
4647 unsigned int old_data;
4648 unsigned int old_size;
4649 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004650 struct btrfs_map_token token;
4651
Chris Mason5f39d392007-10-15 16:14:19 -04004652 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004653
Chris Mason5f39d392007-10-15 16:14:19 -04004654 nritems = btrfs_header_nritems(leaf);
David Sterba8f881e82019-03-20 11:33:10 +01004655 data_end = leaf_data_end(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004656
David Sterbae902baa2019-03-20 14:36:46 +01004657 if (btrfs_leaf_free_space(leaf) < data_size) {
David Sterbaa4f78752017-06-29 18:37:49 +02004658 btrfs_print_leaf(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004659 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004660 }
Chris Mason6567e832007-04-16 09:22:45 -04004661 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004662 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004663
4664 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004665 if (slot >= nritems) {
David Sterbaa4f78752017-06-29 18:37:49 +02004666 btrfs_print_leaf(leaf);
David Sterbac71dd882019-03-20 14:51:10 +01004667 btrfs_crit(leaf->fs_info, "slot %d too large, nritems %d",
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004668 slot, nritems);
Arnd Bergmann290342f2019-03-25 14:02:25 +01004669 BUG();
Chris Mason3326d1b2007-10-15 16:18:25 -04004670 }
Chris Mason6567e832007-04-16 09:22:45 -04004671
4672 /*
4673 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4674 */
4675 /* first correct the data pointers */
David Sterbac82f8232019-08-09 17:48:21 +02004676 btrfs_init_map_token(&token, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004677 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004678 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004679 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004680
Chris Masoncfed81a2012-03-03 07:40:03 -05004681 ioff = btrfs_token_item_offset(leaf, item, &token);
4682 btrfs_set_token_item_offset(leaf, item,
4683 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004684 }
Chris Mason5f39d392007-10-15 16:14:19 -04004685
Chris Mason6567e832007-04-16 09:22:45 -04004686 /* shift the data */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004687 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4688 data_end - data_size, BTRFS_LEAF_DATA_OFFSET +
Chris Mason6567e832007-04-16 09:22:45 -04004689 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004690
Chris Mason6567e832007-04-16 09:22:45 -04004691 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004692 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004693 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004694 btrfs_set_item_size(leaf, item, old_size + data_size);
4695 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004696
David Sterbae902baa2019-03-20 14:36:46 +01004697 if (btrfs_leaf_free_space(leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004698 btrfs_print_leaf(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004699 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004700 }
Chris Mason6567e832007-04-16 09:22:45 -04004701}
4702
Chris Mason74123bd2007-02-02 11:05:29 -05004703/*
Chris Mason44871b12009-03-13 10:04:31 -04004704 * this is a helper for btrfs_insert_empty_items, the main goal here is
4705 * to save stack depth by doing the bulk of the work in a function
4706 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004707 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004708void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004709 const struct btrfs_key *cpu_key, u32 *data_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004710 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004711{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004712 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004713 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004714 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004715 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004716 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004717 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004718 struct extent_buffer *leaf;
4719 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004720 struct btrfs_map_token token;
4721
Filipe Manana24cdc842014-07-28 19:34:35 +01004722 if (path->slots[0] == 0) {
4723 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004724 fixup_low_keys(path, &disk_key, 1);
Filipe Manana24cdc842014-07-28 19:34:35 +01004725 }
4726 btrfs_unlock_up_safe(path, 1);
4727
Chris Mason5f39d392007-10-15 16:14:19 -04004728 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004729 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004730
Chris Mason5f39d392007-10-15 16:14:19 -04004731 nritems = btrfs_header_nritems(leaf);
David Sterba8f881e82019-03-20 11:33:10 +01004732 data_end = leaf_data_end(leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004733
David Sterbae902baa2019-03-20 14:36:46 +01004734 if (btrfs_leaf_free_space(leaf) < total_size) {
David Sterbaa4f78752017-06-29 18:37:49 +02004735 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004736 btrfs_crit(fs_info, "not enough freespace need %u have %d",
David Sterbae902baa2019-03-20 14:36:46 +01004737 total_size, btrfs_leaf_free_space(leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004738 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004739 }
Chris Mason5f39d392007-10-15 16:14:19 -04004740
David Sterbac82f8232019-08-09 17:48:21 +02004741 btrfs_init_map_token(&token, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004742 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004743 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004744
Chris Mason5f39d392007-10-15 16:14:19 -04004745 if (old_data < data_end) {
David Sterbaa4f78752017-06-29 18:37:49 +02004746 btrfs_print_leaf(leaf);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004747 btrfs_crit(fs_info, "slot %d old_data %d data_end %d",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004748 slot, old_data, data_end);
Arnd Bergmann290342f2019-03-25 14:02:25 +01004749 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004750 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004751 /*
4752 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4753 */
4754 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004755 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004756 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004757
Jeff Mahoney62e85572016-09-20 10:05:01 -04004758 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004759 ioff = btrfs_token_item_offset(leaf, item, &token);
4760 btrfs_set_token_item_offset(leaf, item,
4761 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004762 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004763 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004764 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004765 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004766 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004767
4768 /* shift the data */
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004769 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
4770 data_end - total_data, BTRFS_LEAF_DATA_OFFSET +
Chris Masond6025572007-03-30 14:27:56 -04004771 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004772 data_end = old_data;
4773 }
Chris Mason5f39d392007-10-15 16:14:19 -04004774
Chris Mason62e27492007-03-15 12:56:47 -04004775 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004776 for (i = 0; i < nr; i++) {
4777 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4778 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004779 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004780 btrfs_set_token_item_offset(leaf, item,
4781 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004782 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004783 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004784 }
Chris Mason44871b12009-03-13 10:04:31 -04004785
Chris Mason9c583092008-01-29 15:15:18 -05004786 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004787 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004788
David Sterbae902baa2019-03-20 14:36:46 +01004789 if (btrfs_leaf_free_space(leaf) < 0) {
David Sterbaa4f78752017-06-29 18:37:49 +02004790 btrfs_print_leaf(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004791 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004792 }
Chris Mason44871b12009-03-13 10:04:31 -04004793}
4794
4795/*
4796 * Given a key and some data, insert items into the tree.
4797 * This does all the path init required, making room in the tree if needed.
4798 */
4799int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4800 struct btrfs_root *root,
4801 struct btrfs_path *path,
Omar Sandoval310712b2017-01-17 23:24:37 -08004802 const struct btrfs_key *cpu_key, u32 *data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004803 int nr)
4804{
Chris Mason44871b12009-03-13 10:04:31 -04004805 int ret = 0;
4806 int slot;
4807 int i;
4808 u32 total_size = 0;
4809 u32 total_data = 0;
4810
4811 for (i = 0; i < nr; i++)
4812 total_data += data_size[i];
4813
4814 total_size = total_data + (nr * sizeof(struct btrfs_item));
4815 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4816 if (ret == 0)
4817 return -EEXIST;
4818 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004819 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004820
Chris Mason44871b12009-03-13 10:04:31 -04004821 slot = path->slots[0];
4822 BUG_ON(slot < 0);
4823
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004824 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004825 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004826 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004827}
4828
4829/*
4830 * Given a key and some data, insert an item into the tree.
4831 * This does all the path init required, making room in the tree if needed.
4832 */
Omar Sandoval310712b2017-01-17 23:24:37 -08004833int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4834 const struct btrfs_key *cpu_key, void *data,
4835 u32 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004836{
4837 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004838 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004839 struct extent_buffer *leaf;
4840 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004841
Chris Mason2c90e5d2007-04-02 10:50:19 -04004842 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004843 if (!path)
4844 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004845 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004846 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004847 leaf = path->nodes[0];
4848 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4849 write_extent_buffer(leaf, data, ptr, data_size);
4850 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004851 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004852 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004853 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004854}
4855
Chris Mason74123bd2007-02-02 11:05:29 -05004856/*
Chris Mason5de08d72007-02-24 06:24:44 -05004857 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004858 *
Chris Masond352ac62008-09-29 15:18:18 -04004859 * the tree should have been previously balanced so the deletion does not
4860 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004861 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004862static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4863 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004864{
Chris Mason5f39d392007-10-15 16:14:19 -04004865 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004866 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004867 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004868
Chris Mason5f39d392007-10-15 16:14:19 -04004869 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004870 if (slot != nritems - 1) {
David Sterbabf1d3422018-03-05 15:47:39 +01004871 if (level) {
4872 ret = tree_mod_log_insert_move(parent, slot, slot + 1,
David Sterbaa446a972018-03-05 15:26:29 +01004873 nritems - slot - 1);
David Sterbabf1d3422018-03-05 15:47:39 +01004874 BUG_ON(ret < 0);
4875 }
Chris Mason5f39d392007-10-15 16:14:19 -04004876 memmove_extent_buffer(parent,
4877 btrfs_node_key_ptr_offset(slot),
4878 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004879 sizeof(struct btrfs_key_ptr) *
4880 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004881 } else if (level) {
David Sterbae09c2ef2018-03-05 15:09:03 +01004882 ret = tree_mod_log_insert_key(parent, slot, MOD_LOG_KEY_REMOVE,
4883 GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004884 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004885 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004886
Chris Mason7518a232007-03-12 12:01:18 -04004887 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004888 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004889 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004890 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004891 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004892 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004893 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004894 struct btrfs_disk_key disk_key;
4895
4896 btrfs_node_key(parent, &disk_key, 0);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004897 fixup_low_keys(path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004898 }
Chris Masond6025572007-03-30 14:27:56 -04004899 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004900}
4901
Chris Mason74123bd2007-02-02 11:05:29 -05004902/*
Chris Mason323ac952008-10-01 19:05:46 -04004903 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004904 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004905 *
4906 * This deletes the pointer in path->nodes[1] and frees the leaf
4907 * block extent. zero is returned if it all worked out, < 0 otherwise.
4908 *
4909 * The path must have already been setup for deleting the leaf, including
4910 * all the proper balancing. path->nodes[1] must be locked.
4911 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004912static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4913 struct btrfs_root *root,
4914 struct btrfs_path *path,
4915 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004916{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004917 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004918 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004919
Chris Mason4d081c42009-02-04 09:31:28 -05004920 /*
4921 * btrfs_free_extent is expensive, we want to make sure we
4922 * aren't holding any locks when we call it
4923 */
4924 btrfs_unlock_up_safe(path, 0);
4925
Yan, Zhengf0486c62010-05-16 10:46:25 -04004926 root_sub_used(root, leaf->len);
4927
David Sterba67439da2019-10-08 13:28:47 +02004928 atomic_inc(&leaf->refs);
Jan Schmidt5581a512012-05-16 17:04:52 +02004929 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004930 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004931}
4932/*
Chris Mason74123bd2007-02-02 11:05:29 -05004933 * delete the item at the leaf level in path. If that empties
4934 * the leaf, remove it from the tree
4935 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004936int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4937 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004938{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004939 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5f39d392007-10-15 16:14:19 -04004940 struct extent_buffer *leaf;
4941 struct btrfs_item *item;
Alexandru Moisece0eac22015-08-23 16:01:42 +00004942 u32 last_off;
4943 u32 dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004944 int ret = 0;
4945 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004946 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004947 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004948
Chris Mason5f39d392007-10-15 16:14:19 -04004949 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004950 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4951
4952 for (i = 0; i < nr; i++)
4953 dsize += btrfs_item_size_nr(leaf, slot + i);
4954
Chris Mason5f39d392007-10-15 16:14:19 -04004955 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004956
Chris Mason85e21ba2008-01-29 15:11:36 -05004957 if (slot + nr != nritems) {
David Sterba8f881e82019-03-20 11:33:10 +01004958 int data_end = leaf_data_end(leaf);
David Sterbac82f8232019-08-09 17:48:21 +02004959 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04004960
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004961 memmove_extent_buffer(leaf, BTRFS_LEAF_DATA_OFFSET +
Chris Masond6025572007-03-30 14:27:56 -04004962 data_end + dsize,
Nikolay Borisov3d9ec8c2017-05-29 09:43:43 +03004963 BTRFS_LEAF_DATA_OFFSET + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004964 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004965
David Sterbac82f8232019-08-09 17:48:21 +02004966 btrfs_init_map_token(&token, leaf);
Chris Mason85e21ba2008-01-29 15:11:36 -05004967 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004968 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004969
Ross Kirkdd3cc162013-09-16 15:58:09 +01004970 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004971 ioff = btrfs_token_item_offset(leaf, item, &token);
4972 btrfs_set_token_item_offset(leaf, item,
4973 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004974 }
Chris Masondb945352007-10-15 16:15:53 -04004975
Chris Mason5f39d392007-10-15 16:14:19 -04004976 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004977 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004978 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004979 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004980 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004981 btrfs_set_header_nritems(leaf, nritems - nr);
4982 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004983
Chris Mason74123bd2007-02-02 11:05:29 -05004984 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004985 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004986 if (leaf == root->node) {
4987 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004988 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004989 btrfs_set_path_blocking(path);
David Sterba6a884d7d2019-03-20 14:30:02 +01004990 btrfs_clean_tree_block(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004991 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004992 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004993 } else {
Chris Mason7518a232007-03-12 12:01:18 -04004994 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004995 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004996 struct btrfs_disk_key disk_key;
4997
4998 btrfs_item_key(leaf, &disk_key, 0);
Nikolay Borisovb167fa92018-06-20 15:48:47 +03004999 fixup_low_keys(path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005000 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005001
Chris Mason74123bd2007-02-02 11:05:29 -05005002 /* delete the leaf if it is mostly empty */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005003 if (used < BTRFS_LEAF_DATA_SIZE(fs_info) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005004 /* push_leaf_left fixes the path.
5005 * make sure the path still points to our leaf
5006 * for possible call to del_ptr below
5007 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005008 slot = path->slots[1];
David Sterba67439da2019-10-08 13:28:47 +02005009 atomic_inc(&leaf->refs);
Chris Mason5f39d392007-10-15 16:14:19 -04005010
Chris Masonb9473432009-03-13 11:00:37 -04005011 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005012 wret = push_leaf_left(trans, root, path, 1, 1,
5013 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005014 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005015 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005016
5017 if (path->nodes[0] == leaf &&
5018 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005019 wret = push_leaf_right(trans, root, path, 1,
5020 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005021 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005022 ret = wret;
5023 }
Chris Mason5f39d392007-10-15 16:14:19 -04005024
5025 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005026 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005027 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005028 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005029 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005030 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005031 /* if we're still in the path, make sure
5032 * we're dirty. Otherwise, one of the
5033 * push_leaf functions must have already
5034 * dirtied this buffer
5035 */
5036 if (path->nodes[0] == leaf)
5037 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005038 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005039 }
Chris Masond5719762007-03-23 10:01:08 -04005040 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005041 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005042 }
5043 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005044 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005045}
5046
Chris Mason97571fd2007-02-24 13:39:08 -05005047/*
Chris Mason925baed2008-06-25 16:01:30 -04005048 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005049 * returns 0 if it found something or 1 if there are no lesser leaves.
5050 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005051 *
5052 * This may release the path, and so you may lose any locks held at the
5053 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005054 */
Josef Bacik16e75492013-10-22 12:18:51 -04005055int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005056{
Chris Mason925baed2008-06-25 16:01:30 -04005057 struct btrfs_key key;
5058 struct btrfs_disk_key found_key;
5059 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005060
Chris Mason925baed2008-06-25 16:01:30 -04005061 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005062
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005063 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005064 key.offset--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005065 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005066 key.type--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005067 key.offset = (u64)-1;
5068 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005069 key.objectid--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005070 key.type = (u8)-1;
5071 key.offset = (u64)-1;
5072 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005073 return 1;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005074 }
Chris Mason7bb86312007-12-11 09:25:06 -05005075
David Sterbab3b4aa72011-04-21 01:20:15 +02005076 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005077 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5078 if (ret < 0)
5079 return ret;
5080 btrfs_item_key(path->nodes[0], &found_key, 0);
5081 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005082 /*
5083 * We might have had an item with the previous key in the tree right
5084 * before we released our path. And after we released our path, that
5085 * item might have been pushed to the first slot (0) of the leaf we
5086 * were holding due to a tree balance. Alternatively, an item with the
5087 * previous key can exist as the only element of a leaf (big fat item).
5088 * Therefore account for these 2 cases, so that our callers (like
5089 * btrfs_previous_item) don't miss an existing item with a key matching
5090 * the previous key we computed above.
5091 */
5092 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005093 return 0;
5094 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005095}
5096
Chris Mason3f157a22008-06-25 16:01:31 -04005097/*
5098 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005099 * for nodes or leaves that are have a minimum transaction id.
5100 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005101 *
5102 * This does not cow, but it does stuff the starting key it finds back
5103 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5104 * key and get a writable path.
5105 *
Chris Mason3f157a22008-06-25 16:01:31 -04005106 * This honors path->lowest_level to prevent descent past a given level
5107 * of the tree.
5108 *
Chris Masond352ac62008-09-29 15:18:18 -04005109 * min_trans indicates the oldest transaction that you are interested
5110 * in walking through. Any nodes or leaves older than min_trans are
5111 * skipped over (without reading them).
5112 *
Chris Mason3f157a22008-06-25 16:01:31 -04005113 * returns zero if something useful was found, < 0 on error and 1 if there
5114 * was nothing in the tree that matched the search criteria.
5115 */
5116int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005117 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005118 u64 min_trans)
5119{
5120 struct extent_buffer *cur;
5121 struct btrfs_key found_key;
5122 int slot;
Yan96524802008-07-24 12:19:49 -04005123 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005124 u32 nritems;
5125 int level;
5126 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005127 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005128
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005129 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005130again:
Chris Masonbd681512011-07-16 15:23:14 -04005131 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005132 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005133 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005134 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005135 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005136
5137 if (btrfs_header_generation(cur) < min_trans) {
5138 ret = 1;
5139 goto out;
5140 }
Chris Masond3977122009-01-05 21:25:51 -05005141 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005142 nritems = btrfs_header_nritems(cur);
5143 level = btrfs_header_level(cur);
Nikolay Borisova74b35e2017-12-08 16:27:43 +02005144 sret = btrfs_bin_search(cur, min_key, level, &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00005145 if (sret < 0) {
5146 ret = sret;
5147 goto out;
5148 }
Chris Mason3f157a22008-06-25 16:01:31 -04005149
Chris Mason323ac952008-10-01 19:05:46 -04005150 /* at the lowest level, we're done, setup the path and exit */
5151 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005152 if (slot >= nritems)
5153 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005154 ret = 0;
5155 path->slots[level] = slot;
5156 btrfs_item_key_to_cpu(cur, &found_key, slot);
5157 goto out;
5158 }
Yan96524802008-07-24 12:19:49 -04005159 if (sret && slot > 0)
5160 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005161 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005162 * check this node pointer against the min_trans parameters.
5163 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005164 */
Chris Masond3977122009-01-05 21:25:51 -05005165 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005166 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005167
Chris Mason3f157a22008-06-25 16:01:31 -04005168 gen = btrfs_node_ptr_generation(cur, slot);
5169 if (gen < min_trans) {
5170 slot++;
5171 continue;
5172 }
Eric Sandeende78b512013-01-31 18:21:12 +00005173 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005174 }
Chris Masone02119d2008-09-05 16:13:11 -04005175find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005176 /*
5177 * we didn't find a candidate key in this node, walk forward
5178 * and find another one
5179 */
5180 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005181 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005182 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005183 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005184 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005185 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005186 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005187 goto again;
5188 } else {
5189 goto out;
5190 }
5191 }
5192 /* save our key for returning back */
5193 btrfs_node_key_to_cpu(cur, &found_key, slot);
5194 path->slots[level] = slot;
5195 if (level == path->lowest_level) {
5196 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005197 goto out;
5198 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005199 btrfs_set_path_blocking(path);
David Sterba4b231ae2019-08-21 19:16:27 +02005200 cur = btrfs_read_node_slot(cur, slot);
Liu Bofb770ae2016-07-05 12:10:14 -07005201 if (IS_ERR(cur)) {
5202 ret = PTR_ERR(cur);
5203 goto out;
5204 }
Chris Mason3f157a22008-06-25 16:01:31 -04005205
Chris Masonbd681512011-07-16 15:23:14 -04005206 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005207
Chris Masonbd681512011-07-16 15:23:14 -04005208 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005209 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005210 unlock_up(path, level, 1, 0, NULL);
Chris Mason3f157a22008-06-25 16:01:31 -04005211 }
5212out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005213 path->keep_locks = keep_locks;
5214 if (ret == 0) {
5215 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5216 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005217 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005218 }
Chris Mason3f157a22008-06-25 16:01:31 -04005219 return ret;
5220}
5221
5222/*
5223 * this is similar to btrfs_next_leaf, but does not try to preserve
5224 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005225 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005226 *
5227 * 0 is returned if another key is found, < 0 if there are any errors
5228 * and 1 is returned if there are no higher keys in the tree
5229 *
5230 * path->keep_locks should be set to 1 on the search made before
5231 * calling this function.
5232 */
Chris Masone7a84562008-06-25 16:01:31 -04005233int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005234 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005235{
Chris Masone7a84562008-06-25 16:01:31 -04005236 int slot;
5237 struct extent_buffer *c;
5238
Josef Bacik6a9fb462019-06-20 15:37:52 -04005239 WARN_ON(!path->keep_locks && !path->skip_locking);
Chris Masond3977122009-01-05 21:25:51 -05005240 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005241 if (!path->nodes[level])
5242 return 1;
5243
5244 slot = path->slots[level] + 1;
5245 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005246next:
Chris Masone7a84562008-06-25 16:01:31 -04005247 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005248 int ret;
5249 int orig_lowest;
5250 struct btrfs_key cur_key;
5251 if (level + 1 >= BTRFS_MAX_LEVEL ||
5252 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005253 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005254
Josef Bacik6a9fb462019-06-20 15:37:52 -04005255 if (path->locks[level + 1] || path->skip_locking) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005256 level++;
5257 continue;
5258 }
5259
5260 slot = btrfs_header_nritems(c) - 1;
5261 if (level == 0)
5262 btrfs_item_key_to_cpu(c, &cur_key, slot);
5263 else
5264 btrfs_node_key_to_cpu(c, &cur_key, slot);
5265
5266 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005267 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005268 path->lowest_level = level;
5269 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5270 0, 0);
5271 path->lowest_level = orig_lowest;
5272 if (ret < 0)
5273 return ret;
5274
5275 c = path->nodes[level];
5276 slot = path->slots[level];
5277 if (ret == 0)
5278 slot++;
5279 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005280 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005281
Chris Masone7a84562008-06-25 16:01:31 -04005282 if (level == 0)
5283 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005284 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005285 u64 gen = btrfs_node_ptr_generation(c, slot);
5286
Chris Mason3f157a22008-06-25 16:01:31 -04005287 if (gen < min_trans) {
5288 slot++;
5289 goto next;
5290 }
Chris Masone7a84562008-06-25 16:01:31 -04005291 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005292 }
Chris Masone7a84562008-06-25 16:01:31 -04005293 return 0;
5294 }
5295 return 1;
5296}
5297
Chris Mason7bb86312007-12-11 09:25:06 -05005298/*
Chris Mason925baed2008-06-25 16:01:30 -04005299 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005300 * returns 0 if it found something or 1 if there are no greater leaves.
5301 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005302 */
Chris Mason234b63a2007-03-13 10:46:10 -04005303int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005304{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005305 return btrfs_next_old_leaf(root, path, 0);
5306}
5307
5308int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5309 u64 time_seq)
5310{
Chris Masond97e63b2007-02-20 16:40:44 -05005311 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005312 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005313 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005314 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005315 struct btrfs_key key;
5316 u32 nritems;
5317 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005318 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005319 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005320
5321 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005322 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005323 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005324
Chris Mason8e73f272009-04-03 10:14:18 -04005325 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5326again:
5327 level = 1;
5328 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005329 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005330 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005331
Chris Masona2135012008-06-25 16:01:30 -04005332 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005333 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005334
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005335 if (time_seq)
5336 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5337 else
5338 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005339 path->keep_locks = 0;
5340
5341 if (ret < 0)
5342 return ret;
5343
Chris Masona2135012008-06-25 16:01:30 -04005344 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005345 /*
5346 * by releasing the path above we dropped all our locks. A balance
5347 * could have added more items next to the key that used to be
5348 * at the very end of the block. So, check again here and
5349 * advance the path if there are now more items available.
5350 */
Chris Masona2135012008-06-25 16:01:30 -04005351 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005352 if (ret == 0)
5353 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005354 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005355 goto done;
5356 }
Liu Bo0b43e042014-06-09 11:04:49 +08005357 /*
5358 * So the above check misses one case:
5359 * - after releasing the path above, someone has removed the item that
5360 * used to be at the very end of the block, and balance between leafs
5361 * gets another one with bigger key.offset to replace it.
5362 *
5363 * This one should be returned as well, or we can get leaf corruption
5364 * later(esp. in __btrfs_drop_extents()).
5365 *
5366 * And a bit more explanation about this check,
5367 * with ret > 0, the key isn't found, the path points to the slot
5368 * where it should be inserted, so the path->slots[0] item must be the
5369 * bigger one.
5370 */
5371 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5372 ret = 0;
5373 goto done;
5374 }
Chris Masond97e63b2007-02-20 16:40:44 -05005375
Chris Masond3977122009-01-05 21:25:51 -05005376 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005377 if (!path->nodes[level]) {
5378 ret = 1;
5379 goto done;
5380 }
Chris Mason5f39d392007-10-15 16:14:19 -04005381
Chris Masond97e63b2007-02-20 16:40:44 -05005382 slot = path->slots[level] + 1;
5383 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005384 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005385 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005386 if (level == BTRFS_MAX_LEVEL) {
5387 ret = 1;
5388 goto done;
5389 }
Chris Masond97e63b2007-02-20 16:40:44 -05005390 continue;
5391 }
Chris Mason5f39d392007-10-15 16:14:19 -04005392
Chris Mason925baed2008-06-25 16:01:30 -04005393 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005394 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005395 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005396 }
Chris Mason5f39d392007-10-15 16:14:19 -04005397
Chris Mason8e73f272009-04-03 10:14:18 -04005398 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005399 next_rw_lock = path->locks[level];
Liu Bod07b8522017-01-30 12:23:42 -08005400 ret = read_block_for_search(root, path, &next, level,
David Sterbacda79c52017-02-10 18:44:32 +01005401 slot, &key);
Chris Mason8e73f272009-04-03 10:14:18 -04005402 if (ret == -EAGAIN)
5403 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005404
Chris Mason76a05b32009-05-14 13:24:30 -04005405 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005406 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005407 goto done;
5408 }
5409
Chris Mason5cd57b22008-06-25 16:01:30 -04005410 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005411 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005412 if (!ret && time_seq) {
5413 /*
5414 * If we don't get the lock, we may be racing
5415 * with push_leaf_left, holding that lock while
5416 * itself waiting for the leaf we've currently
5417 * locked. To solve this situation, we give up
5418 * on our lock and cycle.
5419 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005420 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005421 btrfs_release_path(path);
5422 cond_resched();
5423 goto again;
5424 }
Chris Mason8e73f272009-04-03 10:14:18 -04005425 if (!ret) {
5426 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005427 btrfs_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005428 }
Chris Mason31533fb2011-07-26 16:01:59 -04005429 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005430 }
Chris Masond97e63b2007-02-20 16:40:44 -05005431 break;
5432 }
5433 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005434 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005435 level--;
5436 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005437 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005438 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005439
Chris Mason5f39d392007-10-15 16:14:19 -04005440 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005441 path->nodes[level] = next;
5442 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005443 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005444 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005445 if (!level)
5446 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005447
Liu Bod07b8522017-01-30 12:23:42 -08005448 ret = read_block_for_search(root, path, &next, level,
David Sterbacda79c52017-02-10 18:44:32 +01005449 0, &key);
Chris Mason8e73f272009-04-03 10:14:18 -04005450 if (ret == -EAGAIN)
5451 goto again;
5452
Chris Mason76a05b32009-05-14 13:24:30 -04005453 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005454 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005455 goto done;
5456 }
5457
Chris Mason5cd57b22008-06-25 16:01:30 -04005458 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005459 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005460 if (!ret) {
5461 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005462 btrfs_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005463 }
Chris Mason31533fb2011-07-26 16:01:59 -04005464 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005465 }
Chris Masond97e63b2007-02-20 16:40:44 -05005466 }
Chris Mason8e73f272009-04-03 10:14:18 -04005467 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005468done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005469 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005470 path->leave_spinning = old_spinning;
5471 if (!old_spinning)
5472 btrfs_set_path_blocking(path);
5473
5474 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005475}
Chris Mason0b86a832008-03-24 15:01:56 -04005476
Chris Mason3f157a22008-06-25 16:01:31 -04005477/*
5478 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5479 * searching until it gets past min_objectid or finds an item of 'type'
5480 *
5481 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5482 */
Chris Mason0b86a832008-03-24 15:01:56 -04005483int btrfs_previous_item(struct btrfs_root *root,
5484 struct btrfs_path *path, u64 min_objectid,
5485 int type)
5486{
5487 struct btrfs_key found_key;
5488 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005489 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005490 int ret;
5491
Chris Masond3977122009-01-05 21:25:51 -05005492 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005493 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005494 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005495 ret = btrfs_prev_leaf(root, path);
5496 if (ret != 0)
5497 return ret;
5498 } else {
5499 path->slots[0]--;
5500 }
5501 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005502 nritems = btrfs_header_nritems(leaf);
5503 if (nritems == 0)
5504 return 1;
5505 if (path->slots[0] == nritems)
5506 path->slots[0]--;
5507
Chris Mason0b86a832008-03-24 15:01:56 -04005508 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005509 if (found_key.objectid < min_objectid)
5510 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005511 if (found_key.type == type)
5512 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005513 if (found_key.objectid == min_objectid &&
5514 found_key.type < type)
5515 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005516 }
5517 return 1;
5518}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005519
5520/*
5521 * search in extent tree to find a previous Metadata/Data extent item with
5522 * min objecitd.
5523 *
5524 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5525 */
5526int btrfs_previous_extent_item(struct btrfs_root *root,
5527 struct btrfs_path *path, u64 min_objectid)
5528{
5529 struct btrfs_key found_key;
5530 struct extent_buffer *leaf;
5531 u32 nritems;
5532 int ret;
5533
5534 while (1) {
5535 if (path->slots[0] == 0) {
5536 btrfs_set_path_blocking(path);
5537 ret = btrfs_prev_leaf(root, path);
5538 if (ret != 0)
5539 return ret;
5540 } else {
5541 path->slots[0]--;
5542 }
5543 leaf = path->nodes[0];
5544 nritems = btrfs_header_nritems(leaf);
5545 if (nritems == 0)
5546 return 1;
5547 if (path->slots[0] == nritems)
5548 path->slots[0]--;
5549
5550 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5551 if (found_key.objectid < min_objectid)
5552 break;
5553 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5554 found_key.type == BTRFS_METADATA_ITEM_KEY)
5555 return 0;
5556 if (found_key.objectid == min_objectid &&
5557 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5558 break;
5559 }
5560 return 1;
5561}